{"self":"http://probly.dev/api/sim/jevatKidgGE9ovHFg4PHWM/","id":"jevatKidgGE9ovHFg4PHWM","created_at":"2026-09-06T17:53:19.807518Z","status":{"status":"SUCCESS","status_datetime":"2026-09-22T14:15:07.503132Z","time_elapsed":null,"done_at":null},"input_type":"esty","spreadsheet_input":null,"esty_input":{"content":"_cohort = 10 * 1000  # Arbitrary\n\n# Iron-deficiency anemia prevalence, children in India (any severity)\n# Global Burden of Disease 2016, see 'Supplementary data'\np_anemia = Beta(19, 22)  # p15=0.38, p85=0.54; beta by quantiles not yet supported\n\n\n\ndef anemia_reduction():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n    # Of children with anemia, proportion with mild, moderate, and severe anemia\n    p_severity = {\n        \"mild\": 48 / 100,\n        \"moderate\": 48 / 100,\n        \"severe\": 4.1 / 100\n    }\n\n    # Risk ratio anemia, iron supplementation\n    risk_ratio = PERT(0.3, 0.5, 1)\n\n    p_cured = {}\n    for severity in p_severity:\n        p_cured[severity] = p_anemia * p_severity[severity] * risk_ratio\n\n    yld = {\n        \"mild\": 0.4 / 100,\n        \"moderate\": 5.2 / 100,\n        \"severe\": 15 / 100\n    }\n\n    yld_sum = 0\n    for severity in yld:\n        yld_sum += p_cured[severity] * yld[severity]\n\n    return _cohort * yld_sum\n\ndef cognitive_benefits():\n    \"\"\"\n    In (present value of) units of increase in ln(income) per cohort.\n\n    These drive most of the cost-effectiveness.\n    \"\"\"\n    # The intervention targets all children in a school, but we model\n    # cognitive benefits as accruing only to children between ages 3-12.\n    # Proportion of targeted children between ages 3-12\n    p_children = 65 / 100\n\n    # Change in IQ points from short-term supplementation for anemic individuals\n    iq_change_sd = LogNormal(0.33 td 2)\n    iq_change = iq_change_sd * 15  # Convert to IQ points: 1 SD = 15 IQ points\n\n    p_wages_per_point = 1 / 100  # Percentage increase in wages/consumption for every 1 point increase in IQ\n\n    # Percentage increase in wages/consumption from increase in IQ from supplementation\n    p_wages = iq_change * p_wages_per_point\n\n    # Speculative adjustment to assess the long-term benefit of many years of iron\n    long_term_adjustment = 10 / 100\n    p_wages = p_wages * long_term_adjustment\n\n    # Increase in annual ln(consumption) for beneficiaries\n    change_ln_cons = math.log(1 + p_wages) - math.log(1)\n\n    delay_y = 12  # Average number of years between 'entering fortification program' and beginning of long term benefits\n    duration_y = LogUniform(15 td 3)  # Duration of long term benefits of fortification (in years)\n\n    # Present Value Income Benefits\n    discount_rate = Uniform(2/100, 7/100)\n    pv_income = pv(discount_rate, delay_y + duration_y, -change_ln_cons) - pv(\n        discount_rate, delay_y, -change_ln_cons\n    )  # Unit is still changes in ln(income)\n\n    # Multiplier for Resource Sharing in Households\n    multiplier_resource_sharing = 2\n    pv_income = pv_income * multiplier_resource_sharing\n\n    # Lifetime Income Benefits for Full Cohort (including non-beneficiaries)\n    return _cohort * p_children * p_anemia * pv_income\n\n\ndef altered_malaria_risk():\n    \"\"\"\n    In deaths per cohort\n    \"\"\"\n    baseline_deaths_100k = 5.14  # Baseline deaths due to malaria per 100,000 individuals 0-19 in India\n    # Convert to per cohort\n    baseline_deaths = baseline_deaths_100k * (_cohort / (100 * 1000))\n\n    rr = PERT(1, 1.16, 1.5)  # Relative risk of malaria mortality with IFA supplementation\n\n    direct = baseline_deaths * (rr - 1)\n    indirect_per_direct = 50 / 100\n    return direct * (1 + indirect_per_direct)\n\n\ndef other_adverse_effects():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n\n    p_condition = {\n        \"gastro\": (8 + 1 + 33 + 2 + 8) / (23 + 12 + 128 + 2 + 8),\n        \"loose_stools\": (1 + 2 + 6 + 2 + 1 + 3) / (36 + 8 + 128 + 6 + 44 + 71),\n        \"hard_stools\": (1 + 5 + 0 + 0 + 11 + 0 + 6 + 3) / (31 + 36 + 8 + 182 + 128 + 6 + 44 + 71),\n        \"abdominal_pain\": (0 + 4 + 2 + 15 + 1 + 3 + 4) / (120 + 36 + 182 + 128 + 6 + 44 + 71),\n    }\n\n    yld = {\n        \"gastro\": 7.4 / 100,\n        \"loose_stools\": 7.4 / 100,\n        \"hard_stools\": 7.4 / 100,\n        \"abdominal_pain\": 1.1 / 100,\n    }\n\n    duration = 2 / 365\n\n    yld_sum = 0\n    for condition in yld:\n        yld_sum += p_condition[condition] * yld[condition] * duration\n\n    return _cohort * yld_sum\n\n\ndef yld_to_val(yld):\n    \"\"\"\n    YLDs to units of value. Arbitrary normalization.\n    \"\"\"\n    return 1 * yld\n\n\ndef ln_cons_to_val(ln_cons):\n    \"\"\"\n    Units of increase in ln(consumption) to units of value\n    \"\"\"\n    value_double = Uniform(0.2, 0.8)  # Rule of thumb that 1 DALY = 2.5x GDP per capita would give 0.4\n    value_1_ln = value_double / math.log(2)\n    return value_1_ln * ln_cons\n\n\ndef death_to_val(death):\n    \"\"\"\n    Deaths to units of value\n    \"\"\"\n    return 30 * death\n\n\ndef units_value():\n    \"\"\"\n    In \"units of value\" per cohort (normalized to 1 unit of value = 1 YLD).\n    \"\"\"\n\n    anemia_ylds_averted = anemia_reduction()\n    units_increase_ln_income = cognitive_benefits()\n    malaria_deaths = altered_malaria_risk()\n    side_effect_ylds = other_adverse_effects()\n\n    u_value = {\n        \"anemia\": yld_to_val(anemia_ylds_averted),\n        \"income\": ln_cons_to_val(units_increase_ln_income),\n        \"malaria\": -death_to_val(malaria_deaths),\n        \"side_effect\": -yld_to_val(side_effect_ylds),\n    }\n\n    return sum(u_value.values())\n\ndef cost_effectiveness():\n    \"\"\"\n    Units of value per $10,000\n    \"\"\"\n    # Supplementation cost per person treated\n    cost_p_p = 2\n    cost_cohort = _cohort * cost_p_p\n    val_cohort = units_value()\n    return val_cohort * (10 * 1000 / cost_cohort)\n\n\ndef ratio_givedirectly():\n    \"\"\"\n    Cost-effectiveness ratio vs GiveDirectly\n    \"\"\"\n    # GiveDirectly units of increase in ln(consumption) for each $10,000 donated\n    gd_ln_cons = 25\n    return cost_effectiveness() / ln_cons_to_val(gd_ln_cons)\n\n\ndef pv(rate, nper, pmt):\n    temp = math.pow((1 + rate), nper)\n    fact = (temp - 1) / rate\n    return -(pmt * fact) / temp\n\n\nvalue_per_10_000_usd = cost_effectiveness()\nmultiples_of_cash = ratio_givedirectly()"},"output":{"simulation_data":{"_cohort":[10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0],"p_anemia":[0.5483220348724416,0.4760524314118151,0.4846543290298637,0.35802069124632835,0.48312480050275586,0.5510873041824454,0.5471431536092862,0.4538026960868838,0.6188004584652637,0.3497676404288755,0.4836936273088739,0.4112256001085197,0.5013988183622207,0.45353099932075264,0.4926710761098949,0.389285842564985,0.5013813912166869,0.38569632119990366,0.5290934349040957,0.49018376174023204,0.41701526812376943,0.5435109752201961,0.4741879623188012,0.4040137956137683,0.541918452006779,0.519912123524759,0.4223551750561555,0.5070868548965991,0.36188526625273426,0.5484921871820432,0.4542295430329841,0.6204329125602098,0.5961092251680938,0.5489456313654959,0.36955682690340547,0.4294092063826856,0.4777773462222429,0.37748759084064526,0.43029665098097014,0.3732581358697154,0.4104139933981364,0.542562032343225,0.44443482332854084,0.3816434267354336,0.3006339102192383,0.363592941998363,0.35758701918712893,0.3990497138772809,0.6098334456983427,0.5300357630107774,0.46562977243799275,0.5132175576626852,0.5359615779776379,0.48608157068903785,0.541815256851101,0.4837193048831892,0.5279270317948348,0.5789480361110543,0.4491176371320334,0.6061295572239547,0.48022079960037983,0.4902958637123106,0.4543435173812267,0.5237691673849578,0.4181375331930824,0.5079421292376293,0.40199453665203294,0.32500606726120285,0.5009212108567686,0.5035467976309499,0.47799176229969065,0.5047210122232184,0.45113514636630153,0.46745603332101565,0.4120974135418806,0.39232825849229563,0.3770789190227819,0.32287252324081483,0.3409662434729532,0.5194217375696315,0.4829053620013863,0.3728055542624691,0.422711346682095,0.5833304805202163,0.4753037628272139,0.41368780670280275,0.5499787202044719,0.47282901772506314,0.5668025473384823,0.38926985699153777,0.5216963391527344,0.5472658414646178,0.49556183856486785,0.43164843177621925,0.44662354864600146,0.49422772463251635,0.46542945575795164,0.31147294973117473,0.5114075020290312,0.5462976470057371,0.42930341321089527,0.45658725168888137,0.40808645718767966,0.45251352876942325,0.5769720894714846,0.4144592260513395,0.35676236984511406,0.5014361690278385,0.35863168821913366,0.3751246643509041,0.41080976440545824,0.47091575093573745,0.520740731550784,0.3026986547153466,0.42086854107431715,0.3641039491111283,0.5409170649390057,0.433510675145706,0.47422716384447,0.3878910396330314,0.4780972329312039,0.3396974834905233,0.34489871340782347,0.5772716710170046,0.5478105033655819,0.5423073092642282,0.3375506779142332,0.3647266951824217,0.3842655992238264,0.5503856057153338,0.38028781924712707,0.3436678646758807,0.34592992207980433,0.510220745919661,0.6063952438098619,0.3284613176092393,0.6302760801869616,0.4498658577939497,0.5589604991115785,0.39148653013135193,0.46277094572660116,0.5292621333755038,0.5095253598516583,0.49931388411812594,0.4772528783103195,0.4417247354845492,0.30910654455163783,0.31584541202876554,0.3685316687727531,0.4888735628325644,0.4416195515917587,0.6027397476126367,0.31136495877236353,0.4251388442225415,0.3806290454066213,0.49787829048025767,0.40903193001243254,0.4152588983574637,0.49971345411207896,0.4278905638490256,0.49131334017603934,0.4251480147482905,0.5322105174771496,0.5282683521485079,0.41890808976435545,0.45412961667228835,0.452710559704549,0.4523460647605124,0.44587414341516957,0.4532123723143712,0.43215641008840733,0.5258708058266561,0.6348603645392635,0.28251468938741775,0.4425472382873364,0.6979757364344279,0.5167467930284829,0.5071301514453342,0.3317364065084509,0.5861289670989643,0.3900698903613218,0.4840451302158914,0.386303779512969,0.42020835813694346,0.3228969247899294,0.4629526076896867,0.4222236138865415,0.5557010343875162,0.4420513449313131,0.552916855965202,0.3764546259691532,0.4239077945527788,0.36902585110814473,0.4583903572006588,0.43620740009501274,0.5607795424598533,0.5478120809981157,0.3118017040219712,0.5490849610117116,0.3855388569987963,0.5553929039196622,0.44454652394471805,0.42630920048952287,0.42036353477972216,0.42226571251969014,0.4858098400540587,0.46561901958347174,0.43231233399741287,0.37016726937204875,0.4615011660626361,0.5311917409771855,0.4557607573278974,0.4820269338714692,0.4218864868716397,0.5750637385006029,0.43235598969165673,0.3870975574170323,0.514434876520299,0.5488894881735655,0.5625346487569652,0.4395058794961678,0.36979002840709113,0.47013848568718336,0.4737811175152892,0.45925112280719294,0.445218649240452,0.4100221640370934,0.43626695431583057,0.6285240247621456,0.5775047848645088,0.48898021216850607,0.2884647938750846,0.31466991992253585,0.531205510544607,0.4125097187599347,0.48218701111296397,0.5031361619215841,0.4139033974230369,0.6232912353467802,0.4643787157366677,0.5949196928338654,0.5252094489046457,0.5353172486893658,0.35482210323549757,0.3089417460240032,0.44707824926532924,0.43590975079260436,0.46629538498658907,0.4560376409673621,0.41672004983111527,0.4257455353245334,0.5791636770280986,0.527121403632185,0.4594383697009829,0.40752568095172914,0.4883277033515152,0.49677673124179256,0.5446135973396047,0.5005438891862263,0.3084421080677921,0.39761207088369505,0.4378645208012148,0.5209915289295887,0.3507303524543259,0.4904031233942935,0.5354728401788049,0.49792060798166216,0.42656001187245235,0.40307516607534033,0.5356142497935725,0.3498563851220533,0.48868385476473003,0.4889129416412677,0.49048414016857017,0.32413483549869293,0.4376245520844542,0.37817792495310454,0.4068400009911801,0.5102964604764958,0.49240844391990635,0.4275599410266594,0.34302636280879373,0.48557561359040385,0.44500210945821106,0.2947821667374091,0.6211431172185419,0.46315670727430147,0.34284878256606593,0.5908378726486619,0.47440675969465057,0.3505135997983844,0.4286610029874756,0.5271791039840176,0.3164584108737336,0.4175383592829916,0.46036819265232787,0.5159293700938823,0.5209051483719431,0.5834773860061371,0.5200644658153244,0.4168879740635905,0.39339455979818755,0.34143298516082254,0.5024702822929327,0.37839844512512216,0.5136482876475321,0.4755468771049356,0.5999876050239628,0.5396745798131474,0.4446314847506669,0.5689302810511755,0.4064381928651173,0.38407131926737537,0.5616767090401102,0.48941514021143406,0.49432423367947403,0.48989524041561977,0.3775334448351506,0.4114543530594654,0.5208080648872254,0.37810581672698373,0.49699292923454935,0.365229369754077,0.6044191888038457,0.5075875669842447,0.46112046257751244,0.30494360706535883,0.49286416134049454,0.4292386675263088,0.41383969290740386,0.5675433675352596,0.29358724379787804,0.47746065355602874,0.42855256691753096,0.3388890909023185,0.4444781883672981,0.6428465708554372,0.45160989345004143,0.433589810795781,0.49374784325417254,0.37489296474271144,0.4470146495222986,0.46599268133990973,0.5776091895773028,0.5579736303411003,0.38424970474932474,0.4956825576025188,0.41392743607576343,0.5991738796753808,0.4550263007174247,0.45473817155536594,0.5658741532599613,0.4679660406449667,0.43654053776095425,0.4514944808526551,0.5993329296585219,0.4821650355000389,0.35403781348879,0.5357951094263487,0.4064800271878128,0.4290520095294666,0.4775873510466127,0.510499229978437,0.4259976824671133,0.36898961751040105,0.4264391159952345,0.46330228757221004,0.3953524849595027,0.5386353766536484,0.5343874418490802,0.4748039361501512,0.4037757122909207,0.486730659654148,0.5363434202015436,0.4484256169968017,0.35826552100993325,0.5740450193200726,0.2697047678951732,0.331301677542472,0.506777301873781,0.5801770748971415,0.40255822451787276,0.45233174613078175,0.4456702819104714,0.5444310238424029,0.5035585933571929,0.395231771204629,0.4793246076956226,0.386956771247982,0.5241981625046005,0.5939624153719714,0.5071920529512555,0.49463229761114325,0.4324016785711982,0.5278577030935043,0.5347269793916405,0.4471025055114428,0.4800043653454369,0.5258226562084906,0.5078926056599192,0.39357804030259397,0.5794813719912355,0.35122323969146185,0.42237605354172586,0.4598879442448907,0.4702268541380052,0.4371421210831734,0.48692106152917514,0.5306121262326093,0.49312633896707003,0.364466225128811,0.6314626878290538,0.4455673125196764,0.4348123344155157,0.39916682591934416,0.5845364323600002,0.571485865485676,0.35541963601706017,0.28464189687751634,0.47539395939151957,0.4385107743707859,0.4797250628961998,0.40822548423549415,0.4366593803718134,0.547704399806832,0.5117239286041414,0.4742270182792248,0.5075785194992255,0.4190645883131747,0.5561408693893031,0.32718834609923797,0.4101125270420484,0.4149589214947441,0.6213855040281426,0.5027888187069239,0.450441069223829,0.4227582272001516,0.5340543652037494,0.5380331886800498,0.43468354308630486,0.5200706419692253,0.606652311285432,0.494442633107402,0.43200440255068834,0.45348311423109106,0.419829049816427,0.32463692565889113,0.5042302736649164,0.5505940591149859,0.5104630925531243,0.3823612781717939,0.609359677838454,0.434125970567437,0.30369965919675207,0.49901391879429197,0.42693183419542685,0.43864133074577927,0.4324176873793241,0.4520243330642994,0.4763971204891348,0.5835792071580519,0.6144538829264073,0.6053684616322907,0.45264955569154813,0.5523617068817505,0.5268728543992341,0.3880637044943573,0.504319260432293,0.5477154875918769,0.4441529061032787,0.4027543647577288,0.42214417640572505,0.4271300480526532,0.49172116750012235,0.5306467503208431,0.4057587537927656,0.47992697256155964,0.5190081803904805,0.5534039415683342,0.3949761877412298,0.45007708905011673,0.4291558697343902,0.5074691417547934,0.45810118622725826,0.5067303319255398,0.5799253084197692,0.3782199555529176,0.5939437736537582,0.45733390799325996,0.4571392690346413,0.4082854848104883,0.4271127274423562,0.3641717069375827,0.3792279449068391,0.5513292836320911,0.493968581147048,0.45330939197008063,0.5463340586772063,0.5443532299064862,0.37743739454333114,0.6450368436861237,0.3312144481766753,0.567437719147545,0.36152575553810434,0.4277576144474678,0.44756869722104947,0.40184106576525996,0.4825763974196648,0.4403049000640004,0.5265987083215077,0.4188620304725924,0.44415725503147413,0.5623604124417027,0.5625516153158906,0.4172713757072692,0.5548335417409773,0.49705087216999855,0.43897890393379824,0.5533987718988095,0.5705534029260775,0.3629973590308898,0.6776930316258984,0.38807920168993626,0.4486031150911293,0.4473005121699253,0.5914200178373551,0.36558816292161334,0.3970545889537043,0.523595405201525,0.5061659911657183,0.5128037745837859,0.5921268687862234,0.5688037503450624,0.6273543668311976,0.38959216511056083,0.4934105239842015,0.40255262574596035,0.47866250519860015,0.5306968494206694,0.4734580652543863,0.5570642539244324,0.5062234814022407,0.30770117682950004,0.43392049964357254,0.4822952775858902,0.5561222738157505,0.5438916476272971,0.5498510895983649,0.44397564326692096,0.45900802577332944,0.37774469938724803,0.5444358297343372,0.4680527706535325,0.41956622738499166,0.3542867690929407,0.5407432893255821,0.46473399762980694,0.3471402584525894,0.4028236313196263,0.49195210840633985,0.39585685589394193,0.4127555589187937,0.4306961624541147,0.4686319304774265,0.5229406144979205,0.3034157411596182,0.4383842600313536,0.40118531941611607,0.5071387964444347,0.44911480881716126,0.4789232552085325,0.557061726575704,0.5910149794846642,0.4497929509419893,0.3277387262011082,0.41954224266294565,0.5042935125658307,0.4419556603227777,0.3534905388006206,0.4724198361953004,0.4107322518359203,0.45034344641132096,0.2601911101943733,0.5423046566568838,0.4822700191702998,0.4734136792601807,0.5329473106589981,0.42984781332481575,0.5233020854865417,0.5021481036516605,0.3679297548844099,0.5479454227492709,0.48378629742754703,0.43789769272913276,0.6540973325686493,0.3960522195288709,0.5062380728684496,0.42563946092091376,0.4755782310905505,0.555676418538313,0.5981422860161599,0.3993388502015466,0.46691618709334354,0.5368588932714998,0.460910206313523,0.3831473114371381,0.41749660518803855,0.5473079716292399,0.4470862947044857,0.33236718028242046,0.44077263644572867,0.46512909806182107,0.4425219658404153,0.5171870463512733,0.41897866251579235,0.4398382896708486,0.49437986107412835,0.48384361209021026,0.43379092790316837,0.4317792014002517,0.6152257831581553,0.40815278049020165,0.49251522103025036,0.5119932879068645,0.4921522463720596,0.32113479761940045,0.4615019769553302,0.4630351219715712,0.4176964363068362,0.4307675251943183,0.6333099616103289,0.5570357337750664,0.4595308704417028,0.3633672661535251,0.5382328291119279,0.5026916093352929,0.34823605991478884,0.5100084306527046,0.44476970876595,0.4350299331761629,0.3325716965823207,0.48090361318254093,0.5139257603778209,0.5076615982800041,0.45069218484870516,0.42656906344854517,0.2851245201888786,0.48020435171149706,0.46959990288855874,0.4396700191068719,0.3751488855248763,0.455154557841003,0.4032247459189985,0.4913214338000406,0.4443423902802731,0.62639151204251,0.44797634600253433,0.4040071231209064,0.46257131157923387,0.4943681522107921,0.5138054327142545,0.44115154812569607,0.526600432409073,0.4608197482023668,0.49049633905534845,0.4940641837713741,0.37765757789832805,0.5722056783564575,0.40566128567555215,0.39821016747488225,0.46112666209213077,0.4773709475236447,0.5679548335007066,0.5221793870876001,0.38281296494881534,0.49163320244807884,0.5900826142549962,0.4146903113136865,0.535480570590884,0.5043977457170694,0.46025214096038763,0.46567869461158046,0.43575099907914666,0.5398578571330882,0.5025574908707532,0.38382769461778,0.6086821798242731,0.424965759407619,0.38895006387088293,0.4723237941778689,0.3941576880128673,0.47087309813410033,0.4800014526203932,0.45788229125426644,0.4087911281743145,0.4092677758805304,0.4587773660799487,0.39177663182319905,0.5745843880846879,0.6131382466423997,0.4695025675505373,0.43221750384870455,0.35369223978042136,0.4863995602782344,0.4885162031777436,0.39031925641154347,0.5002485406151501,0.43840049503573897,0.4507427719128578,0.4330899979131223,0.5649370326475022,0.40153385310389844,0.4991139014284171,0.3473315390210913,0.5590995985868749,0.4980988095039951,0.6327963533084584,0.5305815826133292,0.4898292434547762,0.4672624195831316,0.4494350918518131,0.3467872034729418,0.43362648318899966,0.4875512944462074,0.5092611047122573,0.5861043026110082,0.5034271033831388,0.5385413377922904,0.4955781530880081,0.4756264167622716,0.4186194191171539,0.5238259613697209,0.4094773581457199,0.4758906553351311,0.43719702996841475,0.46066360703403664,0.49200638692997334,0.3284978837944323,0.4584450534037266,0.6370332755895067,0.5847284667666885,0.49859865222156197,0.5466440823096791,0.5519593731573815,0.4138407544911057,0.4333266691424596,0.4779714159137476,0.4819126322888084,0.4550721424691697,0.40195698197182894,0.4808166873537689,0.5757051742848608,0.5801555390883639,0.5187149246767396,0.34173228023332,0.5599702471266144,0.5112488269569407,0.5237878945859052,0.5141998301633419,0.5070975487442334,0.3637400988033731,0.46558873641895765,0.5327957414033081,0.4094455856250341,0.3806739276528671,0.4540282420359983,0.46146146836926166,0.607802149545254,0.5885437775979347,0.5909792893459554,0.41111041829955897,0.48389975739167385,0.5077592871602595,0.33124335692154017,0.5660026290372846,0.503738269388238,0.4259599449641347,0.48732881799408095,0.42012648521550766,0.438840578512642,0.47621593105327636,0.45039723246959557,0.4317122489973114,0.49665932208284663,0.36004479663214417,0.43790464038236976,0.41975441122730694,0.4947384332083421,0.4800650434049251,0.4867369101018771,0.4193130963128739,0.4915168407695955,0.5684862906084801,0.4069655865398773,0.36972731667454517,0.4766501934260468,0.5570699897835127,0.3885619725308833,0.41973486859499526,0.47860431502226675,0.40078368214256743,0.5808742374587462,0.4177768625541391,0.5512314779121407,0.3913300337937529,0.5720659473188611,0.42363205247771685,0.33115711524710273,0.29482106289616716,0.36548088978980636,0.39706743720156745,0.4407277971641109,0.4670412989982597,0.48126792145610703,0.6250101759789595,0.34126059058938196,0.4979870120370538,0.5143133237628377,0.3555820284955044,0.45154785254194696,0.4533218838516838,0.3115913278616586,0.3820087110730952,0.3993661182129881,0.5503776790695009,0.44953567469904687,0.4836090173431215,0.47937612144742486,0.48104749275579145,0.4793867436030306,0.4562680129500754,0.3865313419584227,0.4431591577777144,0.5133928835331131,0.5593544542584843,0.5201031029506187,0.41782402006968433,0.5125144739859117,0.4383620201678181,0.3500369363614757,0.4437581445954878,0.5169589978546546,0.39085425486700137,0.5901345546784149,0.39620985897599065,0.46470750533453775,0.45628287787374744,0.42597419174942225,0.5340661407022439,0.5416876959816337,0.4869690695551732,0.4868333338965011,0.5225449655918463,0.3587675701545116,0.43674810332130437,0.46545760761293326,0.34936618670947506,0.5374983859384199,0.47919646455253395,0.46207713577653187,0.3808360517048175,0.43980192535650015,0.5649931809257642,0.5399818803428691,0.49838372773925865,0.42536583470868916,0.33949559703947146,0.41277344665820076,0.40888245734860756,0.391734274274744,0.5198857677082263,0.4450285981972405,0.36067920725013924,0.32563188894935224,0.4612503181006752,0.6218414993260849,0.5029378462877088,0.4423173949566283,0.36573949390881905,0.4475502125636676,0.4299658292884557,0.4947735806236626,0.3298334079592004,0.6022014235547293,0.4304065869685025,0.41932387863656856,0.5848243944307665,0.4354620856083581,0.5014502379365828,0.5234648063849655,0.46554184012535127,0.6187838737036125,0.5103371382128885,0.46590424024570753,0.5354988226955902,0.4080919441203073,0.52431953820788,0.46714054124683135,0.44263418932648263,0.4010284751064401,0.4715003388334126,0.3765163876814278,0.44322706385602423,0.37569100262485805,0.5147302039015319,0.49474868789060045,0.4891673480355141,0.5390691952686333,0.4130007437709928,0.718641366023803,0.287326795857205,0.3866376760428544,0.5093664522432819,0.41822496458697894,0.47715054243436383,0.4732580199303102,0.435309775163872,0.4198592543832178,0.34194851010098193,0.42934254938946875,0.4621426174011095,0.2881930405750344,0.5739116717214601,0.5057840474054036,0.41203097377344955,0.4851764314306493,0.45593000437788006,0.4595787316518773,0.4017375954540556,0.3627328005247135,0.570172279501159,0.5321281234938051,0.47861513152110763,0.5219104725979142,0.4400514214966525,0.451137622534735,0.4890067628301932,0.5503064287395796,0.47248223976002823,0.40138457189230636,0.46228235794800593,0.42710493517986886,0.5761804712789875,0.37943743656942763,0.5921913899326793,0.5920223582195971,0.4171482045480198,0.3880778828632166,0.4536127815572751,0.3859075422701139,0.37131355495071383,0.4572591675372443,0.4612910339231286,0.42464775421999423,0.5133161302953054,0.4260142666842651,0.305794757726164,0.5114349676432889,0.4897785815504554,0.3268777848929428,0.5489989173922752,0.4630201490593294,0.5270470489983591,0.4755538312018653,0.4292575331269155,0.4827095346375488,0.499633349348388,0.5045573889716157,0.372019520384532,0.4417199737178819,0.4253280564036107,0.44553610986298137,0.4154602736232706,0.5320790349259684,0.5879068323054583,0.44504216006047376,0.5271274474564305,0.45885716206512606,0.6697978876419444,0.5621897315395387,0.46488206988997344,0.45914488684453236,0.4475430749444262,0.40933327586429147,0.4606825307433742,0.4026779845774883,0.4727871087651062,0.4342480853899241,0.4243462967511178,0.54479359164056,0.5420869682620811,0.38796777578223224,0.31120799499683854,0.3159597487961434,0.4372776588275208,0.5366322340904132,0.5204080269852429,0.5139617054137889,0.557405363046227,0.46961089066258543,0.4046639050096021,0.5935912362644581,0.4119808088512915,0.3810304476580187,0.45055065969215147,0.4515235286266774,0.6021855155048835,0.5257089543507462,0.4766250722597062,0.6397744111152901,0.4272758621365394,0.5591130844363391,0.43134185059589164,0.32292638251858985,0.32182768014395713,0.5152294625538436,0.4899369890551632,0.49432897794153263,0.39047919365037953,0.32721123163695864,0.4077986154496961,0.4734052715580899,0.48830666897467506,0.5303876458985319,0.4139241003491897,0.55314275221758,0.5525943372757328,0.4006904865418229,0.47235871849153177,0.44743232062912097,0.4518811025884327,0.4710742064578717,0.4787405744333254,0.4533911855597416,0.405001041059956,0.5114286088166117,0.37524618283218436,0.49109900705500825,0.5011596300337363,0.3260841696043602,0.38775873736132827,0.4953384139597641,0.5120716819560409,0.5262423071742388,0.2683244092358477,0.5645690857172155,0.4458227411094036,0.35861640517696125,0.5897375502081698,0.6196462680284566,0.4687805221254691,0.488298849205008,0.4168369035258859,0.4017062050264119,0.45067722447371145,0.43525171666855594,0.5253235713007225,0.49488688143184245,0.4213238668217058,0.44947344895976854,0.37507978967919087,0.4618495869028059,0.6050299494748312,0.33116050271839537,0.5213437654436158,0.3792550490961824,0.5419469176275548,0.3359424836903034,0.45053995350089754,0.34088417199520366,0.3567798492105746,0.35991411577441595,0.4117313687960452,0.35474858569876244,0.45682027142843923,0.5097168962613555,0.35963331875117743,0.4001069692615086,0.5061049674885266,0.5323167817137453,0.4971070817729724,0.4776054851718514,0.44955386410775483,0.4960766284706438,0.5043234016069676,0.4836055161708858,0.423747644325479,0.48788341502460003,0.4624748744730212,0.5485129072008186,0.5022072791282516,0.4375943950046059,0.4750764962743558,0.3241372596316919,0.41158128881124806,0.48283483302604213,0.46644764741635025,0.5064032873565245,0.42474028473475667,0.43690073711102656,0.6773642954618218,0.4828260665000089,0.4641140401482439,0.4893340410604168,0.4316500825744811,0.49398912017538993,0.3676387571568992,0.386363570115008,0.3894934472283962,0.4649039608567206,0.6296012569521932,0.49667593083390504,0.452284122566392,0.4383632929542832,0.4096418736654638,0.4096642085698003,0.49907961478639795,0.5041068786358169,0.5118593108288331,0.4331504658915168,0.3576587366983561,0.361838328518077,0.4088215933233881,0.4227333091900265,0.4161692591396632,0.5266300491484276,0.5087023984465097,0.4791515690073686,0.35525687796690236,0.48760222036205736,0.47747839372546047,0.4497159944021888,0.4774148183752689,0.4025372976410399,0.6001720809878334,0.4075024742134037,0.5622040229892754,0.5781587923272581,0.3844320081136661,0.4968224647058244,0.4553217563681746,0.44336690700277204,0.4109672795577685,0.5648405659524226,0.33176071040106264,0.5148528459407881,0.5219611624465776,0.4271138058332983,0.47453745812696013,0.4115622808870374,0.4969144192689171,0.46439070048336273,0.4049507509222135,0.5424462806961438,0.5218072881924948,0.4574028875096177,0.4551784170708031,0.4073231265236628,0.5546506819913053,0.47569152179830704,0.4862074644058557,0.46422002867468265,0.3865242587366503,0.3687476561486174,0.4108122192387997,0.3532539661948331,0.5675755325670715,0.4983811860786006,0.39270376823525305,0.51701443801455,0.5525445219410514,0.4437010103652005,0.40781801911030585,0.3059892892794854,0.36099167658238407,0.36279702130687175,0.5099745913972715,0.3742207118422651,0.5389305595776943,0.44063836820200575,0.46494238758864104,0.42854615646786814,0.5296803213083432,0.5576526647027746,0.4963578136104194,0.55959826993353,0.3864972492431955,0.5288213714227927,0.4659543208225199,0.46742149118078624,0.40583847437839304,0.4491605319366896,0.3870606619521198,0.5205601550437801,0.48564142233548757,0.5509413433562903,0.5199400596294854,0.456817615549592,0.3021955208690424,0.4662038400749624,0.4005705035456689,0.5314694715142417,0.4773722774604135,0.4616103658202124,0.48693854108539897,0.5138868182244907,0.4480512781042915,0.4997023339322181,0.4926461206728979,0.3963763167126829,0.4619923501619068,0.43293130157987636,0.5254371061059496,0.42309571872379836,0.30684028333301483,0.5321004655246355,0.5418434388740514,0.5024898837879117,0.43211191385014464,0.42916099494923726,0.5356258015532575,0.44364840576930137,0.5564742158272421,0.49558219720688,0.38352351119909034,0.4952115701518261,0.41570402842537707,0.3690178170788484,0.37214856061401846,0.643907138887026,0.32662023908840965,0.4037564338030934,0.4815049413736027,0.47873784188078267,0.44838812057495636,0.24955265254911344,0.37244013825435063,0.3847723651254783,0.353435029319809,0.3772530141021554,0.460437002196793,0.4801437254177517,0.5152291931506627,0.5163261911955948,0.49998286505195166,0.5588624077357458,0.4707488512577682,0.48472350387004876,0.5219111299632476,0.5662139453485684,0.5162559236245097,0.44553846701787275,0.4353539399554232,0.4399844826830116,0.5613347705033613,0.4540790822092422,0.44279200512620126,0.38736760408876614,0.4667800795944145,0.44012389015334286,0.42619187420887744,0.41687387552591265,0.5176056372202433,0.5077000404732298,0.5292408465326223,0.38152688045906835,0.6120520958425788,0.5848022702446286,0.39717147980957934,0.40591776488172465,0.4131405476217552,0.4390613122743028,0.44782788544754537,0.43288729856309927,0.46162795678963087,0.4547715216535923,0.4227104774866402,0.40491565456323675,0.6543238490868005,0.4467265806405539,0.5494171776362181,0.47152614128615256,0.35551145695608666,0.34384396984335375,0.32182941985700714,0.5632304055851691,0.44038345608839546,0.4544157696331677,0.507845606042332,0.56183884498779,0.48060344145845907,0.5091779788165526,0.403578270129549,0.5374953322797726,0.3146467334020847,0.5129938109992305,0.4392490663592154,0.32093654753261386,0.5593560550613328,0.34789159551834953,0.47897413281664675,0.48601894491131165,0.46325525642064874,0.5012894853642075,0.45888948739065194,0.5151666854328926,0.5037773424107012,0.4516112878208821,0.4416500876155284,0.4168568824053618,0.38735016684542695,0.5226503450824106,0.4400898843204861,0.4467308327092045,0.5538718562412381,0.5072773435563402,0.5574377895228472,0.5120443218955137,0.5717297867462601,0.4066974364253414,0.4853565831077592,0.46976439350309046,0.37023044320611986,0.3319000869536027,0.5271109568656057,0.5242845018491472,0.4516437863618348,0.5208574620407804,0.5292357239725318,0.5429878086228105,0.6188970806841241,0.4817214410819204,0.48698339578803956,0.4829761480711855,0.35605740200002034,0.39562669033351083,0.37786970949690873,0.458858197651777,0.5525720538051452,0.5176707331827788,0.5501212141554034,0.5449454542698875,0.44582827323791857,0.5638178630354035,0.3014410786738415,0.4441582081335522,0.34589659653042376,0.44823473073705633,0.4410757771553763,0.4103609742425045,0.47352566913253846,0.44738083666709394,0.38981369474830907,0.5398157085142207,0.448375252612829,0.4036424334129987,0.710262120339724,0.43731487979972716,0.6400320447553017,0.5007628786326562,0.41430460234043776,0.3660452431153263,0.6023761355869498,0.2735862709469039,0.476342328790556,0.4080741818266652,0.3652539972651935,0.4136396083247084,0.5397860148525397,0.3548652614767284,0.5218544017737751,0.5426835943017294,0.44976179871643734,0.46617649070142425,0.37024727362550064,0.5016663104282689,0.46055602519875244,0.5139969298940227,0.44977190792802024,0.5051024966793467,0.5674365152937942,0.46141294394942567,0.43064490266488453,0.4632504328801009,0.5154675185139199,0.3374505156053268,0.34393201167994775,0.4392145818644451,0.5073992602024744,0.5283862266577899,0.3759942319329935,0.4832009135216244,0.42460182240738975,0.43467440207514046,0.49368085863689937,0.48733919468958636,0.522937144614855,0.47591628664530483,0.3664509814967181,0.5607767048551391,0.5084829496901625,0.3804610839707561,0.49945625759333434,0.4633068356894952,0.482081037249195,0.5258989684959053,0.40130294547771284,0.3760938774075614,0.38123135180884815,0.396813378187669,0.5878680223040303,0.5134485925276302,0.4990891693885592,0.4773590837963591,0.6028358284135067,0.62182123741523,0.3738154667508231,0.4149575991864065,0.4930618638099855,0.5115439659316294,0.39292523550058667,0.4769754402319848,0.3993595761502614,0.5034899091448125,0.5701829135826099,0.33465796767639017,0.5106733824851573,0.3809880938293321,0.4508080702525383,0.5000569006365131,0.6031490696501223,0.6364595311193281,0.4383316296430538,0.3903967916779794,0.30665143900189273,0.4396257425699176,0.4381073671250386,0.5503667220483272,0.488649575978734,0.5234256871370669,0.4879259483541087,0.45797813257391523,0.4225550411706729,0.4483853626287747,0.4562285341787465,0.5006810835737312,0.43838848362621036,0.5443189641519492,0.4205836135809621,0.4373718688968793,0.4405797229553439,0.569071371231027,0.37988091564933035,0.5519977203003644,0.44146504294875183,0.4211483760206407,0.4801859237875266,0.39855679289143575,0.3644117112810999,0.4584172695229447,0.2807990860370864,0.496586863223892,0.4795949859047617,0.6473410116357807,0.32507834422957055,0.41666447694129427,0.2644685734044145,0.5625756155296546,0.32747594794484997,0.3857873201509462,0.3814799347454196,0.5094380887569372,0.5331647801290783,0.454223050909056,0.4090816294101537,0.3428644984256503,0.43087170757677973,0.40837878721305915,0.38023325442947087,0.33538243882161356,0.5733248650227554,0.39180952812559866,0.41530607904206385,0.40380443044884473,0.5194321665025088,0.3798067131435492,0.4470413850768446,0.359037277423112,0.41141901864460834,0.45315467228133394,0.3523586784712296,0.4415200272538168,0.4994555073451698,0.4026419683797816,0.5128856576278855,0.4567050670570347,0.4893571124382424,0.4980488030312806,0.4475181386659517,0.44604876572552093,0.4481635802015594,0.5498057013970821,0.4199345807207322,0.4131235605355796,0.4865881834103185,0.5652173943109042,0.366320708112722,0.4326320879798751,0.3563243934622554,0.4878174789207654,0.38627541347707306,0.6606546309493111,0.5027596262753921,0.387594763775719,0.47362680813011887,0.5110456155170996,0.5682788329793147,0.5468192798077215,0.6160265777798809,0.4697753826386432,0.4773303607983074,0.4825654798979733,0.4354512863387961,0.5056622143912801,0.44325008410044453,0.4614070535896709,0.42943849273808665,0.5280430764765756,0.5220956588059955,0.37998607635335746,0.35892808167732915,0.5334287031683524,0.4447708364788291,0.5734189849688923,0.5732262903758688,0.47039593388018935,0.4307310778169696,0.5169587827174401,0.506583677395762,0.6219950009887288,0.38493735080056174,0.4562048638579068,0.5806658454144707,0.46543935846923556,0.4994452570065687,0.5793014859885652,0.43388707031603213,0.3473001922392203,0.31406742987741987,0.5013090282963331,0.4324062223697813,0.30785867090025154,0.6015747253718061,0.4664023424032677,0.37019148406241026,0.37025769693827726,0.47666560118439366,0.4059408644542989,0.49727957648224613,0.45192268882025094,0.39821909789626914,0.3341042874986341,0.5363220147605753,0.5971503710711865,0.5879355653590078,0.525959285826001,0.4114825814619111,0.39589825188218547,0.4908610150332557,0.3202017828633057,0.5263780373634269,0.3793656244915853,0.4503287646699321,0.3959155741921026,0.41075907904841696,0.3950202682784037,0.3763293102941341,0.4901825840656959,0.4315187619968191,0.5223049058540623,0.4709665110813847,0.44634143758112244,0.48377283051694436,0.5263739569796749,0.4898247563585942,0.5595555742104157,0.575808122697594,0.4092796468214253,0.3625946489791187,0.39205168855138883,0.5324287974806031,0.3886730303949936,0.3960051082928882,0.45199269111850315,0.5461264361539823,0.4326396698852483,0.417859286497507,0.39798940590915016,0.45084546086108607,0.45622657189466187,0.4555824011979904,0.5761204191724129,0.4309807138971098,0.6205886965173256,0.4956215635636069,0.44348129290460536,0.2116208630204541,0.4435871269133193,0.42747299771168157,0.3628205400426767,0.37554374855900874,0.44488187515717137,0.49845876598393696,0.5162417665208499,0.5293429537776829,0.46168674307605656,0.409701135619294,0.3588592306425526,0.4753922385873553,0.5009870032528996,0.3539893576057365,0.5510680447574884,0.6435956585968944,0.47829341076565624,0.5137521710971394,0.4152558897335757,0.49583413103208174,0.46806235155092896,0.5441649757744433,0.2678502939328065,0.43222913313232236,0.5161566933609942,0.5053343579846965,0.5386108817729686,0.3844902084633207,0.4703520448541077,0.4298249903552525,0.600194752202784,0.5601134496544176,0.4013419986787377,0.47716390198068015,0.557124430554219,0.5607695970125387,0.23828399702792127,0.415244949216286,0.49391242093411375,0.48895496023323315,0.47435364979878175,0.4251349404437111,0.5376576303681669,0.4781309670961175,0.33765899641883784,0.43433941396858405,0.32891474118382075,0.3735567116712764,0.46183088018419166,0.601309084477097,0.3740686682713044,0.40803519532206295,0.5246931230940007,0.33215390595916666,0.5216501899724322,0.47775197082554105,0.5809224166265131,0.48161840905540443,0.43694008576320004,0.4573017096967068,0.3191505190548554,0.3670610371209265,0.4468169986831698,0.49208769665549407,0.47087798444449946,0.3527594815551923,0.34740124449952764,0.48206963486080123,0.4935166176389776,0.5152012345708813,0.3110750683026787,0.3882297532036638,0.5445690185958252,0.5379720197959211,0.5730676235396674,0.4271908490793462,0.3858074532188234,0.4775224420696154,0.5127399924949073,0.5830580717200993,0.5241004107456796,0.37946643448490897,0.6340591878352944,0.3953486006588924,0.2818411498743322,0.5422908245613746,0.4803099682306791,0.5516750100230503,0.47708390631312997,0.42358422803171414,0.5442206525238491,0.4937433652799145,0.426513487067933,0.44791878525483525,0.2831737337326446,0.4597283743246901,0.3899171424391002,0.4695141403009173,0.4128798495834306,0.3775804062098516,0.5189393176770278,0.5080801463661508,0.4546034864293053,0.3976617941814375,0.41695624040570056,0.4823984074073176,0.5218781852136037,0.549442339564844,0.42415200938031916,0.49606494458400985,0.4830535257573598,0.6574799819046295,0.4531377250870317,0.5023779860302117,0.401692764277143,0.5386374112777659,0.7259392897659095,0.4641173745065935,0.43078233610627126,0.5671768240368692,0.4955079440383613,0.4931876245124499,0.41509513462332864,0.49635672404569264,0.5271939450671762,0.5585475156720825,0.4624943583850804,0.31865259067833657,0.44151388917967527,0.3764502370820629,0.388011683911314,0.34698881094408235,0.39760125732519064,0.43377245343931975,0.4548635572093542,0.5104520900313636,0.441108757829756,0.34102695798224836,0.45517636592945826,0.6141189523737115,0.5619180937430991,0.4686040246156573,0.47514729041800713,0.41915313150553285,0.39251950327018537,0.3613566412019755,0.37893203912225804,0.5280889037560497,0.48479053194465693,0.4061893409434201,0.4114369366564318,0.5297928531333889,0.5954072668510676,0.4711616325646329,0.45139711042203673,0.5156817815556648,0.35556659592129086,0.47197604211314853,0.36518071526677304,0.45865045988769026,0.40556638401135214,0.31164572335356916,0.3560975384151627,0.4114289018304181,0.4907032106900642,0.4641262163312029,0.3317048637676076,0.45518348654766017,0.6325579008807428,0.3881518263358457,0.4522151549904549,0.4171999830374487,0.6150349142403144,0.5665764187042797,0.3480394161474702,0.5596841611671103,0.5007135133480402,0.4131656395245054,0.5342231763027694,0.5912872070579337,0.3934522316714641,0.5119817754807588,0.4744633517382844,0.4295473176928458,0.4366621531756758,0.2758059245618535,0.4963661958865727,0.39615802419508367,0.4480505467810777,0.4465076885897037,0.45766987248190527,0.4640842417736171,0.5283845239007929,0.4581549100603867,0.3922823214549022,0.40710090928551607,0.48868273713134797,0.35917171709420226,0.46900813945325814,0.34706765006487583,0.30298021448037665,0.3531306500785583,0.35305839571472586,0.5003683187957906,0.37438189129369676,0.4052065918779601,0.5350773636454387,0.5789293466646677,0.5785440889848128,0.46656488113300004,0.36304461176328673,0.4332200216216882,0.3979197096446744,0.48182165576423536,0.3255114086613312,0.4075058151030417,0.40964346217147546,0.5376336601317895,0.38906962123469346,0.49461695326471483,0.3462167521671227,0.5571967537332387,0.48846486278291007,0.3942024016734036,0.4643685559511588,0.3967083353171654,0.44509465473253684,0.4996517352139724,0.5066115168451558,0.5958609712740199,0.4601701068490866,0.4278653101983276,0.4478508310708625,0.4885971137517168,0.43545150174002284,0.4526797400204125,0.5396852332267158,0.5670672707097546,0.30952068199543453,0.5368144488128167,0.44485597359943435,0.4417192291089293,0.5001384299957871,0.38431947469338434,0.5671860065036232,0.3976482768171204,0.4302514326052782,0.3092847577433866,0.5451100199331967,0.42048382676774604,0.41763198108890914,0.5417949841895978,0.4909822111398777,0.441623053687688,0.40263708748531873,0.395406472236738,0.4318911770926867,0.5429221627630019,0.5606519081954416,0.5102587096893564,0.4416499049664665,0.6219114812211202,0.46002275566473544,0.5246540396090148,0.49366865315861,0.6644020581582315,0.40335017500504533,0.5374088029766015,0.41228685811317844,0.42810105352393857,0.5527038763273602,0.5276713681304549,0.41801182286226807,0.4528389142080474,0.41643909277256946,0.3854245200534945,0.5696975450128547,0.45840654941813996,0.4315950143947146,0.47163522866415647,0.38263014607074747,0.3697876346511459,0.4904802402805684,0.5177850223895523,0.4568766124435193,0.492288435512626,0.5050631647406579,0.4405716230305426,0.41325024139298705,0.4077683592798867,0.47487236992705517,0.549097294936998,0.44929163858029003,0.4076877686405187,0.4426878256856311,0.512542212781385,0.5054152611945096,0.5777198103517266,0.37783461627694,0.5333543796555416,0.4783732395680855,0.3752244671509785,0.5079426885690139,0.48360229125059334,0.5436605542039221,0.4624057042307319,0.45602668237652505,0.3997136076608756,0.3471051562195991,0.4277215645161631,0.3479581749880761,0.4727296837559495,0.4823802017656549,0.4323532074926948,0.5679962379341957,0.43307011635911086,0.4742866871617589,0.47803173543547234,0.5030869694554922,0.5087506123954577,0.5523294698559197,0.5180744895256422,0.470355291365837,0.3649657599656196,0.49294723195287454,0.6288786366040352,0.4674294482799578,0.34418608032498066,0.3971155036003773,0.5312309539070782,0.5278050288365526,0.3873411348751589,0.5266216246167423,0.43031705936753206,0.47297284713002313,0.46554737017211417,0.3719584314796871,0.36431826210656854,0.3259892769552726,0.46735877247416985,0.5281100070767267,0.4186346542356017,0.5142071148769866,0.4471045429343904,0.48096905601864093,0.3677475099073287,0.573426348780588,0.5279638216574353,0.5522210430061343,0.5598112138627225,0.4896637141961621,0.4886433730267521,0.3742551677785427,0.4996398024646812,0.40783090799759875,0.4343340080840893,0.3123122416563956,0.5943611235346629,0.3745164576237694,0.3136822661308681,0.44521586133259244,0.3284448634782925,0.47723555634673803,0.5086258755569051,0.46866771477382635,0.5731717967513025,0.5284212765084947,0.49818972172003606,0.5157522542372436,0.39922754564307245,0.4491323291666734,0.41103146488269643,0.564516493306499,0.31263597350463196,0.5286610985880329,0.49180124437443484,0.4922538727684624,0.4202736504963112,0.31650663826053893,0.3987827619252994,0.3119389905056268,0.3756829467723522,0.3888946968329744,0.4699009975017089,0.47478969919103386,0.3843511026360299,0.5106717769125517,0.3288158833748317,0.35046369722873444,0.391783767371611,0.4015755100269199,0.373032807969187,0.4046515589526442,0.48671823137256315,0.5817269550843657,0.4061596098847562,0.3480480121452216,0.5684002163082024,0.5514204500816172,0.423027169561266,0.42080874948708236,0.40518933705251015,0.4667916192721699,0.448458691074813,0.5131918059048417,0.3933405241710909,0.5365147546909451,0.5060827818445337,0.5660383422973897,0.3258800584620636,0.4112392830410327,0.5084251458476999,0.41588989508331387,0.4123633162127368,0.4253181163652497,0.5094575146353851,0.4721368535375525,0.5408796523515194,0.5293113740903252,0.5284249941162442,0.5075535535412478,0.42189692981406113,0.43227718790153746,0.482828334947726,0.4055994007620574,0.5665466612846318,0.3934685196196573,0.38910438942028336,0.4118994136189034,0.49831555455649346,0.5658752548215168,0.40952607619946657,0.4305796957232972,0.6605821265959119,0.5008684460214538,0.5209303803676022,0.4321495348913213,0.40748948091887377,0.443154098993115,0.4451396935480703,0.26238696943733447,0.446127820099623,0.42933401555130474,0.41601608043058264,0.49208681270112836,0.43850409478984853,0.5218178174492326,0.4048204788699188,0.5614198436781235,0.4209479240195283,0.43936957325135717,0.570769244317186,0.3938928544433803,0.5284346773610935,0.3939192059782231,0.5720751752157273,0.5821516457825489,0.3576978875356168,0.643976724740015,0.3547482844591002,0.3155116098059879,0.5930908196771512,0.5421630207019795,0.474568344659732,0.48548969151311605,0.4772525563321788,0.5168868112483335,0.6361282740112107,0.4750582686972192,0.4489189205543692,0.565258029181812,0.42835668759895423,0.3840131722782657,0.4904351376797066,0.44072293871425505,0.5408773332192025,0.34021687738867074,0.3947969836198879,0.4764594434093165,0.48400257073417374,0.4948621368868312,0.48853490324038507,0.5818366661599009,0.3952897953838248,0.47856293864963656,0.43529152305189395,0.6076410926671163,0.48431716736055797,0.5790873246515013,0.5159066239134887,0.32376508784828495,0.5278378058564468,0.48839589605600525,0.4873521147014683,0.43625341506532883,0.5077764883835174,0.3740417009652886,0.5004334953458399,0.4673408858406235,0.4316141606275215,0.5532304891484747,0.5051854694016328,0.4702704547219073,0.46731405730601466,0.5590551655847668,0.4670784974295424,0.5293008290118845,0.46997628789454887,0.5523383804870793,0.5641911529342275,0.41376837475879763,0.639955321031215,0.5522666741086782,0.4941203856580025,0.35541248648011836,0.4232637136597022,0.4548983316029048,0.33223740700311627,0.5113970467229715,0.278155949451583,0.47601125282958184,0.518044141594965,0.5362108897709024,0.3359005229684209,0.3951521440870285,0.46648521094827217,0.4255549928805924,0.5818686367390282,0.5090711853104918,0.36955234353254185,0.4000626836520205,0.634969356510804,0.4497612606908339,0.4390405799913653,0.532781332057513,0.4475629135155124,0.519267919223484,0.546064707312302,0.4849804270062981,0.5206740455392865,0.39438841928940377,0.34946297402949666,0.5106711305812094,0.533174777073463,0.4819735235948193,0.4633907523200634,0.31141872553336347,0.5614055349719902,0.5135629683330899,0.5561738016893086,0.5113075765437947,0.48344769112503994,0.45520498079982513,0.6347232356271062,0.4728351968632783,0.33843787811867926,0.39873234898671256,0.4326739733444541,0.41417989676154177,0.3216500717955851,0.5299469512583457,0.47105153090445745,0.4125402245391808,0.3156627248963899,0.6099121394083497,0.509634094272995,0.48750911278717285,0.3077941195210809,0.42047603427478286,0.3854652305859664,0.4734071960920466,0.4219509450713639,0.4449462557496487,0.46173099624028574,0.6332741191072686,0.5437862347634168,0.6550951664198178,0.4354803125245622,0.413540492757928,0.5069703137900675,0.45557080024055835,0.5151238468749983,0.4798657068473964,0.4907028542120528,0.5839974356608864,0.4543510301523538,0.4510604627400598,0.4582439370094159,0.437719473236091,0.44098971409715093,0.5350059401236117,0.49708697541718444,0.6490709275805054,0.4333753581377386,0.2754197641704138,0.44146859975875513,0.4586402423856488,0.40496227582822253,0.5121410928705169,0.3801619940364187,0.39893154346221127,0.34889824684948867,0.5821657059521296,0.5376011150896023,0.5909741490683675,0.5038639585892808,0.5886099466189336,0.43206540902133966,0.49505679189554735,0.3925707034194644,0.5554209503452758,0.5027588397406872,0.45667030755078497,0.41411068604976,0.5176066303595833,0.5343138503736189,0.4006356182368982,0.4741054722418288,0.49184865267929917,0.5617069033813283,0.5070221550476958,0.3814402911186905,0.5343755273346671,0.4725120349674129,0.3762811079916998,0.3932104178196499,0.4098793524250013,0.3844968378443337,0.4530498698395484,0.5750120136962822,0.47447393297919993,0.48493690163916336,0.5453249361799598,0.4259237672253934,0.4691819230080986,0.5465911805275825,0.4399560563591851,0.44241875578124,0.3921337915710776,0.5893969789907038,0.4332948767460091,0.37985496848908296,0.3359617899782892,0.3222874372340253,0.4421613823589534,0.4433823833453173,0.42508968925604734,0.41430191106852804,0.4539681719099918,0.43816166850909616,0.4470663008415738,0.44493272259193495,0.44252468238686254,0.5264673418652215,0.37562805921036346,0.42832620553890954,0.3896091808433733,0.5193355102264605,0.4691670412677541,0.5288143912544538,0.36969339731321577,0.47550207833097097,0.470552454748124,0.46441200943237515,0.5302655361481968,0.4695728038691098,0.3652557590267351,0.5750614785354213,0.39208749351356537,0.510286520736545,0.4308917003304125,0.4251085890715915,0.5163175127153405,0.5157492893103653,0.5707209861104635,0.40923084223098444,0.5053343403697926,0.41303467372955266,0.458116942871751,0.4111289610121283,0.51022473755985,0.5719324612995673,0.4814100161337354,0.5249835071605449,0.4860701688941628,0.3160905257334881,0.3467074780583967,0.5526893111952298,0.6073534119167462,0.49044255011209137,0.34108587564472187,0.41973509164044825,0.46120489521987723,0.5033578134017529,0.38886207150174534,0.4156323463632085,0.44628994955906226,0.4127264073471558,0.48109957089923927,0.29331012608061463,0.4020753081928108,0.4203546176466559,0.4992681865557362,0.3307397628297724,0.4750226104333642,0.4776346541110059,0.37855766276177044,0.5755461004850246,0.6109156835205127,0.46114949489805884,0.35976794252970146,0.5024248390481346,0.5263268286051793,0.4633406149705482,0.43103791929973406,0.5800198899811116,0.2905311690939602,0.4792825164275753,0.50799777101786,0.439165258111959,0.45352539130100933,0.36665352259510275,0.3573940087594624,0.42713813733988765,0.41937943796611504,0.4236617918202442,0.5564078178571328,0.44313202978217675,0.5033010499635672,0.6268984945680226,0.366641737792954,0.44813581037841466,0.36586935977991053,0.36858613663918915,0.4718902110127764,0.42713629670313386,0.5576398551638237,0.5805660330188018,0.5841264291421968,0.5311059613756802,0.3792426577234281,0.5483003045133555,0.5680524180018248,0.44416780148388946,0.5056191912295526,0.49904150103079403,0.5026696234982245,0.4602292813021142,0.4309814737208239,0.46812274137913235,0.5424721458814105,0.54609693212508,0.37764441934047643,0.48183469693793196,0.3682698448787139,0.37656861299723715,0.5168156856966633,0.4298988530173673,0.5620217242401396,0.5078412361018918,0.5103960094555252,0.35447198280984243,0.4575988880022731,0.32359893033299797,0.5128694808601196,0.40812940459949726,0.4691840433344217,0.4040445298607426,0.47818068320521706,0.43375454612089104,0.39269673765695934,0.46230473815169715,0.5913552962337233,0.4950845468629378,0.37567658004831417,0.5951658238728074,0.5311638130069907,0.5119126742824198,0.5116251233385023,0.47551785683421377,0.5395077850776631,0.5593682746992213,0.48184093392647204,0.45665759000343314,0.4831882134728157,0.5604987433170222,0.6500998192536073,0.4302222595535551,0.43882369191153053,0.42378008566191194,0.5494800342201285,0.45473448891207285,0.4519463759983115,0.4374246990327566,0.438261181157423,0.49695881027988004,0.49653263248655133,0.4421003481769165,0.4513938910356642,0.39134674827578375,0.37333927424461605,0.31147099974692294,0.47500964019459035,0.3447646057726893,0.40749834672551155,0.46698436660896575,0.512408402914412,0.2847166798672668,0.47710896409859793,0.41626826092497593,0.45573981131959107,0.47013989205171164,0.4352971510179007,0.4596891574594546,0.5166344968632934,0.4386692036881669,0.4194851938294519,0.4224031986603514,0.4260688629866723,0.5889046298738587,0.5353892885951677,0.4256469351249118,0.48204121638728353,0.2738294332075262,0.3317243057411732,0.5735137070358862,0.49676116242627855,0.3991100548767148,0.4441914935907487,0.47738944146856677,0.5435922722977184,0.3577981968346457,0.430169761832233,0.6344518998836491,0.4498025884354534,0.4627861807547303,0.548996219309883,0.4734160103166114,0.31872413906086466,0.46684966867446787,0.45961261118577323,0.43320018613847583,0.3790559107639109,0.5192382841257431,0.48137700231937686,0.26556806322830234,0.45006519492894875,0.45666044933490985,0.4592722630663757,0.4760048489342086,0.44147488365246584,0.4101768801490788,0.4592277634111522,0.5171303229782753,0.38947397623006225,0.37183762305308315,0.5043371499385537,0.4905365552368751,0.40552585129371815,0.4112194929457636,0.5742950764800374,0.36836869918703397,0.49722437815526105,0.5371945775023755,0.38907640485929024,0.27536909854943487,0.4911114360779275,0.3849031080178385,0.5291348492199246,0.35087126112220396,0.44036388254375697,0.4630611599779583,0.4582125757131847,0.4165341844400037,0.4688833345753097,0.4011137017785789,0.5026544299878045,0.43965296999996645,0.5540725693818231,0.4752182779789648,0.5531952459488291,0.3816728280734104,0.48779737185674776,0.4885201788297702,0.4266867446556454,0.4886999375974031,0.40862689820960385,0.5110074911361622,0.31752909198895723,0.40451238984984556,0.5106623583562417,0.37411665798795546,0.4760110563725541,0.5928503879021486,0.4190643330245829,0.6055580974616759,0.44067715173211436,0.2295753861862451,0.6508364468299894,0.6225426787372731,0.6113297540315692,0.3151097398624917,0.49611668249997637,0.5004739586292092,0.22872622707104925,0.39756258258823285,0.414218289620733,0.3824519478655665,0.4243921044722513,0.42383044107561274,0.2995168236269522,0.40802761706518137,0.5146009547552698,0.5214211136778205,0.6168548204925556,0.6161425134242012,0.4181732408604184,0.3864706147908249,0.4426066793094089,0.5293747312649434,0.5701400694327184,0.31082463528997145,0.43753114742006954,0.38249504131650136,0.3638037378067009,0.5082135402658707,0.5707054819324465,0.5680399528029182,0.48147364125802733,0.5212564881200551,0.4220115905109818,0.5347552713682276,0.4797137142023668,0.49032425384481165,0.4774633937018038,0.577776845387754,0.43760562834497424,0.29425255317858684,0.34876654900601034,0.44939681501398254,0.37955463058551764,0.29690355661704465,0.5852213155526055,0.4443921262881361,0.4142343683320469,0.3731612330009119,0.4509290234763295,0.4301773684091212,0.3546897228574059,0.443271295936902,0.3165656908550989,0.4568417567498225,0.4711121805235234,0.44905291794903124,0.49482128926299906,0.5246670417609897,0.4007198306141152,0.5134949358661064,0.5595982410428956,0.4730637071892178,0.5151587823719498,0.43717925225941856,0.4300516814450093,0.4577366554773694,0.3894810445946002,0.4495605478958117,0.5427116966340174,0.5856886987194095,0.407905374375126,0.34418463618964895,0.3816462599465556,0.5540458344911058,0.41656233490910305,0.5085043720108624,0.4195759781678216,0.46466963791457255,0.38332127633195945,0.49274876371478327,0.4541271794610637,0.5112652659232381,0.35674768177686866,0.4937928569324521,0.4391451804506663,0.4749507032099161,0.3670784086349927,0.4895991775162627,0.3989446544152103,0.46181315516379445,0.41663178775389953,0.4405452115979885,0.5014187887262732,0.3803542584795102,0.42223281322402295,0.45269739463805747,0.554266510483261,0.4474573270983248,0.4651422202654031,0.4561721641904371,0.5985480054193896,0.4034410408843124,0.4780691126749038,0.41177205580796805,0.4175227323041286,0.5357144675223852,0.5500751593077048,0.42222788469048594,0.4117363434845389,0.523934171898161,0.6188082523279009,0.406491621938375,0.5995844440994208,0.4561242031864135,0.3601225941761004,0.4921089913847392,0.5120773100683511,0.4141757124274197,0.45842877351234346,0.5361469399948244,0.4948761338798205,0.3846996723135862,0.4223098357095436,0.4917943191894402,0.586510148982465,0.2856999537321782,0.42504049305571145,0.4805160033172204,0.4963401618374144,0.5503301310473305,0.5136436663987829,0.45857604156230003,0.46266922548830747,0.4343626396903809,0.49954507323314523,0.3591416156611863,0.4802946690463184,0.5367193099761083,0.4319723689910688,0.5205823457838425,0.4485266723252994,0.5471031300580936,0.4542325058693818,0.45917386156861706,0.532924006162923,0.4739676220953887,0.44600657394441645,0.5181515743737742,0.3190688670961696,0.3305697716765036,0.43441008248684204,0.49941129535748047,0.4345942047323299,0.526889901161772,0.5637909548620016,0.508161448748284,0.4361606102547153,0.45577133134247394,0.4135076913953748,0.5262365172324326,0.4281639052988686,0.5553729025345866,0.6355571634608229,0.4530885571887859,0.2906022635372324,0.43676784145769415,0.4058559493563787,0.5732931675278382,0.40192515069474904,0.5479073110459873,0.454032044697726,0.4893150718335214,0.4610706766207046,0.5256647084977998,0.5285567379237598,0.5461016722428942,0.31781460832231084,0.40972274088304905,0.42158486482578006,0.5107884983181856,0.42205668054452233,0.4033385662564273,0.4168753768311275,0.3779579474164133,0.37353702509695436,0.37539310336783427,0.3793075642050593,0.38095618393977454,0.4198959697789568,0.46363864485438944,0.3899499724791113,0.4225537161162007,0.35538425292408843,0.5120458896506742,0.46164304376185766,0.5300478962653136,0.3249932616817006,0.43064533794170473,0.47279354767561155,0.46705874912419054,0.374132977710524,0.5932709609273825,0.5362609402741872,0.3506990783580065,0.47948686326660567,0.4343505422758715,0.3816146266327177,0.39609915016112107,0.40176713317809226,0.6073362287476016,0.46764752706938895,0.3955761999236796,0.49081300684822704,0.46732318109143944,0.4274211118598688,0.570782158355943,0.27399208039405665,0.5847472683507267,0.4689135082959746,0.42867766710160293,0.3895651528179131,0.47821830782253544,0.5128533509274525,0.4337331857220922,0.41446398097816156,0.508589461220644,0.4446733265348764,0.4208318635519085,0.5695479075516517,0.4452392432506048,0.36847760861262757,0.40674375199347546,0.41964952773667313,0.5240730510217892,0.4989294779349575,0.5454503831416544,0.44315319009833537,0.3859278952444524,0.5378296251525859,0.33873868509986,0.387435935405044,0.47900029815955597,0.3279275635022721,0.4873667038752078,0.4274174352278977,0.430523255641089,0.4320873521672995,0.4919779839743376,0.44672287071132893,0.41714952413859135,0.4472935283791571,0.4822734924767017,0.617139869038821,0.41976925873298,0.5485292356176742,0.4097894533935992,0.5132463802084265,0.4717286006349462,0.4716294995197205,0.48365492718865477,0.5196215497461943,0.43732184378011296,0.47010034129806294,0.4998628492887152,0.4917589928698636,0.5135989744854927,0.4511469385549021,0.40735998047607225,0.5614438352928979,0.49130734869398235,0.5095029380079401,0.61047112136333,0.49026438521137217,0.5268763275784616,0.5598655421600406,0.572790701716361,0.46029313619973083,0.3934841439931172,0.39931145398022455,0.43928721980303426,0.46978326447249064,0.43259244368657696,0.4696688418163721,0.38318487582579386,0.5712934810910439,0.5452409804867172,0.40938037306253167,0.49066872451371724,0.4454257979182634,0.4415089965619492,0.6011077571889936,0.46419324766957903,0.42363794056938575,0.550859709557174,0.4453215349498983,0.5942925223418202,0.47877753070588625,0.38865475725621235,0.4846477509299424,0.4629869364627684,0.5452301606003427,0.3587891635942351,0.5696367766233276,0.480586700356637,0.5457176806692556,0.5684920299327829,0.45655444818914986,0.44017158963592,0.5170548719722995,0.40994508592347584,0.3986756978663203,0.44535685704343964,0.38822097390257815,0.5146243391343307,0.5181691473151163,0.546838675319204,0.46418334936792865,0.41918764967322714,0.3684863720539241,0.4831527759190549,0.35097393476609234,0.45390248996854493,0.5384007595808005,0.49173656204462324,0.5780208918749205,0.36758791099764593,0.5973123186651942,0.530259818706453,0.3094221553084564,0.34462796517842964,0.36162747576350757,0.4214097188437465,0.3540037095436972,0.3792565357186401,0.4699744667727704,0.411978722943823,0.5632764082195229,0.4270835026232474,0.4099915446698048,0.5438478438204976,0.45475447061772606,0.32876951011299943,0.4504269196229525,0.49755877526443865,0.4386015558702405,0.5025512338939205,0.3600012883372939,0.3807778719006196,0.40787711560210393,0.5369919905120363,0.5877257049974273,0.4396413316012735,0.3974090914353614,0.5264819562603682,0.5976890229340995,0.56024998504245,0.46679430214551454,0.3008166385464661,0.5308881539392437,0.41902020659038647,0.5289441219426223,0.44465834181652114,0.5834092191839315,0.379356757330634,0.5717309534797931,0.3296850471709487,0.43137011402956266,0.45668834233476785,0.43288794631896466,0.4948223645811352,0.5276822171440773,0.4627565133124224,0.5973848347180304,0.4521625936317235,0.45871436730815945,0.5449266865639351,0.47246286149953376,0.37172811541229783,0.43951231938003205,0.4715717443583822,0.5149476029515425,0.3678121461978098,0.4039406150676642,0.5499434649906881,0.29139009675408245,0.3733585819806694,0.3536425578344242,0.5777148056333505,0.6166003204125085,0.5872058229266512,0.35306038328303135,0.46415800684830316,0.4593453850958904,0.551780297378049,0.46048174423137,0.49693698545317944,0.5993773362885595,0.5260864726650436,0.3449608005859232,0.3591757163947963,0.5227905922516853,0.38733985091213524,0.30110748572046186,0.6503268767969977,0.4486107703458348,0.5814173529502161,0.5226540187555934,0.40313214036566364,0.40029911546949215,0.46599640366564593,0.42139011863897896,0.5002950997100346,0.3145586145335026,0.3105778424662835,0.39234593442235843,0.5070990892198867,0.4628612267240133,0.5032865356516985,0.44019053857768137,0.3842649599017308,0.3873941778446642,0.4491128502567132,0.5176770373724329,0.4304548003684244,0.48364682229503275,0.3808378307710905,0.4786063608815669,0.323439627885392,0.48998312057497573,0.5406900405269002,0.32747478482598175,0.5066177264453983,0.40843103299216976,0.5036718183084309,0.6139458967180746,0.47976151625319724,0.48229789774417714,0.5031280332711279,0.3553565567892713,0.3616745994186621,0.4510954329583405,0.501241124414811,0.36102393787358694,0.49865040418768547,0.4975735253055782,0.43411044277134797,0.5641819035896213,0.5406390279933394,0.4050442869547871,0.5715779476828784,0.45839484498125055,0.4794824477875607,0.43131145537465265,0.5061608017005004,0.5333051076522545,0.3493178165854904,0.5337669592596779,0.4813309040567877,0.4856702252033469,0.5525907862692007,0.3047516449949814,0.6545721915878363,0.4950981215259393,0.423127869355908,0.577300542497704,0.45330919589937063,0.5011154948281472,0.45188038294959115,0.5493774363827071,0.44069721830615427,0.45484692669718196,0.4272467721457058,0.5000140580097291,0.5080757688558318,0.40513920005486515,0.4627516325682059,0.5181426767802172,0.33253593253180264,0.40991632376402015,0.5371981477512211,0.44443798993040595,0.3823868239032769,0.4809522436420281,0.47715871554888867,0.4900436887653346,0.4708486154267075,0.46040247988956384,0.4258823771927455,0.33504139598350174,0.38718181631027954,0.5115946679891666,0.44959948824134,0.5414609852247925,0.3632368183826303,0.5333339825214932],"value_per_10_000_usd":[160.13366213396895,207.95517530406602,127.58107591117144,64.25079805802267,167.87697973201878,88.08929773408119,188.18255331258098,162.04808058680987,107.88828146283734,113.62533107766043,161.2001046863408,188.95453479616162,66.54249373345698,100.24132800753375,71.92014716813036,68.59831712877002,260.1450511850207,86.36557103997131,310.3298208412633,292.7176734893865,205.37245670726185,576.9527968426306,99.17131590276392,74.67316750550671,78.7045731094362,145.9334474111345,47.427825861259365,151.3186395919463,183.55899327693274,90.39466965005559,88.7737567338423,138.08611824000272,242.9058963913249,198.83004883650452,67.52063216620196,143.14855967979383,182.84720683476118,49.35630196262783,51.740824914991954,51.79767405094548,67.98029707528045,154.34844197947078,101.1405171926673,47.98060305576732,16.06432171398237,334.3814582482241,45.299069850235135,48.30933616865154,138.99239636794982,54.83355750777379,99.70959818898457,72.86560457892728,140.36772255936037,212.37914289624115,125.25083932493118,65.54499288754556,144.5043728288211,228.43243932509228,214.30348319515954,106.96275783639221,71.39889313702741,162.8655338997588,44.51365093363818,168.57123355835117,192.24606271418284,226.46077191004954,42.143810760409174,223.84359734198262,79.27926490545075,109.9673455922198,65.49063100061217,278.2694590832046,57.85434841926635,207.34256541064164,51.441695056088896,37.368546511867294,48.28314486093252,110.05506945396682,86.87708449051857,266.20477841078304,255.8890438858544,113.89356322092245,81.0394133393467,801.652320112691,49.66840064345082,47.271634829478266,112.10778438394595,73.04023781734226,96.65372074787734,39.03161745692801,34.101003244396075,90.42923234506446,56.58448517195616,80.7002851609796,75.80633842615423,102.03194760795353,116.71788392370013,146.67777709417703,40.26110831440784,175.22370949509187,545.7244282278258,154.79117719676003,73.7596822427921,137.33061007845865,114.36235628964234,96.53676508675551,79.58434710951704,75.4062467431308,65.71491614986016,129.59087322526918,77.19582987420051,76.83338138797966,196.49259896531575,54.22350691054118,136.0831514029468,91.55994042170438,189.18977563456752,88.47643691834564,80.62650920642315,99.80841817480155,82.85795324553472,79.92331975912947,58.87186785277388,93.83409057101304,76.94565041009807,60.445305058473835,104.88267170587575,75.0545798553607,159.2177063220131,130.2181211050444,54.79814020975485,354.9890374675294,83.41075625774634,61.16743642945892,80.18851303676233,52.997545309501085,440.9934685517822,57.1987967079042,109.6064388071039,245.67113470407995,62.68066303331619,184.34879915186752,132.82202699360127,163.1626406969546,300.9563277591035,115.0350295509214,55.51219544231969,44.08097919521648,82.1424622287851,159.14399936351518,59.477975990007955,492.67572210064384,248.95633553556377,46.53056653335358,143.86703988738168,313.12854154463605,168.45455969779093,93.70073992438978,131.80401960362212,74.48857385761242,365.0747577127233,57.91772271133242,83.2679707128712,138.51121618026323,146.62693279524237,92.95443241232006,55.61837017458136,468.3380225386848,55.37631552468575,108.9985263769157,89.65658075048097,373.75531754439885,147.24797993276152,52.320975654135225,55.08123344760098,162.3486642905655,248.90655902149985,46.005874933905694,35.375394353008474,178.95967168193835,36.544851351152104,118.73834098881619,102.26027549288406,55.402656412900726,41.517792777689856,81.17725771704222,50.88559959220438,91.7416529101358,135.01746540653636,318.1788314846569,80.09117649233687,58.932099060396666,71.2368784744685,60.54304189159707,49.99573626315438,227.0206971430652,130.45264150442554,77.37096108816269,73.25496804143,64.7279091521457,56.42500279432876,147.99821403640783,119.69228818761425,37.59661789766642,146.4517324268491,44.34773963755081,171.76454976635029,74.95489135883285,254.39832596284748,135.40215688840735,101.43918967695103,170.5821535559389,269.378551877279,64.39737110099894,62.070169383135074,70.87059895102537,229.4447660594853,167.68860491896473,96.76900121201989,39.28265101054811,101.51573909480642,35.79733614499423,48.75186890313683,89.06747306299472,54.91336307109629,347.6636496262353,203.82966435972097,109.56608291858936,113.89438731536566,155.67567447733194,192.78089259731578,46.74467702523657,62.575410958396816,101.15347317260054,84.66571816856157,156.4201822473815,190.30947138104546,106.29354155437977,126.13386844151536,96.47411310449206,115.70102761482723,103.90704352726291,69.84366211014598,53.57944842054321,41.805058472358716,147.44606976101852,105.40967621593865,113.85659758027025,242.68710602753944,81.54789950362606,38.34701266053842,105.12984750128636,317.6438695390481,142.91040004513644,50.973528111722885,97.73613710343794,68.51207738626489,160.62849679423147,68.82489383611077,501.6082283962029,78.99781826377499,116.72914996806298,190.44981630568086,47.501048663661436,205.94863244874463,104.11802565190942,146.0573745661594,74.61770528777764,40.47044954805873,65.64357213615051,133.6128096853096,210.48994476374105,210.36322417715934,58.59448536353924,42.710104096620796,162.12590833787277,52.087940567587935,33.17324247665305,113.7715249221915,211.9990923304232,113.53056311432148,40.533017500869576,56.82389974409512,86.82753174664053,109.07099903245864,302.7438814057887,80.9161312613178,51.508274779530296,76.24328172974336,109.62828625003327,189.1327905708782,828.8612002042896,205.72286821649385,60.16051808022584,71.6258257787285,48.89248111988612,45.62171429476524,34.533715195872766,78.913132152821,205.19876162006472,152.8778554199044,57.84302319927407,88.75244544414176,58.543103106161695,55.185523870499814,93.84933885725671,211.55666870099142,153.93568991906912,103.36477619378414,93.2564071704346,81.02198507216346,69.7781957148764,233.93976090602396,158.17941675567013,133.60158562879596,37.22780216752211,100.71113419939807,67.4852661254754,94.40218033661951,72.02366669905426,49.89607678714253,68.93878316037578,41.829767464757545,157.22120255119387,183.28777040447963,67.43483528543118,41.099347538699746,103.25755472232319,94.38475027896612,51.74444345050686,92.16068047553148,274.34995850797424,91.20871813178132,141.82110932918206,50.45912557776549,82.7087018032773,113.0674287481014,83.31687126786628,48.11666550238873,146.5946730511136,52.254424136026344,377.6008522448665,202.32797439817074,199.31838962544188,126.44004138220122,88.49327731133032,98.55252983824236,71.99472986416026,179.43436579795977,80.19686762215974,98.5769610749206,79.53743275359442,174.53312243775113,51.43821514304066,82.25316648999393,179.0988734733819,44.10780854807646,54.38680883182529,76.30438816793428,68.2156185342205,87.48808642808415,88.8601408800803,121.33226764668842,174.5639174008693,100.04461571791181,48.56860929472206,131.90158089001076,120.93391327272457,81.22965555862312,73.40740604291075,95.79248963604195,95.66809690848439,174.18701477964956,167.9054158659012,387.69124914308156,33.68734617869605,73.72766374067012,40.892583625838085,151.24726325755194,109.39063079753207,144.44474408252984,206.74809628058279,277.3599633182852,150.04376956995765,171.16101704082172,191.43946446488616,201.09099021159778,68.90697142717654,53.43497106515122,90.99273340072436,146.88840458780473,42.17167752198544,121.13538811291863,101.81961602749095,98.9684849282447,35.276214561837584,119.4549794730158,112.90315343000483,107.08617444052295,75.60806948720362,144.73810363304906,541.1967273651436,186.21007915010765,92.2386526919767,83.14793610956478,573.1321343974911,63.65314740163083,86.27161871830016,68.46400944677866,97.12996510512868,67.32968309676686,105.75453492761275,132.9521698978101,167.43510941810234,93.1606877578026,189.20854043222607,99.1673519054211,105.22150989505484,58.23892066655097,58.234968525407695,154.14813012978078,81.35253553195994,63.67245093154625,56.661122728804976,88.6644748918406,110.60323250700421,127.43499261627144,113.77218765824911,125.85229001629466,196.02960208223135,59.19604626083089,57.11809232226646,102.52570462122948,164.0255728054537,109.17775827113178,123.146039311443,68.12635906106067,96.82906300410797,307.27925216601767,92.31904496024,158.71757258435272,283.4659411460876,95.0845831500096,90.53699541334115,470.90068191657207,207.7004492921759,37.31705765772439,101.17894052390332,202.4944688216459,99.2861621002225,71.1139502405526,97.11679462812718,80.85772478910194,182.15653983235617,73.16797228912576,61.938094911460084,62.614438990895984,69.14566385452487,117.98386488871675,60.89388758346279,135.11793281618216,76.82370729542596,73.46406062541,68.36062374756371,146.0386253116262,208.86807311458352,110.97605827122993,57.65606299156134,74.19373391458456,273.1619440943216,46.6715195932675,363.40431831814226,75.19589837781383,263.351606777281,263.85045928375143,69.57598897688027,53.18530514307221,90.26078308065976,122.95803682448118,89.582810184894,107.02607819782546,71.23471235600907,54.265056196592006,56.67746144067902,78.72643120137006,165.49476272016676,83.78106001938846,160.95658839767256,74.62233365202972,49.30039420981229,436.71092239917976,115.01836005075181,95.49878294155492,156.41571276502117,223.66276793493512,134.76680540747302,144.01243296998365,175.34299090207455,189.988165745294,45.71040392660428,93.83863064783827,100.08844204285468,215.14801664477156,277.49223097938784,105.3350422666747,110.61576900232275,74.73410753324188,112.09149981277193,228.62462291742818,57.79404092218432,122.39946294081308,129.07280473529622,77.91714613022796,90.17688204158813,224.56021925639703,114.79529901222011,170.41062778375135,49.970542279044864,263.16335296324297,58.94210433228514,70.44771469888128,131.92288978436338,195.2020493361231,111.9180833757624,170.0822509561984,192.71814041144629,48.80414567552301,122.01376108259983,158.58409321061916,275.1051006102135,86.81895475159247,303.3922844109746,99.43253342910675,296.68132238427876,47.03894995598042,67.44196127834522,61.72678455798262,153.1879190637292,152.42462918705715,164.11271121419003,78.20796948619045,141.87478210660203,27.54555844046251,157.11161848019867,85.0657215011115,101.1623804329852,182.8580769372902,87.26234256984549,59.77626317990103,239.92974760248842,82.17877241188138,167.59991958342962,267.79066973787104,89.10884205507293,45.485485187525356,141.05493443125346,126.41335168023508,31.84165153659931,41.62891465155831,964.9694087478014,132.47512600183626,87.65596702465642,76.27180962217231,177.79886335999416,59.07075844852742,76.83843836145573,76.67215675294057,94.24975975985424,83.97892461944086,194.37511929386716,153.46296709827567,207.34533575124757,78.23965311250886,79.46922300072636,94.52962272658502,184.6049796134458,85.0525435413263,57.58182667630025,55.962287686912724,149.33490499343029,47.42256320389786,69.90445947346433,53.02192230806823,101.23133778847829,106.73890008755576,119.60680617778823,104.68905336795609,112.80326590505898,170.3041851544988,130.1805545186651,71.5809835731384,117.19678210884838,247.43241179986137,173.85641145469864,64.02319911145034,60.1330155453601,63.068340343855546,78.7971154496804,160.55799326868697,360.04880566303797,194.07880119756487,77.51810296531735,83.56657994016412,80.13891520218098,228.89363515284833,54.6341049163672,78.89431963974812,180.59201742683393,39.205459210352345,215.03450921891988,215.30403368024878,129.62073476284058,137.76751005246257,81.84704643682778,104.54611970198347,245.84908806295545,101.93941494171594,80.17890694039453,78.3724526446551,98.4549611764702,104.60036763176487,124.59670618736995,177.12049840938099,291.17471417229973,100.8163582850191,96.51591650951995,74.67596278943651,98.89903626965216,55.76780088308107,41.42819897503614,93.63845471867914,98.79800892856049,95.40784873056198,46.48450158805256,77.49359191449666,109.88490672629841,251.2676532681112,71.43134312982342,213.08791477479903,53.48560096857314,145.69035153339695,89.02571269673486,283.90696292600876,173.96823680187822,59.380995094003815,108.1969837551346,92.53509773826258,149.3334336094911,278.3060664976215,42.4101518152035,62.69221033331542,98.99740933676087,239.51609970854983,46.507912400088365,92.43394986518217,272.6819243089828,64.91306469654779,61.11300573384939,70.41146545623413,63.094530358373916,66.79378698762689,93.2188370526916,98.48250222500786,99.13769488716758,65.85282618603537,66.34608783511857,139.13807657705425,69.65170126425485,73.9805333522154,513.5548486656294,79.30292413484052,61.21412641328641,89.22395737958185,156.61780561724288,68.0278752951745,209.02166535554366,68.6662115589908,54.902441651251195,202.19724275025317,79.49785789956277,64.90648909436956,237.95824461947166,114.59057758117078,186.80011058133238,71.7494906620491,54.94093037077452,196.54457721905288,279.6055979520531,85.31262125755653,120.6871785259707,89.03150171517282,74.40754896312893,77.9391024294707,55.63157426744444,114.48414195703072,83.68810926833605,152.81360753582754,48.61892317554143,526.3050906672936,175.26521093211446,50.585121064628034,72.50573627017872,76.05302482398716,78.96708765065868,137.0095553719909,113.12254876687497,81.93325870157152,113.65719755710009,156.11010514449274,83.52918159469468,425.08319111495587,65.48880211797278,70.97608533213716,57.47757042664898,90.8652019872997,56.08942287784252,110.48549874113073,102.38852391276777,166.47262002371977,67.08227002758103,135.9731974686468,81.35869328662181,43.165282247851664,235.6638934368448,230.4595214066258,204.94758552884963,207.01824289979754,357.71594302100505,112.21114377108752,82.19574453484172,62.47900639336533,138.22583503313146,47.27816967408124,211.70247396048697,125.40797329961131,50.7179543538067,109.57637306310347,73.4996789669499,45.237807911218674,273.25635766444816,115.56471796696957,105.818212680147,136.3156368726282,171.00023595067503,75.939295674063,142.17481469387124,85.04720018430116,76.93883535753552,62.3501770227465,44.28640031570937,52.20981755582696,89.44814080043447,95.14020622565735,62.5507136723999,40.38790924950541,79.7199978222426,99.28018042192573,144.00252703909786,127.73935622343666,53.6630761677149,192.94562588496146,88.44502604914021,60.189214658670295,78.58224489805436,93.71626085739739,109.36553544757109,52.89339418756719,98.72292572159532,105.06816591226047,283.15584431051406,117.93885311332409,164.5913372682742,92.62051552097847,40.58831912912561,138.88874807264688,423.8652637182276,41.59975117625209,222.42022459922126,200.61061817428683,56.4453074934031,84.69140164009441,88.65454792746667,114.79578395995595,201.01645263132642,66.35893120455748,87.47399168941719,109.19277914919684,200.06011987377352,119.91563339557433,66.46257591800979,85.69144304975568,187.0646557381882,184.89959748416356,67.31138100169596,59.35737215183644,114.21923345522542,94.86796625345184,71.23271664745089,114.16217786597915,119.83656599719039,85.32170834716169,195.70018244682944,121.74818988567361,151.05500782364592,33.614413997998355,121.02568381262755,74.48156394139922,219.95395375745653,41.448619873741336,44.31322120550586,141.27936509663758,176.394021149441,118.27665563409556,312.3103505071259,105.4190126303452,51.673747046455716,70.46914119568554,136.16525560591617,284.817221579697,123.14563994987702,70.26843960978218,89.28173942526666,129.84169162078084,55.55753077719884,136.50304934837004,50.96852232199488,129.0299199187051,71.14846991441071,105.10207477592458,69.87871862187022,78.4256364123458,41.22380347596217,154.63376420053447,95.33931760000961,37.76962647924018,105.9590123554992,84.66140219698808,230.14241548478034,187.0101014538889,41.04868631852554,61.44441799419936,57.23492619536103,64.73987302804531,254.56571542970784,198.61703129016195,163.25710001905188,65.52456444888432,111.29917567447926,52.63014089087321,230.66538723176086,435.3498482525079,110.30123761984699,146.42414337982345,128.08041985386316,71.14796919615635,56.6724277025037,48.9898490441839,60.04923676600761,98.14329222301804,57.021707921612794,129.4059447011012,297.43538039973464,193.093274581595,187.0696244366839,181.58580166839766,70.2619876605814,75.04196808655617,83.69978618227324,56.344822409449776,82.6537123852523,58.57144040373192,108.753337376858,70.27369618500688,128.73324113207235,91.54651345334496,60.97407381843748,46.653075556722094,285.3059613170892,61.30716230540548,72.01247486861745,110.63344405603056,111.20999061633574,41.332803631269364,101.97040764555628,46.77216054372671,90.44633821301741,197.6135687904337,168.50567680771167,87.39721321864948,70.46688228858945,367.1122513395235,166.22464791507878,70.7455193559733,295.3593710536829,107.52149503067153,166.03049179408848,78.04152093861005,63.237223872696276,79.2319067481837,66.56239537419147,66.75060458420442,130.03435756296514,52.31282077448029,71.48105758117447,69.55890255569935,61.602675001652486,54.02707881402548,85.59561676323497,52.01267811909129,338.8090824503158,39.36835184600595,256.697620850157,374.2641463287724,88.94170727143917,72.52224133908337,89.03027888225893,224.4391774590091,160.12352742679744,60.697156334204195,125.88243103816399,46.53160306985087,46.09426400810874,144.87539569627955,110.33065838713196,234.20186960786575,98.74052890569237,47.36820343971763,92.18196612071388,103.07871650506092,122.9986558178108,83.66863463927525,128.7565316848341,88.13298764320369,641.8889380572515,59.62011031229348,60.24125159428721,258.6818642183343,303.3469937525359,85.55859620974675,63.90943609516604,72.05664875794935,347.02645842009355,92.37482198964798,40.334603033622294,366.95443830304606,104.00889477920886,41.721162769041754,179.20435401964644,53.629837399014356,74.6589634156969,109.08794060695848,46.21329226370196,51.48379633345319,93.16314259693634,83.3794725977604,93.75012052891272,131.04821454166645,137.48216562342856,118.81035362701317,60.64793115319303,122.49660761738431,72.2892667556477,50.14544864318259,67.85911447558328,115.11031862527337,60.700562730278946,99.87622109407712,92.43197678548431,127.2862016876569,98.48317547696396,128.29618252725413,99.68654780654809,66.09100716848516,272.39659847537837,60.35735178852597,54.50096906857863,169.6821021120355,60.058555434079906,120.13884095845073,87.51746390870326,76.12362131710555,126.6297732988967,74.94159555248851,79.67713811427234,230.25080967107996,94.3303667384855,137.29693550927598,101.04173505602698,311.847560650226,86.86474740059393,82.7442694316508,122.86783392711327,110.18811477239143,52.23961832985348,126.12227095787661,183.61974465532353,56.197217223377116,154.149257749724,97.18637276843886,84.56490704278296,51.97714989040333,60.987494753855295,130.4078046112118,102.07394182780243,101.66515481609439,61.799436044262855,263.73840209781775,63.04044128170633,132.57381847918938,115.40636920353742,51.033676315891704,65.17061417112448,78.42615343289542,49.89616672952062,46.10181197378497,149.6601270486051,71.44702864664417,152.28158161233387,54.82945402707317,104.88462920544579,82.56641238907123,64.65696004978308,200.9728095725285,129.16029100874636,103.53360382434096,159.4143724177335,165.67928429369576,196.17999750805518,87.10625128142006,85.80604111891282,144.4305725444107,101.8632164775853,698.9497615300113,94.52536106761612,79.72937328459432,67.38057251427146,109.28677735397143,54.7463801428362,152.17442639771582,32.13201699266106,86.31568252656545,144.9067884867225,116.94451117808013,477.83374104130064,87.15544389169558,149.6918676117758,148.19416240800933,49.04535504717861,232.8676902767167,184.1127226470238,70.48001440866929,117.4911953881286,192.65534826312353,236.63606340930335,83.5115933503216,115.50318600937513,57.23722954942255,185.69914002113245,111.12504484077901,319.47026283995683,67.6686126198128,82.49466627614235,123.12300695556472,37.17732799622436,157.27506681554956,44.871206880346975,84.88253482091389,240.49173317162365,339.6997900110091,73.19026005370496,1555.319693677985,91.80368527644659,59.9614878840157,123.7143258032516,148.09108916541007,72.48414059011452,95.4388790745305,60.94738458180577,110.1361014742047,84.85274166096443,109.59757927209819,59.73364416179574,86.21185979449837,92.13545445230528,113.0423794887787,83.92608291045151,84.31069793088403,88.5930256028685,83.99691832032543,52.67171801375793,117.28481802765965,64.90732160075983,55.96995751701347,86.56058547101559,83.45084221768442,243.63450222199492,98.32617417251562,94.06719042106634,213.61035845812947,96.86440581275632,225.87229839868192,50.33961890880006,120.67218872424672,99.52673722689563,38.658817972701215,164.9167481550906,92.11505523576106,75.98510801119924,55.9514863813353,132.425971144363,100.77326844117943,59.239080683443206,207.94419830677884,74.21426942012972,116.23997464584852,43.398867592742135,608.2429487962496,73.0875869811361,146.24561010139186,104.25964024602233,105.00578443910126,100.26426809910068,84.0342810713677,156.49134113066248,175.91264404443083,203.66517279760532,201.47147162888214,166.42941758195715,62.86607998175852,66.55925836353455,134.36698579596438,154.38358346172473,67.5920131707382,85.017394576457,74.29759726850232,140.19200447304289,87.2035244775864,141.12355899814077,54.02669529482908,74.80947165244369,263.13902492301594,77.66155983479896,150.68894504675427,82.13611807131637,45.42539411773477,127.32735327554343,133.3079168530675,64.59271116256419,99.18588598248827,83.65434955443911,144.0319073968219,466.8971554288989,177.2197062490398,124.13204508241276,233.8352306637452,182.7385524988364,103.44616242612864,379.0428596010772,152.46428282533262,98.82868792034188,86.75104814086181,383.58744013606,49.85424994600926,89.15818234762135,103.29659685921679,146.89625472054374,406.49562037571746,95.49782431670408,60.893049556136496,243.68401645301708,80.31946438496381,102.03835071266631,335.30909045169733,263.76351116156604,41.27700492435927,51.27305930170257,147.81908116313488,74.03594772134082,98.1033395309997,83.89335594342673,67.88125285694173,211.3492098454676,192.86661842361266,285.4844133363825,137.2334498485901,114.67399706145059,42.686039292810264,132.789219014586,76.7918851986337,270.5686893404049,96.5721930893521,110.82263048660424,151.42335739015263,102.34470860734241,106.98159174819443,90.97995563696831,72.14910957318841,79.5423420280564,76.59128168708403,162.27675866303667,70.64147484957529,59.811407368565206,107.80940212453993,103.15206610773711,65.50002109075722,63.555757857815294,38.92986699980692,130.22394124285668,111.34300865984403,93.33816622826404,63.77476472601286,90.55654429958102,154.31980898588915,123.30962977252074,83.07158860768642,80.96170500450214,216.06305303123543,190.07775533921574,77.45619551006467,214.27205167037476,166.4329881417609,99.36967615505804,133.48971528385664,74.559977639423,37.75074195617363,102.94961504660508,57.7673723143341,38.589732805787946,466.9200686555504,141.4128262533295,219.7146855379056,64.73715094559448,94.6030383209455,50.43801416438644,53.42991117853348,29.032556597779173,160.67201781447625,154.12536576720143,69.84734990760072,73.08698202137907,49.104396866639085,106.14687975549728,199.01999987031107,132.15355017763048,98.21961560191309,124.07929148416513,81.89375269791816,72.52001294748439,181.45966100194642,82.61585717150594,282.42200616207026,107.44292025778078,103.05476082162873,35.977514884131296,97.40007636029115,106.40118280512856,41.98470670021965,140.02106384565468,112.85357626709799,913.7162553566359,47.11614691761336,88.93004159385399,104.78800108076432,65.67990494499922,584.1915580696157,48.33667530006902,73.04345444330093,114.76537624746621,60.23557188403107,149.1963809679402,85.67967854103918,216.12064916637675,47.001298313450775,77.57494445549757,74.01326051585066,69.69832957589445,107.83942993864173,93.3354630578767,173.41630215035948,185.1782652451448,219.52733901645712,63.45332176043256,65.81285154978866,27.48556976714426,157.85310379465182,139.68574752621126,41.96563582447758,181.0753816597636,140.24394159522137,98.17012035943995,141.73348132585355,221.505328553944,89.4860507017756,95.07806438725737,76.69248403119991,102.90840054193745,195.27818999858164,70.50021323416053,494.57279772048037,231.18513546388064,60.65613490038639,132.8549256668424,123.35882139420157,124.2638246254004,185.525507215286,150.44603424477444,104.83098936324738,90.1236502592648,196.54523218297138,41.809142174071205,126.19189425569019,123.05310847599068,137.9458967718164,303.4615159917151,105.66168772189532,71.42790146223825,148.74800495331044,152.68528859998975,78.6872928470689,247.32684450550664,70.99861649656143,104.6527280509985,118.58541706307409,109.26045373385934,175.25201179254287,104.80574344895626,66.58425669961551,166.4196670350389,73.50423790494874,164.82601168413535,276.3645314972713,136.5465613600995,148.35967167463076,316.5330579510438,335.0715961969761,296.9686875526588,43.25649156963424,105.06623239500081,80.30513902771477,49.56126855732735,171.5536255036409,59.316906728877164,59.80971365423595,355.67649955042447,27.73763654780138,82.15213284198785,110.27796616655453,230.5515885173224,83.6950455739475,67.61244275484415,134.12198378693137,65.4901072775533,69.53148291096204,212.9125592394684,134.0344034383449,285.23979820877685,159.73390590958144,50.770801509228804,308.93498902135684,75.71619045861348,111.7964671039768,51.846850845013066,153.86297563212676,169.54854233932383,64.92621275767465,43.324253498057104,98.44614033034178,113.65389006124754,93.85188650181809,309.9687531326683,73.28936351031237,152.40893089760752,40.505933261123126,307.4027324543772,182.6273800594352,55.349801271053785,52.11348923989972,65.64710598775977,91.53465841661784,76.79914432922006,177.3591690482273,163.7174111127757,195.13870325762196,62.92826966720493,318.9276890416068,68.18324400413695,106.55919713491507,97.71607777028416,94.74778427517711,86.18519284087586,206.1407082610064,142.00253981226177,52.054149378515596,39.30878445377992,96.12188583852675,82.92758902516309,191.78522820217998,254.65568286965086,47.65272868449716,62.36208912982734,134.56959178802515,51.46908022295485,119.94605290446584,66.60488958217695,101.58571003655291,67.07240256365932,117.16674596335416,57.811623738372795,55.318207025231544,100.22262441491752,76.62326203955315,152.13816520246135,149.2726595815019,103.97997453228568,195.5576631297837,79.76725388880631,41.72384489662771,126.29120286187121,62.3126941797502,202.13162531678574,202.75558608047157,171.34615774056374,68.83999939631832,48.79534309641573,111.46858278641858,201.25127887658599,289.43027465232586,45.91623655328326,136.0743677381557,101.13140702671004,574.1966850375771,91.10212673601346,163.62644054923592,133.08853422117195,34.875350447184324,108.79297686523883,293.6117422140026,104.89329011269162,248.08132523027854,61.938130941943,200.35509223357658,97.44191531605289,88.8804021597676,74.58486013426652,172.12587464986262,143.48108187633667,47.64498986518217,123.28823867449427,57.70514402153825,200.4540187034641,108.30995971970042,226.56093760100904,131.41072047626767,127.62992157394032,92.03753176074864,283.5041944000794,143.46509029836116,214.84391677007352,118.36353877162205,266.038562621964,46.99839037741989,126.8844469984416,75.52725910914744,127.91091099169807,30.79700416804176,42.66136827288214,41.98421586801687,223.45750492109963,113.83363999377556,65.53634254464201,40.97993785314088,238.68908916013464,177.4148708333946,80.99837630144258,72.28251512898494,67.04011969992709,55.75073179227839,65.54559065858216,54.651193336219286,38.58274914121885,116.02488749746195,70.230768496148,426.0416955556596,68.41336526490905,38.5373704071542,96.68579558362435,96.95999698184524,77.86202704732801,59.01651097638836,125.62203833567543,52.417800278867055,43.306944621596905,246.12668787960294,147.18078172526324,74.61238423224664,60.33670948799438,148.1935555407924,109.4869851160274,359.4066959932617,106.98477994279042,171.5227778302314,128.70974682275013,104.46444761947329,74.35926796273225,93.26902086192564,67.85176069058994,49.19212352723235,35.42301677878825,122.59014712123712,424.9531975349868,70.85048354375128,100.35226526241765,101.16225567738122,136.32267943259248,69.0051958416924,161.40069524320776,119.66245707683767,122.0500529317226,105.67697497449647,119.43695703042265,81.74565170047083,48.621010436008824,71.76627480646238,74.55174844244944,106.62839923435465,129.7292402562744,58.999798271669206,158.67834767745674,474.2342437461145,99.20302897063091,39.37547957152021,47.243601686191084,55.33566110975774,100.5576093914417,62.304308750260226,98.16427933761982,60.781269083588185,62.927532180685255,112.36045081560088,255.54607187801395,74.27703839528577,113.58087181474133,331.12144897470006,127.94666451725286,147.9374153873651,101.72093803565896,123.90436026148369,33.730708782898276,33.83439948206278,64.77937946015065,115.2094324716563,76.4657891108682,202.91629243491982,64.66129724726613,79.14808745008509,40.44309892624256,54.41613237374509,89.32556376180074,124.27595048258064,65.88114042480767,122.20967199878521,64.6022797773253,78.84007926506006,80.07170611726204,120.72380447854,72.52418948997412,100.62029687867053,141.81346181238496,248.96904932878383,193.07480478686676,67.54486252802101,276.63738982243575,201.28928039197868,149.9089878718198,136.85188254984962,63.558433583513605,59.79120807579197,67.59639722214679,64.05553210212936,74.76550159787662,123.4140151121913,93.06937811647462,214.1653239026407,110.7638092632538,112.33508302569815,94.91837640151265,106.31874866089323,196.9686699635487,92.3463480006606,62.52626618450339,88.85726291595039,158.01267400572084,163.9201320935228,335.9771457714796,200.95712173521775,83.33874257670834,52.837188636459494,136.67371181400998,190.0317456240658,766.9863949784421,98.9010044521625,122.86820210215816,279.48661519054053,84.05817244457376,81.92203290017868,93.96769466472813,87.66535944170643,87.23052798318575,207.3445673559495,39.96434907340828,98.54820246308012,170.79574347076488,103.51713962518512,77.5960981329453,181.50066950617543,68.58485926564951,74.91348058095231,60.916144583033784,61.18785726297719,99.19540406090621,43.58816677395534,85.93467070569734,84.03917829044825,156.95330962662737,111.89764697222482,98.38908905762979,218.83362664276763,215.05443724281193,85.95877370349437,30.440026474062325,61.12733145031446,182.76191637307198,142.20259837348016,110.40551859965848,146.5909236171847,170.8607817049275,79.73618812627683,75.73597363855815,64.40082126671732,68.26548193343281,86.10376048579035,79.27112570626878,103.34556728178288,25.977679520370724,175.2161775941565,115.416701412765,248.8952409441399,408.87441329071635,93.43088292699542,126.86592520080457,43.96898700944485,106.29915355701144,143.05062046576444,42.83634121533542,244.23035782783845,58.04609667000537,211.97406535480224,118.14968545320069,189.9618478825101,92.65492464150347,78.7722079883853,72.44796557916735,89.28247107607011,129.3698958327276,131.1514040583768,590.9810569589363,124.94821215870388,136.58606795855988,90.4791422735374,50.21768951174782,290.74315010843907,168.126898339988,42.19996931082385,47.581903833975964,128.8309047963047,218.61111820789185,85.27529063567094,57.840862647960165,67.91849374099367,101.59029756627415,102.12077679944406,230.7032576801392,56.41256911977462,59.5170806826634,126.85295889684866,139.77975081784805,88.0255802046009,64.62913780364937,279.7959249737196,252.38611172244745,85.05795475302382,119.64080492959077,113.69245287526432,65.354444963202,85.91126576026203,239.81280065001957,217.37061687146087,283.4445533877482,254.75820311162246,79.29101984155581,93.12984402307956,33.43333418871568,268.19890577857785,66.59322107862373,109.67970014734657,60.975719429910896,65.28714749262325,289.1962712280003,42.07184911194648,75.68698835995218,183.9268761195619,66.56229549059027,270.9349272989104,267.7668401866701,213.75856003506897,165.75657214186606,57.75552099771665,88.93192264534926,73.68527755957294,275.12455324848264,97.23406455258683,41.70268629986128,93.63413229820725,131.61375387870197,64.92494433488613,74.88400682082519,117.6399629180837,96.27306912975311,102.85131737131974,102.36985516872883,349.167984675832,785.8908968116729,61.29866230364914,126.739190383341,83.94508083937643,84.80530154805813,44.19094972567178,73.80704261516038,179.17675783003313,185.4401071385507,43.07384707552752,156.3703861518467,92.07823394079026,57.224729845696636,33.1197910661734,55.47987686774529,94.05214180786271,241.9915476342248,200.01775471326096,173.52267514468693,56.26993823710657,72.35524077601326,52.39084188450497,78.4165483025954,720.1364775645966,122.45339271047071,60.47166511137466,124.41079500991243,313.5334229333563,69.52546963865798,66.06653134665007,133.0682863021008,156.60436283329423,43.94958529142613,98.25215771783098,72.37145162395491,136.64870190737224,64.04268277810192,107.22555564885056,72.69738366085697,233.9721063377988,133.0272415048019,137.1802409736541,49.693397755619905,58.610072893742895,240.85139714852937,149.76381904623463,126.65638224506935,53.53985516349288,83.8899232542559,252.11368768175691,47.765129954613116,81.56719904267301,221.16702809676775,262.14504523116403,102.31059866313447,300.5210241940229,57.290502787678236,123.65202176457619,120.74183926009427,166.51469745252206,126.64534124992267,114.03157398733023,120.53361692419796,42.104438776844994,88.00672610762919,82.88619380843458,134.7278999258796,59.102921824085584,42.94681768432214,155.79870891269582,84.60629421223848,44.363041747044306,68.59693370887648,58.251162440089175,184.65284378638475,63.99626406155339,105.09000015947365,348.8315263581579,46.35482871216533,118.66069469360875,36.50998437660745,101.91803557760133,246.5608556640352,220.6400266803361,118.53220434523048,204.07940037915955,61.58494758620576,109.60244580832943,93.53604267501596,67.62248129261388,62.684413579290755,80.68872243974178,182.60064457903977,126.98573403390058,109.96892037870244,51.8960527296496,117.52316464392722,107.26784105905944,158.2498731374407,133.59664346459317,98.39897307040924,49.751839799368476,66.81943795681289,49.58284537903964,76.02584221646698,93.21287387862996,280.00385316411166,66.5668454630656,313.62436167015886,108.9137761618358,480.6361717901177,257.9028806706989,62.83438063158015,192.56554050709514,53.613213404855166,413.6371393909884,116.82551880614706,108.60967367792256,39.560830688345156,60.52753986989168,155.58870011918484,55.543032069597736,84.02993408079635,58.410676709427364,68.75404533830071,103.32127057080994,59.403072797223686,199.0429274843602,55.493903745427204,123.57005698643317,123.23491434079226,44.69590706285361,87.64354100712764,126.84228398267703,139.18775737174082,93.0782476874504,236.99771951951394,77.48418833132547,41.85349537452161,122.52187962427516,129.5744854684083,85.59838535220491,66.28983528416708,115.34608271103292,230.51810165201778,80.14230401822611,73.7958395782644,69.56517974517973,62.4462561277685,102.24901292675324,165.6454864720733,83.86572036661707,97.6329302571479,59.37807616027957,78.29593044991965,112.88921779796334,64.11155890673054,75.47333189779098,204.45274612164806,331.7725181835295,75.55314851595524,109.35156506372503,95.16114796469193,215.38186332552928,122.67419974925275,64.47489127513269,150.59533435292798,92.60278000194486,104.27961436820343,55.70645170652537,114.95143656228372,134.664018132099,80.57977232454012,102.69609607449755,304.8821680865628,96.19104029201368,183.58855208558117,100.4370526201697,102.05655170237421,62.41810859259554,77.81603167914197,53.705958777185465,51.27913112615857,95.48929524536946,61.330732062751125,77.55351741632498,103.19847134363579,160.6205723214501,97.23827363058523,66.81624324060778,148.16774762163192,56.936477786319884,325.29329932213886,72.37539374683439,94.09571489128473,134.488858179285,209.2264362588623,491.44080607340226,94.91665511737057,34.86737436200622,66.78444027135887,103.16538360348738,113.26708393589065,45.859432957285094,87.51018806305002,127.91620215306551,86.81050314327328,63.94439264287901,35.99326577758694,79.35296984859897,63.34945765619264,182.4745913258919,145.91065030616153,148.80606220143233,54.24462619101556,85.04586261123313,151.74665475574614,148.25909338307002,73.9781807312389,80.2283898669362,73.18842383063591,48.42649472679767,86.57525309808219,88.688494142051,284.1655696731407,107.08954072385437,717.8145837129711,136.22479494477756,66.20997735632554,49.0372637758391,122.0231870408136,240.60151773506135,227.0525345460522,145.67058390653344,100.1782996991786,40.24575572274025,75.24892054136308,60.54815370993722,56.19939098685724,46.4798889348667,69.86667678671716,177.37828428290467,303.3849581140796,102.95493276675386,215.82397067087288,67.16093719841781,102.52814447337701,70.96358344581958,138.86282007535567,56.89860600149372,85.25124394805377,93.45097273709709,116.96084792490275,43.398908053600636,43.81442500522163,54.948980776555445,158.5139223015257,41.73902379213931,121.40428924697963,94.8774113797586,117.30252519840259,69.11745090943093,291.2333672655696,70.89345631921343,64.86119788603304,85.82326733870539,88.098137776014,137.97855393603166,66.62349519088129,329.6240880561167,52.05836334450253,60.96201996095533,243.91302980918914,137.8676739592482,64.00579787553721,71.36316089951133,327.40222618551974,112.48221601278416,174.52646404003866,97.52060171271881,88.5392219458306,32.42952768732301,147.91933755297003,89.81190461490947,166.73714394002482,76.34094379837407,163.9473793226055,148.91050945190776,54.23241902578197,82.30306804778864,68.09863339150729,160.36883195311663,246.75357341367717,74.83164085841324,93.89956645469812,82.87788292884373,94.91299265962205,134.48336443874666,380.75243558256,155.71149948105304,68.6997096007498,99.6091237283179,178.61733110322191,43.73746304154803,207.16978069170918,434.675384991263,134.85421957469967,76.06436064664513,61.19392546694868,129.58845007904645,90.99199683988273,45.02385867457337,50.157191887364895,49.664382432473644,115.09268049041357,106.6009497622621,33.86548842954433,55.86666567633663,41.2081226633489,64.1423020360824,193.581987695816,100.83656880609617,163.89622163772063,78.26883313000985,70.6728694737395,136.78245349055078,113.04457409774511,338.5737591764328,76.56844794980523,47.307843307652725,151.1349301772896,59.05024938490543,207.49352756637995,81.26739304259166,106.97910287721038,84.42377245255751,70.08710872530139,85.85383735044776,127.4602926590729,40.24183647017982,66.42420700995845,97.21276947987863,92.9963432159667,134.92637853957226,66.56258327019896,57.03634569424184,67.39107690182537,134.49047706095104,66.13655604783476,96.48989170927779,67.9935032984312,131.76656241509812,58.45568329041567,270.72127942027595,36.92475611554633,63.588405368100425,97.96115590433834,71.9672479465135,84.04778193154026,299.4558030190356,243.90782987981626,73.54285572979867,167.59723461488497,82.0136756552326,173.97453201498942,112.55494763727656,157.52159470835608,144.82184956127676,135.3410835221354,96.08014275057592,52.13465551353797,83.6760945653187,70.53708789866342,170.2748162582533,142.55003822235608,106.74537641414013,61.04800618178312,208.84153677563924,76.58904304191302,77.97622259598957,169.34643236664851,31.68579059670869,131.78000126457783,119.59297295388947,120.03463244906699,97.67332029109562,98.73700536245347,81.72867744266537,107.78657455576341,184.80116487375003,309.2215852292801,49.18716037145306,83.0641393596265,78.13025551077236,164.39841251732656,36.43568099722364,248.20299265010888,86.45380660199727,324.3320028439068,309.9599783947177,77.9429849085212,55.837244028203145,110.88801587662209,203.82601996496876,91.05527923930445,59.22046675018228,93.82542349615046,108.44309568249159,48.230089585186185,95.84456064975382,68.68499262776713,48.17217391045803,75.0079098310306,325.1711532227895,651.9000824023154,84.8229903283345,45.498495055730366,138.71481996887928,182.23699510563947,199.2170021918804,106.57370544360592,41.910113188087486,162.20712280016792,87.68895685486711,197.7145229895813,138.96843442325476,66.31542767205339,172.82789122161887,62.58357941216456,339.0021799614971,72.39690414889505,79.26476467152798,29.387330096140285,68.68245957025991,36.4837730451234,46.354900573775325,109.9070036432293,136.5853641112227,157.46033307756906,45.594365310093536,109.0547478022192,211.09828102855954,181.3372927943792,86.86380096172313,70.70571733976418,36.606984770872906,93.30695106592415,76.72620399904991,156.07017393991978,52.06411020962329,212.77791856061432,88.20166975892548,476.65218387370163,59.48025605638298,114.81031529544302,162.26472945314995,59.61882343686623,143.87528611478405,125.06046202206225,113.61597816600357,133.60986360870928,91.63024226480476,93.58589634337272,104.20813175098704,176.77937469445877,246.4141175392906,103.03999337384161,130.00620524405193,95.03072666370078,346.9089946773314,42.98889626806241,40.464863336829524,103.46314564069203,86.31101470100052,88.82532673848095,107.63836686781941,37.663394313987304,49.39930291282547,193.46308776043026,193.0483879398273,79.25528437962812,103.88444200547359,197.38868493981653,54.218217407837344,51.0376072236112,95.88204598795949,335.9790603316253,82.49289912516412,73.54713956593078,235.28254428165232,238.8701033279906,53.07208914212181,99.88603481963453,65.80085841043339,80.91903600556677,113.68275259099389,71.30987495307639,53.517967917192315,351.4779595458304,84.7815586671435,190.12864580560034,105.74150557962228,106.10396816185958,35.89503977696649,114.07630183400072,170.768056062187,126.45425517863808,167.34520122534653,64.9461629675695,33.38040397925213,122.83334723197682,92.4434028772227,79.57713122366593,94.23660197213582,62.367514890045015,67.10156207235254,40.17798283187896,81.29163904564389,100.86751949732835,58.613356882850084,158.40619583413425,126.24922095533337,73.7058163911853,258.6421032461688,135.84192350010113,218.9607010273611,445.61987250161906,258.972510448344,86.63418484236689,81.3714791116245,134.96790971825234,98.92296385684534,158.18302469853882,157.63194151567927,84.5802887982495,134.07645318549874,33.48303235873996,456.59680886919796,57.47059493827459,179.78304365283063,70.66109219532896,48.77564043493179,225.6982454539181,83.01571974486411,101.96288645934723,262.6020381097609,43.672078325209355,189.70495783573156,134.59520451824875,167.25398415828678,63.171931085349755,144.01265455543594,259.9789725225302,230.23043232705535,130.6618640551444,229.22006620294655,136.65848772560287,179.6091849237476,104.53529848489003,183.0692546309859,73.42654468089103,67.94579368547579,84.76586607185043,81.10614644299892,415.6082317891273,87.05659475074778,126.10160056056516,73.9542899711552,110.88835087826475,66.2240731028001,155.91235013968833,152.49068444382104,41.84410761300942,51.38979312534081,122.45449566006081,58.56045005824079,320.62128089565135,61.228464896489385,60.06110874410985,48.68631850285116,164.28891810376794,105.7963889840837,543.4790838742086,66.01648752948462,243.34389239285423,122.05191830955226,60.19819947414604,132.94266207926597,142.80461921047396,70.62628451864357,68.54685737435774,118.68129003525947,45.98474384575621,67.53642991100538,196.53692200738692,65.9951757093981,74.23256366947835,85.51054399931654,178.30271319019303,61.86033196405372,118.2784534917951,45.69582823745434,69.31162366074544,53.477890121751386,101.21770477135445,117.6818140610679,322.17184138357294,66.3163856303451,56.98788972631777,115.40442108368869,118.6103937025763,81.02909964030513,167.76947475226433,120.14077773159192,67.88278308197908,85.87703916271012,49.11129420011355,139.91922813624788,129.79082608293305,261.84660311789014,64.89488205430953,80.52930315864712,200.14133614658033,144.48520375382427,65.93278754764623,60.553021149330704,80.52481394618283,93.63327937347766,68.13945180885155,129.79814302294216,103.56378654578491,49.60733923891961,118.87300012471871,68.83424820447503,181.03170864027695,62.34687415590166,127.86173782656832,256.22243793743354,40.51051163783798,47.39907546253541,176.71693978315946,60.3578463078728,472.3455572001785,102.16885658285103,205.72772826152718,283.29197407022724,189.43555482597264,113.62264291127777,277.10774099818525,138.8305884814747,100.29780118851298,105.39166854629386,832.2405437952498,216.68580151950223,52.35559809989249,78.70738157081485,90.51879814186472,66.99281212496183,130.87481215231568,59.98833243552342,66.73060562204765,161.55205597527942,201.26488626729312,166.61143499142833,82.72704103150622,177.76629983813757,96.02820394620763,184.5138974026469,172.8791204809457,78.68893532293191,163.17482216471555,328.4730339474834,76.71646570929495,85.34396212094778,168.44121548854528,466.7000603688082,130.19139860698652,36.02754005351852,119.93908949013162,110.41255698547911,49.06122455208426,78.67197187322867,45.34755297302739,51.833980341869335,265.30546704280516,58.59104642189329,151.9849379011667,89.58028408985211,49.40502698220773,233.40042619895544,129.71120942409433,63.55171509858033,118.65834516019996,51.15449173740885,58.93260834312107,75.45949296300233,78.75481442850177,187.02315311855364,65.42096459189672,27.841449697588782,37.2998377455731,225.49292099568945,43.62202336899149,67.99789747786751,92.41555338011793,84.51782311281427,417.668258268149,40.141639254192185,72.95595540097577,303.61490685892653,226.5014344487853,443.38559252632507,114.47500478298134,176.09549010207337,61.54503303658069,326.4387014324225,113.70362624650174,94.42868779454301,114.19960187631908,236.94923850518592,92.14453598384121,55.02408666707778,121.39257248504505,88.5959278670923,180.26204600316322,143.5947798423999,142.09255871685266,58.46014040582597,58.55139462215385,68.74056563417652,57.54309045174734,127.98307774091043,87.33841934631873,177.32091527240078,95.16268599387853,128.5970641311878,184.21159424463772,69.72153823689045,75.50049160135059,107.21313410603088,157.50574098484287,75.9250085548671,66.41982230858744,128.50210058783313,54.96397815307344,97.06232459338597,63.609553380704355,186.14478390735636,108.86803848806102,85.22595479323428,201.30672871409718,185.68712608457602,82.55754837698407,59.10763205083171,56.06555295670961,71.69712022648979,106.23608504581118,237.23616937451519,418.2960892759189,373.7454955248831,49.89237046333199,218.9031085428828,81.79642831812501,72.76391210761415,37.324793829815995,55.05870955931817,85.82719899537499,53.42331779880355,259.6496129773119,176.77457334958905,49.88708998761758,306.3809374931956,266.1336011509991,59.20582866380965,276.19553614390213,411.8693563266932,147.1364964557585,30.40085613516867,128.3156183685993,86.13990616947575,48.989681893422215,93.87257633291006,123.87689850637605,212.99744661139124,286.66351460719386,191.93664799785364,65.73630463425238,224.00805506540215,139.53440827683696,77.59647664930992,169.19732141120545,64.91486261851585,72.32030517953402,217.6556705304456,71.0428208032731,70.97813318038656,98.25769855215827,137.03597333068103,305.9366253975117,122.84661165196019,287.821670776791,174.89763654972194,291.8834142120923,134.80619891470892,171.54147559974285,238.39100778541328,152.61123922087523,188.53256058941983,229.3661181588712,103.7166873439647,87.38445168864473,182.63950643129454,151.15813503773518,98.13898441236232,40.134811446830255,137.32607797975604,195.67434120023688,66.32696793590945,86.15448836102414,306.04890793673246,36.99233109104166,57.23316568081695,158.20453131799965,131.6120545328721,47.24945451300345,161.41517461951986,68.98213768029609,72.45224595282521,70.18020759316137,43.62692709122805,55.86033635836608,51.95017241984393,89.85718467550059,145.10674872427396,125.87183398880497,419.4824877240465,73.7687705428499,143.67943255203141,139.07480318026987,202.12850214956873,53.95656387158104,68.97168435864162,308.004038709399,164.72665812154943,79.59090932858624,48.922428258834685,192.46321383185753,134.2645115431163,221.17407689245974,114.45862583425894,306.0462445778036,64.81787537603235,109.16350429186365,183.35718560924371,82.43922811983755,83.64164853697955,67.58393736786354,45.34344270887719,85.00316735491354,54.327782893161654,103.8912854328603,123.3145761931104,314.64898742730395,216.66978510256138,169.74739697909953,65.47890938174547,108.56365854801254,84.90640619047596,137.16365297826744,85.22353042259722,127.58107657872094,220.39581603451023,102.13545357774129,88.64635152092129,82.23909993116933,72.67243258546193,92.84054895830073,191.45913291366378,78.53855192476621,141.65900213293688,98.72132468920401,55.10749315697724,41.79454078453012,169.1898831804313,67.26465864878875,78.3494797153737,140.58138416633358,94.71933465023125,92.01789847906973,55.513329992837726,68.49484516973465,54.02863070130947,129.54197827009926,347.5913189601625,265.4117664259534,63.58881504319332,67.33028385278335,72.45732635178105,282.24457556845044,47.58646744636551,35.31521996272538,156.11857225648245,154.45419922160423,197.24467917791523,86.54217186463976,60.120074210645846,95.37057772060878,100.19156835271068,66.91418236878584,58.31382193331232,43.793502699170894,118.13100145773737,133.10650498948908,74.56896949510369,62.04739422176934,145.23624994753294,175.53831559411742,160.86502424097787,113.56942331992084,93.96620624250983,200.7941123647176,84.25003471470329,70.71266474199201,30.37048512369073,90.89087758469157,114.79180136823771,127.0940484512833,176.85831716951242,74.74823156249853,51.811260382234074,143.78019970444805,80.67324105901585,105.96503176301002,350.9253113758291,112.62850143779758,96.49783631952995,94.31415212513939,189.24878668637567,28.177962090334944,51.09167634110483,45.081143796789114,386.9640194724281,52.59448917919723,361.346731480233,112.54151890090762,91.03803718616409,83.64277406227552,61.532209312512855,153.84594511541454,262.4376814635464,150.0503858195207,70.33018654359111,34.576590863315765,111.17512528951713,72.79242604361522,254.61894520663506,127.44802312836995,63.335501867954605,218.09372758490778,92.77397988836492,87.01831421156466,46.827821472595744,487.850405640603,117.0654675986899,171.25455995080148,111.68324088790706,60.76630563741034,76.16071814858488,251.23742540527155,57.4817706696714,71.056820236873,83.6522601233205,111.93348964247367,130.27403657393702,93.52726647650299,99.71491256685887,146.57576592954615,95.81299477413215,108.58222440167566,53.795946861388614,65.94107146458008,52.90686291592064,84.79798558157881,377.6593268061158,135.62109031133969,97.08522551316612,94.48682838828728,228.78793038396626,131.45931682153082,114.30761169082858,74.21448705267616,60.15383286687676,148.7135821158248,98.71946489109098,185.67297364105556,153.26719213775948,75.14426367236236,72.08513552815943,37.949063491903544,201.1062344419076,275.70280945916755,60.49239087612646,98.72195488649801,44.76526057325991,90.9309422264357,83.4397827275576,169.6216439695892,80.52985639467221,62.14978224901267,138.48289091164614,36.93954861460182,236.57092664361778,253.4120519565858,73.5847875328892,153.56682728602837,94.10353219596645,56.43356511178512,130.2350129915985,95.29572170805906,93.43290055259786,71.90731040469082,119.01975523184866,248.96835518201726,123.27482911988506,231.10558606195866,100.64177233028379,228.1516958964664,45.863869423425044,185.60473609896925,48.671343941899444,336.2481198434815,51.03803314984544,90.56423025720629,82.906021464407,107.91398190000258,97.53722698910141,66.70932900106398,81.26385440599654,213.2644454571732,239.98737991522745,137.5151850304822,136.2388347027829,41.087243727491135,119.43501610910567,95.39899620139454,175.66075317339792,94.86319931930728,86.66259772770609,171.8888338332277,218.95600267855974,51.0452434185585,73.86724958428616,96.62736253927218,59.0256770127281,43.807668519564366,68.91076969574779,112.73665232970835,191.66032888344685,1007.8883505168221,81.6587987004492,87.62338654948135,149.64844413136467,105.65219539740035,81.98541040837968,143.92693028341108,38.746423811362625,92.49294229207791,186.08252686298408,98.64432343933022,131.09230943533808,53.71145433309336,76.72826019513641,60.598705832859906,156.1752103268737,71.79658361081655,38.43352086421831,141.9366744257427,134.4639293480224,129.90630220195146,107.61183765865934,96.35219638023716,165.58776092271614,212.11568553693513,51.91608675452421,81.5991644792543,166.9104537397163,54.68018113819919,235.7435091811644,74.38947871254716,87.15298984957266,90.81502698107509,92.06723068695253,1039.3314591151889,175.6615413883775,115.08286292219029,210.58401858241345,69.51461459024758,138.82362337393963,67.16685013146711,25.776429912075727,98.28579439076375,549.9272264023058,109.84545441748347,47.971668984687966,37.777652872229034,135.81680468340917,60.68420195423413,132.7694167535388,88.98368453110214,76.89239011495702,120.17746554335852,98.05979527696195,60.552592187784136,164.3430500273636,88.09115721948133,213.8436222725503,103.90140848398872,119.72745176321773,67.29011196514543,101.32825003906096,61.01114886630122,131.0463543633329,83.9207348690883,83.80088062171586,91.03290935191741,202.50512673357994,187.15092884408676,66.84136511563372,437.74219823289894,197.62834360442926,117.85061119891074,56.534719074434825,200.86923074205998,68.08669765017422,173.06363066274378,223.21801729326765,80.05263438430048,88.05118162310849,290.99352600323715,95.05812599929322,146.56007582497708,102.53540331399446,135.45615914059965,159.90579040220828,136.06191607988373,228.5852901189247,89.51444433271737,55.75196521173031,68.16678178482614,201.27186934106544,150.4490084847577,68.9609310749004,170.65948987689114,151.86697656120677,152.97541307615612,41.924291791502554,53.56330237601659,95.7584612876477,300.6729093668736,67.9263585195022,130.66721307307049,461.8232002716621,77.27946080702435,338.28953653320303,46.24815348117907,139.90458137691544,68.40698796857804,111.22169927407755,141.07367475386462,116.53601746942917,193.8514318000079,258.9923300097991,347.99032692845856,133.2537037152739,178.38790652366316,64.95620478603826,142.50255662259934,268.8609074396769,291.5662692088025,224.78387190872445,81.95407161392393,68.92758582546833,50.2008062107584,60.1242606826886,74.6568430899929,82.12294953164076,78.15675118485119,36.83823726314213,78.64920416107428,264.95212129804884,166.01271232094555,70.61641766594715,238.4364402721811,107.41033808281723,34.7536145631482,67.11684352165902,106.13624619956276,73.24353692087156,77.38639307516549,65.35939712638657,64.46475477745648,88.69268325909296,70.1606573464779,142.1737959118777,41.96180633884486,92.91856105854819,70.00837497353305,98.09909865829071,54.199918637966604,150.59925249054282,81.15655321213677,76.47950384057353,101.58543822235082,60.83566060268504,242.40746971958097,212.52419313210828,48.45797261320927,112.02181951092476,63.73870864559652,139.69635736866832,92.61966362982285,78.28777828231277,40.616190739120086,109.00837061874051,86.72602194908148,165.8784676844961,122.45558467539198,135.1505706657277,85.10023873004037,231.5592682276091,102.32356426981919,56.54530771687017,269.9659712834541,69.30162112730761,48.173249329402424,214.42070519794075,282.8230776311731,78.36576359365127,184.30239797218763,67.23864214693364,98.1695305930922,62.57043209037173,105.31297044356634,76.33558630069307,75.97039593081666,155.79091918690537,70.3934119968281,54.98414819900959,162.26892106961103,388.4409695947315,51.27999953765517,63.863583035329754,66.56049086680507,155.86175877820034,62.55042840318225,261.6740804936415,154.00921200903056,109.07877572063438,144.4126154024534,63.338244940266975,77.27864922633475,120.96647258529896,78.5417807294799,155.88916274257966,174.1375172829067,57.216200582289744,71.5912095599472,185.53089257187182,159.59578282432838],"multiples_of_cash":[5.249765756193708,5.926205076532127,6.332411208104698,6.215340234346357,9.577286714177033,23.867226664382592,6.892834424113696,7.271662530851939,5.43470063028107,4.099905854933435,4.968542994128557,11.1121625414889,21.630515339351174,2.324778815274097,11.297920308114493,3.6061961744597917,2.7311483510498338,2.338588487550967,9.731572309449476,8.288943149998845,4.7784369985948905,10.299228127716534,11.9957023048217,6.221229339729916,12.963758555070308,37.249408007317534,3.881936735860191,33.32440311922419,6.1504368318133285,12.976078776095706,11.682358636042661,38.011375234230535,2.746396577505095,2.0580853810881394,13.662246569080535,4.6703904689862625,2.315810385837187,5.466407880460041,4.150591756721956,4.892815493854559,3.7071944031859156,42.18859589884062,5.852213677648789,3.4138022755721065,1.3384715603237747,9.839643548981547,3.455234407538367,3.4434878676524416,12.130418578460842,2.5623100396615768,15.600393448873488,7.811378126016989,6.748687906788129,9.13988049100434,2.9440645891811683,4.903354808137834,3.317963191568613,14.554699765994414,7.030448655979771,7.519256809559804,33.638930710728474,11.045988144607621,19.78795849279517,6.111408670706023,4.22799113469859,12.900162606469022,14.840774474285874,11.922058234158415,7.309188216259014,10.484591394774762,4.14999560862219,10.547807948174768,6.45565725238522,4.099241551708761,1.1599605324697242,3.7967861548042054,7.3889983597905085,2.1830635551183315,2.4319981630244487,16.471534246159045,8.756902836480872,2.8246685486321215,4.962616117607095,15.046270937988925,8.116761893055987,3.3711084473493824,14.813775407774312,3.741491382945205,12.598709285835344,27.585381313955608,4.803397037380406,37.341043607187174,5.421950170607252,2.5422925612929315,9.419234285268615,10.16239308250478,25.490977286557463,4.554790778533815,6.308537980919835,6.165052724089208,1.7610692561184407,2.5022020680737667,7.864184390305374,2.075667849169689,21.418067544069924,3.239816640065553,7.224745111258497,8.697879730481805,6.602232476258089,12.028717504866707,2.8757006582858695,6.382412690251645,8.25655261174791,2.5068390130587255,11.641628351610029,7.354029606948993,5.138920245824967,5.883015223152746,11.904784143222187,8.522213344229126,9.028453986236148,3.5328002985926448,3.9813118580905678,6.228924439498742,10.38643706204806,7.017932194448313,9.600963759373238,1.8482504931215118,4.29864854413967,6.64668680113285,8.105526909260789,5.087237414166524,2.081935180878984,5.72786324228811,12.17553770988676,3.5734136849959017,4.481245092693581,7.7420933578873345,11.244704690623738,5.312338063289497,3.58141448522553,2.961534214038398,8.071869158499391,30.188153770013322,10.56648674061493,4.812986221768418,3.2117563827312234,1.7011011151234183,2.4829940268263866,5.930955343533681,14.577336697642263,10.595102669548442,1.8449984270002784,5.175217496234453,7.400839813680254,4.21071900283093,5.640187416959321,12.475462112159795,5.560830217464835,14.438481611331017,2.8955955764289474,8.573490120436583,4.76271450418109,10.52180544636019,14.894208586349038,6.628436249190917,2.4869105120117454,12.22573989194329,13.104795802865723,22.27394609990455,32.91626928962508,7.668403943779901,5.984205661370761,5.212921152510016,10.645753492794467,13.402632001969966,5.871410198613155,15.39492383175764,1.6469470066229681,8.68597329561669,4.366771373915209,11.63098194885692,5.244738546454641,2.4876177224842695,5.290979774438069,3.2438332110054335,3.6748993568634156,20.667128676275887,3.506080444770845,9.214172834254486,3.8790073808398184,11.5814391145621,1.2556591298804758,3.6569318465889986,4.919334595694746,9.46290247164654,2.3426735221987136,2.6522993897276135,9.000197381310752,13.678678034472478,20.57793966032806,4.335417528830026,5.315330893008406,4.989760418995447,9.994920110442294,6.033189260158647,3.519746438901824,6.224210281429047,3.186582630402237,2.6578164260948243,22.856263149728424,3.5202155441872334,6.484146325946169,7.067283842200557,6.211908697065569,3.9254962036207237,6.727189409972794,6.66378558779808,4.588024405535507,4.359752739546017,3.915444440554112,3.192719825894938,3.945479489221129,4.707776471848755,5.113401785617103,45.95181763381748,2.6934830189050563,4.371958703857678,3.9130420893270497,18.004521539740832,3.6638723004550835,1.9575808378499688,8.637893496975948,9.740983544301175,4.3169366562184965,2.3190284779273904,23.489723732114964,4.648849618672709,10.323630075997551,4.826082368456807,9.039059746381808,2.4825053367450987,9.465577174038943,4.157988131972054,12.471743995622475,8.196746674013129,6.7420635872287775,4.032180791505079,3.206800205068324,5.8791988971039055,8.670578838473741,7.266165043726923,3.8766364856809563,1.925494365477126,2.4200919252554813,8.60864762881091,10.498493107603164,5.007684472243741,8.544612635092449,3.143654896261842,3.2285048150829514,1.4921026427012516,10.151002748515499,31.860712416957828,4.647839325505393,8.83438336382977,3.1031845207160176,8.851292163578272,14.365121881567266,2.907827857383959,1.6529676041196906,4.068466417418639,7.597969521520134,2.7015621297776997,17.939544207794544,14.388046315601155,4.564446203277966,23.561045750053193,14.489244588808441,13.674506037392904,1.6167320161737582,4.220946424842568,6.50006470083616,16.9503662097402,2.1941599393860454,6.969957521246493,19.242062979806366,2.5930186782585167,4.7849354173987315,7.2497244156162814,1.8410918479268905,6.567220370186076,5.020859038913188,11.968572934342015,4.591905788815955,9.267483276899421,3.6344162976206285,9.122669179972819,4.034268744176083,3.2717133060607746,5.985706678842533,16.165708754264774,3.14883620860614,9.010787832003572,4.867771345047697,5.309508843936788,28.281618890135075,21.17503066159805,4.385804131575952,3.8485406257853727,76.73407779091013,6.825624193496577,6.399285419078555,5.8038955612292975,5.063818620538798,2.0089258761619315,7.626610470202258,2.399069650966273,4.902687268908281,4.70518382796828,3.6532273232891788,4.841787951235671,6.311198534809947,5.2592743909360955,9.318256689323068,2.5958050759556324,1.4067416208324204,5.021566290979914,9.346600444846974,2.789778599548413,7.460194800438154,4.98585351184209,61.28579955512053,6.0389132670647765,2.568304600651163,4.153581510199037,9.079631111707096,5.483826889612562,5.532633670798866,9.846474472960741,5.937173222171044,14.555828426627597,5.318811941770889,26.751312221734736,2.3392163318618047,4.20390223392549,4.055201292889884,7.87266675985,10.746891029718192,2.6722329543050747,4.6191129288436255,49.71006214394379,11.106510661505954,5.3634910077544085,4.457097478142278,7.108167489968827,3.724060192843127,2.8015217987103935,3.3831320282526876,2.1563193224129167,5.605482266094783,11.82023635114902,4.263467303217715,5.874180567498689,7.791106993478133,11.332577213684369,3.4740376690987715,1.8337978298683488,27.55852976004174,3.9594061350494374,17.20979883902874,6.6493320641004265,9.88496184192574,2.9670854794726775,2.448291638704633,1.9342808770646043,7.165141159447234,1.8167911284004024,2.3136056470977304,7.18714010391018,5.137378095174628,10.663967319236393,13.056446671179456,2.4387939533163565,2.9961407682859993,1.4723450441340666,2.8922098310977984,6.095727660204143,3.3037122606197333,3.2045238952029753,7.335872790343871,39.586220786053524,10.06636316756384,12.535005895309938,5.983395319242423,9.435898078134622,7.620675009794165,14.513582387197967,22.48792455490784,3.527683610128301,4.407065956481349,6.0053457527520555,1.8564145572619006,11.476480447270385,11.215254032106179,16.536168330511313,3.9801342104195596,3.8722085579565375,38.36929041980782,19.666058969989386,14.774744552641984,24.28190718945497,2.7289488175512067,4.030293632430277,2.5900780926413205,5.92965270821092,6.151659171740495,5.373320887473323,3.595068952104847,14.76694332979439,5.484874884163443,5.521168392822151,4.695404438653156,3.0123826468711874,9.742036074666776,5.349727714685261,4.296247299242984,21.93209496713054,24.024058930001072,15.134244089578633,5.237977347346726,8.80186946991963,7.372156461044803,2.583496428796071,7.209007360599157,5.185793450184705,17.773435544085288,6.659466795345391,6.688366826488933,3.0919675693981157,7.3062414534467806,6.826323356498909,15.896526421135214,5.0905020980328795,2.5759684715507833,2.067018893313809,4.689480691536952,3.8946977497803124,11.241163058419543,5.096898195344859,13.19301092868087,10.161698579274326,3.9035009280505433,4.548109957877873,5.064797052226503,1.740406127257704,6.337950294526764,2.3224156446447193,5.164994887523648,11.958761120009394,7.65730288471223,4.089523654858621,6.752715332171514,5.349893929333221,8.542598805134189,5.343020336601282,5.676405567978683,3.8522323903685396,3.2814825687601314,24.532476344453464,6.028442923615088,5.603910781119147,5.198370041794444,9.142011522815142,16.883159633970365,6.512610790152041,6.230027704792287,3.1507082071727415,2.4641079763170066,16.48592114408052,5.610383122596102,25.178363184262235,6.895545409498372,3.6644198138757242,4.879384406833479,30.348944776622513,5.250120939599507,13.571218037023172,2.469313022328084,26.969239755038934,3.5647486489590947,5.021172445384919,1.4278693051328515,2.6470396928585758,5.133276155781409,11.838282228426396,3.960448707237012,7.390731536793547,9.663484413347067,5.47971770816165,10.733726722810866,3.1154561902422624,20.540633819070756,5.650311475816779,11.587890714037558,8.864640835840838,8.251675367730396,8.192944062986571,2.2823895114457216,36.42306845622979,10.569878625756903,25.547155985611358,10.75424302183363,19.086539890152938,9.325684322227447,2.8069889139814643,17.925389858834702,16.577935725989544,8.775113530928339,5.2410703958104845,2.883255316278992,9.193764239600064,1.7456744352594178,7.246451075790231,12.002428101470054,6.471042062126187,2.726994441753724,9.84841409968698,25.692578863822927,18.100617472730104,3.8998664317948446,13.346864729484603,14.005726295742999,12.593219248919448,10.969725677504833,11.938314018910761,9.355814750629996,5.670015013283419,4.122055246838638,12.958563552952498,5.1515111025879525,33.832479587333744,4.025960382836797,7.9675738047682385,10.102516026980624,4.244958353862739,5.107965543945682,2.5006852416547827,9.746886934135723,5.5512686877919215,4.29534099060064,7.044952468211399,5.041669150955401,2.157665901000633,7.883537207715624,4.038898795964412,11.135089453072457,3.6244841285930303,5.777437369456458,2.2014591916153186,5.144512493714664,5.482677206237223,10.965356192565416,1.8697964606826973,5.152240190955415,3.845685264301663,3.1351243713833687,13.969929142269422,5.834681773891706,5.743842679162542,18.931390554569383,2.0013046113379764,4.1544131464076495,36.468869556167576,5.356427377374652,1.4997581588355786,2.5483720442412134,7.828762153560858,9.631707038837915,3.0836933927419907,6.024895378299192,3.3724512107453535,3.4070146142743085,3.2632168510057387,3.756989255854773,6.456266919173261,5.837296118044721,4.554514863977199,1.5722879172944846,4.240254927493799,4.492316978401605,3.2374310364764503,14.454299847858696,18.13985356002872,9.395820280817123,5.638530464317532,8.439750100855644,3.0286155414206175,10.997365676918953,12.774715176046602,43.21931310377568,6.9409445084294585,5.794911141060598,41.46833299791217,4.651004493139752,2.5816044186249116,11.946222216894949,3.356973033619528,3.053220799502519,10.63038733919536,4.516864565518876,12.467845345992206,2.100703646989912,2.510429694601029,3.5251053126336473,14.21440531031046,5.988727764516119,10.206836864452367,2.400694423654558,4.564899081453082,3.826569413251338,2.3825299671551976,3.9382051958214874,6.2561869580402565,2.812928755850293,2.180495778573898,9.603251901541142,9.13322199408807,7.370477098916485,1.769185556443395,39.1259485605521,7.463149112235419,7.518694841640034,5.994796101540709,10.250072627018888,15.783721597439241,5.948428524814857,3.843564737267721,11.62001514773063,4.240390171494533,6.039970215286688,2.107960507444458,8.346860755467183,5.055987949330778,3.9136448445975245,3.729942413945308,3.5128753645292394,1.863571447753051,3.750222389360399,1.929677486639836,9.380790773993597,6.956482210122025,6.549758385740437,6.02560765249166,9.180939966911252,9.073026648190078,6.969291447960859,8.720444439378875,22.299130315391515,6.635685960638289,7.263926276584906,23.63679229926384,14.83953829819236,3.6255394136697023,3.6638964875356006,6.782097826564297,4.003329296414487,4.284822439474477,24.54589058142073,3.2933348405666587,4.12114153364946,2.6464875120323557,4.534699844736208,5.944572259583121,12.03400295337978,16.211423436211717,7.901049015762045,4.288943647753318,5.690092151048843,5.558501843249804,1.8497475485246622,4.537600632364285,7.570077062114762,10.263906542460166,4.736364585254838,5.126158491028094,7.36348816490749,2.2964409964373256,6.533019908382606,4.833712439550507,3.093643584674106,3.2413657225661656,3.4429719185805916,4.460365196943389,2.6675003751139954,7.400237861555382,1.973868435887726,3.9148377753693153,4.807429234443488,3.503200062044499,2.7754373828797805,4.885484943356863,2.4826564425798905,22.074257034191817,11.671055849074278,3.2055430093449027,1.8625668833168763,4.494960626801246,3.2502306523394195,4.985229103792087,11.540825552309272,8.10328640643366,17.681220305146226,6.3550067090926925,2.839837602269016,8.566511426295627,6.631364146121778,5.137650898106736,4.241489940728559,9.996655786368613,15.82860839842592,5.4717960138201525,10.486563145728676,2.986405655748324,3.2154912732021583,15.388826687298746,6.982666990672405,8.614814144697723,4.6642286495651835,3.9262258539671797,5.438149718286404,2.7227592699226886,19.101438660733372,14.523814877317102,3.147648930498325,14.029646986080065,2.151949409023114,8.432247844637814,6.967864611316589,9.715364898966623,24.321712103699873,6.43755248607942,17.486523004421837,5.138778512519185,2.8385511942717736,21.844066526711195,3.066720867351268,18.640177712448477,5.627733316201208,2.4098276600197726,5.5355680948443355,3.7440168508241003,6.315954525488195,8.183123340377811,16.343500987706555,8.087465854619294,12.659529914851664,5.352384128515282,4.974651631598367,16.399620824828034,3.593356917544136,4.4733933309214935,10.626636447541781,2.3787197492622942,9.042519564549803,14.331060434871652,2.6207487499318938,32.99240742207304,5.634641063515874,4.349444093581351,4.290940241166524,4.7146105306604795,20.876109342602955,6.825571403462834,4.119022263030997,3.3973702454336605,3.7321593013865315,2.3259827954282506,7.097846297387782,2.244583002872132,33.568426297495826,3.000396844341628,3.651894572684112,8.923619838291525,3.3540767754685303,9.74352802307988,2.587595494589802,2.58883534004114,5.742542766250282,12.39169195758419,4.110690569432816,5.914977019156213,6.920056867603194,28.389326925832716,6.67924125678284,8.13376203941924,15.713088005511667,4.64416257062845,7.803755066199042,2.976047711793742,3.202477363589566,5.883833053027247,3.9072918107207,6.205887483976588,7.042908027108878,5.719559308445711,2.6961626366228653,4.910337224865246,9.038100634469231,1.54863394873074,5.340336981160031,3.1256568760688896,5.204488442301606,6.117471305456406,27.967216872337172,8.082754194206098,58.433186958588614,9.198862276519064,4.851603410663159,10.967453896885113,4.300415631846887,25.287017649636343,9.078226451141555,9.096260356462198,9.778762040793548,5.639830880662779,42.24231972812563,2.7626379847938773,14.942736170095342,4.64080570235511,8.011586743350923,5.823050011419184,3.4639296855177384,30.49374755168938,4.192321452899161,27.144821718220893,4.401365172796866,5.558937192697627,3.686399633602032,6.72089302094531,6.354363817762505,2.9543552925747294,6.673508296398264,13.457545165832835,17.03064118061144,7.7926394307914295,7.175439248459133,2.855060805052296,6.783581648085831,3.7413963315083985,2.971205973141974,12.56183346963047,7.259446958844647,7.549301042341969,3.3610353428236457,6.02809547650082,3.5961295300152125,5.147742082610294,5.794298433378999,4.263159137003692,3.105585355840616,5.937447926331184,13.891921253085389,4.515665673011023,7.285904856420936,6.691024816822026,4.543451873218839,4.990331965221533,2.62149895416991,8.401972959808075,2.8976652781988146,4.395710953244199,23.182805940651534,2.2743595929888976,10.145454379045415,18.812507881598613,5.95741999001442,3.58175876607604,6.757060775408906,2.206407258812415,5.33365715024585,2.9125845810719944,6.595461289150431,16.38436208376297,4.985573555227025,2.954152673835795,6.0111666691746315,2.804372609306505,3.643437976149154,10.188309532172967,6.962396007153153,3.07436381380476,7.90317820062806,4.8345902008400365,17.58928204712971,4.413641385528574,6.250927433097514,2.741941026103679,10.434072735079267,3.5531999193363846,12.979845486631529,4.230972801723525,4.278641984539499,2.013054294546087,7.5148694305690595,7.5955275044982535,11.10051494110542,3.3128643613160875,3.246115014778532,29.846303429639246,4.0403774112392075,2.212482504158608,4.593656661373077,3.2102769702870986,8.289013909865028,4.816055499388596,2.0122568263356735,5.853866396088972,7.417817033281419,2.261527610636585,3.575397932460777,1.5825888636724759,6.445150550792244,24.992524364384106,5.516811548064938,13.96387828406757,14.802553206872785,9.298770105455334,3.658050359117522,7.9053139187590675,11.119379009768487,26.276023145086167,3.540224235015973,2.248410109189866,7.730697721740401,8.569612287759805,7.086333083682378,7.756610906493025,2.7335712111853154,4.932368120956566,9.572912279523873,11.358753590870146,8.371455454428856,2.3686057239691927,4.192933121254681,2.07347993490867,2.557501162734487,7.806758159604315,2.8535501983971003,12.378557015633488,3.0988963488445647,3.4756671456069186,3.465847895010601,5.395257400440186,11.103480220235532,2.627320649641712,4.657920390116997,6.177853463709902,42.63292647947872,24.10465253003824,7.041385668403579,4.842795243368154,7.655535434328922,11.190419932562023,4.325981464963747,10.333187560651094,8.686114835314203,4.679150457734118,3.239932774352971,12.527360491641968,3.6259894369180303,18.24951554017524,5.860368479816785,3.814196225289122,3.8184781505042094,15.935694860600712,2.305424970096681,8.365494856851106,8.42885071099617,18.647288586055634,4.059790649951535,1.946847406037891,10.522688360241952,7.264602910286933,23.87221172197455,7.492533023398267,3.7759871732526546,6.228988541663839,3.8561892065445194,4.716079184264675,3.0921359303048845,7.457311866299701,4.38514670209843,1.7310408705628084,8.299903706016401,10.462113154508298,8.300396659111302,7.683966436747868,3.705575020843144,2.6771353405098703,2.755699086134817,21.911491927132143,2.687123022384446,6.972350287613069,8.488220640502906,9.347287355623635,10.977733736017376,3.4076725027411685,3.6076959700126987,6.115510348564614,3.2071430376209116,4.633407707416575,3.3854585759752176,10.715967100906882,2.664923167310531,10.944008592877339,4.094600306530729,6.6642769201812015,5.213080728429793,1.8435817199376483,5.879190342227399,9.723233456641292,9.011748174906277,20.680141806075248,2.4345391955396347,8.719425601831531,5.087455774272183,3.519672602571795,19.071610589794062,4.740579434109268,3.353727536375229,3.6325737331064083,15.087341632468634,23.573589838361872,10.224534971248772,5.647075953226012,2.248684540196437,8.942918344281555,2.6411269585503656,5.758776380487019,5.509666982499192,4.087659205255128,4.10442285441919,9.586912986981163,5.82648447959555,152.5157613662809,4.808634329491322,11.46398785774727,4.085923008423242,18.399812710500715,4.005384409899351,11.250312980172218,10.247703575128009,4.277183989960542,3.008950158788924,4.028977230359277,3.8834828230731704,4.776285853037415,8.089313271721599,14.708147136048376,8.785708403077566,2.1584368757755463,11.371166715340216,5.7676969771622275,2.8857502372305817,13.915767999480265,5.189240939022922,1.5228459223409996,3.7057134662271136,4.681771453909445,2.1011051148933384,1.2631693743832397,12.599000818745724,3.917034632078179,7.238101367662901,8.173114632741928,10.220473950913986,11.98775757351076,9.886014797274623,5.900555231131018,7.049506664242094,4.133406380667087,21.317811313385263,9.195586002429888,62.043698628270334,12.321165325802914,74.01603707740755,13.337233516780799,10.282148467914542,10.831315225256738,13.951905129722398,10.22265561766822,2.2055648010254996,3.4703804732236154,4.765875729753344,6.077572702481018,6.050701235314085,6.432119916122473,10.835676744262523,16.699662923250308,3.719533204203681,12.720299766500835,10.641200717964916,7.298718071737145,1.5105225549321764,10.7960941859212,6.021122482350267,4.1663344215633735,5.655580740361504,24.980877849279427,4.450964487074737,4.1300861120733865,3.2532344354738574,4.991029542058809,9.252921782872626,10.36113753095246,9.345899581704101,7.981352899563327,19.52286922825821,7.6718966230547885,5.901649853390679,4.823530588882322,4.143762551496626,7.40651621781658,42.4719458237603,5.26246752277009,6.616890025001124,6.899578198775515,4.399111889414499,5.042685731207295,13.303502185970213,6.9877135242477815,6.678231148683754,8.255698067410622,4.753427030663836,18.705128396992496,9.41386840864331,3.18864478952451,18.442126863636748,9.045932468640006,13.80199261467444,14.92242753159864,9.872998508449523,20.66831820111675,5.3844063712266825,13.64701715593975,10.193755688938165,3.1919667763836936,2.974771337804229,3.8880365415769567,22.10999706219974,5.9237185829062025,3.833423268718676,16.41039513939355,12.261023820852307,10.760065616371092,7.971304848504678,9.946330112407923,2.6877446116255936,6.994733134071317,3.353291407215032,5.30294221710272,12.985769612490056,2.127161569899947,7.157206930758686,2.621459416985073,7.454078603171579,4.738351624968599,5.078035320376685,12.955036163518457,4.7348758366121295,4.773483007033026,3.526717047133429,6.364861933394653,10.458100041023261,5.090620287236068,4.303216934279088,5.96865573718252,7.580220269985985,5.737370171986625,5.9531199202387395,12.328095559542197,6.322323423191969,6.721887027859135,9.414587809115455,4.312952963441234,6.830587888750502,2.5594625009571175,7.58460945263573,17.93427644462711,5.152541309357317,6.567676997999882,4.427587496313696,4.980581264629328,12.501864802611644,9.612294913886894,10.178872345420872,7.0408653024599355,3.077038534156664,33.74014748373928,1.995845499931074,6.606657444587268,5.142490659280752,6.090574203163443,4.631955836951341,9.011200049824453,43.680671174527596,3.804839671242084,9.756021856923303,4.349802596260955,4.621879979337111,4.741389980140047,5.866011853618599,3.4541243971546076,3.1767402345520703,10.14339126482126,14.30316225271779,4.541681085319972,6.198328260945797,13.262955054056999,2.8548226275730073,3.496961552978209,3.697167628186595,4.903113429745443,9.738143646124394,8.726581683506284,8.136864046678683,3.7907934752506756,3.432524983816847,11.905500519040942,5.292773354038165,9.002705005626666,5.810966256453128,10.921435582542069,3.914301413022735,11.27492048739391,13.797780483655055,2.982378048567799,3.5529267758137797,5.288470854498062,7.906996748192036,4.549666578586366,3.0466876112138355,9.730110888433957,9.247870292807313,8.163080385331101,3.439329872291012,4.028487449155285,2.916427637642033,4.37267068691449,12.325999925056042,24.98041835669199,1.9724052494784166,4.4752795268289765,13.97481132333573,8.621106141727152,2.050880704928363,4.657042778305319,7.8014347888005195,13.356108335605946,9.592572746862414,21.72557969909385,6.281278533923192,8.681262304119382,12.878070111653413,3.898887636437695,14.48082745300298,3.6114056914805444,6.09390455209006,2.280675812798448,4.7275239624765915,3.7806048433333825,4.149194523714064,6.908242337985285,4.587142702261703,5.333003175884542,2.013179558446814,5.985357213876257,6.098814048787636,4.3162152538385,6.605397083888318,3.4011713123588634,8.452498230941528,4.841068626818687,1.6595578504604402,3.783218243798708,3.9597976461843567,7.626890071906652,4.556603884458125,17.083486021820313,9.556777989309367,2.3540483358322333,7.148910095049758,11.859769250039507,2.522450072495415,24.877814992912196,3.0431730995025723,9.661000106577712,17.357188401167598,10.388362832494746,15.085163212204217,7.034762822812954,3.2191161784462548,1.5640580314697285,4.466460045780188,8.00737767730868,12.29711014889831,7.40602828868721,2.6657954161374917,12.27027081459513,4.25166869668484,13.529615980610615,3.2547835420240396,4.095065615959213,4.517445979638464,13.402267457483978,9.411259347416728,2.8005389099091897,14.965430741142539,7.9254583291205085,2.009070128152022,4.416335762162558,4.8506709731044975,4.191437096861816,19.050614210030645,5.056426326904077,1.9601351087268282,5.577939155815923,10.958906242956688,2.539750292716346,3.3299250066122075,2.8186575352254,5.881023334021569,8.396920038951272,5.882927160217273,11.47426996995498,8.11231021107086,2.3961778674411196,5.811319410457067,3.840663796533698,3.0983042824381215,8.322376434269405,6.948511723730405,3.4693125253630126,6.8892095703557095,6.182899673852868,2.164336689876911,8.721550290224448,5.148327455785813,4.511323792159063,11.287920957370043,11.984763666897319,5.069406013451634,10.141355443734238,7.959028552411126,6.994356361358463,4.739570602135463,7.6940701733632855,4.763113045367818,8.956513422324313,4.032801476364389,2.7799600641143036,6.164678526229001,2.1452268290833465,17.380687179767506,9.54593251889896,5.01905728816823,9.51885616894818,3.2386117272432196,5.4624124516639165,8.046766969243174,2.8279179462140513,4.149271583029039,9.15847265978035,4.2628554030425425,2.726301102789351,12.568838728294136,14.457158001378238,10.319007478772576,9.487328479999654,6.018129003600193,3.2118921605565944,7.509029559773461,13.123499021753037,6.029909004958168,2.843484547593078,11.496706722925728,10.155738770156486,28.0527428234494,4.565225417797277,8.445132452874821,3.7424393991210216,7.450336441644428,12.188885871778947,6.049696875303103,5.239933516270141,9.362116906488323,4.799142684509232,2.3642938345519022,18.799213998914954,3.512667021177484,3.112448580842758,9.236973017687593,2.7456894929694338,3.5488619578433225,24.383999131117264,6.683857363940293,5.021591592455626,6.337245973362076,9.724064055741595,5.271253211858039,4.897449633993469,5.519607672275133,7.96881801517798,10.565466156185863,15.759723650436728,3.0469847338386638,8.809797566082644,2.0413583825976653,11.119452548903181,9.706152750163929,1.812815543759061,3.7677457269948023,2.9861208504771604,5.182288966371347,2.7305585827042607,9.65077650272823,2.930023066583007,23.10651487358954,4.00599263383481,4.13571137379301,3.218683869529097,13.549521875442428,8.74036590478724,4.165648181509282,3.8909562756782092,15.617045039540153,4.0694996053806,8.011817757648704,13.060779796042306,9.565937258804416,3.752474782757932,5.609676606077865,3.671449861515912,2.6495286677530308,19.348779865662145,12.921690290024996,6.297146028579209,5.383903286145037,2.2400047411560524,5.575351488568413,19.530332747119616,2.9130173260294097,6.918381265701653,1.6725040797688537,2.6513268942033275,7.156716173709588,4.44815135082013,4.845367428912571,13.143919858820311,4.945647690644823,16.38886484971975,6.456184326542116,15.024069183602668,3.5499297327943378,2.1921538322830694,1.8987811911259787,6.807608786699844,3.6127764535694875,10.060449507601902,2.906512988498376,3.1181452117300617,5.562433851533983,12.133676402084626,4.217431111229278,6.844194264670761,5.597443399194945,3.117627666558138,4.4993822600601625,2.9784237240485987,7.773960150615474,21.8826990904175,8.197765832584773,6.240956311282394,12.907157002147576,12.590074431349501,5.183215989552352,3.056738868256279,15.493270395560062,7.063656710469729,3.694956002166452,3.001258735599748,5.3919710887072165,2.6231266874677255,4.471579177915454,5.157599217670182,4.72482988115195,7.010036874286485,6.086967527505167,7.972020072168805,2.958206722777672,3.8669169025191574,5.816553936859615,3.9164557945598024,3.5615992060012935,7.798327340927324,5.448981054238712,7.691863665941438,14.807432092510295,11.68888287931234,6.934547737035508,4.230142458591382,17.401907735229898,6.168717628587387,10.415725699790949,6.24850611365511,17.054888314924092,2.3886568879355603,6.70404340076683,3.5381724673692903,10.664147186952437,1.7923104556957752,10.592182889281299,13.746073806068132,3.0967707523898462,2.603955618574515,4.323767000625825,3.914956637170408,15.099979361897049,2.0472480235821044,2.3794874652117275,3.869804431037412,6.275329295778046,3.236167495155901,1.7827558974729654,5.365987954649908,7.3325563478240685,6.077501413247063,23.5477686220495,3.3855474795045724,4.560723813391306,4.579910946827768,9.668740744566076,3.7378101940399064,20.70314065968431,48.14790119467712,16.417867707372483,2.03278287528411,6.786162117730646,3.40069840340615,1.9829845207957941,2.964822766037017,4.2420384095689805,13.561850703770356,9.306981293689747,3.5999310471697603,4.7593042124436025,7.069234115052202,27.529859125744384,8.579641197941235,5.310047677308572,13.30553422725142,9.873339011783614,3.563342201644823,12.75984180436787,8.926477477056183,5.256090850696307,7.527259444919887,7.857798206675273,1.943691570723272,4.675565515535739,1.7683843663898744,1.9154350168574632,2.3267810886074543,12.17137671564065,13.644220996418849,3.082093038590234,6.667874775762324,7.520929493916127,5.912389730478844,11.752987400733625,7.17895195563696,2.2448762132002,2.4105174119005386,4.563006990215772,3.435571165923305,11.763858439182435,3.288633187246118,4.772122612916829,4.523482597955348,4.60140107172199,3.8990834895908644,4.756207360678214,4.880109144325668,10.911618219401095,3.0496566318855463,14.130006448660763,5.510259787884752,6.240413577008459,5.161883463840883,6.876135474250499,4.64481401533693,2.8858852503670898,3.3006924798655284,6.077354781686315,8.364402270127218,1.5356838252582798,10.56270075150291,3.8293043347002786,3.1641573930329208,2.9942213919238325,5.1081349148366035,3.927455323156577,13.78205393971029,2.8386834223095376,7.513024856296146,13.329668026954653,11.210602482267559,1.8113259586041948,8.090690250493852,12.64588594942253,8.130359627537478,33.34550750061238,10.050719113537694,12.577529113089282,2.79103597419589,5.377890692094578,8.511679487471875,6.8726458307721705,12.34681866294997,5.182647643583858,28.36178006164213,3.85747568379876,4.430920956899685,12.739033796594942,11.94642816043261,5.8649350172726145,7.814377162933731,9.110256649616433,3.5234512107941445,34.772129330564866,14.810266196809557,22.58662578049102,1.9869291023091478,5.619297205127611,3.581805342162285,13.277453583374225,3.946326052090511,9.497685489921887,4.322521993738393,8.859122077003605,3.143294355858472,3.501128240580258,5.208015660161953,3.4045515159563724,8.805070608368235,5.509220185561515,3.435349152698683,3.0872845428634244,2.6017604433996215,6.9269658298095225,1.908902513414907,9.486313849180496,16.51557764591525,6.130171186119615,4.490499855139254,24.101574150015846,3.595615590674592,2.772802200209016,6.894835965478334,3.4335135540598123,2.7893604050696834,12.521058393141793,6.266892500827701,3.3110929012513415,2.526278431595227,6.201656975085334,5.3702883325937245,2.0605787264410247,52.2585510143902,1.7670315872881472,13.87866295548294,8.905410697090135,8.519727907565292,2.945798045234448,11.361744741926596,4.965241221988712,4.254805390616424,19.25802948502619,14.005938305911387,24.712080146418657,1.1803334969477217,6.774545405612844,5.482197917117427,9.045563683306776,3.850037642303083,2.44566322500172,13.58107290646608,16.530401734282876,8.25015023634434,6.1090332198452035,4.267751523097754,3.4797700022364104,4.037180836578696,6.754437522344326,5.081039959943819,8.925575955320022,3.5004641715080163,10.089416072007126,2.3195071090497126,2.1473481300489152,2.801598334471294,10.92227545778922,10.6406259520943,11.976310778027374,10.999098071870174,2.731665048304669,3.9262933859179463,17.523703660750666,11.81613318023278,5.564808855733029,2.985781875705201,10.465268233275522,5.108883929098898,8.153545646885236,3.6455963590011273,4.467799419808821,4.172180698796264,6.694596097383195,4.296512342738428,7.821607344989749,4.927428957685776,58.86184511432593,11.222461586812171,2.328136860292197,7.518592368094824,3.7894245136394185,31.274591893158362,6.087804905126301,7.037348445512594,2.9776715694308984,6.111955777054078,18.523893316178505,5.283272339895607,7.889472033379182,13.749420553384672,6.249106781148443,8.23603545110692,6.29038125733958,42.04507845197036,10.670190077334222,3.6758592513037094,7.401764234935301,5.805825080737628,8.790137224615528,11.073933597883165,2.1552805504953696,1.8847099253739656,2.543911767414797,14.544618621380746,6.82959911421475,5.815115341882545,2.623401200824384,3.0947980704857416,2.9196854060780106,4.963256810037293,4.241812913706382,3.0637438749747705,4.743214387680953,8.305895751125101,7.016619297840161,5.3040661878822455,7.9241856171651035,16.64808613271058,16.23658860296873,3.859717817791005,17.697119735893644,2.6791951716483147,3.4712472511714445,7.036667487089366,10.645989227925357,4.6328631713613975,16.050821440767,8.107779121129411,6.216963243623285,4.575902457340567,21.85958459578655,1.9514728764976228,10.505420763711601,2.9989535075209353,30.20838295082717,6.267545450340666,1.709971777223293,5.42893925102614,7.474828495236928,2.648434473890433,4.1929975103843,5.662234103563416,6.239085184525824,5.3585573953047705,12.123500339919739,4.0517062113838,11.30449501053861,7.114987497652772,5.551076379139916,7.6360665230547875,2.5449578478760246,2.437105226293836,3.332022586341722,4.126425320848006,10.199483411427636,4.974402005773601,28.60732373382908,3.825397203594959,44.43014105690674,10.332068944668885,1.7865473979415971,5.523305325208888,2.4939712837038877,2.9074786168717517,7.126048684017147,4.230501018258031,5.114607160137584,11.039010678492167,43.50461010605085,2.7183755590422245,9.97414055355849,9.750598969334627,3.5366018410264113,17.965615197428036,5.223720568785586,2.1472562861133078,27.516687236905696,13.959453634899406,4.443718622095997,2.81629681332356,7.4375940842714865,17.32256248260429,6.467071534712944,3.4735698489242557,11.841146609245152,4.403802555535582,3.3031383249469015,12.430209197486695,27.889361972757502,3.306955544365025,2.8235980287536826,6.425789229838854,5.902572272800622,14.469712502185216,5.72966582187467,3.5188519861807075,7.943064312864527,8.204313251351225,7.256207724412038,10.43474544410811,2.769927430209066,2.6984887551638095,14.527519840008878,3.157657011566478,6.235995346712813,10.107073064863576,11.364448965874937,5.86694635600572,3.4824393039628703,5.415551934738172,8.091142295978022,2.2588541779943174,28.165701084224125,10.104399725931517,17.015365860691546,9.482226426943987,14.848123393624693,3.3085699335413516,7.959079908460032,4.2141599935729035,2.5211528572651756,5.7885559520227,4.464423050193284,3.289196529748088,2.8197291406070075,4.54613376579887,3.6397116703904526,7.214969504253231,4.77734214304392,14.323674088417677,3.9308502157903193,4.9142550364981465,6.478650613805941,4.7239344775565035,11.06909151666016,4.986520683645522,8.873714795690166,3.8520842555570183,2.365886187894327,15.889909254390119,2.9567211373303097,4.131218805108252,9.13001213720325,3.6698803582607913,3.3077957766889265,13.131823014136252,3.7006778949099153,11.70679149957962,4.741898333470159,4.696253247223544,6.362503410409555,3.62821754121564,19.602259971826776,15.674595173528639,4.333547280410821,10.961733377055472,9.138479247768212,11.362171918439994,7.439059805055268,3.2218875888767866,12.820885049390174,4.08176071920779,3.7172081432229427,6.332096672124626,9.07158084220111,19.47072383941029,1.2826088010197423,3.6735360544465503,21.740598932679035,11.407340170514104,5.492444022630766,9.489707931989173,18.455946191832595,9.44763769093823,4.8142038289991556,11.044600649887375,11.224372671764396,1.7669595589582814,17.976361561245508,1.674727959404607,4.549698563864607,20.09173679911326,3.32643472080623,10.899959898408143,4.0346430266571085,8.48787042716064,4.073445398953406,4.424400063027821,4.972193689367809,3.6423419187302892,4.629933930184755,10.250213169603873,1.6035614294381064,5.661107189528697,3.1484683564919487,21.6372292256186,2.079805357847778,3.259447690052335,13.152340913002684,10.897455665529996,4.716577013294799,3.7392932332108137,4.695164100151434,16.998735478176215,6.162523121981965,15.831568876263496,5.653504669072123,4.439600049694522,5.034561488585502,5.2340164672071285,9.225445633404496,17.319614489569926,12.462517983438232,3.280804604635595,4.138755223600917,7.269986139830261,13.81282266943494,7.4336724164716435,10.93416919897964,5.192808530534086,6.125544089827139,4.456849814978618,9.262921964010287,17.778375109370298,11.491029515149712,11.835086456345069,15.99145408076924,9.72322764790259,23.771374818469926,2.880067017105871,5.501832960343887,2.7249929726810858,5.310285609071663,9.532068705773685,6.39807682524711,2.7921243157428646,3.1630739485822366,46.2282148197754,4.48399046976622,4.7262437792485485,7.550476976011583,2.289942864884448,16.44333010099532,3.7744394636951784,12.154366678327412,4.966183380700078,3.6749717629571297,13.598176326685978,11.686942048124498,6.711366860156131,16.187216377870694,13.835792056371286,1.7989637003551384,8.03522053028545,2.0530069987635864,3.6648881108324214,2.7318368027672633,3.0046322428874657,5.530300299432674,6.088243348168744,3.440317240224477,1.8304855019712027,2.555533681013356,9.328071009196538,9.943021752218321,1.6290060771114345,2.8984329038386263,14.689818402643049,6.982040769243623,11.86007702826094,2.0318461977307987,10.510389933188089,2.8471694687764115,4.451820716509808,4.371682381330615,10.937549738081756,10.849051052322576,3.254718062624112,4.56038507785266,2.4171605955270103,2.8405007447399453,2.9806373946788516,8.270456910710372,15.772083891792152,4.228676397277554,11.402760467440967,2.4303297194713314,5.945071110661909,6.911059069595483,3.2862612784003695,1.8127337377800838,2.76153699360083,5.172812661316061,7.935139633505824,22.31612977607523,5.243378470555817,2.5975536261369414,5.057563180160202,4.603979294195282,3.3638462665815703,4.693744196014479,14.778338162423635,5.575078499067933,2.812965520624764,8.789760340994254,23.55876871826141,6.178818239616796,14.325084655278259,5.073971744770582,17.426671083813872,3.0578002072420527,4.0258765424616865,4.367080210872512,7.964008453473793,4.042543733344147,22.24452836939563,3.053704113661573,7.412438371101359,8.532551871209538,3.6878007797909778,2.9096415581137465,3.8043563831642944,4.5145813225293425,3.659404806143267,5.798885397045224,4.267688086255634,4.475124413489851,1.4795237951204363,34.75814846494337,23.075426713684703,14.398466654871743,3.8227053122095276,3.649085207335979,9.956887114684069,1.823225749895824,5.724833311422404,3.4984035131205933,10.106414163596593,4.543538971698281,6.249824377210806,13.638499170908288,3.109373771443294,10.031477011997245,2.682205853049923,13.731861620616034,4.277110304233399,5.074624504650502,8.654746942789567,9.897643665000428,4.6208184817799545,8.995888447356602,8.365146755143211,11.149078686998715,6.724451127057863,3.378596235572329,22.7262439555088,3.5924861962904773,3.2462053691643717,7.7279981593328255,7.454628058526911,8.486190833153607,4.2915053057796895,6.208466841660339,27.529634946430807,7.357402496120633,12.914382059325813,4.528590874491919,5.716728572424317,2.2120256048711564,4.939503691603622,2.019550885839684,9.536327883144567,4.707552613758991,12.736011604191493,2.2332967381510525,5.848348748296849,7.207586511947837,7.659704731676807,13.263359517630683,6.0952949869126645,10.677147803983006,4.159433478451378,4.067328209595801,5.852453199339002,6.653670692388637,7.73338066389448,2.360083718596714,14.328921072808532,2.3398949316292352,2.569231128967213,5.1817846909182785,4.000655630481717,1.4808727408786224,4.882567944408573,4.333948771125629,12.983988755642267,1.7711392133495736,1.3123290113122639,3.8092578866227105,11.525346415861339,3.185310841302938,3.6709303035396763,6.206861264027259,7.361177762957079,5.405718358828269,10.144960407500253,4.609007405123538,10.923368213108741,23.813644406759504,6.7114516400205435,1.040485633599902,8.287680635874278,13.211396225639332,6.813121450687943,7.211057307403045,21.623454750445266,2.743846648842289,4.56309785228116,4.888618569524106,15.608170964537544,6.338087250421173,2.253508431428259,7.904696198406851,4.815700266980372,2.914318161311311,13.874152740819802,4.704925224049832,12.664093169702248,7.170827388707747,5.0356871949304844,5.342091652950589,4.654882983778388,26.08813582860356,2.457754375013798,6.524223444228845,5.7966395581025045,3.4013617959422833,11.001297366595393,5.281085344324128,3.8815174813409676,7.690509890094663,12.161156587543985,4.961535058318729,5.997140681344185,3.6105190204816355,0.8843925981400561,4.064636724382913,16.987250720741997,21.083743054853766,12.527617956951476,8.2017204663597,6.4525457213097654,4.73035945989435,7.154583447415166,22.435554764095308,12.461489779342124,5.570144477626015,5.846051191901813,10.546739390841608,8.61815178055395,4.2280234960373235,5.014733332441866,13.23086000114874,5.111560712879852,8.670149358407159,3.5615490295238414,9.254102544373193,2.6192863201571166,3.95898335894158,3.1008791773385544,15.830698401609348,17.439026821602983,14.25491157670584,9.833928753787363,10.607047284900567,5.855030316406432,16.73049209277948,3.574008641618853,13.800273606747663,6.117379451837006,8.773128270040655,4.919266359705378,6.80815032167623,2.6908316293590606,6.1188293793530715,2.6510408897425983,13.326363744947622,2.019816166766574,6.092026178985575,22.26434749393964,10.147587038051665,5.744656758682882,5.3584550673500715,2.591602798606582,5.897845856042584,9.669407804711486,1.656145544019736,15.01934971075739,10.027008983982874,6.727725452594534,29.36428156643772,9.910691217809005,5.927299246489584,2.849416292420639,20.677350611712544,3.116695004838511,3.828534147126692,2.775187115793365,6.136690184312538,5.864460912958145,7.977505040834445,3.595040942909934,4.990390183726639,10.565242893177464,15.783533628479228,7.668014000081519,12.747327883265134,3.4038034422162022,24.062138825360037,15.107362039249995,3.5255747153258015,9.308352956033001,5.148881900208183,5.031555367440804,18.226887671122164,5.364174477043634,15.188845509707992,12.550381035201978,7.569311157311259,15.969217735694075,9.43688996728716,5.441806209828495,6.722544282568209,19.084773698513494,3.850175119128862,9.451301996701336,4.608354792106064,4.343024468575299,5.53201266938996,3.0108365432453428,11.215730011490217,4.288691448014222,24.65232987621839,6.636525314552569,3.77847815681004,6.887125868170226,3.5328304058323963,4.528336306147968,43.262885536342296,8.285201168432602,2.8987977269625995,4.07738230745,11.205099250488981,15.544740158744641,4.4128355987143895,3.966451788678859,55.814362785897515,12.5627443781422,7.168566617462514,21.162314983326112,5.290186301268754,4.57770566276411,4.115114999543073,3.5497092269115753,4.372856943586865,6.889956319630873,36.12130565489757,3.1150468387736883,3.9238262908456965,2.8125634080277067,4.516341155693011,23.35129357977695,11.969892275429881,8.774546544284787,15.609445651986587,52.49409885075926,6.951196738616712,16.99064503778635,12.553750571613028,5.750753924356002,11.881703500052764,4.554473263164894,6.866216964491705,2.9888144411969533,5.2413629946621745,2.572841965172144,7.937020592478681,6.677781356021455,5.723255441242826,5.1197686090752015,6.876249923280364,2.2085237262946107,5.977288458189494,6.196816197946053,2.7142321545088546,10.670833281609882,3.9803005781494636,2.2960011322072496,5.7513233321824915,3.3342850868118408,2.5552788983443024,6.858421423446639,4.481374687516323,10.168285342151634,2.7683479572058083,6.642552364076641,2.0655975033586502,38.65845818232008,12.172099354252392,8.68315317510619,4.1533971509877405,2.859956520820884,2.8848405002571154,29.149720743426034,5.095466722836499,3.04291284449795,11.54687699599366,6.193156954258199,6.841977481870799,9.871045494519997,2.909578922599665,9.957596706365601,7.722375261420855,5.2289650395984815,7.928945458184733,8.352659539610709,6.840313376327069,3.893178679216146,7.006798006500021,3.4025559446662212,2.465012857348599,12.840217576773938,4.011193292327768,8.198952111214954,4.457439116925011,5.92122341310144,23.64515020052224,5.6479341353926005,5.094150007610135,8.205103268241915,2.940724990866186,13.591067283849204,3.0196579979070157,5.704653952143391,22.080941005817195,2.586589401432453,4.727869604855218,5.6349893931526305,2.5303128580044096,2.659749961077895,1.3035471032862964,6.603916445429408,5.274088534976889,5.300587603086241,2.3217564123565633,3.572716982454728,3.2808722907987615,7.278048580018304,4.562552884303028,9.324902903052974,4.864563532754382,2.9396774729039112,38.878764064135794,6.259187876139468,2.740986257415093,4.698486384885062,6.689943324716922,12.757512917755484,3.9651837020519247,8.491647234490323,25.21084423320623,2.1149716518418344,1.79211045016395,20.005428513978448,1.449792859906079,6.491027176318109,17.332670637666016,14.359608672727173,6.456206832113716,6.987134228250723,3.01545691475593,39.32979723595616,7.36201123918413,7.0917757187826895,8.995888864770892,4.532852347390388,12.481999621968024,11.417938679857635,11.808947542197538,11.848025294601646,6.819053154339939,12.63846639838199,7.948899101788757,9.303411810853971,8.831585242568382,3.7022826632859167,4.908981755049273,11.64078998058094,24.752638164649806,6.005610274086885,7.653839065368883,5.34261123956579,13.31062192066995,9.516768642372028,7.5698704988800545,3.3500678732866294,11.835269865157375,9.429721885242653,6.409664887627061,4.368308041566523,9.125943429471317,5.410555528946381,2.4427945195500573,12.382181968361843,6.85021952471253,3.5588419954053063,4.687205603979276,6.999737491201961,4.718031708438719,9.066013737279398,4.593867603273998,12.10398064802501,3.0341318899711864,1.8684432106134383,4.537552125296702,41.39457242980406,8.82659832772325,9.673597618625088,7.2360583635502245,5.109621907698072,14.606291096355044,14.854634938229987,1.826648552686139,12.799115928207108,3.1093751844092554,6.808284006215761,4.627433350133041,5.380600278345155,3.8392724840656434,3.855736119192429,14.605606860949077,5.788239378907776,5.013499658928106,7.107827525414937,10.495148818475608,23.06849216870335,3.568739547060249,19.15997527311968,2.276791850059233,14.773399959581138,22.504100766581953,8.651478154691969,4.295888292809883,14.387495004330816,8.827766679731148,1.8408149001105072,4.373007763018735,4.381628522165423,7.808834437508464,5.842274554449074,5.17991327625286,2.520057990906518,2.896944021903703,2.4959709973588278,7.3504671292471135,19.388250270574748,8.21905621428072,4.981153240405246,28.88381191472546,16.650349588611064,5.575717047013423,9.86093374859988,7.0451987725984635,3.7092508715963657,7.542121682726028,3.1088944611776332,6.693021584922516,11.89586335137805,10.022709125193623,12.257291945264218,4.314173956004427,3.7005765221142606,3.3634502055443876,6.69565197018581,5.853110694689618,2.8807335912349097,4.7438251889353005,7.28404960451041,6.543499430923269,18.019420981100247,13.625923139743218,4.503951355186485,3.2567534205704924,11.799389355563942,6.753496340342719,5.1465837485548045,10.3714902189688,15.598999612915737,6.284751006972652,6.546048803649593,3.249419120774778,5.932972117963607,5.130392503237263,2.9300409712587188,2.278569881601718,5.455272317559131,4.059488257502913,1.0723634580258343,3.616757069247264,62.17850635695348,2.9583040810513825,7.8924314742884425,3.95795644785003,1.0808372365899686,4.271429309800492,4.830269973544092,20.23637683598007,3.3908958871011325,8.413734914860358,11.964395570756269,6.266540208110766,5.26104306132684,9.2342294325396,4.040052755010957,8.655559679400671,3.90620503684496,3.4692336726983637,10.680742382764643,6.923645815291701,5.392630756032034,13.515360678297355,5.830865504948004,45.47847333400133,6.947819892700636,5.7131299944243965,3.05262446085622,3.9820895385328194,5.013682965261189,8.58048630675861,3.9805015950836924,17.035486084431522,7.789538455186849,9.940608250829575,1.3471765061709278,19.290412487608332,23.284878335964155,4.770724537831024,2.7397029684138654,2.422510794082152,4.16684089914564,14.96887974235953,6.870224068040106,3.922164293628285,24.547258765185305,20.64724616412843,3.8443482918122798,3.770392073489709,6.407845624820443,2.983805174726059,21.223323397772837,3.2782413198708276,2.816532780539719,16.926499414805328,4.919907456542126,6.577938351442638,42.717305923454035,18.32329546514906,5.168215696542817,4.253488250901235,12.146875575038923,4.417612430432966,5.9898827251011335,3.5988067094302587,9.443786702111137,3.401776177567208,4.260645571584248,6.7177023403068095,30.192836378857148,11.08141867522012,14.142491736149813,12.451306740172118,1.935217658701607,5.248375125450924,5.836103281129399,11.887676756921932,2.022637200189245,4.7424536525334915,7.216338035199856,3.6298359317726563,2.4876366492850663,5.4413659787248525,2.8927458643516917,5.121480805607289,3.213284872354091,5.646825016132262,2.7766377604183456,6.764379071795006,7.825741764189918,4.984247168832266,4.6857040505506715,13.605844241755081,5.067019674056395,8.393420174044202,3.918747709909766,4.160051659152447,5.230460159368789,3.0486841984866295,4.175290583389278,7.699464867226564,6.078617256992804,12.913801458328818,11.189437125600909,8.729418084180178,3.7344977687362686,129.63336042678307,9.169221432916373,15.656488931805052,7.246084553747014,5.725092413653101,3.0808944743503996,10.146850256266157,9.979842513693656,6.970756915554786,9.164339470951207,13.660655264322783,2.477462166860176,1.9572430364418327,28.959075327562008,14.24927498015663,1.8814946492740006,2.0556318931974142,9.084309127905584,3.507438182881913,3.526335868239229,2.4363224045128136,2.360252664643874,3.523595784426129,18.893038250070838,15.76332299548933,2.1622614051464297,2.118021340537964,3.8065777831911167,11.472466242263733,2.983152675904929,11.201645456473509,3.477396149800699,3.301411663676742,6.469618993406732,3.4403635932441357,4.981393240019244,3.4115391106299486,7.207266350972688,4.691103501546222,15.616689117381826,2.3463969380491583,8.978812274948265,39.34558999972188,13.274506421238721,43.15071621359696,39.734450073592,4.029340176578922,3.302922860756449,5.96157246836452,2.3467974235709286,2.3562331335968643,2.541001883348179,2.8670755795508063,3.6591852495783406,4.5512094784863555,3.8632794498853134,10.680232273253324,13.418952182817307,3.9848338299295554,40.547129896299595,4.948617180183369,6.0641725046092185,5.759950046260933,8.949058403627811,7.035090344010569,18.460797434737866,8.027580140269809,2.842293868661688,3.7691442425165813,2.154904325992569,3.6484974602689078,10.70646585969141,1.9311595064659874,4.1427060338319945,6.249875263440594,5.636865922518845,31.11742814517617,2.5168843689709397,9.214744412565324,13.705229016840285,7.190133078311979,13.441835114283943,5.141846224372282,6.037069249155603,10.092550433018637,4.128767039522498,4.463962804528154,4.263349033156111,10.048801951000373,7.1214964779442,6.540316832850081,4.9259521266596185,11.349562003877248,4.904426973934065,27.372560277837383,3.30316289290641,13.583940724261138,24.73262222824423,7.747497714856552,13.343076403990699,14.544540213503488,5.749926104060306,7.60505518467465,3.3567990311330633,14.335776319783424,7.382298613706946,9.031839913592199,21.183837382229385,5.291597806780123,26.642686368567542,12.359599291875057,10.89747710354234,2.7989760870550784,7.108575493661659,10.819350934297988,2.0440621624284816,11.643452721300925,3.650183659626775,5.057818205838948,19.41775069552499,2.6398166356334456,4.776347714120355,7.7976129808147885,13.813478065620368,2.290870555290592,12.543266908994257,22.998476203107177,2.5740296737800987,2.8607869624334015,16.49013473102405,36.44508415965821,4.323612256565998,9.70973715186069,4.272857781535004,17.847660257341644,5.961821280457232,2.1380459015367705,2.445164847571287,6.572020962016583,10.458411772524384,21.352423727882236,9.110232979142017,2.3805405273925024,5.01172288525393,8.333905568502349,2.335262101069665,16.45388780219911,9.753847824406378,7.201673965306014,10.353191388713054,20.831449832106173,23.302550039754674,11.649546755936502,2.7030707492900947,14.650534538390444,6.534116989614298,11.308859810961463,3.8086353350446767,4.847649763699598,18.301226967593518,15.765626547527924,4.245314085464957,11.28892415119631,4.4282162621982994,9.594538507503877,3.457449403894082,3.0033609087212643,7.995090844749548,16.81208803296969,4.607182664658027,2.246110672898799,8.334436527938582,1.327457567845037,1.9833393868181062,7.175466425790742,3.6734044168531224,5.419928400560801,3.7658339471133786,6.471811791840721,2.3534991938113263,4.824931282962563,6.466982564203653,6.315412389301686,5.709069050887929,7.387455705866572,5.262721442445859,10.905472244541247,21.372232125620524,6.496943120726632,5.106563673901241,3.793103298842156,9.24496863547165,5.855334792302075,8.309900375797996,7.48448869649202,14.430776425151311,13.24945889072102,5.0892791885526485,5.184916823936233,26.058679348538934,4.251206359033882,10.445456568464987,32.14993982480731,3.658180338290111,5.042311842105904,5.434479047822917,25.144994932614985,4.560464492325778,13.107894031829437,4.2247563409745235,2.8267438732738066,10.673579642231713,5.608108874577117,19.78473053551307,5.033795168430288,6.459450233695431,6.9628256556037815,3.9194513083707627,14.76333807400131,4.984848483990726,47.28594404531138,3.5373760920543456,4.554964562444357,4.207556361499116,11.32808352336153,2.1023655498944436,5.5251787694115,5.121111182648835,6.47548188944703,40.163371447163364,7.3613880666671285,12.218700454044216,25.628271928333962,18.947175932259285,6.677573652932664,3.636300236928204,3.9163388998756004,5.854345057093795,5.175741927478917,2.9304697745005246,11.393149092457802,2.6570726718251403,3.2902723332055377,7.680473825842807,20.858262760751366,27.566774178633203,10.805603838814818,2.256294607487998,8.488184056406546,6.691022586243736,23.21915448257769,4.202687760012787,4.591807710085857,7.137686214392876,3.8247314812137145,3.4092852713379287,3.7935124067281123,6.275726162363566,3.448922904992901,4.896637301867293,3.1164659111332114,2.973969277331993,2.303940828335513,5.338948337837866,9.224194024938456,4.378974595044735,4.294473523399475,8.799955622509794,3.4130783319372178,5.862636540540495,5.1177293044911965,6.727189860416908,8.244960047531983,2.415422548900087,5.690145888825831,2.8993036418240328,9.623640247750956,4.418006349870204,7.228400576444218,2.939977223207649,12.671424261151717,8.581557636081824,2.324540640090344,11.795551600511976,5.316887174085777,3.2446815965785674,14.433394842172723,3.4067643009621196,7.000409721548868,9.565211686201081,4.601191765296782,4.392120149676399,16.753001795974402,9.67827177293585,4.023376854286475,4.8636257437512205,19.98647050495526,9.823179202395016,5.151438175605851,6.9861726382847475,5.33076877278139,13.38131765664692,3.9790647222038533,4.047517303200434,4.122266814910519,4.875030135460579,4.309980948360787,9.181548839218362,9.266280974607476,1.6831407427697445,19.40634393428771,10.76687867030819,3.5597557244658202,3.4812462672726614,4.190525799256258,5.592113245838402,5.147680368459487,25.182405068765174,6.640410348831688,10.215144361059407,10.464097245771029,6.773045712906688,7.4771800510716835,9.972466280688637,7.531453146731619,6.592333841938164,25.20483337838047,10.70364928171463,2.510759822782205,6.169365599124539]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}