├── .claude ├── agents │ ├── ci-fixer.md │ ├── cross-program-validator.md │ ├── document_collector.md │ ├── documentation-enricher.md │ ├── edge-case-generator.md │ ├── implementation-validator.md │ ├── integration-agent.md │ ├── issue-manager.md │ ├── legislation-statute-analyzer.md │ ├── naming-coordinator.md │ ├── parameter-architect.md │ ├── performance-optimizer.md │ ├── policy-domain-validator.md │ ├── pr-pusher.md │ ├── reference-validator.md │ ├── rules-engineer.md │ ├── rules-reviewer.md │ └── test-creator.md ├── commands │ ├── encode-policy.md │ ├── fix-pr.md │ └── review-pr.md ├── docs │ ├── agent-coordination.md │ ├── agent-testing.md │ ├── isolation-enforcement.md │ ├── isolation-setup.md │ └── workflow.md ├── settings.json └── startup.sh ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── changelog_template.md ├── publish-git-tag.sh ├── update_api.py └── workflows │ ├── pr.yaml │ └── push.yaml ├── .gitignore ├── .gitmodules ├── .python-version ├── .vscode ├── launch.json ├── python.code-snippets └── yaml.code-snippets ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PSL_catalog.json ├── README.md ├── changelog.yaml ├── changelog_entry.yaml ├── docs ├── _config.yml ├── _toc.yml ├── environment.yml ├── examples │ └── income-sources.ipynb ├── gov │ ├── fcc │ │ ├── acp.ipynb │ │ ├── index.md │ │ └── lifeline.ipynb │ ├── hhs │ │ ├── aca.md │ │ ├── index.md │ │ ├── medicaid.md │ │ └── tanf.ipynb │ ├── household │ │ └── filing_status_breakdown.ipynb │ ├── hud │ │ ├── housing-assistance.ipynb │ │ └── index.md │ ├── irs │ │ ├── capital-gains.ipynb │ │ ├── credits │ │ │ ├── cdcc.ipynb │ │ │ ├── clean-vehicle.ipynb │ │ │ ├── ctc.ipynb │ │ │ └── eitc.ipynb │ │ └── tax.ipynb │ ├── ssa │ │ ├── index.md │ │ └── ssi.ipynb │ ├── states │ │ ├── ca │ │ │ ├── caleitc.ipynb │ │ │ ├── calepa │ │ │ │ └── carb │ │ │ │ │ └── cvrp.ipynb │ │ │ └── index.md │ │ ├── dc │ │ │ └── dc_ctc.ipynb │ │ ├── de │ │ │ ├── index.md │ │ │ ├── tax-benefit.ipynb │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ └── senior-circuit-breaker.ipynb │ │ │ │ └── index.ipynb │ │ ├── index.md │ │ ├── ma │ │ │ ├── index.md │ │ │ ├── tax-benefit.ipynb │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ └── senior-circuit-breaker.ipynb │ │ │ │ └── index.ipynb │ │ ├── md │ │ │ ├── index.md │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc.ipynb │ │ │ │ ├── ctc.ipynb │ │ │ │ ├── eitc.ipynb │ │ │ │ └── poverty-line-credit.ipynb │ │ │ │ ├── deductions │ │ │ │ └── standard-deduction.ipynb │ │ │ │ └── index.ipynb │ │ ├── mo │ │ │ ├── tax-benefit.ipynb │ │ │ └── tax │ │ │ │ ├── credits │ │ │ │ └── property_tax_credit.ipynb │ │ │ │ └── index.ipynb │ │ ├── ny │ │ │ ├── cdcc.ipynb │ │ │ ├── ctc.ipynb │ │ │ ├── eitc.ipynb │ │ │ ├── index.md │ │ │ ├── ny_wftc.ipynb │ │ │ ├── tax-benefit.ipynb │ │ │ └── tax.ipynb │ │ ├── or │ │ │ └── tax.ipynb │ │ ├── pa │ │ │ └── tax.ipynb │ │ ├── state_credit_impact_on_poverty.ipynb │ │ ├── ut │ │ │ └── ut_income_tax.ipynb │ │ └── wa │ │ │ ├── index.md │ │ │ └── tax │ │ │ └── income │ │ │ └── credits │ │ │ └── working-families-tax-credit.ipynb │ └── usda │ │ ├── index.md │ │ ├── school-meals.ipynb │ │ ├── snap.ipynb │ │ └── wic.ipynb ├── index.md ├── usage │ ├── speed.ipynb │ └── structural_reform_dating.ipynb └── validation │ └── taxsim.ipynb ├── environment.yml ├── policyengine_us ├── __init__.py ├── conftest.py ├── data │ ├── __init__.py │ └── zip_code_dataset.py ├── entities.py ├── model_api.py ├── modelled_policies.yaml ├── parameters │ ├── __init__.py │ ├── calibration │ │ └── gov │ │ │ ├── aca │ │ │ ├── enrollment │ │ │ │ └── state.yaml │ │ │ └── spending │ │ │ │ └── state.yaml │ │ │ ├── cbo │ │ │ ├── income_by_source.yaml │ │ │ ├── income_tax.yaml │ │ │ ├── payroll_taxes.yaml │ │ │ ├── snap.yaml │ │ │ ├── social_security.yaml │ │ │ ├── ssi.yaml │ │ │ └── unemployment_compensation.yaml │ │ │ ├── census │ │ │ └── populations │ │ │ │ ├── by_state.yaml │ │ │ │ └── total.yaml │ │ │ ├── hhs │ │ │ ├── cms │ │ │ │ ├── chip │ │ │ │ │ ├── enrollment │ │ │ │ │ │ ├── medicaid_expansion_chip.yaml │ │ │ │ │ │ ├── separate_chip.yaml │ │ │ │ │ │ └── total.yaml │ │ │ │ │ └── spending │ │ │ │ │ │ ├── medicaid_expansion_chip │ │ │ │ │ │ ├── federal.yaml │ │ │ │ │ │ ├── state.yaml │ │ │ │ │ │ └── total.yaml │ │ │ │ │ │ ├── program_admin │ │ │ │ │ │ ├── federal.yaml │ │ │ │ │ │ ├── state.yaml │ │ │ │ │ │ └── total.yaml │ │ │ │ │ │ ├── separate_chip │ │ │ │ │ │ ├── federal.yaml │ │ │ │ │ │ ├── state.yaml │ │ │ │ │ │ └── total.yaml │ │ │ │ │ │ └── total │ │ │ │ │ │ ├── federal.yaml │ │ │ │ │ │ ├── state.yaml │ │ │ │ │ │ └── total.yaml │ │ │ │ └── moop_per_capita.yaml │ │ │ ├── medicaid │ │ │ │ ├── enrollment │ │ │ │ │ ├── aged.yaml │ │ │ │ │ ├── child.yaml │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ ├── expansion_adults.yaml │ │ │ │ │ └── non_expansion_adults.yaml │ │ │ │ ├── spending │ │ │ │ │ ├── by_eligibility_group │ │ │ │ │ │ ├── aged.yaml │ │ │ │ │ │ ├── calculate_vermont_spending_breakdown.py │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ ├── expansion_adults.yaml │ │ │ │ │ │ └── non_expansion_adults.yaml │ │ │ │ │ └── totals │ │ │ │ │ │ ├── federal.yaml │ │ │ │ │ │ └── state.yaml │ │ │ │ └── totals │ │ │ │ │ ├── enrollment.yaml │ │ │ │ │ ├── per_capita.yaml │ │ │ │ │ └── spending.yaml │ │ │ └── medicare │ │ │ │ └── per_capita_cost.yaml │ │ │ ├── irs │ │ │ └── soi │ │ │ │ ├── agi │ │ │ │ ├── number_of_returns.yaml │ │ │ │ └── total_agi.yaml │ │ │ │ ├── alimony_income.yaml │ │ │ │ ├── employment_income.yaml │ │ │ │ ├── farm_income.yaml │ │ │ │ ├── farm_rent_income.yaml │ │ │ │ ├── long_term_capital_gains.yaml │ │ │ │ ├── non_qualified_dividend_income.yaml │ │ │ │ ├── partnership_s_corp_income.yaml │ │ │ │ ├── qualified_dividend_income.yaml │ │ │ │ ├── rental_income.yaml │ │ │ │ ├── returns_by_filing_status.yaml │ │ │ │ ├── self_employment_income.yaml │ │ │ │ ├── short_term_capital_gains.yaml │ │ │ │ ├── social_security.yaml │ │ │ │ ├── tax_exempt_interest_income.yaml │ │ │ │ ├── tax_exempt_pension_income.yaml │ │ │ │ ├── taxable_interest_income.yaml │ │ │ │ ├── taxable_pension_income.yaml │ │ │ │ └── unemployment_compensation.yaml │ │ │ ├── ssa │ │ │ ├── social_security │ │ │ │ └── participation.yaml │ │ │ └── ssi │ │ │ │ └── participation.yaml │ │ │ ├── treasury │ │ │ └── tax_expenditures │ │ │ │ └── eitc.yaml │ │ │ └── usda │ │ │ └── snap │ │ │ └── participation.yaml │ ├── gov │ │ ├── README.md │ │ ├── aca │ │ │ ├── README.md │ │ │ ├── age_curves │ │ │ │ ├── al.yaml │ │ │ │ ├── dc.yaml │ │ │ │ ├── default.yaml │ │ │ │ ├── generate_age_curves.py.py │ │ │ │ ├── ma.yaml │ │ │ │ ├── mn.yaml │ │ │ │ ├── ms.yaml │ │ │ │ ├── ny.yaml │ │ │ │ ├── or.yaml │ │ │ │ ├── ut.yaml │ │ │ │ └── vt.yaml │ │ │ ├── benchmark_premium_uprating.yaml │ │ │ ├── enrollment │ │ │ │ └── state.yaml │ │ │ ├── family_tier_ratings │ │ │ │ ├── ny.yaml │ │ │ │ └── vt.yaml │ │ │ ├── family_tier_states.yaml │ │ │ ├── ineligible_immigration_statuses.yaml │ │ │ ├── la_county_rating_area.yaml │ │ │ ├── max_child_count.yaml │ │ │ ├── ptc_income_eligibility.yaml │ │ │ ├── required_contribution_percentage.yaml │ │ │ ├── slcsp │ │ │ │ ├── index.yaml │ │ │ │ ├── last_same_child_age.yaml │ │ │ │ ├── max_adult_age.yaml │ │ │ │ └── max_child_age.yaml │ │ │ ├── spending │ │ │ │ └── state.yaml │ │ │ ├── state_rating_area_cost.yaml │ │ │ └── takeup_rate.yaml │ │ ├── bls │ │ │ ├── README.md │ │ │ └── cpi │ │ │ │ ├── README.md │ │ │ │ ├── c_cpi_u.yaml │ │ │ │ ├── cpi_u.yaml │ │ │ │ └── cpi_w.yaml │ │ ├── contrib │ │ │ ├── README.md │ │ │ ├── aca │ │ │ │ ├── ptc_700_fpl_cliff │ │ │ │ │ ├── brackets.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── income_eligibility.yaml │ │ │ │ ├── ptc_additional_bracket │ │ │ │ │ ├── brackets.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── income_eligibility.yaml │ │ │ │ └── ptc_simplified_bracket │ │ │ │ │ ├── brackets.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── income_eligibility.yaml │ │ │ ├── additional_tax_bracket │ │ │ │ ├── bracket.yaml │ │ │ │ └── in_effect.yaml │ │ │ ├── biden │ │ │ │ └── budget_2025 │ │ │ │ │ ├── capital_gains │ │ │ │ │ ├── README.md │ │ │ │ │ ├── active.yaml │ │ │ │ │ └── income_threshold.yaml │ │ │ │ │ ├── medicare │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── net_investment_income │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ ├── cbo │ │ │ │ ├── README.md │ │ │ │ └── payroll │ │ │ │ │ └── secondary_earnings_threshold.yaml │ │ │ ├── congress │ │ │ │ ├── afa │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── baby_bonus.yaml │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── multiplier.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── lower_floor.yaml │ │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ ├── higher.yaml │ │ │ │ │ │ │ └── lower.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── other_dependent_credit │ │ │ │ │ │ └── amount.yaml │ │ │ │ ├── delauro │ │ │ │ │ ├── README.md │ │ │ │ │ └── american_family_act │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── baby_bonus.yaml │ │ │ │ ├── golden │ │ │ │ │ └── fisc_act │ │ │ │ │ │ ├── family_income_supplement │ │ │ │ │ │ ├── agi_fraction.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── pregnancy.yaml │ │ │ │ │ │ ├── caregiver_age_threshold.yaml │ │ │ │ │ │ ├── child_age_limit.yaml │ │ │ │ │ │ ├── marriage_bonus_rate.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── other.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── hawley │ │ │ │ │ └── awra │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── joint_multiplier.yaml │ │ │ │ │ │ └── non_joint.yaml │ │ │ │ │ │ ├── eligible_immigration_statuses.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ ├── romney │ │ │ │ │ ├── README.md │ │ │ │ │ ├── family_security_act │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── remove_head_of_household.yaml │ │ │ │ │ ├── family_security_act_2024 │ │ │ │ │ │ └── pregnant_mothers_credit │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── income_phase_in_end.yaml │ │ │ │ │ └── family_security_act_2_0 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── apply_ctc_structure.yaml │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── child_cap.yaml │ │ │ │ │ │ └── phase_in │ │ │ │ │ │ │ └── income_phase_in_end.yaml │ │ │ │ │ │ └── eitc │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ └── apply_eitc_structure.yaml │ │ │ │ ├── tlaib │ │ │ │ │ ├── README.md │ │ │ │ │ ├── boost │ │ │ │ │ │ └── middle_class_tax_credit │ │ │ │ │ │ │ └── administered_through_ssa.yaml │ │ │ │ │ ├── economic_dignity_for_all_agenda │ │ │ │ │ │ └── end_child_poverty_act │ │ │ │ │ │ │ ├── adult_dependent_credit │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ │ ├── child_benefit │ │ │ │ │ │ │ └── age_limit.yaml │ │ │ │ │ │ │ ├── filer_credit │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── max_age.yaml │ │ │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ └── end_child_poverty_act │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── adult_dependent_credit │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ ├── child_benefit │ │ │ │ │ │ └── age_limit.yaml │ │ │ │ │ │ ├── filer_credit │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── max_age.yaml │ │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── wftca │ │ │ │ │ ├── README.md │ │ │ │ │ └── bonus_guaranteed_deduction │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ └── wyden_smith │ │ │ │ │ ├── actc_lookback.yaml │ │ │ │ │ └── per_child_actc_phase_in.yaml │ │ │ ├── crfb │ │ │ │ ├── senior_deduction_extension │ │ │ │ │ └── applies.yaml │ │ │ │ ├── ss_credit │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── tax_employer_medicare_tax │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── tax_employer_payroll_tax │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── percentage.yaml │ │ │ │ └── tax_employer_social_security_tax │ │ │ │ │ └── in_effect.yaml │ │ │ ├── ctc │ │ │ │ ├── additional_bracket │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── actc.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── minimum_refundable │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── oldest_child_supplement │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── per_child_phase_in │ │ │ │ │ └── in_effect.yaml │ │ │ │ └── per_child_phase_out │ │ │ │ │ ├── avoid_overlap.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ ├── dc_kccatc │ │ │ │ ├── README.md │ │ │ │ ├── active.yaml │ │ │ │ ├── expenses │ │ │ │ │ ├── max.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ └── phase_out │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ ├── dc_tax_threshold_joint_ratio.yaml │ │ │ ├── deductions │ │ │ │ └── salt │ │ │ │ │ └── limit_salt_deduction_to_property_taxes.yaml │ │ │ ├── harris │ │ │ │ ├── capital_gains │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── rates.yaml │ │ │ │ │ └── thresholds.yaml │ │ │ │ ├── lift │ │ │ │ │ └── middle_class_tax_credit │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── joint_multiplier.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ └── width.yaml │ │ │ │ └── rent_relief_act │ │ │ │ │ └── rent_relief_credit │ │ │ │ │ ├── applicable_percentage.yaml │ │ │ │ │ ├── high_income_area_threshold_increase.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── rent_income_share_threshold.yaml │ │ │ │ │ ├── safmr_share_rent_cap.yaml │ │ │ │ │ └── subsidized_rent_rate.yaml │ │ │ ├── individual_eitc │ │ │ │ ├── README.md │ │ │ │ ├── agi_eitc_limit.yaml │ │ │ │ └── enabled.yaml │ │ │ ├── joint_eitc │ │ │ │ └── in_effect.yaml │ │ │ ├── local │ │ │ │ └── nyc │ │ │ │ │ └── stc │ │ │ │ │ ├── adjust_income_limit_by_filing_status_and_eligibility_by_children.yaml │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ ├── min_children.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── rate │ │ │ │ │ ├── joint_and_surviving_spouse.yaml │ │ │ │ │ └── other.yaml │ │ │ ├── maryland_child_alliance │ │ │ │ ├── README.md │ │ │ │ ├── abolish_non_refundable_child_eitc.yaml │ │ │ │ └── abolish_refundable_child_eitc.yaml │ │ │ ├── reconciliation │ │ │ │ ├── medicaid_work_requirement │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ ├── house │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ ├── monthly_hours_threshold.yaml │ │ │ │ │ └── senate │ │ │ │ │ │ ├── dependent_age_limit.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── snap_abawd_work_requirement │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── sunset_provision_in_effect.yaml │ │ │ │ └── ssn_for_llc_and_aoc │ │ │ │ │ └── in_effect.yaml │ │ │ ├── repeal_state_dependent_exemptions │ │ │ │ └── in_effect.yaml │ │ │ ├── second_earner_reform │ │ │ │ └── in_effect.yaml │ │ │ ├── snap │ │ │ │ ├── abolish_deductions │ │ │ │ │ └── in_effect.yaml │ │ │ │ └── abolish_net_income_test │ │ │ │ │ └── in_effect.yaml │ │ │ ├── states │ │ │ │ ├── dc │ │ │ │ │ └── property_tax │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── income_limit │ │ │ │ │ │ ├── elderly.yaml │ │ │ │ │ │ └── non_elderly.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ ├── de │ │ │ │ │ └── dependent_credit │ │ │ │ │ │ ├── age_limit │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── phaseout │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ ├── mi │ │ │ │ │ └── surtax │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── rate │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ ├── mn │ │ │ │ │ └── walz │ │ │ │ │ │ └── hf1938 │ │ │ │ │ │ └── repeal.yaml │ │ │ │ ├── mt │ │ │ │ │ └── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── income_limit │ │ │ │ │ │ ├── agi.yaml │ │ │ │ │ │ └── investment.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ ├── ny │ │ │ │ │ └── wftc │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ ├── child_age_threshold.yaml │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ ├── or │ │ │ │ │ └── rebate │ │ │ │ │ │ └── state_tax_exempt.yaml │ │ │ │ ├── ri │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── phaseout │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── refundability │ │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ │ └── young_child_boost │ │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── dependent_exemption │ │ │ │ │ │ ├── age_limit │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── phaseout │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ └── ut │ │ │ │ │ └── eitc │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── max_age.yaml │ │ │ ├── tax_exempt │ │ │ │ ├── in_effect.yaml │ │ │ │ ├── overtime │ │ │ │ │ ├── income_tax_exempt.yaml │ │ │ │ │ └── payroll_tax_exempt.yaml │ │ │ │ └── tip_income │ │ │ │ │ ├── income_tax_exempt.yaml │ │ │ │ │ └── payroll_tax_exempt.yaml │ │ │ ├── treasury │ │ │ │ └── repeal_dependent_exemptions.yaml │ │ │ └── ubi_center │ │ │ │ ├── README.md │ │ │ │ ├── basic_income │ │ │ │ ├── agi_limit │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── amount │ │ │ │ │ ├── person │ │ │ │ │ │ ├── by_age.yaml │ │ │ │ │ │ ├── disability.yaml │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ └── marriage_bonus.yaml │ │ │ │ │ └── tax_unit │ │ │ │ │ │ └── fpg_percent.yaml │ │ │ │ ├── phase_in │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── include_ss_benefits_as_earnings.yaml │ │ │ │ │ ├── per_person.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ ├── phase_out │ │ │ │ │ ├── by_rate.yaml │ │ │ │ │ ├── end.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ └── taxable.yaml │ │ │ │ └── flat_tax │ │ │ │ ├── abolish_federal_income_tax.yaml │ │ │ │ ├── abolish_payroll_tax.yaml │ │ │ │ ├── abolish_self_emp_tax.yaml │ │ │ │ ├── deduct_ptc.yaml │ │ │ │ ├── exemption │ │ │ │ └── agi.yaml │ │ │ │ └── rate │ │ │ │ ├── agi.yaml │ │ │ │ └── gross_income.yaml │ │ ├── dhs │ │ │ └── immigration │ │ │ │ └── qualified_noncitizen_status.yaml │ │ ├── doe │ │ │ ├── README.md │ │ │ ├── high_efficiency_electric_home_rebate │ │ │ │ ├── cap │ │ │ │ │ ├── electric_heat_pump_clothes_dryer.yaml │ │ │ │ │ ├── electric_load_service_center_upgrade.yaml │ │ │ │ │ ├── electric_stove_cooktop_range_or_oven.yaml │ │ │ │ │ ├── electric_wiring.yaml │ │ │ │ │ ├── heat_pump.yaml │ │ │ │ │ ├── heat_pump_water_heater.yaml │ │ │ │ │ ├── insulation_air_sealing_ventilation.yaml │ │ │ │ │ └── total.yaml │ │ │ │ ├── elements.yaml │ │ │ │ └── percent_covered.yaml │ │ │ ├── index.yaml │ │ │ └── residential_efficiency_electrification_rebate │ │ │ │ ├── cap │ │ │ │ ├── high.yaml │ │ │ │ ├── low.yaml │ │ │ │ └── medium.yaml │ │ │ │ ├── percent.yaml │ │ │ │ └── threshold │ │ │ │ ├── high.yaml │ │ │ │ ├── low.yaml │ │ │ │ └── medium.yaml │ │ ├── dol │ │ │ ├── README.md │ │ │ └── minimum_wage.yaml │ │ ├── ed │ │ │ ├── README.md │ │ │ ├── index.yaml │ │ │ └── pell_grant │ │ │ │ ├── README.md │ │ │ │ ├── amount │ │ │ │ ├── max.yaml │ │ │ │ └── min.yaml │ │ │ │ ├── dependent │ │ │ │ ├── asset_assessment_rate.yaml │ │ │ │ ├── income_assessment_rate.yaml │ │ │ │ └── ipa.yaml │ │ │ │ ├── efc │ │ │ │ ├── README.md │ │ │ │ ├── automatic_zero.yaml │ │ │ │ └── simplified │ │ │ │ │ ├── applies.yaml │ │ │ │ │ ├── benefits.yaml │ │ │ │ │ └── income_limit.yaml │ │ │ │ ├── head │ │ │ │ ├── asset_assessment_rate.yaml │ │ │ │ ├── income_assessment_rate.yaml │ │ │ │ ├── marginal_rate.yaml │ │ │ │ ├── min_contribution.yaml │ │ │ │ └── negative_rate.yaml │ │ │ │ ├── months_in_school_year.yaml │ │ │ │ └── sai │ │ │ │ ├── fpg_fraction │ │ │ │ ├── max_pell_limits.yaml │ │ │ │ └── min_pell_limits.yaml │ │ │ │ └── limits │ │ │ │ ├── max_sai.yaml │ │ │ │ └── min_sai.yaml │ │ ├── fcc │ │ │ ├── README.md │ │ │ ├── acp │ │ │ │ ├── README.md │ │ │ │ ├── amount │ │ │ │ │ ├── standard.yaml │ │ │ │ │ └── tribal.yaml │ │ │ │ ├── categorical_eligibility.yaml │ │ │ │ └── fpg_limit.yaml │ │ │ ├── ebb │ │ │ │ ├── README.md │ │ │ │ ├── amount │ │ │ │ │ ├── standard.yaml │ │ │ │ │ └── tribal.yaml │ │ │ │ ├── categorical_eligibility.yaml │ │ │ │ └── prior_enrollment_required.yaml │ │ │ ├── index.yaml │ │ │ └── lifeline │ │ │ │ ├── amount │ │ │ │ ├── rural_tribal_supplement.yaml │ │ │ │ └── standard.yaml │ │ │ │ ├── categorical_eligibility.yaml │ │ │ │ ├── fpg_limit.yaml │ │ │ │ └── tribal_categorical_eligibility.yaml │ │ ├── hhs │ │ │ ├── README.md │ │ │ ├── ccdf │ │ │ │ ├── README.md │ │ │ │ ├── age_limit.yaml │ │ │ │ ├── amount.yaml │ │ │ │ ├── asset_limit.yaml │ │ │ │ ├── copay_percent.yaml │ │ │ │ ├── county_cluster.yaml │ │ │ │ ├── income_limit_smi.yaml │ │ │ │ └── index.yaml │ │ │ ├── chip │ │ │ │ ├── child │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ └── max_age.yaml │ │ │ │ ├── fcep │ │ │ │ │ └── income_limit.yaml │ │ │ │ └── pregnant │ │ │ │ │ └── income_limit.yaml │ │ │ ├── fpg.yaml │ │ │ ├── head_start │ │ │ │ ├── age_range.yaml │ │ │ │ ├── categorical_eligibility.yaml │ │ │ │ ├── early_head_start │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ ├── enrollment.yaml │ │ │ │ │ └── spending.yaml │ │ │ │ ├── enrollment.yaml │ │ │ │ └── spending.yaml │ │ │ ├── index.yaml │ │ │ ├── liheap │ │ │ │ └── smi_limit.yaml │ │ │ ├── medicaid │ │ │ │ ├── eligibility │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── adult │ │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ ├── covered.yaml │ │ │ │ │ │ ├── infant │ │ │ │ │ │ │ ├── age_range │ │ │ │ │ │ │ │ ├── in_ca.yaml │ │ │ │ │ │ │ │ ├── in_mn.yaml │ │ │ │ │ │ │ │ └── other.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ ├── medically_needy │ │ │ │ │ │ │ ├── categories │ │ │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ │ │ │ └── child_categories.yaml │ │ │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ │ │ ├── parent.yaml │ │ │ │ │ │ │ │ ├── pregnant.yaml │ │ │ │ │ │ │ │ └── senior.yaml │ │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ ├── older_child │ │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ ├── parent │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ ├── pregnant │ │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ │ └── postpartum_coverage.yaml │ │ │ │ │ │ ├── senior_or_disabled │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── disregard │ │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ ├── ssi_recipient │ │ │ │ │ │ │ └── is_covered.yaml │ │ │ │ │ │ ├── young_adult │ │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ └── young_child │ │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ ├── eligible_immigration_statuses.yaml │ │ │ │ │ ├── undocumented_immigrant.yaml │ │ │ │ │ └── work_requirements │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ ├── dependent_age_limit.yaml │ │ │ │ │ │ └── monthly_hours_threshold.yaml │ │ │ │ ├── geography │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aca_rating_areas.csv │ │ │ │ │ ├── medicaid_rating_areas.csv │ │ │ │ │ └── second_lowest_silver_plan_cost.csv │ │ │ │ ├── income │ │ │ │ │ └── modification.yaml │ │ │ │ ├── index.yaml │ │ │ │ └── takeup_rate.yaml │ │ │ ├── medicare │ │ │ │ ├── eligibility │ │ │ │ │ ├── min_age.yaml │ │ │ │ │ └── min_months_receiving_social_security_disability.yaml │ │ │ │ ├── part_a │ │ │ │ │ ├── deductible.yaml │ │ │ │ │ ├── default_quarters_of_coverage.yaml │ │ │ │ │ ├── full_premium.yaml │ │ │ │ │ ├── premium_free_quarters_threshold.yaml │ │ │ │ │ ├── reduced_premium.yaml │ │ │ │ │ └── reduced_premium_quarters_threshold.yaml │ │ │ │ ├── part_b │ │ │ │ │ ├── base_premium.yaml │ │ │ │ │ └── irmaa │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ └── savings_programs │ │ │ │ │ └── eligibility │ │ │ │ │ ├── asset │ │ │ │ │ ├── applies.yaml │ │ │ │ │ ├── couple.yaml │ │ │ │ │ └── individual.yaml │ │ │ │ │ └── income │ │ │ │ │ ├── qi │ │ │ │ │ └── fpl_limit.yaml │ │ │ │ │ ├── qmb │ │ │ │ │ └── fpl_limit.yaml │ │ │ │ │ └── slmb │ │ │ │ │ └── fpl_limit.yaml │ │ │ ├── smi │ │ │ │ ├── README.md │ │ │ │ ├── amount.yaml │ │ │ │ └── household_size_adjustment.yaml │ │ │ ├── tanf │ │ │ │ ├── README.md │ │ │ │ ├── abolish_tanf.yaml │ │ │ │ ├── cash │ │ │ │ │ ├── eligibility │ │ │ │ │ │ └── age_limit │ │ │ │ │ │ │ ├── non_student.yaml │ │ │ │ │ │ │ └── student.yaml │ │ │ │ │ └── income │ │ │ │ │ │ └── sources │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ └── non_cash │ │ │ │ │ ├── README.md │ │ │ │ │ ├── asset_limit.yaml │ │ │ │ │ ├── income_limit │ │ │ │ │ ├── gross.yaml │ │ │ │ │ └── net_applies │ │ │ │ │ │ ├── hheod.yaml │ │ │ │ │ │ └── non_hheod.yaml │ │ │ │ │ └── requires_all_for_hheod.yaml │ │ │ └── uprating.yaml │ │ ├── household │ │ │ ├── household_benefits.yaml │ │ │ ├── household_health_benefits.yaml │ │ │ ├── household_local_benefits.yaml │ │ │ ├── household_refundable_credits.yaml │ │ │ ├── household_refundable_state_credits.yaml │ │ │ ├── household_state_benefits.yaml │ │ │ ├── household_tax_before_refundable_credits.yaml │ │ │ ├── index.yaml │ │ │ └── market_income_sources.yaml │ │ ├── hud │ │ │ ├── README.md │ │ │ ├── abolition.yaml │ │ │ ├── adjusted_income │ │ │ │ ├── deductions │ │ │ │ │ ├── dependent │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── elderly_disabled │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── moop │ │ │ │ │ │ └── threshold.yaml │ │ │ │ └── index.yaml │ │ │ ├── ami_limit │ │ │ │ ├── README.md │ │ │ │ ├── family_size.yaml │ │ │ │ ├── index.yaml │ │ │ │ └── per_person_exceeding_4.yaml │ │ │ ├── elderly_age_threshold.yaml │ │ │ ├── index.yaml │ │ │ └── total_tenant_payment │ │ │ │ ├── adjusted_income_share.yaml │ │ │ │ ├── income_share.yaml │ │ │ │ └── index.yaml │ │ ├── irs │ │ │ ├── README.md │ │ │ ├── ald │ │ │ │ ├── README.md │ │ │ │ ├── alimony_expense │ │ │ │ │ └── divorce_year_threshold.yaml │ │ │ │ ├── deductions.yaml │ │ │ │ ├── loss │ │ │ │ │ ├── capital │ │ │ │ │ │ └── max.yaml │ │ │ │ │ └── max.yaml │ │ │ │ ├── misc │ │ │ │ │ ├── employer_share.yaml │ │ │ │ │ ├── max_business_losses.yaml │ │ │ │ │ └── self_emp_tax_adj.yaml │ │ │ │ ├── self_employment_tax │ │ │ │ │ └── percent_deductible.yaml │ │ │ │ └── student_loan_interest │ │ │ │ │ ├── cap.yaml │ │ │ │ │ ├── magi │ │ │ │ │ ├── excluded_alds.yaml │ │ │ │ │ ├── excluded_gross_income_sources.yaml │ │ │ │ │ └── person_alds.yaml │ │ │ │ │ └── reduction │ │ │ │ │ ├── divisor.yaml │ │ │ │ │ └── start.yaml │ │ │ ├── capital_gains │ │ │ │ ├── loss_limit.yaml │ │ │ │ ├── other_cg_rate.yaml │ │ │ │ ├── rates.yaml │ │ │ │ ├── thresholds.yaml │ │ │ │ └── unrecaptured_s_1250_rate.yaml │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── child_age.yaml │ │ │ │ │ │ └── max.yaml │ │ │ │ │ ├── max.yaml │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── amended_structure │ │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ │ ├── second_increment.yaml │ │ │ │ │ │ │ ├── second_min.yaml │ │ │ │ │ │ │ └── second_start.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ ├── second_start.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── preceding_credits.yaml │ │ │ │ ├── clean_vehicle │ │ │ │ │ ├── new │ │ │ │ │ │ ├── base_amount.yaml │ │ │ │ │ │ ├── battery_components │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── capacity_bonus │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── kwh_threshold.yaml │ │ │ │ │ │ │ └── max.yaml │ │ │ │ │ │ ├── critical_minerals │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ │ ├── min_kwh.yaml │ │ │ │ │ │ │ └── msrp_limit.yaml │ │ │ │ │ │ └── preceding_credits.yaml │ │ │ │ │ └── used │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── percent_of_sale_price.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ └── sale_price_limit.yaml │ │ │ │ │ │ └── preceding_credits.yaml │ │ │ │ ├── ctc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adult_ssn_requirement_applies.yaml │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── adult_dependent.yaml │ │ │ │ │ │ ├── arpa.yaml │ │ │ │ │ │ ├── arpa_expansion_cap_percent_of_threshold_diff.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ ├── child_ssn_requirement_applies.yaml │ │ │ │ │ ├── eligible_ssn_card_type.yaml │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── arpa │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── refundable │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fully_refundable.yaml │ │ │ │ │ │ ├── individual_max.yaml │ │ │ │ │ │ ├── phase_in │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── min_children_for_ss_taxes_minus_eitc.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ └── social_security │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── add.yaml │ │ │ │ │ │ └── subtract.yaml │ │ │ │ ├── education │ │ │ │ │ ├── README.md │ │ │ │ │ ├── american_opportunity_credit │ │ │ │ │ │ ├── abolition.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── preceding_credits.yaml │ │ │ │ │ │ └── refundability.yaml │ │ │ │ │ ├── lifetime_learning_credit │ │ │ │ │ │ ├── abolition.yaml │ │ │ │ │ │ ├── expense_limit.yaml │ │ │ │ │ │ ├── preceding_credits.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── phase_out.yaml │ │ │ │ ├── eitc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── age │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ │ └── min_student.yaml │ │ │ │ │ │ └── separate_filer.yaml │ │ │ │ │ ├── max.yaml │ │ │ │ │ ├── phase_in_rate.yaml │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── joint_bonus.yaml │ │ │ │ │ │ ├── max_investment_income.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── takeup.yaml │ │ │ │ ├── elderly_or_disabled │ │ │ │ │ ├── README.md │ │ │ │ │ ├── age.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── phase_out.yaml │ │ │ │ │ ├── preceding_credits.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ ├── energy_efficient_home_improvement │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── annual │ │ │ │ │ │ │ ├── advanced_main_air_circulating_fan.yaml │ │ │ │ │ │ │ ├── door.yaml │ │ │ │ │ │ │ ├── energy_efficient_building_property.yaml │ │ │ │ │ │ │ ├── energy_efficient_central_air_conditioner.yaml │ │ │ │ │ │ │ ├── heat_pump_heat_pump_water_heater_biomass_stove_boiler.yaml │ │ │ │ │ │ │ ├── home_energy_audit.yaml │ │ │ │ │ │ │ ├── insulation_material.yaml │ │ │ │ │ │ │ ├── qualified_furnace_or_hot_water_boiler.yaml │ │ │ │ │ │ │ ├── roof.yaml │ │ │ │ │ │ │ ├── total.yaml │ │ │ │ │ │ │ └── window.yaml │ │ │ │ │ │ └── lifetime │ │ │ │ │ │ │ ├── total.yaml │ │ │ │ │ │ │ └── window.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── preceding_credits.yaml │ │ │ │ │ ├── qualified_expenditures │ │ │ │ │ │ ├── credits.yaml │ │ │ │ │ │ └── heat_pump_heat_pump_water_heater_biomass_stove_boiler.yaml │ │ │ │ │ └── rates │ │ │ │ │ │ ├── home_energy_audit.yaml │ │ │ │ │ │ ├── improvements.yaml │ │ │ │ │ │ └── property.yaml │ │ │ │ ├── estate │ │ │ │ │ └── base.yaml │ │ │ │ ├── non_refundable.yaml │ │ │ │ ├── premium_tax_credit │ │ │ │ │ ├── eligibility.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── ending_rate.yaml │ │ │ │ │ │ └── starting_rate.yaml │ │ │ │ ├── recovery_rebate_credit │ │ │ │ │ ├── arpa │ │ │ │ │ │ ├── max │ │ │ │ │ │ │ ├── adult.yaml │ │ │ │ │ │ │ └── dependent.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── length.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── caa │ │ │ │ │ │ ├── max │ │ │ │ │ │ │ ├── adult.yaml │ │ │ │ │ │ │ └── child.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── cares │ │ │ │ │ │ ├── max │ │ │ │ │ │ ├── adult.yaml │ │ │ │ │ │ └── child.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ ├── refundable.yaml │ │ │ │ ├── residential_clean_energy │ │ │ │ │ ├── applicable_percentage.yaml │ │ │ │ │ ├── elements.yaml │ │ │ │ │ ├── fuel_cell_cap_per_kw.yaml │ │ │ │ │ └── preceding_credits.yaml │ │ │ │ └── retirement_saving │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── contributions_cap.yaml │ │ │ │ │ ├── preceding_credits.yaml │ │ │ │ │ ├── qualified_retirement_savings_contributions.yaml │ │ │ │ │ └── rate │ │ │ │ │ ├── joint.yaml │ │ │ │ │ └── threshold_adjustment.yaml │ │ │ ├── deductions │ │ │ │ ├── auto_loan_interest │ │ │ │ │ ├── cap.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ └── step.yaml │ │ │ │ ├── deductions_if_itemizing.yaml │ │ │ │ ├── deductions_if_not_itemizing.yaml │ │ │ │ ├── itemized │ │ │ │ │ ├── casualty │ │ │ │ │ │ ├── active.yaml │ │ │ │ │ │ └── floor.yaml │ │ │ │ │ ├── charity │ │ │ │ │ │ ├── ceiling │ │ │ │ │ │ │ ├── all.yaml │ │ │ │ │ │ │ └── non_cash.yaml │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── applies.yaml │ │ │ │ │ │ └── non_itemizers_amount.yaml │ │ │ │ │ ├── interest │ │ │ │ │ │ └── mortgage │ │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── limitation │ │ │ │ │ │ ├── agi_rate.yaml │ │ │ │ │ │ ├── applicable_amount.yaml │ │ │ │ │ │ └── itemized_deduction_rate.yaml │ │ │ │ │ ├── medical │ │ │ │ │ │ └── floor.yaml │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ ├── floor.yaml │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── reduction │ │ │ │ │ │ ├── agi_threshold.yaml │ │ │ │ │ │ ├── amended_structure │ │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ └── rate │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── excess_agi.yaml │ │ │ │ │ └── salt_and_real_estate │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── applies.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── sources.yaml │ │ │ │ │ │ └── state_sales_tax_table │ │ │ │ │ │ ├── income_bracket.yaml │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ └── tax.yaml │ │ │ │ ├── itemized_deductions.yaml │ │ │ │ ├── overtime_income │ │ │ │ │ ├── cap.yaml │ │ │ │ │ ├── eligible_ssn_card_type.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ ├── qbi │ │ │ │ │ ├── README.md │ │ │ │ │ ├── deduction_definition.yaml │ │ │ │ │ ├── deduction_floor │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ ├── income_definition.yaml │ │ │ │ │ ├── max │ │ │ │ │ │ ├── business_property │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ ├── reit_ptp_rate.yaml │ │ │ │ │ │ └── w2_wages │ │ │ │ │ │ │ ├── alt_rate.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── length.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ ├── senior_deduction │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── eligible_ssn_card_type.yaml │ │ │ │ │ └── phase_out_rate │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── other.yaml │ │ │ │ ├── standard │ │ │ │ │ ├── aged_or_blind │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── dependent │ │ │ │ │ │ ├── additional_earned_income.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ ├── tip_income │ │ │ │ │ ├── cap.yaml │ │ │ │ │ ├── eligible_ssn_card_type.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ └── tuition_and_fees │ │ │ │ │ ├── joint.yaml │ │ │ │ │ └── non_joint.yaml │ │ │ ├── dependent │ │ │ │ └── ineligible_age │ │ │ │ │ ├── non_student.yaml │ │ │ │ │ └── student.yaml │ │ │ ├── gross_income │ │ │ │ ├── dependent_care_assistance_programs │ │ │ │ │ └── reduction_amount.yaml │ │ │ │ ├── disqualified_earned_income.yaml │ │ │ │ ├── pre_tax_contributions.yaml │ │ │ │ ├── retirement_contributions │ │ │ │ │ ├── catch_up │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ ├── 401k.yaml │ │ │ │ │ │ │ └── ira.yaml │ │ │ │ │ └── limit │ │ │ │ │ │ ├── 401k.yaml │ │ │ │ │ │ └── ira.yaml │ │ │ │ └── sources.yaml │ │ │ ├── income │ │ │ │ ├── amt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── brackets.yaml │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ └── capital_gain_excess_tax_rate.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ └── separate_limit.yaml │ │ │ │ │ ├── itemized_deductions_add_back.yaml │ │ │ │ │ └── multiplier.yaml │ │ │ │ ├── bracket.yaml │ │ │ │ ├── disability_income_exclusion │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── cap.yaml │ │ │ │ └── exemption │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── overtime │ │ │ │ │ ├── computer_salary_threshold.yaml │ │ │ │ │ ├── hce_salary_threshold.yaml │ │ │ │ │ ├── hours_threshold.yaml │ │ │ │ │ ├── rate_multiplier.yaml │ │ │ │ │ └── salary_basis_threshold.yaml │ │ │ │ │ ├── phase_out │ │ │ │ │ ├── README.md │ │ │ │ │ ├── rate.yaml │ │ │ │ │ ├── start.yaml │ │ │ │ │ └── step_size.yaml │ │ │ │ │ └── traditional_distribution │ │ │ │ │ └── age_threshold.yaml │ │ │ ├── investment │ │ │ │ ├── income │ │ │ │ │ └── sources.yaml │ │ │ │ └── net_investment_income_tax │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ ├── payroll │ │ │ │ ├── medicare │ │ │ │ │ ├── additional │ │ │ │ │ │ ├── exclusion.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── rate │ │ │ │ │ │ ├── employee.yaml │ │ │ │ │ │ └── employer.yaml │ │ │ │ └── social_security │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cap.yaml │ │ │ │ │ └── rate │ │ │ │ │ ├── employee.yaml │ │ │ │ │ └── employer.yaml │ │ │ ├── self_employment │ │ │ │ ├── net_earnings_exemption.yaml │ │ │ │ └── rate │ │ │ │ │ ├── medicare.yaml │ │ │ │ │ └── social_security.yaml │ │ │ ├── social_security │ │ │ │ ├── README.md │ │ │ │ └── taxability │ │ │ │ │ ├── combined_income_ss_fraction.yaml │ │ │ │ │ ├── income │ │ │ │ │ └── revoked_deductions.yaml │ │ │ │ │ ├── rate │ │ │ │ │ ├── additional │ │ │ │ │ │ ├── benefit_cap.yaml │ │ │ │ │ │ ├── bracket.yaml │ │ │ │ │ │ └── excess.yaml │ │ │ │ │ └── base │ │ │ │ │ │ ├── benefit_cap.yaml │ │ │ │ │ │ └── excess.yaml │ │ │ │ │ └── threshold │ │ │ │ │ ├── adjusted_base │ │ │ │ │ ├── main.yaml │ │ │ │ │ └── separate_cohabitating.yaml │ │ │ │ │ └── base │ │ │ │ │ ├── main.yaml │ │ │ │ │ └── separate_cohabitating.yaml │ │ │ ├── tax │ │ │ │ └── estate │ │ │ │ │ └── rate.yaml │ │ │ ├── tce │ │ │ │ └── age_threshold.yaml │ │ │ ├── unemployment_compensation │ │ │ │ └── exemption │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── cutoff.yaml │ │ │ ├── uprating.py │ │ │ ├── uprating.yaml │ │ │ └── vita │ │ │ │ └── eligibility │ │ │ │ └── income_limit.yaml │ │ ├── local │ │ │ ├── README.md │ │ │ ├── ca │ │ │ │ ├── ala │ │ │ │ │ ├── README.md │ │ │ │ │ └── general_assistance │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ ├── countable_income │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── personal_property │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ └── qualified_immigration_status.yaml │ │ │ │ ├── la │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dss │ │ │ │ │ │ ├── expectant_parent_payment │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── pregnancy_month │ │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ └── infant_supplement │ │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── group_home.yaml │ │ │ │ │ ├── dwp │ │ │ │ │ │ └── ez_save │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── fpg_limit_increase.yaml │ │ │ │ │ │ │ └── household_size_floor.yaml │ │ │ │ │ │ │ └── income_sources.yaml │ │ │ │ │ └── general_relief │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ ├── cash │ │ │ │ │ │ │ ├── applicant │ │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ └── recipient.yaml │ │ │ │ │ │ │ ├── home_value.yaml │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── applicant │ │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ └── recipient.yaml │ │ │ │ │ │ │ ├── motor_vehicle │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ └── value │ │ │ │ │ │ │ │ ├── homeless.yaml │ │ │ │ │ │ │ │ └── resident.yaml │ │ │ │ │ │ │ └── personal_property.yaml │ │ │ │ │ │ ├── housing_subsidy │ │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ ├── move_in_assistance.yaml │ │ │ │ │ │ └── rent_contribution │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ ├── riv │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── liheap │ │ │ │ │ │ │ └── countable_income │ │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ └── share │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── countable_income │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ │ └── payment │ │ │ │ │ │ │ ├── electricity.yaml │ │ │ │ │ │ │ ├── electricity_emergency.yaml │ │ │ │ │ │ │ ├── trash.yaml │ │ │ │ │ │ │ └── water.yaml │ │ │ │ │ └── general_relief │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ ├── needs_standards │ │ │ │ │ │ ├── food.yaml │ │ │ │ │ │ ├── housing.yaml │ │ │ │ │ │ ├── personal_needs.yaml │ │ │ │ │ │ └── special_needs │ │ │ │ │ │ │ └── transportation.yaml │ │ │ │ │ │ ├── property │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ ├── sources.yaml │ │ │ │ │ │ └── vehicle_exemption │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── qualified_immigration_status.yaml │ │ │ │ │ │ └── work_exempted_age │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ └── sf │ │ │ │ │ └── wftc │ │ │ │ │ └── amount.yaml │ │ │ ├── co │ │ │ │ └── denver │ │ │ │ │ └── dhs │ │ │ │ │ ├── elderly_age_threshold.yaml │ │ │ │ │ └── property_tax_relief │ │ │ │ │ ├── ami_rate │ │ │ │ │ ├── homeowner.yaml │ │ │ │ │ └── renter.yaml │ │ │ │ │ ├── amount │ │ │ │ │ ├── homeowner.yaml │ │ │ │ │ └── renter.yaml │ │ │ │ │ └── income_sources.yaml │ │ │ ├── index.yaml │ │ │ ├── md │ │ │ │ └── montgomery │ │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ └── credits │ │ │ │ │ └── eitc │ │ │ │ │ ├── README.md │ │ │ │ │ └── refundable │ │ │ │ │ └── match.yaml │ │ │ ├── ny │ │ │ │ ├── mamdani_income_tax │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ └── nyc │ │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── child_age_restriction.yaml │ │ │ │ │ │ ├── max_rate.yaml │ │ │ │ │ │ ├── phaseout_end.yaml │ │ │ │ │ │ └── phaseout_start.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── percent.yaml │ │ │ │ │ │ ├── percent_reduction.yaml │ │ │ │ │ │ └── reduction_threshold.yaml │ │ │ │ │ ├── household │ │ │ │ │ │ ├── flat_amount.yaml │ │ │ │ │ │ ├── other_per_dependent.yaml │ │ │ │ │ │ └── separate_per_dependent.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── school │ │ │ │ │ │ ├── fixed │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ └── rate_reduction │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── tax │ │ │ │ └── income │ │ │ │ │ └── flat_tax_rate.yaml │ │ │ └── tx │ │ │ │ └── harris │ │ │ │ └── rides │ │ │ │ ├── age_threshold.yaml │ │ │ │ └── customer_payment_rate.yaml │ │ ├── simulation │ │ │ ├── branch_to_determine_itemization.yaml │ │ │ ├── capital_gains_responses │ │ │ │ └── elasticity.yaml │ │ │ ├── include_health_benefits_in_net_income.yaml │ │ │ ├── labor_supply_responses │ │ │ │ ├── bounds │ │ │ │ │ ├── README.md │ │ │ │ │ ├── effective_wage_rate_change.yaml │ │ │ │ │ └── income_change.yaml │ │ │ │ └── elasticities │ │ │ │ │ ├── README.md │ │ │ │ │ ├── income.yaml │ │ │ │ │ └── substitution.yaml │ │ │ ├── limit_itemized_deductions_to_taxable_income.yaml │ │ │ ├── reported_broadband_subsidy.yaml │ │ │ └── reported_snap.yaml │ │ ├── ssa │ │ │ ├── README.md │ │ │ ├── nawi.yaml │ │ │ ├── sga │ │ │ │ ├── READme.md │ │ │ │ ├── blind.yaml │ │ │ │ └── non_blind.yaml │ │ │ ├── ssi │ │ │ │ ├── README.md │ │ │ │ ├── abolish_ssi.yaml │ │ │ │ ├── amount │ │ │ │ │ ├── couple.yaml │ │ │ │ │ └── individual.yaml │ │ │ │ ├── eligibility │ │ │ │ │ ├── aged_threshold.yaml │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ └── individual.yaml │ │ │ │ │ │ └── pass_rate.yaml │ │ │ │ │ └── status │ │ │ │ │ │ └── qualified_noncitizen_status.yaml │ │ │ │ └── income │ │ │ │ │ ├── exclusions │ │ │ │ │ ├── blind_or_disabled_working_student │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── earned.yaml │ │ │ │ │ ├── earned_share.yaml │ │ │ │ │ └── general.yaml │ │ │ │ │ └── sources │ │ │ │ │ ├── earned.yaml │ │ │ │ │ ├── qualifying_quarters_threshold.yaml │ │ │ │ │ └── unearned.yaml │ │ │ └── uprating.yaml │ │ ├── states │ │ │ ├── README.md │ │ │ ├── ak │ │ │ │ ├── README.md │ │ │ │ └── dor │ │ │ │ │ ├── energy_relief.yaml │ │ │ │ │ └── permanent_fund_dividend.yaml │ │ │ ├── al │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── deductions.yaml │ │ │ │ │ └── gross_income_sources.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── federal_tax │ │ │ │ │ │ └── credits.yaml │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── medical_expense │ │ │ │ │ │ │ └── income_floor.yaml │ │ │ │ │ │ ├── sources.yaml │ │ │ │ │ │ └── work_related_expense_rate.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ ├── personal.yaml │ │ │ │ │ └── retirement │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── ar │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── additional_tax_credit_for_qualified_individuals │ │ │ │ │ │ ├── joint_multiplier.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── inflationary_relief │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── personal │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── disabled_dependent.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── sources │ │ │ │ │ │ │ ├── individual.yaml │ │ │ │ │ │ │ └── joint.yaml │ │ │ │ │ │ └── tuition │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── weighted_average_tuition │ │ │ │ │ │ │ ├── four_year_college.yaml │ │ │ │ │ │ │ ├── technical_institutes.yaml │ │ │ │ │ │ │ └── two_year_college.yaml │ │ │ │ │ └── standard.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── exemptions.yaml │ │ │ │ │ └── retirement_or_disability_benefits │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── gross_income │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ ├── exempt │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── loss_cap.yaml │ │ │ │ │ └── sources │ │ │ │ │ │ ├── individual.yaml │ │ │ │ │ │ └── joint.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── low_income_tax_tables │ │ │ │ │ ├── head_of_household │ │ │ │ │ │ ├── no_or_one_dependent.yaml │ │ │ │ │ │ └── two_or_more_dependents.yaml │ │ │ │ │ ├── joint │ │ │ │ │ │ ├── no_or_one_dependent.yaml │ │ │ │ │ │ └── two_or_more_dependents.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse │ │ │ │ │ │ ├── no_or_one_dependent.yaml │ │ │ │ │ │ └── two_or_more_dependents.yaml │ │ │ │ │ └── main │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── reduction.yaml │ │ │ ├── az │ │ │ │ ├── README.md │ │ │ │ ├── hhs │ │ │ │ │ └── tanf │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ └── age_threshold │ │ │ │ │ │ ├── non_student.yaml │ │ │ │ │ │ └── student.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── charitable_contribution │ │ │ │ │ │ └── ceiling │ │ │ │ │ │ │ ├── qualifying_foster.yaml │ │ │ │ │ │ │ └── qualifying_organization.yaml │ │ │ │ │ ├── dependent_credit │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── percentage.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── family_tax_credits │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ └── per_person.yaml │ │ │ │ │ │ └── income_limit │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ ├── increased_excise │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── cohabitating.yaml │ │ │ │ │ │ │ └── living_alone.yaml │ │ │ │ │ │ └── income_sources.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── increased │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged.yaml │ │ │ │ │ ├── blind.yaml │ │ │ │ │ ├── parent_grandparent │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── cost_rate.yaml │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ └── stillborn.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ └── single.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── capital_gains │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── college_savings │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── military_retirement │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── pension │ │ │ │ │ └── public_pension_cap.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── ca │ │ │ │ ├── README.md │ │ │ │ ├── calepa │ │ │ │ │ ├── README.md │ │ │ │ │ ├── carb │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── cvrp │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── income_cap.yaml │ │ │ │ │ │ │ └── increased_rebate │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── categorical_eligibility.yaml │ │ │ │ │ │ │ └── fpl_limit.yaml │ │ │ │ │ └── index.yaml │ │ │ │ ├── cdss │ │ │ │ │ ├── capi │ │ │ │ │ │ ├── payment_standard_offset │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ └── vehicle │ │ │ │ │ │ │ └── disregard.yaml │ │ │ │ │ ├── state_supplement │ │ │ │ │ │ └── payment_standard │ │ │ │ │ │ │ ├── aged_or_disabled │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ ├── allowance │ │ │ │ │ │ │ ├── food │ │ │ │ │ │ │ │ ├── married.yaml │ │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ ├── medical_care_facility.yaml │ │ │ │ │ │ │ └── out_of_home_care.yaml │ │ │ │ │ │ │ ├── blind │ │ │ │ │ │ │ ├── married │ │ │ │ │ │ │ │ ├── one_blind.yaml │ │ │ │ │ │ │ │ └── two_blind.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ └── dependent │ │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── cash │ │ │ │ │ │ ├── exempt.yaml │ │ │ │ │ │ ├── immigration_status │ │ │ │ │ │ │ └── eligible_statuses.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── disregards │ │ │ │ │ │ │ │ ├── applicant │ │ │ │ │ │ │ │ │ └── flat.yaml │ │ │ │ │ │ │ │ └── recipient │ │ │ │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ │ │ ├── monthly_limit │ │ │ │ │ │ │ │ ├── max_au_size.yaml │ │ │ │ │ │ │ │ ├── region1 │ │ │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ │ │ └── region2 │ │ │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ │ ├── db_unearned.yaml │ │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ │ └── other_unearned.yaml │ │ │ │ │ │ ├── monthly_payment │ │ │ │ │ │ │ ├── max_au_size.yaml │ │ │ │ │ │ │ ├── region1 │ │ │ │ │ │ │ │ ├── exempt.yaml │ │ │ │ │ │ │ │ └── non_exempt.yaml │ │ │ │ │ │ │ └── region2 │ │ │ │ │ │ │ │ ├── exempt.yaml │ │ │ │ │ │ │ │ └── non_exempt.yaml │ │ │ │ │ │ ├── region1_counties.yaml │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── vehicle.yaml │ │ │ │ │ │ │ ├── with_elderly_or_disabled_member.yaml │ │ │ │ │ │ │ └── without_elderly_or_disabled_member.yaml │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ └── child_care │ │ │ │ │ │ ├── child_care_time │ │ │ │ │ │ ├── daily_care │ │ │ │ │ │ │ ├── child_care_days_limit.yaml │ │ │ │ │ │ │ └── daily_child_care_hours_limit.yaml │ │ │ │ │ │ ├── hourly_care │ │ │ │ │ │ │ ├── daily_child_care_hours_limit.yaml │ │ │ │ │ │ │ └── weekly_child_care_hours_limit.yaml │ │ │ │ │ │ ├── monthly_care │ │ │ │ │ │ │ ├── child_care_weeks_requirement.yaml │ │ │ │ │ │ │ └── weekly_child_care_hours_threshold.yaml │ │ │ │ │ │ └── weekly_care │ │ │ │ │ │ │ └── weekly_child_care_hours_threshold.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── disabled_age_threshold.yaml │ │ │ │ │ │ └── immigration_status │ │ │ │ │ │ │ └── eligible_statuses.yaml │ │ │ │ │ │ └── rate_ceilings │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── higher.yaml │ │ │ │ │ │ └── lower.yaml │ │ │ │ │ │ ├── evening_or_weekend_I.yaml │ │ │ │ │ │ ├── evening_or_weekend_II.yaml │ │ │ │ │ │ ├── exceptional_needs.yaml │ │ │ │ │ │ ├── severely_disabled.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ ├── middle.yaml │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ ├── chhs │ │ │ │ │ ├── eligible_regardless_of_immigration_status.yaml │ │ │ │ │ └── medi_cal_enrollment_freeze │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ ├── cpi.yaml │ │ │ │ ├── cpuc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── care │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── discount.yaml │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ ├── categorical.yaml │ │ │ │ │ │ │ ├── fpl_limit.yaml │ │ │ │ │ │ │ └── tribal_categorical.yaml │ │ │ │ │ ├── fera │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── discount.yaml │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ ├── fpl_limit.yaml │ │ │ │ │ │ │ └── minimum_household_size.yaml │ │ │ │ │ └── index.yaml │ │ │ │ ├── dhcs │ │ │ │ │ └── ffyp │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── foster_care_age_minimum.yaml │ │ │ │ ├── fcc │ │ │ │ │ └── lifeline │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ ├── foster_care │ │ │ │ │ └── age_threshold.yaml │ │ │ │ ├── infant │ │ │ │ │ └── age_limit.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── README.md │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ ├── amt │ │ │ │ │ ├── amti │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── amti │ │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ ├── lower.yaml │ │ │ │ │ │ │ └── upper.yaml │ │ │ │ │ └── tentative_min_tax_rate.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── child_dependent_care │ │ │ │ │ │ ├── input.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── adjustment │ │ │ │ │ │ │ └── factor.yaml │ │ │ │ │ │ ├── earned_income_amount.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── age │ │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ │ └── max_investment_income.yaml │ │ │ │ │ │ ├── phase_in │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── final │ │ │ │ │ │ │ ├── end.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── foster_youth │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ ├── renter │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── income_cap.yaml │ │ │ │ │ │ └── index.yaml │ │ │ │ │ └── young_child │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── ineligible_age.yaml │ │ │ │ │ │ ├── loss_threshold.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ ├── agi_fraction.yaml │ │ │ │ │ │ │ ├── agi_threshold.yaml │ │ │ │ │ │ │ ├── ded_fraction.yaml │ │ │ │ │ │ │ └── excluded_deductions.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── dependent_amount.yaml │ │ │ │ │ ├── personal_scale.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── mental_health_services.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── use_tax │ │ │ │ │ ├── README.md │ │ │ │ │ ├── additional.yaml │ │ │ │ │ └── main.yaml │ │ │ ├── co │ │ │ │ ├── README.md │ │ │ │ ├── ccap │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ ├── disabled_age_limit.yaml │ │ │ │ │ ├── entry │ │ │ │ │ │ ├── fpg_rate.yaml │ │ │ │ │ │ └── smi_rate.yaml │ │ │ │ │ ├── implementing_month.yaml │ │ │ │ │ ├── is_quality_rating_discounted.yaml │ │ │ │ │ ├── parent_fee │ │ │ │ │ │ ├── add_on.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ ├── parent_fee_rate_by_child_care_hours.yaml │ │ │ │ │ └── re_determination │ │ │ │ │ │ └── smi_rate.yaml │ │ │ │ ├── cdhs │ │ │ │ │ ├── README.md │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── grant_standard │ │ │ │ │ │ ├── additional_child.yaml │ │ │ │ │ │ ├── main.yaml │ │ │ │ │ │ └── pregnancy_allowance.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ ├── earned_exclusion │ │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ │ └── percent.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ └── need_standard │ │ │ │ │ │ ├── additional_child.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ ├── hcpf │ │ │ │ │ └── chp │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ ├── copays │ │ │ │ │ │ ├── ambulance.yaml │ │ │ │ │ │ ├── er_visit.yaml │ │ │ │ │ │ ├── imaging.yaml │ │ │ │ │ │ ├── inpatient.yaml │ │ │ │ │ │ ├── lab.yaml │ │ │ │ │ │ ├── outpatient.yaml │ │ │ │ │ │ ├── physician_services.yaml │ │ │ │ │ │ ├── prescription.yaml │ │ │ │ │ │ └── urgent_care.yaml │ │ │ │ │ │ ├── expenses.yaml │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ └── out_of_pocket.yaml │ │ │ │ ├── ssa │ │ │ │ │ ├── README.md │ │ │ │ │ ├── oap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ ├── grant_standard.yaml │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── couple.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ └── state_supplement │ │ │ │ │ │ ├── age_range.yaml │ │ │ │ │ │ └── grant_standard.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ ├── additions.yaml │ │ │ │ │ ├── federal_deductions │ │ │ │ │ │ ├── agi_threshold.yaml │ │ │ │ │ │ ├── exemption.yaml │ │ │ │ │ │ └── itemized_only.yaml │ │ │ │ │ └── qualified_business_income_deduction │ │ │ │ │ │ └── agi_threshold.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── care_worker │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── non_joint.yaml │ │ │ │ │ │ └── income_limit │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── non_joint.yaml │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── low_income │ │ │ │ │ │ │ ├── child_age_threshold.yaml │ │ │ │ │ │ │ ├── federal_agi_threshold.yaml │ │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ ├── ctc_matched_federal_credit.yaml │ │ │ │ │ │ ├── eligible_child.yaml │ │ │ │ │ │ └── rate │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── family_affordability │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_multiplier.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── income_qualified_senior_housing │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ ├── sales_tax_refund │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── flat_amount_enabled.yaml │ │ │ │ │ │ │ ├── multiplier.yaml │ │ │ │ │ │ │ └── scale.yaml │ │ │ │ │ │ └── magi_sources.yaml │ │ │ │ │ └── tabor │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── able_contribution │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── charitable_contribution │ │ │ │ │ └── adjustment.yaml │ │ │ │ │ ├── collegeinvest_contribution │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── military_retirement │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── pension │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ └── social_security_subtraction_available.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── ct │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── add_back │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── increment.yaml │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── additions │ │ │ │ │ └── additions.yaml │ │ │ │ │ ├── agi │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ └── personal │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── rebate │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── child_cap.yaml │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── recapture │ │ │ │ │ ├── high │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── low │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── middle │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── pensions_or_annuity │ │ │ │ │ ├── joint.yaml │ │ │ │ │ └── non_joint.yaml │ │ │ │ │ ├── social_security │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── reduction_threshold.yaml │ │ │ │ │ ├── subtractions.yaml │ │ │ │ │ └── tuition │ │ │ │ │ └── cap.yaml │ │ │ ├── dc │ │ │ │ ├── README.md │ │ │ │ ├── dhs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ccsp │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ │ ├── disabled_child.yaml │ │ │ │ │ │ │ ├── elderly.yaml │ │ │ │ │ │ │ └── teen_parent.yaml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── copay │ │ │ │ │ │ │ ├── exempted_rate.yaml │ │ │ │ │ │ │ ├── first_child │ │ │ │ │ │ │ │ ├── full_time.yaml │ │ │ │ │ │ │ │ └── part_time.yaml │ │ │ │ │ │ │ └── second_child │ │ │ │ │ │ │ │ ├── full_time.yaml │ │ │ │ │ │ │ │ └── part_time.yaml │ │ │ │ │ │ ├── full_time_schedule_types.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── countable_income │ │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ │ └── income_limit │ │ │ │ │ │ │ │ ├── new_applicants_rate.yaml │ │ │ │ │ │ │ │ └── redetermination_rate.yaml │ │ │ │ │ │ ├── qualified_immigration_statuses.yaml │ │ │ │ │ │ └── reimbursement_rates.yaml │ │ │ │ │ ├── gac │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── income_disregard │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── power │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ │ └── disqualifying_benefits.yaml │ │ │ │ │ ├── qualified_noncitizen_statuses.yaml │ │ │ │ │ ├── snap │ │ │ │ │ │ └── min_allotment │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── minor_child.yaml │ │ │ │ │ │ └── student_dependent.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── child_care │ │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ │ ├── child_support.yaml │ │ │ │ │ │ │ ├── earned_income_disregard │ │ │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ │ │ └── work_related_expense │ │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ ├── resource_limit │ │ │ │ │ │ ├── higher │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ └── lower │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── standard_payment │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── max_unit_size.yaml │ │ │ │ │ │ └── work_requirement │ │ │ │ │ │ ├── required_hours │ │ │ │ │ │ ├── single_parent │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── higher │ │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ │ └── lower │ │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ │ └── young_child_age_threshold.yaml │ │ │ │ │ │ └── two_parents │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ └── work_exempted │ │ │ │ │ │ ├── elderly_age_threshold.yaml │ │ │ │ │ │ └── infant_age_threshold.yaml │ │ │ │ ├── doee │ │ │ │ │ ├── README.md │ │ │ │ │ └── liheap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── income_level_increment.yaml │ │ │ │ │ │ └── payment │ │ │ │ │ │ ├── electricity.yaml │ │ │ │ │ │ ├── gas.yaml │ │ │ │ │ │ ├── heat_in_rent.yaml │ │ │ │ │ │ └── oil.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ ├── self_employment_loss │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ └── child_cap.yaml │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── increment.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── with_children │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ └── without_children │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── kccatc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ ├── max_age.yaml │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── ptc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fraction_elderly.yaml │ │ │ │ │ │ ├── fraction_nonelderly.yaml │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ ├── min_elderly_age.yaml │ │ │ │ │ │ ├── rent_ratio.yaml │ │ │ │ │ │ └── takeup.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── itemized │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── joint_separately_option.yaml │ │ │ │ │ ├── rates.yaml │ │ │ │ │ ├── snap │ │ │ │ │ └── temporary_local_benefit │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── disabled_exclusion │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── sources.yaml │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── personal_credits │ │ │ │ │ │ ├── aged.yaml │ │ │ │ │ │ └── personal.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── relief_rebate │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── additional │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── exclusions │ │ │ │ │ ├── elderly_or_disabled │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── agi_limit.yaml │ │ │ │ │ │ │ └── earned_income_limit.yaml │ │ │ │ │ └── pension │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── military.yaml │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ └── military_retirement_exclusion_available.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── ga │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ └── additions.yaml │ │ │ │ │ ├── agi │ │ │ │ │ └── exclusions │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ ├── additional │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── earned_income_threshold.yaml │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ └── retirement │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── earned_income.yaml │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── itemizer │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── low_income │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── supplement_age_eligibility.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ └── surplus_tax_rebate │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── aged │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── head.yaml │ │ │ │ │ │ │ └── spouse.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ └── blind │ │ │ │ │ │ ├── head.yaml │ │ │ │ │ │ └── spouse.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ └── personal │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── availability.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ └── subtractions.yaml │ │ │ ├── hi │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── alternative_tax │ │ │ │ │ ├── availability.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── act_115_rebate │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── dependent_care_benefits │ │ │ │ │ │ │ └── expense_floor.yaml │ │ │ │ │ │ ├── disabled_student_income_floor.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── food_excise_tax │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── minor_child │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ │ └── support_proportion_threshold.yaml │ │ │ │ │ ├── lihrtc │ │ │ │ │ │ ├── aged_age_threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ ├── agi_limit.yaml │ │ │ │ │ │ │ └── rent_threshold.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── sources.yaml │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ ├── deductions.yaml │ │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ │ └── reduction.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged_threshold.yaml │ │ │ │ │ ├── base.yaml │ │ │ │ │ └── disabled.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── military_pay │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── household │ │ │ │ ├── index.yaml │ │ │ │ ├── state_agis.yaml │ │ │ │ ├── state_cdccs.yaml │ │ │ │ ├── state_ctcs.yaml │ │ │ │ ├── state_eitcs.yaml │ │ │ │ ├── state_income_tax_before_refundable_credits.yaml │ │ │ │ ├── state_itemized_deductions.yaml │ │ │ │ ├── state_non_refundable_credits.yaml │ │ │ │ ├── state_property_tax_credits.yaml │ │ │ │ ├── state_refundable_credits.yaml │ │ │ │ ├── state_standard_deductions.yaml │ │ │ │ ├── state_taxable_incomes.yaml │ │ │ │ ├── state_withheld_income_tax.yaml │ │ │ │ └── states_with_married_filing_separately_on_same_return.yaml │ │ │ ├── ia │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── alternate_tax │ │ │ │ │ ├── deduction │ │ │ │ │ │ ├── elderly.yaml │ │ │ │ │ │ └── nonelderly.yaml │ │ │ │ │ ├── elderly_age.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── alternative_minimum_tax │ │ │ │ │ ├── exemption.yaml │ │ │ │ │ ├── fraction.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── child_care │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ ├── elderly_age.yaml │ │ │ │ │ │ └── personal.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ └── applies_federal.yaml │ │ │ │ │ ├── qualified_business_income │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── sources.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── applies_federal.yaml │ │ │ │ │ ├── gross_income │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── income_adjustments │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── married_filing_separately_on_same_return │ │ │ │ │ └── availability.yaml │ │ │ │ │ ├── modified_income │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── pension_exclusion │ │ │ │ │ ├── maximum_amount.yaml │ │ │ │ │ └── minimum_age.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── by_filing_status │ │ │ │ │ │ ├── active.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ └── other.yaml │ │ │ │ │ └── combined.yaml │ │ │ │ │ ├── reportable_social_security │ │ │ │ │ ├── deduction.yaml │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── tax_exempt │ │ │ │ │ ├── elderly_age.yaml │ │ │ │ │ └── income_limit │ │ │ │ │ │ ├── other_elderly.yaml │ │ │ │ │ │ ├── other_nonelderly.yaml │ │ │ │ │ │ ├── single_elderly.yaml │ │ │ │ │ │ └── single_nonelderly.yaml │ │ │ │ │ ├── tax_reduction │ │ │ │ │ ├── elderly_age.yaml │ │ │ │ │ └── threshold │ │ │ │ │ │ ├── elderly.yaml │ │ │ │ │ │ └── nonelderly.yaml │ │ │ │ │ └── taxable_income │ │ │ │ │ ├── additions.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── id │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── 2022_rebate │ │ │ │ │ │ ├── floor.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── aged_or_disabled │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── person_cap.yaml │ │ │ │ │ │ └── support_fraction_threshold.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── grocery │ │ │ │ │ │ ├── aged │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ │ └── base │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── special_seasonal_rebate │ │ │ │ │ │ ├── floor.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ ├── dependent_care_expenses │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── retirement_benefits │ │ │ │ │ │ ├── age_eligibility │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── income_sources.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── other_taxes │ │ │ │ │ └── pbf │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── aged_or_disabled │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── person_cap.yaml │ │ │ │ │ └── support_fraction_threshold.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── il │ │ │ │ ├── README.md │ │ │ │ ├── dceo │ │ │ │ │ ├── README.md │ │ │ │ │ └── liheap │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── fpg_limit.yaml │ │ │ │ │ │ └── rent_rate.yaml │ │ │ │ │ │ └── payment │ │ │ │ │ │ ├── base_amount │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ └── crisis_amount │ │ │ │ │ │ └── max.yaml │ │ │ │ ├── dhs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── aabd │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── asset │ │ │ │ │ │ │ ├── disregard │ │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ │ ├── sources.yaml │ │ │ │ │ │ │ └── vehicle_exemption │ │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── exemption │ │ │ │ │ │ │ │ ├── blind.yaml │ │ │ │ │ │ │ │ ├── child_care.yaml │ │ │ │ │ │ │ │ ├── elderly_or_disabled.yaml │ │ │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ ├── payment │ │ │ │ │ │ │ ├── area │ │ │ │ │ │ │ │ ├── area_1.yaml │ │ │ │ │ │ │ │ ├── area_2.yaml │ │ │ │ │ │ │ │ ├── area_3.yaml │ │ │ │ │ │ │ │ ├── area_4.yaml │ │ │ │ │ │ │ │ ├── area_5.yaml │ │ │ │ │ │ │ │ ├── area_6.yaml │ │ │ │ │ │ │ │ ├── area_7.yaml │ │ │ │ │ │ │ │ └── area_8.yaml │ │ │ │ │ │ │ ├── grant_amount.yaml │ │ │ │ │ │ │ ├── personal_allowance │ │ │ │ │ │ │ │ ├── active.yaml │ │ │ │ │ │ │ │ └── bedfast.yaml │ │ │ │ │ │ │ ├── shelter_allowance │ │ │ │ │ │ │ │ ├── homestead.yaml │ │ │ │ │ │ │ │ └── rent.yaml │ │ │ │ │ │ │ └── utility │ │ │ │ │ │ │ │ ├── bottled_gas.yaml │ │ │ │ │ │ │ │ ├── coal.yaml │ │ │ │ │ │ │ │ ├── cooking_fuel.yaml │ │ │ │ │ │ │ │ ├── electricity.yaml │ │ │ │ │ │ │ │ ├── fuel_oil.yaml │ │ │ │ │ │ │ │ ├── metered_gas.yaml │ │ │ │ │ │ │ │ ├── utility_types.yaml │ │ │ │ │ │ │ │ └── water.yaml │ │ │ │ │ │ └── qualified_noncitizen_statuses.yaml │ │ │ │ │ ├── ccap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_limit │ │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ │ └── special_needs_child.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── countable_income │ │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ │ └── income_limit │ │ │ │ │ │ │ │ ├── new_applicants_rate.yaml │ │ │ │ │ │ │ │ └── redetermination_rate.yaml │ │ │ │ │ │ └── qualified_alien_statuses.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── minor_child.yaml │ │ │ │ │ │ └── student_dependent.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── child_care_deduction.yaml │ │ │ │ │ │ ├── disregard │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── initial_employment_deduction │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ ├── payment_level │ │ │ │ │ │ ├── child_only_rate.yaml │ │ │ │ │ │ ├── parent_only_rate.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── qualified_noncitizen_statuses.yaml │ │ │ │ ├── hfs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bcc │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ └── age.yaml │ │ │ │ │ ├── fpp │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ ├── household_size.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ ├── hbwd │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── age.yaml │ │ │ │ │ │ │ ├── asset │ │ │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ └── premium │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ ├── mpe │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── qualified_noncitizen_statuses.yaml │ │ │ │ ├── idoa │ │ │ │ │ ├── README.md │ │ │ │ │ └── bap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ └── senior_age_threshold.yaml │ │ │ │ ├── rta │ │ │ │ │ ├── README.md │ │ │ │ │ └── cta │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── free_ride_program │ │ │ │ │ │ └── age_threshold │ │ │ │ │ │ │ ├── senior.yaml │ │ │ │ │ │ │ └── young_child.yaml │ │ │ │ │ │ ├── monthly_pass_cost │ │ │ │ │ │ ├── full_fare.yaml │ │ │ │ │ │ └── reduced_fare.yaml │ │ │ │ │ │ └── reduced_fare_program │ │ │ │ │ │ └── age_threshold │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ ├── senior.yaml │ │ │ │ │ │ └── student.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── base │ │ │ │ │ ├── additions.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── READme.md │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── income_tax_rebate │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── other.yaml │ │ │ │ │ │ └── max_dependents.yaml │ │ │ │ │ ├── k12 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── reduction.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ ├── aged_and_blind.yaml │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ └── personal.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── use_tax │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── in │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi_rate.yaml │ │ │ │ │ ├── county_rates.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── automatic_refund_rebate │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── childless │ │ │ │ │ │ │ ├── max_age.yaml │ │ │ │ │ │ │ ├── maximum.yaml │ │ │ │ │ │ │ ├── min_age.yaml │ │ │ │ │ │ │ ├── phase_in_rate.yaml │ │ │ │ │ │ │ ├── phase_out_rate.yaml │ │ │ │ │ │ │ └── phase_out_start.yaml │ │ │ │ │ │ ├── decoupled.yaml │ │ │ │ │ │ ├── investment_income_limit.yaml │ │ │ │ │ │ ├── match_rate.yaml │ │ │ │ │ │ └── max_children.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── unified_elderly │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── one_aged.yaml │ │ │ │ │ │ └── two_aged.yaml │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── deductions.yaml │ │ │ │ │ ├── homeowners_property_tax │ │ │ │ │ │ └── max.yaml │ │ │ │ │ ├── military_service │ │ │ │ │ │ └── max.yaml │ │ │ │ │ ├── nonpublic_school │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── renters │ │ │ │ │ │ └── max.yaml │ │ │ │ │ └── unemployment_compensation │ │ │ │ │ │ ├── agi_reduction.yaml │ │ │ │ │ │ └── reduced_agi_haircut.yaml │ │ │ │ │ └── exemptions │ │ │ │ │ ├── additional │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── adoption │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── aged_blind │ │ │ │ │ ├── README.md │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── aged_low_agi │ │ │ │ │ ├── README.md │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── base │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── qualifying_child │ │ │ │ │ └── max_ages │ │ │ │ │ ├── non_student.yaml │ │ │ │ │ └── student.yaml │ │ │ ├── ks │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ └── subtractions │ │ │ │ │ │ └── oasdi │ │ │ │ │ │ └── agi_limit.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc_fraction.yaml │ │ │ │ │ ├── eitc_fraction.yaml │ │ │ │ │ ├── food_sales_tax │ │ │ │ │ │ ├── agi_limit.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child_age.yaml │ │ │ │ │ │ └── min_adult_age.yaml │ │ │ │ │ ├── nonrefundable_after_eitc.yaml │ │ │ │ │ ├── nonrefundable_before_eitc.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── base_amount.yaml │ │ │ │ │ │ └── extra_amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── base.yaml │ │ │ │ │ ├── by_filing_status │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ ├── hoh_additional_amount.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ ├── consolidated │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── disabled_veteran │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── other.yaml │ │ │ │ │ └── zero_tax_threshold.yaml │ │ │ ├── ky │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── dependent_care_service │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── family_size │ │ │ │ │ │ ├── family_size_cap.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── personal │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── aged.yaml │ │ │ │ │ │ │ ├── blind.yaml │ │ │ │ │ │ │ └── military.yaml │ │ │ │ │ └── tuition_tax │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard.yaml │ │ │ │ │ ├── exclusions │ │ │ │ │ └── pension_income │ │ │ │ │ │ ├── other_retirement_income_sources.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── la │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── non_refundable │ │ │ │ │ │ │ ├── match.yaml │ │ │ │ │ │ │ └── upper_bracket_cap.yaml │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── school_readiness │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── federal_tax │ │ │ │ │ │ └── availability.yaml │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── excess_fraction.yaml │ │ │ │ │ │ └── relevant_federal_deductions.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── applies.yaml │ │ │ │ │ ├── exempt_income │ │ │ │ │ ├── disability │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── military_pay_exclusion │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ ├── reduction │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── retirement │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged.yaml │ │ │ │ │ ├── blind.yaml │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ ├── personal.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── main │ │ │ │ │ ├── by_filing_status │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── flat │ │ │ │ │ ├── applies.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── ma │ │ │ │ ├── README.md │ │ │ │ ├── doer │ │ │ │ │ ├── README.md │ │ │ │ │ └── liheap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── benefit_level.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ └── rent_threshold_subsidized_housing.yaml │ │ │ │ │ │ ├── hecs │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── non_subsidized.yaml │ │ │ │ │ │ │ └── subsidized.yaml │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ └── prior_year_cost_threshold.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ └── amount │ │ │ │ │ │ ├── non_subsidized.yaml │ │ │ │ │ │ └── subsidized.yaml │ │ │ │ ├── dot │ │ │ │ │ ├── README.md │ │ │ │ │ └── mbta │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── income_eligible_reduced_fares │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── applicable_programs.yaml │ │ │ │ │ │ └── senior_charlie_card │ │ │ │ │ │ └── age_threshold.yaml │ │ │ │ ├── dta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ssp │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── tcap │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── child_support_received.yaml │ │ │ │ │ │ ├── dependent_care_expenses │ │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ │ │ └── young_child_age_threshold.yaml │ │ │ │ │ │ └── work_related_expenses │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── eaedc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ │ ├── caretaker.yaml │ │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ │ └── elderly.yaml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── income_disregard │ │ │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ │ │ └── percentage │ │ │ │ │ │ │ │ ├── months.yaml │ │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ └── disabled_limit.yaml │ │ │ │ │ │ └── standard_assistance │ │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ ├── gross_income │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ └── tafdc │ │ │ │ │ │ ├── clothing_allowance.yaml │ │ │ │ │ │ ├── earned_income_disregard │ │ │ │ │ │ ├── full_disregard │ │ │ │ │ │ │ ├── applicable_months.yaml │ │ │ │ │ │ │ ├── fpg_limit.yaml │ │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── age_limit │ │ │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ │ │ ├── infant.yaml │ │ │ │ │ │ │ ├── student_dependent.yaml │ │ │ │ │ │ │ └── teen_parent.yaml │ │ │ │ │ │ ├── income_limit │ │ │ │ │ │ │ ├── additional_person.yaml │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── private_housing.yaml │ │ │ │ │ │ │ │ └── public_housing.yaml │ │ │ │ │ │ │ ├── max_unit_size.yaml │ │ │ │ │ │ │ └── teen_parent │ │ │ │ │ │ │ │ └── fpg_limit.yaml │ │ │ │ │ │ └── pregnancy_month.yaml │ │ │ │ │ │ └── infant_amount.yaml │ │ │ │ ├── eec │ │ │ │ │ ├── README.md │ │ │ │ │ └── ccfa │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── activity_requirements │ │ │ │ │ │ ├── weekly_hours.yaml │ │ │ │ │ │ └── work_exempt_age.yaml │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ ├── disabled_child.yaml │ │ │ │ │ │ ├── infant.yaml │ │ │ │ │ │ ├── school_age.yaml │ │ │ │ │ │ └── toddler.yaml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ ├── copay │ │ │ │ │ │ ├── fee_level │ │ │ │ │ │ │ ├── fee_percentages.yaml │ │ │ │ │ │ │ ├── income_ratio_increments.yaml │ │ │ │ │ │ │ └── maximum_level.yaml │ │ │ │ │ │ └── ratio │ │ │ │ │ │ │ ├── additional_child.yaml │ │ │ │ │ │ │ ├── first_child.yaml │ │ │ │ │ │ │ └── second_child.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── countable_income │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ └── smi_rate │ │ │ │ │ │ │ ├── new_applicants.yaml │ │ │ │ │ │ │ └── redetermination.yaml │ │ │ │ │ │ ├── qualified_immigration_statuses.yaml │ │ │ │ │ │ ├── region │ │ │ │ │ │ ├── metro_and_boston_metro.yaml │ │ │ │ │ │ ├── northeast.yaml │ │ │ │ │ │ └── western_central_and_southeast.yaml │ │ │ │ │ │ └── reimbursement_rates │ │ │ │ │ │ ├── amount_ratio.yaml │ │ │ │ │ │ ├── center_based │ │ │ │ │ │ ├── early_education.yaml │ │ │ │ │ │ └── school_age.yaml │ │ │ │ │ │ ├── family_child_care │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── older.yaml │ │ │ │ │ │ └── younger.yaml │ │ │ │ │ │ ├── head_start_partner_and_kindergarten.yaml │ │ │ │ │ │ └── informal_child_care │ │ │ │ │ │ ├── child_home.yaml │ │ │ │ │ │ └── relative_home.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── ald │ │ │ │ │ ├── README.md │ │ │ │ │ └── disallowed.yaml │ │ │ │ │ ├── capital_gains │ │ │ │ │ ├── deductible_against_interest_dividends.yaml │ │ │ │ │ └── long_term_collectibles_deduction.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── child_and_family │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child_age_limit.yaml │ │ │ │ │ │ ├── dependent_cap.yaml │ │ │ │ │ │ └── elderly_age_limit.yaml │ │ │ │ │ ├── covid_19_essential_employee_premium_pay_program │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── disqualifying_programs.yaml │ │ │ │ │ │ ├── max_poverty_ratio.yaml │ │ │ │ │ │ └── min_earnings.yaml │ │ │ │ │ ├── dependent_care │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── dependent_cap.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── limited_income_credit │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ └── percent.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ ├── senior_circuit_breaker │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ ├── min_real_estate_tax.yaml │ │ │ │ │ │ │ └── rent_tax_share.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── max_income.yaml │ │ │ │ │ │ │ ├── max_property_value.yaml │ │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ └── income │ │ │ │ │ │ │ └── disallowed_deductions.yaml │ │ │ │ │ └── taxpayer_refund_rebate │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── public_retirement_contributions.yaml │ │ │ │ │ └── rent │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── share.yaml │ │ │ │ │ ├── exempt_status │ │ │ │ │ └── limit │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ └── personal_exemption_added.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged │ │ │ │ │ │ ├── age.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── blind.yaml │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ ├── interest │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ └── personal.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── additional.yaml │ │ │ │ │ ├── part_a │ │ │ │ │ ├── capital_gains.yaml │ │ │ │ │ └── dividends.yaml │ │ │ │ │ ├── part_b.yaml │ │ │ │ │ └── part_c.yaml │ │ │ ├── md │ │ │ │ ├── README.md │ │ │ │ ├── tanf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── income │ │ │ │ │ │ └── deductions │ │ │ │ │ │ │ └── earned │ │ │ │ │ │ │ ├── new.yaml │ │ │ │ │ │ │ ├── not_self_employed.yaml │ │ │ │ │ │ │ └── self_employed.yaml │ │ │ │ │ └── maximum_benefit │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ ├── tax │ │ │ │ │ └── income │ │ │ │ │ │ ├── agi │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── hundred_year │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ │ ├── max_care_expense_year_offset.yaml │ │ │ │ │ │ │ ├── max_two_income_subtraction.yaml │ │ │ │ │ │ │ ├── pension │ │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ ├── surtax_applies.yaml │ │ │ │ │ │ ├── surtax_rate.yaml │ │ │ │ │ │ └── surtax_threshold.yaml │ │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── agi_cap.yaml │ │ │ │ │ │ │ │ └── refundable_agi_cap.yaml │ │ │ │ │ │ │ ├── percent.yaml │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ │ ├── percent.yaml │ │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ │ ├── agi_cap.yaml │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ │ └── reduced_by_federal_credit.yaml │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── non_refundable │ │ │ │ │ │ │ │ ├── married_or_has_child │ │ │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ │ │ └── unmarried_childless │ │ │ │ │ │ │ │ │ ├── match.yaml │ │ │ │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ │ └── married_or_has_child │ │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ │ ├── poverty_line │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── earned_income_share.yaml │ │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ │ └── senior_tax │ │ │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ │ └── income_threshold.yaml │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ ├── flat_deduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── applies.yaml │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ ├── aged │ │ │ │ │ │ │ ├── age.yaml │ │ │ │ │ │ │ ├── aged_dependent.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── blind.yaml │ │ │ │ │ │ └── personal │ │ │ │ │ │ │ ├── head.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── rates │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ └── usda │ │ │ │ │ └── snap │ │ │ │ │ └── min_allotment │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ ├── me │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ └── subtractions │ │ │ │ │ │ └── pension_exclusion │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── child_care │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── share_of_federal_credit │ │ │ │ │ │ │ ├── non_step_4.yaml │ │ │ │ │ │ │ └── step_4.yaml │ │ │ │ │ ├── dependent_exemption │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── multiplier.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ │ └── step.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate │ │ │ │ │ │ │ ├── no_qualifying_child.yaml │ │ │ │ │ │ │ └── with_qualifying_child.yaml │ │ │ │ │ ├── fairness │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ ├── property_tax │ │ │ │ │ │ │ ├── benefit_base │ │ │ │ │ │ │ │ ├── head_of_household_one_child.yaml │ │ │ │ │ │ │ │ ├── joint_or_head_of_household_multiple_children.yaml │ │ │ │ │ │ │ │ ├── senior.yaml │ │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ ├── dependent_count_threshold.yaml │ │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ │ ├── income.yaml │ │ │ │ │ │ │ │ └── rent.yaml │ │ │ │ │ │ │ └── veterans_matched.yaml │ │ │ │ │ │ └── sales_tax │ │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── additional │ │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── relief_rebate │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── personal_exemption │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── phaseout │ │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ │ └── width.yaml │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ └── width.yaml │ │ │ │ │ └── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── mi │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── home_heating │ │ │ │ │ │ ├── additional_exemption │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ ├── alternate │ │ │ │ │ │ │ ├── heating_costs │ │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ │ └── household_resources │ │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── credit_percentage.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ ├── fpg_rate.yaml │ │ │ │ │ │ │ ├── included_heating_cost_rate.yaml │ │ │ │ │ │ │ └── reduction_rate.yaml │ │ │ │ │ ├── homestead_property_tax │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── exemption │ │ │ │ │ │ │ ├── non_senior_disabled.yaml │ │ │ │ │ │ │ └── senior_disabled.yaml │ │ │ │ │ │ ├── property_value_limit.yaml │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ ├── non_senior_disabled.yaml │ │ │ │ │ │ │ └── senior │ │ │ │ │ │ │ │ ├── alternate.yaml │ │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ ├── reduction │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ └── rent_equivalization.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── interest_dividends_capital_gains │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ └── income_types.yaml │ │ │ │ │ ├── retirement_benefits │ │ │ │ │ │ ├── expanded │ │ │ │ │ │ │ ├── availability.yaml │ │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── tier_one │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── birth_year.yaml │ │ │ │ │ │ └── tier_three │ │ │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ │ │ └── ss_exempt │ │ │ │ │ │ │ ├── not_retired │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ │ └── retired │ │ │ │ │ │ │ ├── both_qualifying_amount.yaml │ │ │ │ │ │ │ ├── retirement_year.yaml │ │ │ │ │ │ │ └── single_qualifying_amount.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── tier_three │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── birth_year.yaml │ │ │ │ │ │ └── tier_two │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ └── increase.yaml │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ └── retirement_year.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── dependent_on_other_return.yaml │ │ │ │ │ ├── disabled │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── veteran.yaml │ │ │ │ │ └── personal.yaml │ │ │ │ │ ├── household_resources.yaml │ │ │ │ │ ├── rate.yaml │ │ │ │ │ ├── senior_age.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── mn │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── amt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fractional_income_threshold.yaml │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── child_age.yaml │ │ │ │ │ │ ├── expense_fraction.yaml │ │ │ │ │ │ ├── maximum_dependents.yaml │ │ │ │ │ │ ├── maximum_expense.yaml │ │ │ │ │ │ ├── phaseout_rate.yaml │ │ │ │ │ │ ├── phaseout_threshold.yaml │ │ │ │ │ │ ├── reduced_base_amount.yaml │ │ │ │ │ │ └── separate_filers_excluded.yaml │ │ │ │ │ ├── cwfc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ │ ├── ctc_ineligible_with_qualifying_older_children.yaml │ │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ │ └── other.yaml │ │ │ │ │ │ └── wfc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── additional │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ │ ├── eligible │ │ │ │ │ │ │ └── childless_adult_age │ │ │ │ │ │ │ │ ├── maximum.yaml │ │ │ │ │ │ │ │ └── minimum.yaml │ │ │ │ │ │ │ ├── phase_in.yaml │ │ │ │ │ │ │ └── pre_cwfc_legislation │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── phase_in │ │ │ │ │ │ │ ├── earnings_maximum.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── other.yaml │ │ │ │ │ ├── marriage │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ ├── maximum_amount.yaml │ │ │ │ │ │ ├── minimum_individual_income.yaml │ │ │ │ │ │ ├── minimum_taxable_income.yaml │ │ │ │ │ │ └── standard_deduction_fraction.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── alternate_reduction_applies.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── agi_threshold │ │ │ │ │ │ │ ├── high.yaml │ │ │ │ │ │ │ └── low.yaml │ │ │ │ │ │ │ ├── alternate │ │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ │ └── excess_agi_fraction │ │ │ │ │ │ │ ├── high.yaml │ │ │ │ │ │ │ └── low.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── extra.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── agi_threshold │ │ │ │ │ │ ├── high.yaml │ │ │ │ │ │ └── low.yaml │ │ │ │ │ │ ├── alternate │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ ├── alternate_reduction_applies.yaml │ │ │ │ │ │ └── excess_agi_fraction │ │ │ │ │ │ ├── high.yaml │ │ │ │ │ │ └── low.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── agi_step_fraction.yaml │ │ │ │ │ ├── agi_step_size.yaml │ │ │ │ │ ├── agi_threshold.yaml │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── niit │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── charity │ │ │ │ │ ├── fraction.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── elderly_disabled │ │ │ │ │ ├── agi_offset_base.yaml │ │ │ │ │ ├── agi_offset_extra.yaml │ │ │ │ │ ├── base_amount.yaml │ │ │ │ │ ├── minimum_age.yaml │ │ │ │ │ └── net_agi_fraction.yaml │ │ │ │ │ ├── pension_income │ │ │ │ │ ├── cap.yaml │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── social_security │ │ │ │ │ ├── alternative_amount.yaml │ │ │ │ │ ├── income_amount.yaml │ │ │ │ │ ├── net_income_fraction.yaml │ │ │ │ │ ├── reduction │ │ │ │ │ │ ├── applies.yaml │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── total_benefit_fraction.yaml │ │ │ │ │ └── sources.yaml │ │ │ ├── mo │ │ │ │ ├── README.md │ │ │ │ ├── dss │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── aged_survivor_min_age.yaml │ │ │ │ │ │ ├── income_offset │ │ │ │ │ │ │ ├── joint_owner.yaml │ │ │ │ │ │ │ ├── joint_renter.yaml │ │ │ │ │ │ │ └── non_joint.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ ├── step.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ ├── property_tax_limit.yaml │ │ │ │ │ │ ├── property_tax_rent_ratio.yaml │ │ │ │ │ │ ├── public_assistance_types.yaml │ │ │ │ │ │ └── rent_property_tax_limit.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── wftc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── business_income │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── federal_income_tax │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── ignored_credits.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── itemized.yaml │ │ │ │ │ ├── mo_max_private_pension.yaml │ │ │ │ │ ├── mo_private_pension_deduction_allowance.yaml │ │ │ │ │ └── social_security_and_public_pension │ │ │ │ │ │ ├── income_threshold_applies.yaml │ │ │ │ │ │ ├── mo_max_social_security_benefit.yaml │ │ │ │ │ │ ├── mo_public_pension_deduction_allowance.yaml │ │ │ │ │ │ ├── mo_ss_or_ssd_deduction_allowance.yaml │ │ │ │ │ │ └── mo_ss_or_ssdi_exemption_threshold.yaml │ │ │ │ │ ├── minimum_taxable_income.yaml │ │ │ │ │ └── rates.yaml │ │ │ ├── ms │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── adjustments │ │ │ │ │ ├── adjustments.yaml │ │ │ │ │ ├── national_guard_or_reserve_pay │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── self_employment │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── charitable_contribution │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── non_refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── blind │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── dependents │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── regular │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── mt │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ └── additions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── capital_gain │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── elderly_homeowner_or_renter │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── gross_income_sources.yaml │ │ │ │ │ │ ├── multiplier.yaml │ │ │ │ │ │ ├── net_household_income │ │ │ │ │ │ │ ├── reduction_rate.yaml │ │ │ │ │ │ │ └── standard_exclusion.yaml │ │ │ │ │ │ └── rent_equivalent_tax_rate.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── rebate │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── property │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── child_dependent_care_expense │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── phase_out.yaml │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── federal_income_tax │ │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ │ ├── misc_deductions.yaml │ │ │ │ │ │ └── spouse_allocation_rate.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── floor.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── state_specific_deduction_applies.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── applies.yaml │ │ │ │ │ └── interest │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── rates │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── main.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── married_filing_separately_on_same_return_allowed.yaml │ │ │ │ │ ├── social_security │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── lower.yaml │ │ │ │ │ │ └── upper.yaml │ │ │ │ │ └── applies.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── disability_income │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── old_age │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── subtractions.yaml │ │ │ │ │ └── tuition │ │ │ │ │ └── cap.yaml │ │ │ ├── nc │ │ │ │ ├── README.md │ │ │ │ ├── ncdhhs │ │ │ │ │ ├── scca │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age │ │ │ │ │ │ │ ├── group.yaml │ │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ │ ├── disabled.yaml │ │ │ │ │ │ │ │ └── non_disabled.yaml │ │ │ │ │ │ │ └── school.yaml │ │ │ │ │ │ ├── childcare_market_rates.yaml │ │ │ │ │ │ ├── entry │ │ │ │ │ │ │ └── fpg_limit │ │ │ │ │ │ │ │ ├── preschool.yaml │ │ │ │ │ │ │ │ └── school_age.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ └── parent_fee_rate.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ └── need_standard │ │ │ │ │ │ ├── additional_person.yaml │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── average_reduced_need_standard_thresold.yaml │ │ │ │ │ │ ├── main.yaml │ │ │ │ │ │ └── payment_percentage.yaml │ │ │ │ └── tax │ │ │ │ │ ├── income │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── non_refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ ├── deductions.yaml │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ └── cap │ │ │ │ │ │ │ │ └── mortgage_and_property_tax.yaml │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ ├── fraction.yaml │ │ │ │ │ │ │ └── minimum_years.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── use_tax │ │ │ │ │ ├── additional.yaml │ │ │ │ │ └── base.yaml │ │ │ ├── nd │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── marriage_penalty │ │ │ │ │ │ ├── maximum.yaml │ │ │ │ │ │ ├── qualified_income_threshold.yaml │ │ │ │ │ │ ├── taxable_income_base.yaml │ │ │ │ │ │ └── taxable_income_threshold.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ └── resident_tax_relief │ │ │ │ │ │ ├── joint_amount.yaml │ │ │ │ │ │ └── other_amount.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── taxable_income │ │ │ │ │ ├── additions │ │ │ │ │ └── sources.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── ltcg_fraction.yaml │ │ │ │ │ ├── qdiv_fraction.yaml │ │ │ │ │ └── sources.yaml │ │ │ ├── ne │ │ │ │ ├── README.md │ │ │ │ ├── dhhs │ │ │ │ │ └── child_care_subsidy │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ └── special_needs.yaml │ │ │ │ │ │ ├── fpg_fraction │ │ │ │ │ │ ├── fee_free_limit.yaml │ │ │ │ │ │ └── initial_eligibility.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ └── subtractions │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ │ ├── social_security │ │ │ │ │ │ ├── fraction.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── nonrefundable │ │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ │ ├── match.yaml │ │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── fpg_fraction.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ ├── nonrefundable_adjust_limit.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── school_readiness │ │ │ │ │ │ ├── amount │ │ │ │ │ │ └── refundable.yaml │ │ │ │ │ │ └── max_unit_size.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── age_minimum.yaml │ │ │ │ │ │ └── base_amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── nh │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ ├── credits │ │ │ │ │ └── education │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── income │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── blind_addition.yaml │ │ │ │ │ │ ├── disabled_addition.yaml │ │ │ │ │ │ └── old_age_addition.yaml │ │ │ │ │ ├── disability_age_threshold.yaml │ │ │ │ │ └── old_age_eligibility.yaml │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── nj │ │ │ │ ├── README.md │ │ │ │ ├── njdhs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ ├── maximum_allowable_income │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ └── maximum_benefit │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ ├── snap │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions.yaml │ │ │ │ │ ├── all_exclusions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ └── age │ │ │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ └── match.yaml │ │ │ │ │ └── property_tax │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── medical_expenses │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── property_tax │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ └── qualifying_rent_fraction.yaml │ │ │ │ │ ├── exclusions │ │ │ │ │ └── retirement │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ ├── other_retirement_income │ │ │ │ │ │ └── earned_income_threshold.yaml │ │ │ │ │ │ ├── pension │ │ │ │ │ │ └── percentage │ │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ │ └── special_exclusion │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── blind_or_disabled │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── dependents │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── dependents_attending_college │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── regular │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── senior │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── filing_threshold.yaml │ │ │ │ │ ├── gross_income_sources.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── nm │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_eligible.yaml │ │ │ │ │ │ ├── divisor.yaml │ │ │ │ │ │ ├── full_time_hours.yaml │ │ │ │ │ │ ├── income_limit_as_fraction_of_minimum_wage.yaml │ │ │ │ │ │ ├── max_amount │ │ │ │ │ │ │ ├── per_child.yaml │ │ │ │ │ │ │ └── total.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ └── age │ │ │ │ │ │ │ │ └── min.yaml │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── unreimbursed_medical_care_expense │ │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── min_expenses.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── certain_dependents │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── medical_care_expense │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── net_capital_gains │ │ │ │ │ │ ├── capped_element.yaml │ │ │ │ │ │ └── uncapped_element_percent.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── armed_forces_retirement_pay │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── blind_and_aged │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── exemptions.yaml │ │ │ │ │ ├── hundred_year │ │ │ │ │ │ └── age_eligibility.yaml │ │ │ │ │ ├── low_and_middle_income │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── social_security_income │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── unreimbursed_medical_care_expense │ │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── min_expenses.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── modified_gross_income.yaml │ │ │ │ │ ├── other_deductions_and_exemptions.yaml │ │ │ │ │ └── rebates │ │ │ │ │ ├── 2021_income │ │ │ │ │ ├── additional │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── main │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── supplemental │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── low_income │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── five_exemptions.yaml │ │ │ │ │ │ ├── four_exemptions.yaml │ │ │ │ │ │ ├── one_exemption.yaml │ │ │ │ │ │ ├── six_exemptions.yaml │ │ │ │ │ │ ├── three_exemptions.yaml │ │ │ │ │ │ └── two_exemptions.yaml │ │ │ │ │ ├── divisor.yaml │ │ │ │ │ └── exemptions │ │ │ │ │ │ ├── aged.yaml │ │ │ │ │ │ └── blind.yaml │ │ │ │ │ └── property_tax │ │ │ │ │ ├── age_eligibility.yaml │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ ├── max_property_tax_liability.yaml │ │ │ │ │ └── rent_rate.yaml │ │ │ ├── ny │ │ │ │ ├── README.md │ │ │ │ ├── nyserda │ │ │ │ │ └── drive_clean │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── flat_rebate │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── msrp_threshold.yaml │ │ │ │ ├── otda │ │ │ │ │ ├── README.md │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── higher_limit.yaml │ │ │ │ │ │ │ ├── higher_resource_limit_age_threshold.yaml │ │ │ │ │ │ │ └── lower_limit.yaml │ │ │ │ │ │ ├── grant_standard │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ ├── earned_income_deduction │ │ │ │ │ │ │ ├── flat.yaml │ │ │ │ │ │ │ └── percent.yaml │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ │ └── need_standard │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── README.md │ │ │ │ │ └── subtractions │ │ │ │ │ │ ├── pension_exclusion │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── min_age.yaml │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── college_tuition │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── percentage │ │ │ │ │ │ │ ├── alternate │ │ │ │ │ │ │ ├── base_percentage.yaml │ │ │ │ │ │ │ ├── fraction │ │ │ │ │ │ │ │ ├── denominator.yaml │ │ │ │ │ │ │ │ └── numerator │ │ │ │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ │ │ │ └── top.yaml │ │ │ │ │ │ │ ├── max_agi.yaml │ │ │ │ │ │ │ └── multiplier.yaml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── base_percentage.yaml │ │ │ │ │ │ │ ├── fraction │ │ │ │ │ │ │ │ ├── denominator.yaml │ │ │ │ │ │ │ │ └── numerator │ │ │ │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ │ │ │ └── top.yaml │ │ │ │ │ │ │ └── multiplier.yaml │ │ │ │ │ │ │ └── multiplier.yaml │ │ │ │ │ ├── college_tuition │ │ │ │ │ │ ├── applicable_percentage.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── additional │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── min_credit_value.yaml │ │ │ │ │ │ ├── amount │ │ │ │ │ │ │ ├── minimum.yaml │ │ │ │ │ │ │ └── percent.yaml │ │ │ │ │ │ ├── minimum_age.yaml │ │ │ │ │ │ ├── post_2024 │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ └── pre_tcja.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── match.yaml │ │ │ │ │ │ └── supplemental_match.yaml │ │ │ │ │ ├── geothermal_energy_system │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── household_credit │ │ │ │ │ │ ├── non_single │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ │ └── base.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ ├── inflation_refund │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── real_property_tax │ │ │ │ │ │ ├── elderly_age.yaml │ │ │ │ │ │ ├── excess_real_property_tax.yaml │ │ │ │ │ │ ├── max_agi.yaml │ │ │ │ │ │ ├── max_property_value.yaml │ │ │ │ │ │ ├── max_rent.yaml │ │ │ │ │ │ ├── maximum │ │ │ │ │ │ │ ├── elderly.yaml │ │ │ │ │ │ │ └── non_elderly.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── rent_tax_equivalent.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── solar_energy_systems_equipment │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── college_tuition │ │ │ │ │ │ │ └── applicable_percentage.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── charitable_deduction_rate.yaml │ │ │ │ │ │ │ └── incremental │ │ │ │ │ │ │ ├── higher │ │ │ │ │ │ │ ├── denominator.yaml │ │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ │ ├── numerator.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ │ └── lower │ │ │ │ │ │ │ ├── denominator.yaml │ │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ │ ├── numerator.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── dependent_elsewhere.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ └── dependent.yaml │ │ │ │ │ ├── main │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── supplemental │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ ├── incremental_benefit │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── min_agi.yaml │ │ │ │ │ ├── phase_in_length.yaml │ │ │ │ │ └── recapture_base │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── oh │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions.yaml │ │ │ │ │ ├── agi_threshold.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── adoption │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ └── amount │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ └── min.yaml │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── joint_filing │ │ │ │ │ │ ├── agi_subtractions.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ ├── other_non_refundable_credits.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── lump_sum_distribution │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── base_amount.yaml │ │ │ │ │ │ ├── expected_remaining_years.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ ├── non_public_tuition.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── retirement │ │ │ │ │ │ ├── lump_sum │ │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ │ ├── divisor.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ └── pension_based │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ └── senior_citizen │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── deductions.yaml │ │ │ │ │ ├── plan_529_contributions │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── unreimbursed_medical_care_expenses │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ └── personal │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── rates.yaml │ │ │ ├── ok │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ ├── income │ │ │ │ │ ├── agi │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ ├── floor.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ │ ├── pension_limit.yaml │ │ │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── agi_limit.yaml │ │ │ │ │ │ │ ├── cdcc_fraction.yaml │ │ │ │ │ │ │ └── ctc_fraction.yaml │ │ │ │ │ │ ├── earned_income │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── eitc_fraction.yaml │ │ │ │ │ │ ├── gross_income_sources.yaml │ │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ │ ├── property_tax │ │ │ │ │ │ │ ├── age_minimum.yaml │ │ │ │ │ │ │ ├── income_fraction.yaml │ │ │ │ │ │ │ ├── income_limit.yaml │ │ │ │ │ │ │ └── maximum_credit.yaml │ │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ │ └── sales_tax │ │ │ │ │ │ │ ├── age_minimum.yaml │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── income_limit1.yaml │ │ │ │ │ │ │ └── income_limit2.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── special_age_minimum.yaml │ │ │ │ │ │ └── special_agi_limit.yaml │ │ │ │ │ └── rates │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── use │ │ │ │ │ └── rate.yaml │ │ │ ├── or │ │ │ │ ├── README.md │ │ │ │ ├── fcc │ │ │ │ │ └── lifeline │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ └── max_amount.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child_limit.yaml │ │ │ │ │ │ ├── ineligible_age.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── start.yaml │ │ │ │ │ │ │ └── width.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── match │ │ │ │ │ │ │ ├── has_young_child.yaml │ │ │ │ │ │ │ └── no_young_child.yaml │ │ │ │ │ │ └── old_child_age.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── income_limit │ │ │ │ │ │ │ ├── disabled_child_dependent.yaml │ │ │ │ │ │ │ ├── regular.yaml │ │ │ │ │ │ │ └── severely_disabled.yaml │ │ │ │ │ ├── kicker │ │ │ │ │ │ └── percent.yaml │ │ │ │ │ ├── nonrefundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ ├── retirement_income │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ └── percentage.yaml │ │ │ │ │ └── wfhdc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_range │ │ │ │ │ │ ├── old.yaml │ │ │ │ │ │ ├── oldest.yaml │ │ │ │ │ │ ├── young.yaml │ │ │ │ │ │ └── youngest.yaml │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── child_age_limit.yaml │ │ │ │ │ │ ├── fpg_limit.yaml │ │ │ │ │ │ ├── match.yaml │ │ │ │ │ │ └── min_tax_unit_size.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── aged_or_blind │ │ │ │ │ │ ├── age.yaml │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── claimable_as_dependent │ │ │ │ │ │ ├── earned_income_addition.yaml │ │ │ │ │ │ └── min.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── federal_tax_liability │ │ │ │ │ └── cap │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── pa │ │ │ │ ├── README.md │ │ │ │ ├── dhs │ │ │ │ │ ├── README.md │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cash_assistance │ │ │ │ │ │ └── age_limit.yaml │ │ │ │ │ │ ├── pregnancy_eligibility │ │ │ │ │ │ └── age_limit.yaml │ │ │ │ │ │ └── resource_limit.yaml │ │ │ │ └── tax │ │ │ │ │ ├── income │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ └── match.yaml │ │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── forgiveness │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── dependent_rate.yaml │ │ │ │ │ │ ├── eligibility_income_sources.yaml │ │ │ │ │ │ ├── rate_increment.yaml │ │ │ │ │ │ └── tax_back.yaml │ │ │ │ │ ├── nontaxable_income_sources.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── use_tax │ │ │ │ │ ├── higher │ │ │ │ │ ├── cap │ │ │ │ │ │ ├── allegheny_county.yaml │ │ │ │ │ │ ├── philadelphia_county.yaml │ │ │ │ │ │ └── rest_of_pa.yaml │ │ │ │ │ ├── rate │ │ │ │ │ │ ├── allegheny_county.yaml │ │ │ │ │ │ ├── philadelphia_county.yaml │ │ │ │ │ │ └── rest_of_pa.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── main │ │ │ │ │ ├── allegheny_county.yaml │ │ │ │ │ ├── philadelphia_county.yaml │ │ │ │ │ └── rest_of_pa.yaml │ │ │ ├── ri │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── additions │ │ │ │ │ │ └── additions.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ │ ├── social_security │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ │ └── income.yaml │ │ │ │ │ │ ├── subtractions.yaml │ │ │ │ │ │ ├── taxable_retirement_income │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── income_limit.yaml │ │ │ │ │ │ └── tuition_saving_program_contributions │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── child_tax_rebate │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── limit │ │ │ │ │ │ │ ├── age.yaml │ │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ │ └── income.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ │ └── rate │ │ │ │ │ │ │ ├── multiple_people.yaml │ │ │ │ │ │ │ ├── one_person.yaml │ │ │ │ │ │ │ └── rent.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── percentage.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── sc │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ └── additions.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── 2022_rebate │ │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── max_care_expense_year_offset.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── two_wage_earner │ │ │ │ │ │ ├── earned_income │ │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── net_capital_gain │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── young_child │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── ineligible_age.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ └── senior │ │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── spouse_amount.yaml │ │ │ │ │ ├── rates.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── retirement │ │ │ │ │ ├── cap.yaml │ │ │ │ │ └── subtract_military.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── tx │ │ │ │ ├── README.md │ │ │ │ ├── dart │ │ │ │ │ ├── monthly_pass_cost │ │ │ │ │ │ ├── full_fare.yaml │ │ │ │ │ │ └── reduced_fare.yaml │ │ │ │ │ ├── qualifying_programs.yaml │ │ │ │ │ └── reduced_fare │ │ │ │ │ │ └── age_threshold │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ └── senior.yaml │ │ │ │ ├── dta │ │ │ │ │ └── csfp │ │ │ │ │ │ └── fpg_limit.yaml │ │ │ │ ├── fpp │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── annual_benefit.yaml │ │ │ │ │ └── fpg_percentage.yaml │ │ │ │ ├── tanf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── minor_child.yaml │ │ │ │ │ │ └── student_dependent.yaml │ │ │ │ │ ├── income │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── child_support.yaml │ │ │ │ │ │ │ ├── dependent_care.yaml │ │ │ │ │ │ │ └── work_expense.yaml │ │ │ │ │ │ ├── disregards │ │ │ │ │ │ │ ├── applicant_fraction.yaml │ │ │ │ │ │ │ ├── continuing_recipient_cap.yaml │ │ │ │ │ │ │ ├── continuing_recipient_months.yaml │ │ │ │ │ │ │ └── continuing_recipient_rate.yaml │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ ├── earned.yaml │ │ │ │ │ │ │ └── unearned.yaml │ │ │ │ │ ├── minimum_grant.yaml │ │ │ │ │ ├── needs_standard │ │ │ │ │ │ ├── budgetary_needs │ │ │ │ │ │ │ ├── additional_person.yaml │ │ │ │ │ │ │ ├── caretaker_with_second_parent.yaml │ │ │ │ │ │ │ ├── caretaker_without_second_parent.yaml │ │ │ │ │ │ │ └── non_caretaker.yaml │ │ │ │ │ │ └── recognizable_needs │ │ │ │ │ │ │ ├── additional_person.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── ottanf │ │ │ │ │ │ └── payment_amount.yaml │ │ │ │ │ ├── payment_standard │ │ │ │ │ │ ├── additional_person.yaml │ │ │ │ │ │ ├── caretaker_with_second_parent.yaml │ │ │ │ │ │ ├── caretaker_without_second_parent.yaml │ │ │ │ │ │ └── non_caretaker.yaml │ │ │ │ │ └── resources │ │ │ │ │ │ ├── resource_limit.yaml │ │ │ │ │ │ └── vehicle_exemption.yaml │ │ │ │ ├── twc │ │ │ │ │ ├── README.md │ │ │ │ │ └── ccs │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_threshold │ │ │ │ │ │ ├── child.yaml │ │ │ │ │ │ ├── disabled_child.yaml │ │ │ │ │ │ ├── infant.yaml │ │ │ │ │ │ ├── school_age.yaml │ │ │ │ │ │ └── toddler.yaml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ ├── copay │ │ │ │ │ │ └── rate │ │ │ │ │ │ │ ├── additional_child.yaml │ │ │ │ │ │ │ ├── first_child.yaml │ │ │ │ │ │ │ └── maximum.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── smi_rate.yaml │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── payment │ │ │ │ │ │ └── rates.yaml │ │ │ │ │ │ ├── region │ │ │ │ │ │ ├── alamo.yaml │ │ │ │ │ │ ├── borderplex.yaml │ │ │ │ │ │ ├── brazos_valley.yaml │ │ │ │ │ │ ├── cameron_county.yaml │ │ │ │ │ │ ├── capital_area.yaml │ │ │ │ │ │ ├── central_texas.yaml │ │ │ │ │ │ ├── coastal_bend.yaml │ │ │ │ │ │ ├── concho_valley.yaml │ │ │ │ │ │ ├── dallas_county.yaml │ │ │ │ │ │ ├── deep_east.yaml │ │ │ │ │ │ ├── east_texas.yaml │ │ │ │ │ │ ├── golden_crescent.yaml │ │ │ │ │ │ ├── gulf_coast.yaml │ │ │ │ │ │ ├── heart_of_texas.yaml │ │ │ │ │ │ ├── lower_rio.yaml │ │ │ │ │ │ ├── middle_rio.yaml │ │ │ │ │ │ ├── north_central.yaml │ │ │ │ │ │ ├── north_texas.yaml │ │ │ │ │ │ ├── northeast_texas.yaml │ │ │ │ │ │ ├── panhandle.yaml │ │ │ │ │ │ ├── permian_basin.yaml │ │ │ │ │ │ ├── rural_capital.yaml │ │ │ │ │ │ ├── south_plains.yaml │ │ │ │ │ │ ├── south_texas.yaml │ │ │ │ │ │ ├── southeast.yaml │ │ │ │ │ │ ├── tarrant_county.yaml │ │ │ │ │ │ ├── texoma.yaml │ │ │ │ │ │ └── west_central.yaml │ │ │ │ │ │ └── work_requirements │ │ │ │ │ │ ├── single_parent.yaml │ │ │ │ │ │ └── two_parent.yaml │ │ │ │ └── uct │ │ │ │ │ └── lifeline │ │ │ │ │ ├── fpg_limit.yaml │ │ │ │ │ └── supplement.yaml │ │ │ ├── ut │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── at_home_parent │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── max_agi.yaml │ │ │ │ │ │ ├── max_child_age.yaml │ │ │ │ │ │ └── parent_max_earnings.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── child_age_threshold.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── retirement │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── ss_benefits │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ └── taxpayer │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ ├── personal_exemption.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ └── rate.yaml │ │ │ ├── va │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── credits │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── low_income_tax │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ └── ineligible_programs.yaml │ │ │ │ │ │ └── match │ │ │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ ├── itemized │ │ │ │ │ │ ├── applicable_amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── applicable.yaml │ │ │ │ │ │ │ └── reducible.yaml │ │ │ │ │ └── standard.yaml │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── aged_blind.yaml │ │ │ │ │ ├── personal.yaml │ │ │ │ │ └── spouse_tax_adjustment │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ └── divisor.yaml │ │ │ │ │ ├── filing_requirement.yaml │ │ │ │ │ ├── rates.yaml │ │ │ │ │ ├── rebate │ │ │ │ │ └── amount.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── age_deduction │ │ │ │ │ ├── age_minimum.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ ├── birth_year_limit_for_full_amount.yaml │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── disability_income │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── federal_state_employees │ │ │ │ │ └── amount.yaml │ │ │ │ │ ├── military_basic_pay │ │ │ │ │ └── threshold.yaml │ │ │ │ │ ├── military_benefit │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── amount.yaml │ │ │ │ │ └── availability.yaml │ │ │ │ │ ├── national_guard_pay │ │ │ │ │ └── cap.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ ├── vt │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── exclusions │ │ │ │ │ │ └── capital_gain │ │ │ │ │ │ │ ├── flat │ │ │ │ │ │ │ └── cap.yaml │ │ │ │ │ │ │ ├── income_share_cap.yaml │ │ │ │ │ │ │ └── percentage │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── retirement_income_exemption │ │ │ │ │ │ ├── csrs │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ │ ├── end.yaml │ │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ ├── divisor.yaml │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── full_exemption_threshold.yaml │ │ │ │ │ │ │ ├── income_based_structure │ │ │ │ │ │ │ │ └── in_effect.yaml │ │ │ │ │ │ │ └── partial_exemption_threshold.yaml │ │ │ │ │ │ └── social_security │ │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── end.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ └── subtractions.yaml │ │ │ │ │ ├── child_care_contributions │ │ │ │ │ ├── applies.yaml │ │ │ │ │ └── rate │ │ │ │ │ │ ├── contributions.yaml │ │ │ │ │ │ └── income.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── low_income │ │ │ │ │ │ │ ├── income_threshold.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── charitable.yaml │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── age_limit.yaml │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── reduction │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ ├── increment.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── enhanced_structure │ │ │ │ │ │ │ ├── in_effect.yaml │ │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ │ └── match.yaml │ │ │ │ │ ├── elderly_or_disabled.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ ├── renter │ │ │ │ │ │ ├── countable_tax_exempt_ss_fraction.yaml │ │ │ │ │ │ ├── fair_market_rent.yaml │ │ │ │ │ │ ├── fmr_rate.yaml │ │ │ │ │ │ ├── income_limit_ami │ │ │ │ │ │ │ ├── fifty_percent.yaml │ │ │ │ │ │ │ └── thirty_percent.yaml │ │ │ │ │ │ └── shared_residence_reduction.yaml │ │ │ │ │ └── veteran │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── full_credit_threshold.yaml │ │ │ │ │ │ ├── income_increment.yaml │ │ │ │ │ │ ├── partial_credit_threshold.yaml │ │ │ │ │ │ └── reduction_per_increment.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ └── personal.yaml │ │ │ │ │ └── rates │ │ │ │ │ ├── amt.yaml │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ ├── single.yaml │ │ │ │ │ └── surviving_spouse.yaml │ │ │ ├── wa │ │ │ │ ├── README.md │ │ │ │ ├── dshs │ │ │ │ │ ├── index.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── earned_income_disregard │ │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ │ └── percentage_disregarded.yaml │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ │ ├── maximum_family_size.yaml │ │ │ │ │ │ ├── payment_standard │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── maximum_amount.yaml │ │ │ │ │ │ └── resource_limit.yaml │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── capital_gains │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── charitable │ │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ │ └── exemption.yaml │ │ │ │ │ │ └── standard.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── refundable.yaml │ │ │ │ │ └── working_families_tax_credit │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ ├── min_amount.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── start_below_eitc.yaml │ │ │ │ │ └── in_effect.yaml │ │ │ ├── wi │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ │ └── income │ │ │ │ │ ├── additions │ │ │ │ │ ├── capital_loss │ │ │ │ │ │ └── limit.yaml │ │ │ │ │ └── sources.yaml │ │ │ │ │ ├── credits │ │ │ │ │ ├── childcare_expense │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── apply_federal_investment_income_limit.yaml │ │ │ │ │ │ ├── fraction.yaml │ │ │ │ │ │ └── investment_income_limit.yaml │ │ │ │ │ ├── homestead │ │ │ │ │ │ ├── eligible │ │ │ │ │ │ │ ├── earnings_sources.yaml │ │ │ │ │ │ │ ├── max_income.yaml │ │ │ │ │ │ │ ├── min_age.yaml │ │ │ │ │ │ │ └── min_elderly_age.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── exemption.yaml │ │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ │ └── start.yaml │ │ │ │ │ │ ├── property_tax │ │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ │ └── rent_ratio.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── itemized_deduction │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── married_couple │ │ │ │ │ │ ├── income_sources.yaml │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── non_refundable.yaml │ │ │ │ │ ├── property_tax │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── rent_fraction.yaml │ │ │ │ │ └── refundable.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ └── standard │ │ │ │ │ │ ├── max.yaml │ │ │ │ │ │ └── phase_out │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ └── single.yaml │ │ │ │ │ ├── exemption │ │ │ │ │ ├── base.yaml │ │ │ │ │ ├── extra.yaml │ │ │ │ │ └── old_age.yaml │ │ │ │ │ ├── rates │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ ├── joint.yaml │ │ │ │ │ ├── separate.yaml │ │ │ │ │ └── single.yaml │ │ │ │ │ └── subtractions │ │ │ │ │ ├── capital_gain │ │ │ │ │ └── fraction.yaml │ │ │ │ │ ├── childcare_expense │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ └── max_dependents.yaml │ │ │ │ │ ├── retirement_income │ │ │ │ │ ├── max_agi.yaml │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ └── min_age.yaml │ │ │ │ │ ├── sources.yaml │ │ │ │ │ └── unemployment_compensation │ │ │ │ │ └── income_phase_out │ │ │ │ │ ├── base.yaml │ │ │ │ │ └── rate.yaml │ │ │ └── wv │ │ │ │ ├── README.md │ │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── match.yaml │ │ │ │ ├── heptc │ │ │ │ │ ├── cap.yaml │ │ │ │ │ ├── gross_household_income │ │ │ │ │ │ └── sources.yaml │ │ │ │ │ └── rate │ │ │ │ │ │ ├── fpg.yaml │ │ │ │ │ │ └── household_income.yaml │ │ │ │ ├── liftc │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── head_of_household.yaml │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ ├── separate.yaml │ │ │ │ │ │ ├── single.yaml │ │ │ │ │ │ └── surviving_spouse.yaml │ │ │ │ │ ├── fpg_percent.yaml │ │ │ │ │ └── max_family_size.yaml │ │ │ │ ├── non_refundable.yaml │ │ │ │ ├── refundable.yaml │ │ │ │ └── sctc │ │ │ │ │ ├── fpg_percentage.yaml │ │ │ │ │ └── max_amount.yaml │ │ │ │ ├── exemptions │ │ │ │ ├── base_personal.yaml │ │ │ │ ├── homestead_exemption │ │ │ │ │ └── max_amount.yaml │ │ │ │ └── personal.yaml │ │ │ │ ├── rates │ │ │ │ ├── head.yaml │ │ │ │ ├── joint.yaml │ │ │ │ ├── separate.yaml │ │ │ │ ├── single.yaml │ │ │ │ └── surviving_spouse.yaml │ │ │ │ └── subtractions │ │ │ │ ├── low_income_earned_income │ │ │ │ ├── amount.yaml │ │ │ │ └── income_limit.yaml │ │ │ │ ├── public_pension │ │ │ │ └── max_amount.yaml │ │ │ │ ├── senior_citizen_disability_deduction │ │ │ │ ├── age_threshold.yaml │ │ │ │ ├── cap.yaml │ │ │ │ └── modification_sources.yaml │ │ │ │ ├── social_security_benefits │ │ │ │ ├── income_limit.yaml │ │ │ │ ├── rate.yaml │ │ │ │ └── social_security_benefits_above_income_limit │ │ │ │ │ ├── applies.yaml │ │ │ │ │ └── rate.yaml │ │ │ │ └── subtractions.yaml │ │ ├── territories │ │ │ └── pr │ │ │ │ ├── READme.md │ │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── earned_income │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── min.yaml │ │ │ │ │ │ └── separate_filer.yaml │ │ │ │ │ ├── max_amount.yaml │ │ │ │ │ ├── phase_in_rate.yaml │ │ │ │ │ ├── phase_out │ │ │ │ │ │ ├── rate.yaml │ │ │ │ │ │ └── threshold │ │ │ │ │ │ │ ├── joint.yaml │ │ │ │ │ │ │ └── single.yaml │ │ │ │ │ └── unearned_income │ │ │ │ │ │ ├── limit.yaml │ │ │ │ │ │ └── sources.yaml │ │ │ │ ├── low_income │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── amount │ │ │ │ │ │ ├── additional.yaml │ │ │ │ │ │ └── base.yaml │ │ │ │ │ └── income_limit.yaml │ │ │ │ └── refundable.yaml │ │ │ │ ├── gradual_adjustment │ │ │ │ ├── adjustment_limit_basis.yaml │ │ │ │ ├── exemption_rate.yaml │ │ │ │ ├── rate.yaml │ │ │ │ └── threshold.yaml │ │ │ │ ├── gross_income │ │ │ │ └── sources.yaml │ │ │ │ ├── regular_tax │ │ │ │ └── percentage.yaml │ │ │ │ ├── tax_rate │ │ │ │ └── amount.yaml │ │ │ │ └── taxable_income │ │ │ │ ├── deductions │ │ │ │ ├── casualty_loss │ │ │ │ │ └── separate_percentage.yaml │ │ │ │ ├── charity │ │ │ │ │ └── floor.yaml │ │ │ │ ├── education │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ └── max.yaml │ │ │ │ ├── medical │ │ │ │ │ └── floor.yaml │ │ │ │ ├── mortgage │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ ├── floor.yaml │ │ │ │ │ └── max.yaml │ │ │ │ ├── retirement │ │ │ │ │ ├── age_threshold.yaml │ │ │ │ │ └── max.yaml │ │ │ │ └── sources.yaml │ │ │ │ └── exemptions │ │ │ │ ├── dependent │ │ │ │ ├── age_threshold │ │ │ │ │ ├── older.yaml │ │ │ │ │ ├── student.yaml │ │ │ │ │ └── younger.yaml │ │ │ │ ├── amount │ │ │ │ │ ├── non_separate.yaml │ │ │ │ │ └── separate.yaml │ │ │ │ └── income_limit │ │ │ │ │ ├── nonstudent.yaml │ │ │ │ │ └── student.yaml │ │ │ │ ├── personal.yaml │ │ │ │ ├── sources.yaml │ │ │ │ └── veteran.yaml │ │ └── usda │ │ │ ├── README.md │ │ │ ├── csfp │ │ │ ├── amount.yaml │ │ │ ├── fpg_limit.yaml │ │ │ └── min_age.yaml │ │ │ ├── disabled_programs.yaml │ │ │ ├── elderly_age_threshold.yaml │ │ │ ├── school_meals │ │ │ ├── amount │ │ │ │ ├── nslp.yaml │ │ │ │ └── sbp.yaml │ │ │ ├── categorical_eligibility.yaml │ │ │ ├── income │ │ │ │ ├── limit.yaml │ │ │ │ └── sources.yaml │ │ │ └── school_days.yaml │ │ │ ├── snap │ │ │ ├── README.md │ │ │ ├── abolish_snap.yaml │ │ │ ├── asset_test │ │ │ │ └── limit.yaml │ │ │ ├── categorical_eligibility.yaml │ │ │ ├── emergency_allotment │ │ │ │ ├── allowed.yaml │ │ │ │ ├── in_effect.yaml │ │ │ │ └── minimum.yaml │ │ │ ├── expected_contribution.yaml │ │ │ ├── income │ │ │ │ ├── child_income_exclusion_age.yaml │ │ │ │ ├── deductions │ │ │ │ │ ├── allowed.yaml │ │ │ │ │ ├── child_support.yaml │ │ │ │ │ ├── earned_income.yaml │ │ │ │ │ ├── excess_medical_expense │ │ │ │ │ │ ├── disregard.yaml │ │ │ │ │ │ └── standard.yaml │ │ │ │ │ ├── excess_shelter_expense │ │ │ │ │ │ ├── cap.yaml │ │ │ │ │ │ ├── elderly_or_disabled_exempt.yaml │ │ │ │ │ │ ├── homeless │ │ │ │ │ │ │ ├── available.yaml │ │ │ │ │ │ │ └── deduction.yaml │ │ │ │ │ │ ├── income_share_disregard.yaml │ │ │ │ │ │ └── index.yaml │ │ │ │ │ ├── self_employment │ │ │ │ │ │ ├── expense_based_deduction_applies.yaml │ │ │ │ │ │ └── rate.yaml │ │ │ │ │ ├── standard.yaml │ │ │ │ │ └── utility │ │ │ │ │ │ ├── always_standard.yaml │ │ │ │ │ │ ├── limited │ │ │ │ │ │ ├── active.yaml │ │ │ │ │ │ ├── by_household_size │ │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ │ └── participating_states.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── single │ │ │ │ │ │ ├── electricity.yaml │ │ │ │ │ │ ├── gas_and_fuel.yaml │ │ │ │ │ │ ├── phone.yaml │ │ │ │ │ │ ├── sewage.yaml │ │ │ │ │ │ ├── trash.yaml │ │ │ │ │ │ ├── utility_types.yaml │ │ │ │ │ │ └── water.yaml │ │ │ │ │ │ └── standard │ │ │ │ │ │ ├── by_household_size │ │ │ │ │ │ ├── amount.yaml │ │ │ │ │ │ └── participating_states.yaml │ │ │ │ │ │ └── main.yaml │ │ │ │ ├── limit │ │ │ │ │ ├── gross.yaml │ │ │ │ │ └── net.yaml │ │ │ │ └── sources │ │ │ │ │ ├── earned.yaml │ │ │ │ │ └── unearned.yaml │ │ │ ├── max_allotment.yaml │ │ │ ├── min_allotment │ │ │ │ ├── READme.md │ │ │ │ ├── maximum_household_size.yaml │ │ │ │ ├── rate.yaml │ │ │ │ └── relevant_max_allotment_household_size.yaml │ │ │ ├── student │ │ │ │ ├── age_threshold.yaml │ │ │ │ ├── child_age_limit │ │ │ │ │ ├── single_parent.yaml │ │ │ │ │ └── two_parent.yaml │ │ │ │ └── working_hours_threshold.yaml │ │ │ ├── takeup_rate.yaml │ │ │ ├── uprating.yaml │ │ │ └── work_requirements │ │ │ │ ├── abawd │ │ │ │ ├── README.md │ │ │ │ ├── age_threshold │ │ │ │ │ ├── dependent.yaml │ │ │ │ │ └── exempted.yaml │ │ │ │ ├── exempt_states.yaml │ │ │ │ ├── in_effect.yaml │ │ │ │ └── weekly_hours_threshold.yaml │ │ │ │ └── general │ │ │ │ ├── age_threshold │ │ │ │ ├── caring_dependent_child.yaml │ │ │ │ └── exempted.yaml │ │ │ │ └── weekly_hours_threshold.yaml │ │ │ └── wic │ │ │ ├── README.md │ │ │ ├── abolish_wic.yaml │ │ │ ├── nutritional_risk.yaml │ │ │ ├── takeup.yaml │ │ │ └── value.yaml │ ├── household │ │ └── expense │ │ │ └── utilities │ │ │ └── subsidies.yaml │ ├── openfisca │ │ └── completed_programs │ │ │ ├── state.yaml │ │ │ └── us.yaml │ ├── simulation │ │ ├── de │ │ │ └── branch_to_determine_if_refundable_eitc.yaml │ │ ├── disabled_programs.yaml │ │ ├── marginal_tax_rate_adults.yaml │ │ ├── marginal_tax_rate_delta.yaml │ │ ├── reported_state_income_tax.yaml │ │ └── va │ │ │ └── branch_to_determine_if_refundable_eitc.yaml │ └── uprating_extensions.py ├── params_on_demand │ ├── README.md │ └── gov │ │ └── hhs │ │ └── medicaid │ │ └── geography │ │ └── medicaid_rating_area.yaml ├── reforms │ ├── __init__.py │ ├── aca │ │ ├── __init__.py │ │ ├── aca_ptc_700_fpl_cliff.py │ │ ├── aca_ptc_additional_bracket.py │ │ └── aca_ptc_simplified_bracket.py │ ├── additional_tax_bracket │ │ ├── __init__.py │ │ └── additional_tax_bracket_reform.py │ ├── biden │ │ └── budget_2025 │ │ │ ├── __init__.py │ │ │ ├── capital_gains_tax_increase.py │ │ │ └── medicare_and_investment_tax_increase.py │ ├── cbo │ │ └── payroll │ │ │ ├── __init__.py │ │ │ └── increase_taxable_earnings_for_social_security.py │ ├── congress │ │ ├── afa │ │ │ ├── __init__.py │ │ │ └── afa_other_dependent_credit.py │ │ ├── delauro │ │ │ ├── __init__.py │ │ │ └── american_family_act.py │ │ ├── golden │ │ │ ├── __init__.py │ │ │ └── fisc_act.py │ │ ├── hawley │ │ │ └── awra │ │ │ │ ├── __init__.py │ │ │ │ └── american_worker_rebate_act.py │ │ ├── romney │ │ │ ├── family_security_act │ │ │ │ ├── __init__.py │ │ │ │ └── remove_head_of_household.py │ │ │ └── family_security_act_2024 │ │ │ │ ├── ctc │ │ │ │ ├── __init__.py │ │ │ │ └── family_security_act_2024_ctc.py │ │ │ │ └── eitc │ │ │ │ ├── __init__.py │ │ │ │ └── family_security_act_2024_eitc.py │ │ ├── tlaib │ │ │ ├── __init__.py │ │ │ ├── boost │ │ │ │ ├── __init__.py │ │ │ │ └── boost_middle_class_tax_credit.py │ │ │ ├── economic_dignity_for_all_agenda │ │ │ │ ├── __init__.py │ │ │ │ └── edaa_end_child_poverty_act.py │ │ │ └── end_child_poverty_act.py │ │ └── wyden_smith │ │ │ ├── __init__.py │ │ │ └── ctc_expansion.py │ ├── crfb │ │ ├── __init__.py │ │ ├── non_refundable_ss_credit.py │ │ ├── senior_deduction_extension.py │ │ ├── tax_employer_medicare_tax.py │ │ ├── tax_employer_payroll_tax.py │ │ └── tax_employer_social_security_tax.py │ ├── ctc │ │ ├── __init__.py │ │ ├── ctc_additional_bracket.py │ │ ├── ctc_minimum_refundable_amount.py │ │ ├── ctc_older_child_supplement.py │ │ ├── ctc_per_child_phase_in.py │ │ └── ctc_per_child_phase_out.py │ ├── dc_kccatc.py │ ├── dc_tax_threshold_joint_ratio.py │ ├── deductions │ │ └── salt │ │ │ ├── __init__.py │ │ │ └── limit_salt_deduction_to_property_taxes.py │ ├── eitc │ │ ├── __init__.py │ │ └── halve_joint_eitc_phase_out_rate.py │ ├── federal │ │ ├── __init__.py │ │ ├── abolish_federal_income_tax.py │ │ ├── abolish_payroll_tax.py │ │ └── reported_state_income_tax.py │ ├── harris │ │ ├── capital_gains │ │ │ ├── __init__.py │ │ │ └── harris_capital_gains.py │ │ ├── lift │ │ │ ├── __init__.py │ │ │ └── middle_class_tax_credit.py │ │ └── rent_relief_act │ │ │ ├── __init__.py │ │ │ └── rent_relief_tax_credit.py │ ├── local │ │ ├── ny │ │ │ ├── __init__.py │ │ │ └── mamdani_income_tax.py │ │ └── nyc │ │ │ └── stc │ │ │ ├── adjust_income_limit_by_filing_status_and_eligibility_by_children.py │ │ │ └── phase_out │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── nyc_school_tax_credit_with_phase_out.py │ ├── reconciliation │ │ ├── __init__.py │ │ └── reconciled_ssn_for_llc_and_aoc.py │ ├── reforms.py │ ├── snap │ │ ├── __init__.py │ │ ├── abolish_snap_deductions.py │ │ └── abolish_snap_net_income_test.py │ ├── state_dependent_exemptions │ │ ├── README.md │ │ ├── __init__.py │ │ └── repeal_state_dependent_exemptions.py │ ├── states │ │ ├── dc │ │ │ └── property_tax │ │ │ │ ├── __init__.py │ │ │ │ └── dc_property_tax_reform.py │ │ ├── de │ │ │ ├── __init__.py │ │ │ └── dependent_credit │ │ │ │ └── de_dependent_credit_reform.py │ │ ├── mi │ │ │ ├── __init__.py │ │ │ └── surtax.py │ │ ├── mn │ │ │ └── walz │ │ │ │ ├── __init__.py │ │ │ │ └── mn_walz_hf1938.py │ │ ├── mt │ │ │ └── ctc │ │ │ │ ├── __init__.py │ │ │ │ └── mt_ctc.py │ │ ├── ny │ │ │ └── wftc │ │ │ │ ├── __init__.py │ │ │ │ └── ny_working_families_tax_credit.py │ │ ├── oregon │ │ │ └── rebate │ │ │ │ ├── __init__.py │ │ │ │ └── or_rebate_state_tax_exempt.py │ │ ├── ri │ │ │ ├── __init__.py │ │ │ ├── ctc │ │ │ │ ├── __init__.py │ │ │ │ └── ri_ctc_reform.py │ │ │ └── exemption │ │ │ │ ├── __init__.py │ │ │ │ └── ri_exemption_reform.py │ │ └── ut │ │ │ ├── __init__.py │ │ │ └── ut_refundable_eitc.py │ ├── tax_exempt │ │ ├── __init__.py │ │ └── tax_exempt_reform.py │ ├── taxsim.py │ ├── treasury │ │ ├── __init__.py │ │ └── repeal_dependent_exemptions.py │ └── winship.py ├── system.py ├── tests │ ├── code_health │ │ ├── parameters.py │ │ └── variable_names.py │ ├── microsimulation │ │ └── test_microsim.py │ ├── policy │ │ ├── baseline │ │ │ ├── calcfunctions │ │ │ │ └── taxable_social_security.yaml │ │ │ ├── contrib │ │ │ │ ├── biden │ │ │ │ │ └── budget_2025 │ │ │ │ │ │ ├── capital_gains_tax_increase.yaml │ │ │ │ │ │ └── medicare_and_investment_tax_increase.yaml │ │ │ │ └── ubi_center │ │ │ │ │ ├── basic_income.yaml │ │ │ │ │ ├── basic_income_before_phase_out.yaml │ │ │ │ │ ├── basic_income_eligible.yaml │ │ │ │ │ ├── basic_income_phase_in.yaml │ │ │ │ │ └── basic_income_phase_out.yaml │ │ │ ├── gov │ │ │ │ ├── abolitions.yaml │ │ │ │ ├── aca │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── aca_child_index.yaml │ │ │ │ │ │ ├── aca_magi.yaml │ │ │ │ │ │ ├── is_aca_eshi_eligible.yaml │ │ │ │ │ │ ├── is_aca_ptc_eligible.yaml │ │ │ │ │ │ ├── is_aca_ptc_immigration_status_eligible.yaml │ │ │ │ │ │ └── sbn_los_angeles.yaml │ │ │ │ │ ├── ptc │ │ │ │ │ │ ├── aca_ptc.yaml │ │ │ │ │ │ ├── aca_required_contribution_percentage.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ ├── separate_esi.yaml │ │ │ │ │ │ └── takes_up_aca_if_eligible.yaml │ │ │ │ │ └── slcsp │ │ │ │ │ │ ├── family_tier_applies.yaml │ │ │ │ │ │ ├── family_tier_category.yaml │ │ │ │ │ │ ├── family_tier_integration.yaml │ │ │ │ │ │ ├── family_tier_multiplier.yaml │ │ │ │ │ │ ├── slcsp_age_0.yaml │ │ │ │ │ │ ├── slcsp_person.yaml │ │ │ │ │ │ ├── slcsp_rating_area.yaml │ │ │ │ │ │ ├── slcsp_rating_area_default.yaml │ │ │ │ │ │ └── slcsp_rating_area_la_county.yaml │ │ │ │ ├── doe │ │ │ │ │ ├── high_efficiency_electric_home_rebate_program │ │ │ │ │ │ ├── capped_electric_heat_pump_clothes_dryer_rebate.yaml │ │ │ │ │ │ ├── capped_electric_load_service_center_upgrade_rebate.yaml │ │ │ │ │ │ ├── capped_electric_stove_cooktop_range_or_oven_rebate.yaml │ │ │ │ │ │ ├── capped_electric_wiring_rebate.yaml │ │ │ │ │ │ ├── capped_heat_pump_rebate.yaml │ │ │ │ │ │ ├── capped_heat_pump_water_heater_rebate.yaml │ │ │ │ │ │ ├── capped_insulation_air_sealing_ventilation_rebate.yaml │ │ │ │ │ │ ├── high_efficiency_electric_home_rebate.yaml │ │ │ │ │ │ └── high_efficiency_electric_home_rebate_percent_covered.yaml │ │ │ │ │ └── residential_efficiency_electrification_rebate_program │ │ │ │ │ │ └── residential_efficiency_electrification_rebate.yaml │ │ │ │ ├── ed │ │ │ │ │ └── pell_grant │ │ │ │ │ │ ├── dependent │ │ │ │ │ │ ├── pell_grant_dependent_allowances.yaml │ │ │ │ │ │ ├── pell_grant_dependent_contribution.yaml │ │ │ │ │ │ └── pell_grant_dependents_in_college.yaml │ │ │ │ │ │ ├── efc │ │ │ │ │ │ └── pell_grant_efc.yaml │ │ │ │ │ │ ├── head │ │ │ │ │ │ ├── pell_grant_head_assets.yaml │ │ │ │ │ │ ├── pell_grant_head_available_income.yaml │ │ │ │ │ │ ├── pell_grant_head_contribution.yaml │ │ │ │ │ │ └── pell_grant_head_contribution_from_assets.yaml │ │ │ │ │ │ ├── pell_grant.yaml │ │ │ │ │ │ ├── pell_grant_formula.yaml │ │ │ │ │ │ ├── pell_grant_simplified_formula_applies.yaml │ │ │ │ │ │ └── sai │ │ │ │ │ │ ├── eligibiliy_type │ │ │ │ │ │ ├── pell_grant_eligibility_type.yaml │ │ │ │ │ │ ├── pell_grant_max_fpg_percent_limit.yaml │ │ │ │ │ │ └── pell_grant_min_fpg_percent_limit.yaml │ │ │ │ │ │ └── pell_grant_sai.yaml │ │ │ │ ├── fcc │ │ │ │ │ ├── acp │ │ │ │ │ │ ├── acp.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ └── is_acp_eligible.yaml │ │ │ │ │ ├── ebb │ │ │ │ │ │ ├── ebb.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ └── is_ebb_eligible.yaml │ │ │ │ │ ├── fcc_fpg_ratio.yaml │ │ │ │ │ └── lifeline │ │ │ │ │ │ ├── broadband_cost_after_lifeline.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ ├── is_lifeline_eligible.yaml │ │ │ │ │ │ ├── is_lifeline_income_eligible.yaml │ │ │ │ │ │ └── lifeline.yaml │ │ │ │ ├── hhs │ │ │ │ │ ├── ccdf │ │ │ │ │ │ ├── ccdf_age_group.yaml │ │ │ │ │ │ ├── ccdf_copay.yaml │ │ │ │ │ │ ├── ccdf_county_cluster.yaml │ │ │ │ │ │ ├── ccdf_duration_of_care.yaml │ │ │ │ │ │ ├── ccdf_income.yaml │ │ │ │ │ │ ├── ccdf_market_rate.yaml │ │ │ │ │ │ ├── income_to_smi_ratio.yaml │ │ │ │ │ │ ├── is_ccdf_age_eligible.yaml │ │ │ │ │ │ ├── is_ccdf_asset_eligible.yaml │ │ │ │ │ │ ├── is_ccdf_eligible.yaml │ │ │ │ │ │ ├── is_ccdf_income_eligible.yaml │ │ │ │ │ │ ├── is_ccdf_reason_for_care_eligible.yaml │ │ │ │ │ │ └── spm_unit_ccdf_subsidy.yaml │ │ │ │ │ ├── chip │ │ │ │ │ │ ├── chip.yaml │ │ │ │ │ │ ├── chip_category.yaml │ │ │ │ │ │ ├── is_chip_eligible.yaml │ │ │ │ │ │ ├── is_chip_eligible_fcep.yaml │ │ │ │ │ │ ├── is_chip_eligible_pregnant.yaml │ │ │ │ │ │ ├── is_chip_eligible_standard_pregnant_person.yaml │ │ │ │ │ │ └── per_capita_chip.yaml │ │ │ │ │ ├── head_start │ │ │ │ │ │ ├── early_head_start.yaml │ │ │ │ │ │ ├── head_start.yaml │ │ │ │ │ │ ├── is_early_head_start_eligible.yaml │ │ │ │ │ │ ├── is_head_start_categorically_eligible.yaml │ │ │ │ │ │ ├── is_head_start_eligible.yaml │ │ │ │ │ │ └── is_head_start_income_eligible.yaml │ │ │ │ │ ├── hhs_smi.yaml │ │ │ │ │ ├── medicaid │ │ │ │ │ │ ├── costs │ │ │ │ │ │ │ └── medicaid_cost_if_enrolled.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── categories │ │ │ │ │ │ │ │ ├── is_adult_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_infant_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_older_child_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_optional_senior_or_disabled_asset_eligible.yaml │ │ │ │ │ │ │ │ ├── is_optional_senior_or_disabled_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_optional_senior_or_disabled_income_eligible.yaml │ │ │ │ │ │ │ │ ├── is_parent_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_pregnant_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_ssi_recipient_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_young_adult_for_medicaid.yaml │ │ │ │ │ │ │ │ ├── is_young_child_for_medicaid.yaml │ │ │ │ │ │ │ │ └── medically_needy │ │ │ │ │ │ │ │ │ ├── is_in_medicaid_medically_needy_category.yaml │ │ │ │ │ │ │ │ │ └── is_medically_needy_for_medicaid.yaml │ │ │ │ │ │ │ ├── is_medicaid_eligible.yaml │ │ │ │ │ │ │ ├── is_medicaid_immigration_status_eligible.yaml │ │ │ │ │ │ │ └── medicaid_work_requirement_eligible.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ └── tax_unit_medicaid_income_level.yaml │ │ │ │ │ │ ├── medicaid_enrolled.yaml │ │ │ │ │ │ └── takes_up_medicaid_if_eligible.yaml │ │ │ │ │ ├── medicare │ │ │ │ │ │ ├── costs │ │ │ │ │ │ │ └── medicare_cost.yaml │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── base_part_a_premium.yaml │ │ │ │ │ │ │ ├── base_part_b_premium.yaml │ │ │ │ │ │ │ ├── income_adjusted_part_b_premium.yaml │ │ │ │ │ │ │ └── is_medicare_eligible.yaml │ │ │ │ │ │ └── savings_programs │ │ │ │ │ │ │ ├── category │ │ │ │ │ │ │ └── msp_category.yaml │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ └── msp_eligible.yaml │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ └── msp_fpg.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── msp_benefit_value.yaml │ │ │ │ │ ├── spm_unit_fpg.yaml │ │ │ │ │ └── tanf │ │ │ │ │ │ ├── cash │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ └── is_person_demographic_tanf_eligible.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ └── tanf.yaml │ │ │ │ │ │ ├── non_cash │ │ │ │ │ │ ├── is_tanf_non_cash_eligible.yaml │ │ │ │ │ │ ├── is_tanf_non_cash_hheod.yaml │ │ │ │ │ │ ├── meets_tanf_non_cash_asset_test.yaml │ │ │ │ │ │ ├── meets_tanf_non_cash_gross_income_test.yaml │ │ │ │ │ │ └── meets_tanf_non_cash_net_income_test.yaml │ │ │ │ │ │ ├── tanf_fpg.yaml │ │ │ │ │ │ └── tanf_person.yaml │ │ │ │ ├── hud │ │ │ │ │ ├── ami.yaml │ │ │ │ │ ├── housing_assistance.yaml │ │ │ │ │ ├── hud_adjusted_income.yaml │ │ │ │ │ ├── hud_annual_income.yaml │ │ │ │ │ ├── hud_hap.yaml │ │ │ │ │ ├── hud_income_level.yaml │ │ │ │ │ ├── hud_income_level_factor │ │ │ │ │ │ ├── hud_especially_low_income_factor.yaml │ │ │ │ │ │ ├── hud_low_income_factor.yaml │ │ │ │ │ │ ├── hud_moderate_income_factor.yaml │ │ │ │ │ │ └── hud_very_low_income_factor.yaml │ │ │ │ │ ├── hud_max_subsidy.yaml │ │ │ │ │ ├── hud_minimum_rent.yaml │ │ │ │ │ ├── hud_utility_allowance.yaml │ │ │ │ │ ├── integration.yaml │ │ │ │ │ ├── is_hud_elderly_disabled.yaml │ │ │ │ │ ├── pha_payment_standard.yaml │ │ │ │ │ └── ttp │ │ │ │ │ │ ├── hud_ttp.yaml │ │ │ │ │ │ ├── hud_ttp_adjusted_income_share.yaml │ │ │ │ │ │ └── hud_ttp_income_share.yaml │ │ │ │ ├── irs │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ ├── capped_cdcc.yaml │ │ │ │ │ │ │ ├── capped_count_cdcc_eligible.yaml │ │ │ │ │ │ │ ├── cdcc.yaml │ │ │ │ │ │ │ ├── cdcc_credit_limit.yaml │ │ │ │ │ │ │ ├── cdcc_limit.yaml │ │ │ │ │ │ │ ├── cdcc_potential.yaml │ │ │ │ │ │ │ ├── cdcc_rate.yaml │ │ │ │ │ │ │ ├── cdcc_relevant_expenses.yaml │ │ │ │ │ │ │ ├── head_earned.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── min_head_spouse_earned.yaml │ │ │ │ │ │ │ └── spouse_earned.yaml │ │ │ │ │ │ ├── clean_vehicle │ │ │ │ │ │ │ ├── new │ │ │ │ │ │ │ │ ├── new_clean_vehicle_credit.yaml │ │ │ │ │ │ │ │ ├── new_clean_vehicle_credit_credit_limit.yaml │ │ │ │ │ │ │ │ ├── new_clean_vehicle_credit_eligible.yaml │ │ │ │ │ │ │ │ └── new_clean_vehicle_credit_potential.yaml │ │ │ │ │ │ │ └── used │ │ │ │ │ │ │ │ ├── used_clean_vehicle_credit.yaml │ │ │ │ │ │ │ │ └── used_clean_vehicle_credit_eligible.yaml │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ ├── ctc.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── maximum │ │ │ │ │ │ │ │ ├── ctc_qualifying_child.yaml │ │ │ │ │ │ │ │ └── individual │ │ │ │ │ │ │ │ │ ├── ctc_adult_individual_maximum.yaml │ │ │ │ │ │ │ │ │ ├── ctc_child_individual_maximum.yaml │ │ │ │ │ │ │ │ │ ├── ctc_child_individual_maximum_arpa.yaml │ │ │ │ │ │ │ │ │ ├── filer_meets_ctc_identification_requirements.yaml │ │ │ │ │ │ │ │ │ └── meets_ctc_child_identification_requirements.yaml │ │ │ │ │ │ │ ├── non_refundable_ctc.yaml │ │ │ │ │ │ │ ├── phase_out │ │ │ │ │ │ │ │ ├── arpa │ │ │ │ │ │ │ │ │ ├── ctc_arpa_addition.yaml │ │ │ │ │ │ │ │ │ ├── ctc_arpa_max_addition.yaml │ │ │ │ │ │ │ │ │ ├── ctc_arpa_phase_out_cap.yaml │ │ │ │ │ │ │ │ │ └── ctc_arpa_uncapped_phase_out.yaml │ │ │ │ │ │ │ │ ├── ctc_phase_out.yaml │ │ │ │ │ │ │ │ └── ctc_phase_out_threshold.yaml │ │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ │ ├── ctc_limiting_tax_liability.yaml │ │ │ │ │ │ │ │ ├── ctc_phase_in.yaml │ │ │ │ │ │ │ │ ├── ctc_phase_in_relevant_earnings.yaml │ │ │ │ │ │ │ │ ├── ctc_refundable_maximum.yaml │ │ │ │ │ │ │ │ ├── ctc_social_security_tax.yaml │ │ │ │ │ │ │ │ ├── ctc_value.yaml │ │ │ │ │ │ │ │ └── refundable_ctc.yaml │ │ │ │ │ │ ├── earned_income │ │ │ │ │ │ │ ├── earned_income_tax_credit.yaml │ │ │ │ │ │ │ ├── eitc_agi_limit.yaml │ │ │ │ │ │ │ ├── eitc_agi_limit_integration.yaml │ │ │ │ │ │ │ ├── eitc_child_count.yaml │ │ │ │ │ │ │ ├── eitc_demographic_eligible.yaml │ │ │ │ │ │ │ ├── eitc_eligible.yaml │ │ │ │ │ │ │ ├── eitc_investment_income_eligible.yaml │ │ │ │ │ │ │ ├── eitc_maximum.yaml │ │ │ │ │ │ │ ├── eitc_reduction.yaml │ │ │ │ │ │ │ ├── filer_meets_eitc_identification_requirements.yaml │ │ │ │ │ │ │ └── meets_eitc_identification_requirements.yaml │ │ │ │ │ │ ├── education │ │ │ │ │ │ │ ├── american_opportunity_credit │ │ │ │ │ │ │ │ ├── american_opportunity_credit.yaml │ │ │ │ │ │ │ │ ├── education_credit_phase_out.yaml │ │ │ │ │ │ │ │ ├── non_refundable_american_opportunity_credit.yaml │ │ │ │ │ │ │ │ ├── non_refundable_american_opportunity_credit_credit_limit.yaml │ │ │ │ │ │ │ │ └── refundable_american_opportunity_credit.yaml │ │ │ │ │ │ │ ├── education_tax_credits.yaml │ │ │ │ │ │ │ └── lifetime_learning_credit │ │ │ │ │ │ │ │ ├── lifetime_learning_credit.yaml │ │ │ │ │ │ │ │ ├── lifetime_learning_credit_credit_limit.yaml │ │ │ │ │ │ │ │ └── lifetime_learning_credit_potential.yaml │ │ │ │ │ │ ├── elderly_and_disabled │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ ├── energy_efficient_home_improvement │ │ │ │ │ │ │ ├── capped_home_energy_audit_credit.yaml │ │ │ │ │ │ │ ├── energy_efficient_home_improvement_credit_credit_limit.yaml │ │ │ │ │ │ │ ├── energy_efficient_home_improvement_credit_potential.yaml │ │ │ │ │ │ │ ├── improvements │ │ │ │ │ │ │ │ ├── capped_energy_efficient_door_credit.yaml │ │ │ │ │ │ │ │ ├── capped_energy_efficient_insulation_credit.yaml │ │ │ │ │ │ │ │ ├── capped_energy_efficient_roof_credit.yaml │ │ │ │ │ │ │ │ └── capped_energy_efficient_window_credit.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── property │ │ │ │ │ │ │ │ ├── capped_advanced_main_air_circulating_fan_credit.yaml │ │ │ │ │ │ │ │ ├── capped_energy_efficient_central_air_conditioner_credit.yaml │ │ │ │ │ │ │ │ ├── capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit.yaml │ │ │ │ │ │ │ │ └── capped_qualified_furnace_or_hot_water_boiler_credit.yaml │ │ │ │ │ │ ├── estate │ │ │ │ │ │ │ └── estate_tax_credit.yaml │ │ │ │ │ │ ├── non_refundable │ │ │ │ │ │ │ └── income_tax_capped_non_refundable_credits.yaml │ │ │ │ │ │ ├── recovery_rebate_credit │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── recovery_rebate_credit.yaml │ │ │ │ │ │ ├── residential_clean_energy │ │ │ │ │ │ │ └── residential_clean_energy_credit.yaml │ │ │ │ │ │ └── retirement_saving │ │ │ │ │ │ │ ├── savers_credit_eligible_person.yaml │ │ │ │ │ │ │ ├── savers_credit_person.yaml │ │ │ │ │ │ │ └── savers_credit_qualified_contributions.yaml │ │ │ │ │ ├── deductions │ │ │ │ │ │ └── itemized │ │ │ │ │ │ │ └── salt_and_real_estate │ │ │ │ │ │ │ ├── local_state_tax.yaml │ │ │ │ │ │ │ ├── reported_salt.yaml │ │ │ │ │ │ │ ├── salt_deduction.yaml │ │ │ │ │ │ │ ├── state_sales_tax.yaml │ │ │ │ │ │ │ └── state_sales_tax_income_bracket.yaml │ │ │ │ │ ├── income │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── fsla_overtime_premium.yaml │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ ├── adjusted_gross_income │ │ │ │ │ │ │ ├── adjusted_gross_income.yaml │ │ │ │ │ │ │ ├── adjusted_gross_income_person.yaml │ │ │ │ │ │ │ ├── irs_gross_income │ │ │ │ │ │ │ │ └── irs_employment_income.yaml │ │ │ │ │ │ │ ├── positive_gross_income.yaml │ │ │ │ │ │ │ ├── tax_unit_combined_income_for_social_security_taxability.yaml │ │ │ │ │ │ │ ├── tax_unit_ss_combined_income_excess.yaml │ │ │ │ │ │ │ └── test_ss_combined_income_fix.yaml │ │ │ │ │ │ │ └── deductions │ │ │ │ │ │ │ ├── additional_standard_deduction │ │ │ │ │ │ │ └── aged_blind.yaml │ │ │ │ │ │ │ ├── alimony_expense_ald.yaml │ │ │ │ │ │ │ ├── auto_loan_interest_deduction.yaml │ │ │ │ │ │ │ ├── itemizing │ │ │ │ │ │ │ ├── charitable_deduction.yaml │ │ │ │ │ │ │ ├── charitable_deduction_for_non_itemizers.yaml │ │ │ │ │ │ │ ├── itemized_taxable_income_deductions.yaml │ │ │ │ │ │ │ ├── itemized_taxable_income_deductions_reduction.yaml │ │ │ │ │ │ │ ├── misc_deduction.yaml │ │ │ │ │ │ │ ├── taxable_income_deductions_if_itemizing.yaml │ │ │ │ │ │ │ └── wagering_losses_deduction.yaml │ │ │ │ │ │ │ ├── overtime_income │ │ │ │ │ │ │ ├── overtime_income_deduction.yaml │ │ │ │ │ │ │ └── overtime_income_deduction_ssn_requirement_met.yaml │ │ │ │ │ │ │ ├── qbid │ │ │ │ │ │ │ ├── qbid_amount.yaml │ │ │ │ │ │ │ ├── qualified_business_income.yaml │ │ │ │ │ │ │ ├── qualified_business_income_deduction.yaml │ │ │ │ │ │ │ └── taxable_income_less_qbid.yaml │ │ │ │ │ │ │ ├── qualified_business_income_deduction_person.yaml │ │ │ │ │ │ │ ├── senior_deduction │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── meets_additional_senior_deduction_identification_requirements.yaml │ │ │ │ │ │ │ ├── standard_deduction │ │ │ │ │ │ │ └── is_irs_aged.yaml │ │ │ │ │ │ │ ├── student_loan_interest │ │ │ │ │ │ │ ├── student_loan_interest_ald.yaml │ │ │ │ │ │ │ ├── student_loan_interest_ald_eligible.yaml │ │ │ │ │ │ │ └── student_loan_interest_ald_magi.yaml │ │ │ │ │ │ │ ├── tax_unit_itemizes.yaml │ │ │ │ │ │ │ ├── taxable_income_deductions.yaml │ │ │ │ │ │ │ ├── tip_and_overtime_income_deduction.yaml │ │ │ │ │ │ │ ├── tip_income │ │ │ │ │ │ │ ├── tip_income_deduction.yaml │ │ │ │ │ │ │ └── tip_income_deduction_ineligible_cardholder_present.yaml │ │ │ │ │ │ │ ├── tuition_and_fees_deduction.yaml │ │ │ │ │ │ │ └── tuition_and_fees_deduction_eligible.yaml │ │ │ │ │ ├── integration │ │ │ │ │ │ ├── capital_gains_losses.yaml │ │ │ │ │ │ ├── qbid.yaml │ │ │ │ │ │ ├── tax.yaml │ │ │ │ │ │ └── us_itemize.yaml │ │ │ │ │ ├── irs_gross_income.yaml │ │ │ │ │ ├── payroll │ │ │ │ │ │ ├── employee_payroll_tax.yaml │ │ │ │ │ │ ├── medicare │ │ │ │ │ │ │ ├── employee_medicare_tax.yaml │ │ │ │ │ │ │ └── employer_medicare_tax.yaml │ │ │ │ │ │ └── social_security │ │ │ │ │ │ │ ├── employee_social_security_tax.yaml │ │ │ │ │ │ │ ├── employer_social_security_tax.yaml │ │ │ │ │ │ │ └── taxable_earnings_for_social_security.yaml │ │ │ │ │ ├── self_employment │ │ │ │ │ │ ├── self_employment_medicare_tax.yaml │ │ │ │ │ │ ├── self_employment_social_security_tax.yaml │ │ │ │ │ │ └── taxable_self_employment_income.yaml │ │ │ │ │ ├── social_security │ │ │ │ │ │ └── taxable_social_security.yaml │ │ │ │ │ ├── tax │ │ │ │ │ │ ├── estate │ │ │ │ │ │ │ ├── estate_tax.yaml │ │ │ │ │ │ │ └── estate_tax_before_credits.yaml │ │ │ │ │ │ └── federal_income │ │ │ │ │ │ │ ├── additional_medicare_tax.yaml │ │ │ │ │ │ │ ├── aged_blind_count.yaml │ │ │ │ │ │ │ ├── aged_head.yaml │ │ │ │ │ │ │ ├── aged_spouse.yaml │ │ │ │ │ │ │ ├── alternative_minimum_tax │ │ │ │ │ │ │ ├── alternative_minimum_tax.yaml │ │ │ │ │ │ │ ├── amt_part_iii_required.yaml │ │ │ │ │ │ │ ├── amt_tax_including_cg.yaml │ │ │ │ │ │ │ ├── base_tax │ │ │ │ │ │ │ │ ├── amt_base_tax.yaml │ │ │ │ │ │ │ │ ├── amt_higher_base_tax.yaml │ │ │ │ │ │ │ │ └── amt_lower_base_tax.yaml │ │ │ │ │ │ │ ├── exemption │ │ │ │ │ │ │ │ └── amt_exemption.yaml │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ ├── amt_excluded_deductions.yaml │ │ │ │ │ │ │ │ ├── amt_income.yaml │ │ │ │ │ │ │ │ ├── amt_income_less_exemptions.yaml │ │ │ │ │ │ │ │ └── amt_separate_addition.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── kiddie_tax │ │ │ │ │ │ │ │ └── amt_kiddie_tax_applies.yaml │ │ │ │ │ │ │ └── regular_tax_before_credits.yaml │ │ │ │ │ │ │ ├── capped_property_taxes.yaml │ │ │ │ │ │ │ ├── income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── itemized_deductions_less_salt.yaml │ │ │ │ │ │ │ ├── net_investment_income_tax.yaml │ │ │ │ │ │ │ └── validation.yaml │ │ │ │ │ ├── tax_unit │ │ │ │ │ │ └── head_spouse_count.yaml │ │ │ │ │ ├── tce │ │ │ │ │ │ └── is_tce_eligible.yaml │ │ │ │ │ └── vita │ │ │ │ │ │ └── vita_eligible.yaml │ │ │ │ ├── local │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── ala │ │ │ │ │ │ │ ├── ca_ala_general_assistance_base_amount.yaml │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── ca_ala_general_assistance_age_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_ala_general_assistance_eligible_person.yaml │ │ │ │ │ │ │ │ ├── ca_ala_general_assistance_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_ala_general_assistance_income_eligible.yaml │ │ │ │ │ │ │ │ └── ca_ala_general_assistance_personal_property_eligible.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ ├── la │ │ │ │ │ │ │ ├── dss │ │ │ │ │ │ │ │ ├── expectant_parent_payment │ │ │ │ │ │ │ │ │ ├── ca_la_expectant_parent_payment.yaml │ │ │ │ │ │ │ │ │ └── ca_la_expectant_parent_payment_eligible.yaml │ │ │ │ │ │ │ │ └── infant_supplement │ │ │ │ │ │ │ │ │ ├── ca_la_infant_supplement.yaml │ │ │ │ │ │ │ │ │ └── ca_la_infant_supplement_eligible_person.yaml │ │ │ │ │ │ │ ├── dwp │ │ │ │ │ │ │ │ └── ez_save │ │ │ │ │ │ │ │ │ ├── ca_la_ez_save.yaml │ │ │ │ │ │ │ │ │ ├── ca_la_ez_save_eligible.yaml │ │ │ │ │ │ │ │ │ └── ca_la_ez_save_fpg.yaml │ │ │ │ │ │ │ └── general_relief │ │ │ │ │ │ │ │ ├── eligible │ │ │ │ │ │ │ │ ├── cash │ │ │ │ │ │ │ │ │ ├── la_general_relief_cash_asset_eligible.yaml │ │ │ │ │ │ │ │ │ └── la_general_relief_cash_asset_limit.yaml │ │ │ │ │ │ │ │ ├── immigration │ │ │ │ │ │ │ │ │ ├── la_general_relief_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ │ └── la_general_relief_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_age_eligible.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_eligible.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_home_value_eligible.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_motor_vehicle_value_eligible.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_personal_property_eligible.yaml │ │ │ │ │ │ │ │ └── net_income │ │ │ │ │ │ │ │ │ ├── la_general_relief_net_income_eligible.yaml │ │ │ │ │ │ │ │ │ └── la_general_relief_net_income_limit.yaml │ │ │ │ │ │ │ │ ├── housing_subsidy │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── la_general_relief_housing_subsidy_base_amount_eligible.yaml │ │ │ │ │ │ │ │ │ └── la_general_relief_housing_subsidy_eligible.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_housing_subsidy.yaml │ │ │ │ │ │ │ │ └── la_general_relief_rent_contribution.yaml │ │ │ │ │ │ │ │ ├── in_la.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── la_general_relief_base_amount.yaml │ │ │ │ │ │ │ │ └── la_general_relief_net_income.yaml │ │ │ │ │ │ ├── riv │ │ │ │ │ │ │ ├── cap │ │ │ │ │ │ │ │ ├── liheap │ │ │ │ │ │ │ │ │ └── ca_riv_liheap_eligible.yaml │ │ │ │ │ │ │ │ └── share │ │ │ │ │ │ │ │ │ ├── ca_riv_share_electricity_emergency_payment.yaml │ │ │ │ │ │ │ │ │ ├── ca_riv_share_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_riv_share_payment.yaml │ │ │ │ │ │ │ │ │ └── in_riv.yaml │ │ │ │ │ │ │ └── general_relief │ │ │ │ │ │ │ │ ├── ca_giv_general_relief_countable_income.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_countable_vehicle_value.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_excluded_income.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_needs_standards.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_income_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_ineligible_person.yaml │ │ │ │ │ │ │ │ ├── ca_riv_general_relief_meets_work_requirements.yaml │ │ │ │ │ │ │ │ └── ca_riv_general_relief_property_eligible.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ └── sf │ │ │ │ │ │ │ └── wftc │ │ │ │ │ │ │ └── ca_sf_wftc.yaml │ │ │ │ │ ├── co │ │ │ │ │ │ └── denver │ │ │ │ │ │ │ └── dhs │ │ │ │ │ │ │ ├── has_co_denver_dhs_elderly_dsiabled.yaml │ │ │ │ │ │ │ ├── is_co_denver_dhs_elderly.yaml │ │ │ │ │ │ │ └── property_tax_relief │ │ │ │ │ │ │ ├── co_denver_integration.yaml │ │ │ │ │ │ │ ├── co_denver_property_tax_relief_homeowner.yaml │ │ │ │ │ │ │ ├── co_denver_property_tax_relief_homeowner_eligible.yaml │ │ │ │ │ │ │ ├── co_denver_property_tax_relief_renter.yaml │ │ │ │ │ │ │ └── co_denver_property_tax_relief_renter_eligible.yaml │ │ │ │ │ ├── md │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ └── credits │ │ │ │ │ │ │ └── eitc │ │ │ │ │ │ │ └── montgomery_refundable_eitc.yaml │ │ │ │ │ ├── ny │ │ │ │ │ │ └── nyc │ │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── nyc_cdcc.yaml │ │ │ │ │ │ │ │ ├── nyc_cdcc_age_restricted_expenses.yaml │ │ │ │ │ │ │ │ ├── nyc_cdcc_applicable_percentage.yaml │ │ │ │ │ │ │ │ ├── nyc_cdcc_eligible.yaml │ │ │ │ │ │ │ │ └── nyc_cdcc_share_qualifying_childcare_expenses.yaml │ │ │ │ │ │ │ ├── household │ │ │ │ │ │ │ │ └── nyc_household_credit.yaml │ │ │ │ │ │ │ ├── nyc_eitc.yaml │ │ │ │ │ │ │ └── school │ │ │ │ │ │ │ │ ├── nyc_school_tax_credit_fixed_amount.yaml │ │ │ │ │ │ │ │ ├── nyc_school_tax_credit_fixed_amount_eligible.yaml │ │ │ │ │ │ │ │ ├── nyc_school_tax_credit_rate_reduction_amount.yaml │ │ │ │ │ │ │ │ └── nyc_school_tax_credit_rate_reduction_amount_eligible.yaml │ │ │ │ │ │ │ ├── nyc_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ └── nyc_income_tax_before_credits.yaml │ │ │ │ │ └── tx │ │ │ │ │ │ └── harris │ │ │ │ │ │ ├── in_harris_county_tx.yaml │ │ │ │ │ │ └── rides │ │ │ │ │ │ ├── tx_harris_rides_eligible.yaml │ │ │ │ │ │ └── tx_harris_rides_subsidy.yaml │ │ │ │ ├── simulation │ │ │ │ │ └── labor_supply_response │ │ │ │ │ │ ├── employment_income_behavioral_response.yaml │ │ │ │ │ │ ├── income_elasticity.yaml │ │ │ │ │ │ ├── labor_supply_behavioral_response.yaml │ │ │ │ │ │ └── substitution_elasticity.yaml │ │ │ │ ├── ssa │ │ │ │ │ ├── ss │ │ │ │ │ │ └── never_eligible_for_social_security_benefits.yaml │ │ │ │ │ └── ssi │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── deemed │ │ │ │ │ │ │ │ ├── from_ineligible_parent.yaml │ │ │ │ │ │ │ │ ├── from_ineligible_spouse.yaml │ │ │ │ │ │ │ │ ├── from_ineligible_spouse │ │ │ │ │ │ │ │ │ └── ssi_income_deemed_from_ineligible_spouse.yaml │ │ │ │ │ │ │ │ ├── ssi_income_deemed_from_ineligible_spouse.yaml │ │ │ │ │ │ │ │ └── ssi_ineligible_child_allocation.yaml │ │ │ │ │ │ │ ├── is_ssi_blind_or_disabled_working_student_exclusion_eligible.yaml │ │ │ │ │ │ │ └── ssi_blind_or_disabled_working_student_exclusion.yaml │ │ │ │ │ │ └── ssi_marital_both_eligible.yaml │ │ │ │ │ │ ├── income │ │ │ │ │ │ ├── ssi_earned_income.yaml │ │ │ │ │ │ ├── ssi_engaged_in_sga.yaml │ │ │ │ │ │ ├── ssi_marital_earned_income.yaml │ │ │ │ │ │ ├── ssi_marital_unearned_income.yaml │ │ │ │ │ │ └── ssi_unearned_income.yaml │ │ │ │ │ │ ├── integration_tests.yaml │ │ │ │ │ │ ├── is_ssi_aged_blind_disabled.yaml │ │ │ │ │ │ ├── is_ssi_disabled.yaml │ │ │ │ │ │ ├── is_ssi_eligible.yaml │ │ │ │ │ │ ├── is_ssi_qualified_noncitizen.yaml │ │ │ │ │ │ ├── ssi.yaml │ │ │ │ │ │ ├── ssi_amount_if_eligible.yaml │ │ │ │ │ │ ├── ssi_claim_is_joint.yaml │ │ │ │ │ │ ├── ssi_countable_income.yaml │ │ │ │ │ │ └── uncapped_ssi.yaml │ │ │ │ ├── states │ │ │ │ │ ├── al │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── al_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── al_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── al_taxable_income.yaml │ │ │ │ │ │ │ ├── al_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── al_deductions.yaml │ │ │ │ │ │ │ ├── al_federal_income_tax_deduction.yaml │ │ │ │ │ │ │ ├── al_standard_deduction.yaml │ │ │ │ │ │ │ └── itemized │ │ │ │ │ │ │ │ ├── al_casualty_loss_deduction.yaml │ │ │ │ │ │ │ │ ├── al_medical_deduction.yaml │ │ │ │ │ │ │ │ ├── al_misc_deduction.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── al_dependent_exemption.yaml │ │ │ │ │ │ │ ├── al_personal_exemption.yaml │ │ │ │ │ │ │ └── retirement │ │ │ │ │ │ │ │ ├── al_retirement_exemption_eligible_person.yaml │ │ │ │ │ │ │ │ └── al_retirement_exemption_person.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ ├── ar │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── ar_agi_indiv.yaml │ │ │ │ │ │ │ ├── ar_agi_joint.yaml │ │ │ │ │ │ │ ├── ar_files_separately.yaml │ │ │ │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_indiv.yaml │ │ │ │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_joint.yaml │ │ │ │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_unit.yaml │ │ │ │ │ │ │ ├── ar_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ar_taxable_capital_gains_indiv.yaml │ │ │ │ │ │ │ ├── ar_taxable_capital_gains_joint.yaml │ │ │ │ │ │ │ ├── ar_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── ar_taxable_income_joint.yaml │ │ │ │ │ │ │ ├── ar_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── ar_additional_tax_credit_for_qualified_individuals_person.yaml │ │ │ │ │ │ │ ├── ar_cdcc.yaml │ │ │ │ │ │ │ ├── ar_inflation_relief_credit_person.yaml │ │ │ │ │ │ │ └── personal │ │ │ │ │ │ │ │ ├── ar_personal_credit_dependent.yaml │ │ │ │ │ │ │ │ ├── ar_personal_credit_disabled_dependent.yaml │ │ │ │ │ │ │ │ └── ar_personal_credits_base.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── ar_deduction_indiv.yaml │ │ │ │ │ │ │ ├── ar_deduction_joint.yaml │ │ │ │ │ │ │ ├── ar_tax_unit_itemizes.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── ar_itemized_deductions_indiv.yaml │ │ │ │ │ │ │ │ ├── ar_itemized_deductions_joint.yaml │ │ │ │ │ │ │ │ ├── ar_medical_expense_deduction_indiv.yaml │ │ │ │ │ │ │ │ ├── ar_medical_expense_deduction_joint.yaml │ │ │ │ │ │ │ │ ├── ar_misc_deduction_indiv.yaml │ │ │ │ │ │ │ │ ├── ar_misc_deduction_joint.yaml │ │ │ │ │ │ │ │ └── post_secondary_education │ │ │ │ │ │ │ │ │ └── ar_post_secondary_education_tuition_deduction_person.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── ar_standard_deduction_indiv.yaml │ │ │ │ │ │ │ │ └── ar_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── ar_capped_retirement_or_disability_benefits_exemption_person.yaml │ │ │ │ │ │ │ ├── ar_military_retirement_income_person.yaml │ │ │ │ │ │ │ └── ar_retirement_or_disability_benefits_exemption_person.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── low_income │ │ │ │ │ │ │ └── ar_low_income_tax_joint.yaml │ │ │ │ │ ├── az │ │ │ │ │ │ ├── hhs │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ │ └── az_tanf_eligible_child.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── az_agi.yaml │ │ │ │ │ │ │ ├── az_filing_status.yaml │ │ │ │ │ │ │ ├── az_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── az_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── az_taxable_income.yaml │ │ │ │ │ │ │ ├── az_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── az_family_tax_credit.yaml │ │ │ │ │ │ │ ├── az_family_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── az_increased_excise_tax_credit.yaml │ │ │ │ │ │ │ ├── az_increased_excise_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── az_property_tax_credit.yaml │ │ │ │ │ │ │ ├── az_property_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── charitable_contribution │ │ │ │ │ │ │ │ └── az_charitable_contributions_credit.yaml │ │ │ │ │ │ │ └── dependent_credit │ │ │ │ │ │ │ │ └── az_dependent_tax_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── az_deductions.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ └── az_itemized_deductions.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── az_base_standard_deduction.yaml │ │ │ │ │ │ │ │ └── az_increased_standard_deduction_for_charitable_contributions.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── az_aged_exemption.yaml │ │ │ │ │ │ │ ├── az_aged_exemption_eligible_person.yaml │ │ │ │ │ │ │ ├── az_blind_exemption.yaml │ │ │ │ │ │ │ ├── az_parents_grandparents_exemption.yaml │ │ │ │ │ │ │ └── az_stillborn_exemption.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── az_military_retirement_subtraction.yaml │ │ │ │ │ │ │ ├── az_public_pension_exclusion.yaml │ │ │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ │ └── az_long_term_capital_gains_subtraction.yaml │ │ │ │ │ │ │ └── college_savings │ │ │ │ │ │ │ └── az_529_college_savings_plan_subtraction.yaml │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── calepa │ │ │ │ │ │ │ └── carb │ │ │ │ │ │ │ │ └── cvrp │ │ │ │ │ │ │ │ ├── ca_cvrp.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── is_ca_cvrp_increased_rebate_eligible.yaml │ │ │ │ │ │ │ │ └── is_ca_cvrp_normal_rebate_eligible.yaml │ │ │ │ │ │ ├── cdss │ │ │ │ │ │ │ ├── capi │ │ │ │ │ │ │ │ ├── ca_capi.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── ca_capi_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_capi_eligible_person.yaml │ │ │ │ │ │ │ │ │ ├── ca_capi_income_eligible.yaml │ │ │ │ │ │ │ │ │ └── ca_capi_resource_eligible.yaml │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ ├── ca_capi_countable_vehicle_value.yaml │ │ │ │ │ │ │ │ │ └── ca_capi_resources.yaml │ │ │ │ │ │ │ ├── state_supplement │ │ │ │ │ │ │ │ ├── ca_state_supplement.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_aged_blind_disabled_amount.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_aged_disabled_amount.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_aged_disabled_count.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_blind_amount.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_dependent_amount.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_eligible_person.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_food_allowance.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_food_allowance_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_medical_care_facility_amount.yaml │ │ │ │ │ │ │ │ ├── ca_state_supplement_out_of_home_care_facility_amount.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── cash │ │ │ │ │ │ │ │ ├── ca_tanf.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── ca_tanf_applicant_financial_test.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_financial_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_income_limit.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_maximum_payment.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_recipient_financial_test.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_region1.yaml │ │ │ │ │ │ │ │ │ ├── ca_tanf_resources_eligible.yaml │ │ │ │ │ │ │ │ │ └── ca_tanf_vehicle_value_eligible.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ │ ├── ca_tanf_countable_income_applicant.yaml │ │ │ │ │ │ │ │ │ └── ca_tanf_countable_income_recipient.yaml │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ └── ca_tanf_resources_limit.yaml │ │ │ │ │ │ │ │ ├── child_care │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_integration.yaml │ │ │ │ │ │ │ │ ├── child_care_time │ │ │ │ │ │ │ │ │ └── ca_calworks_child_care_service_category.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_age_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_child_age_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ │ └── ca_calworks_child_care_meets_work_requirement.yaml │ │ │ │ │ │ │ │ └── reimbursement │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_payment.yaml │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_payment_factor.yaml │ │ │ │ │ │ │ │ │ ├── ca_calworks_child_care_payment_standard.yaml │ │ │ │ │ │ │ │ │ └── ca_calworks_child_care_time_coefficient.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ ├── chhs │ │ │ │ │ │ │ └── is_ca_medicaid_immigration_status_eligible.yaml │ │ │ │ │ │ ├── cpuc │ │ │ │ │ │ │ ├── care │ │ │ │ │ │ │ │ ├── ca_care.yaml │ │ │ │ │ │ │ │ ├── ca_care_amount_if_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_care_categorically_eligible.yaml │ │ │ │ │ │ │ │ ├── ca_care_income_eligible.yaml │ │ │ │ │ │ │ │ └── ca_care_poverty_line.yaml │ │ │ │ │ │ │ ├── fera │ │ │ │ │ │ │ │ ├── ca_fera.yaml │ │ │ │ │ │ │ │ ├── ca_fera_amount_if_eligible.yaml │ │ │ │ │ │ │ │ └── ca_fera_eligible.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ ├── dhcs │ │ │ │ │ │ │ └── ffyp │ │ │ │ │ │ │ │ └── ca_ffyp_eligible.yaml │ │ │ │ │ │ ├── foster_care │ │ │ │ │ │ │ └── ca_foster_care_minor_dependent.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── alternative_minimum_tax │ │ │ │ │ │ │ ├── amti │ │ │ │ │ │ │ │ ├── ca_amti.yaml │ │ │ │ │ │ │ │ └── ca_amti_adjustments.yaml │ │ │ │ │ │ │ ├── ca_amt.yaml │ │ │ │ │ │ │ └── ca_amt_exemption.yaml │ │ │ │ │ │ │ ├── ca_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ca_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ca_mental_health_services_tax.yaml │ │ │ │ │ │ │ ├── ca_taxable_income.yaml │ │ │ │ │ │ │ ├── ca_use_tax.yaml │ │ │ │ │ │ │ ├── ca_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── child_dependent_care │ │ │ │ │ │ │ │ ├── ca_cdcc.yaml │ │ │ │ │ │ │ │ ├── ca_cdcc_rate.yaml │ │ │ │ │ │ │ │ ├── ca_cdcc_relevant_expenses.yaml │ │ │ │ │ │ │ │ ├── ca_federal_capped_cdcc.yaml │ │ │ │ │ │ │ │ ├── ca_federal_cdcc.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── earned_income │ │ │ │ │ │ │ │ ├── ca_eitc.yaml │ │ │ │ │ │ │ │ ├── ca_eitc_eligible.yaml │ │ │ │ │ │ │ │ └── ca_eitc_integration.yaml │ │ │ │ │ │ │ ├── foster_youth │ │ │ │ │ │ │ │ ├── ca_foster_youth_tax_credit_eligible_person.yaml │ │ │ │ │ │ │ │ └── ca_foster_youth_tax_credit_person.yaml │ │ │ │ │ │ │ ├── renter │ │ │ │ │ │ │ │ └── ca_renter_credit.yaml │ │ │ │ │ │ │ └── young_child │ │ │ │ │ │ │ │ └── ca_yctc.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── ca_deductions.yaml │ │ │ │ │ │ │ ├── ca_investment_interest_deduction.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ └── ca_itemized_deductions.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ └── ca_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── ca_exemptions.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ ├── co │ │ │ │ │ │ ├── ccap │ │ │ │ │ │ │ ├── co_ccap_add_on_parent_fee.yaml │ │ │ │ │ │ │ ├── co_ccap_base_parent_fee.yaml │ │ │ │ │ │ │ ├── co_ccap_child_eligible.yaml │ │ │ │ │ │ │ ├── co_ccap_eligible.yaml │ │ │ │ │ │ │ ├── co_ccap_parent_fee.yaml │ │ │ │ │ │ │ ├── co_ccap_smi.yaml │ │ │ │ │ │ │ ├── co_ccap_subsidy.yaml │ │ │ │ │ │ │ ├── entry │ │ │ │ │ │ │ │ ├── co_ccap_entry_eligible.yaml │ │ │ │ │ │ │ │ ├── co_ccap_entry_income_eligible.yaml │ │ │ │ │ │ │ │ ├── co_ccap_fpg_eligible.yaml │ │ │ │ │ │ │ │ └── co_ccap_smi_eligible.yaml │ │ │ │ │ │ │ └── re_determination │ │ │ │ │ │ │ │ ├── co_ccap_re_determination_eligible.yaml │ │ │ │ │ │ │ │ └── co_ccap_re_determination_income_eligible.yaml │ │ │ │ │ │ ├── cdhs │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── co_tanf.yaml │ │ │ │ │ │ │ │ ├── co_tanf_countable_earned_income_grant_standard.yaml │ │ │ │ │ │ │ │ ├── co_tanf_countable_earned_income_need.yaml │ │ │ │ │ │ │ │ ├── co_tanf_countable_gross_unearned_income.yaml │ │ │ │ │ │ │ │ ├── co_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── co_tanf_grant_standard.yaml │ │ │ │ │ │ │ │ ├── co_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ ├── co_tanf_integration.yaml │ │ │ │ │ │ │ │ └── co_tanf_need_standard.yaml │ │ │ │ │ │ ├── hcpf │ │ │ │ │ │ │ └── chp │ │ │ │ │ │ │ │ ├── co_chp.yaml │ │ │ │ │ │ │ │ ├── co_chp_eligible.yaml │ │ │ │ │ │ │ │ └── co_chp_out_of_pocket_maximum.yaml │ │ │ │ │ │ ├── ssa │ │ │ │ │ │ │ ├── oap │ │ │ │ │ │ │ │ ├── co_oap.yaml │ │ │ │ │ │ │ │ └── co_oap_eligible.yaml │ │ │ │ │ │ │ └── state_supplement │ │ │ │ │ │ │ │ ├── co_state_supplement.yaml │ │ │ │ │ │ │ │ └── co_state_supplement_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── additions │ │ │ │ │ │ │ ├── federal_deduction │ │ │ │ │ │ │ │ ├── co_federal_deduction_addback.yaml │ │ │ │ │ │ │ │ └── co_federal_deduction_addback_required.yaml │ │ │ │ │ │ │ ├── qualified_business_income_deduction │ │ │ │ │ │ │ │ └── co_qualified_business_income_deduction_addback_eligible.yaml │ │ │ │ │ │ │ └── state_addback │ │ │ │ │ │ │ │ └── co_state_addback.yaml │ │ │ │ │ │ │ ├── co_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── co_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── co_taxable_income.yaml │ │ │ │ │ │ │ ├── co_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── care_worker │ │ │ │ │ │ │ │ ├── co_care_worker_credit.yaml │ │ │ │ │ │ │ │ ├── co_care_worker_credit_eligible.yaml │ │ │ │ │ │ │ │ └── co_care_worker_credit_eligible_care_worker_count.yaml │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── co_cdcc.yaml │ │ │ │ │ │ │ │ ├── co_low_income_cdcc.yaml │ │ │ │ │ │ │ │ ├── co_low_income_cdcc_eligible.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── co_tabor_cash_back.yaml │ │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ │ ├── co_ctc.yaml │ │ │ │ │ │ │ │ └── federal_ctc │ │ │ │ │ │ │ │ │ ├── co_federal_ctc_child_individual_maximum.yaml │ │ │ │ │ │ │ │ │ ├── co_non_refundable_ctc.yaml │ │ │ │ │ │ │ │ │ └── co_refundable_ctc.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ └── co_eitc.yaml │ │ │ │ │ │ │ ├── family_affordability │ │ │ │ │ │ │ │ └── co_family_affordability_credit.yaml │ │ │ │ │ │ │ ├── income_qualified_senior_housing │ │ │ │ │ │ │ │ ├── co_income_qualified_senior_housing.yaml │ │ │ │ │ │ │ │ └── co_income_qualified_senior_housing_eligible.yaml │ │ │ │ │ │ │ └── sales_tax_refund │ │ │ │ │ │ │ │ ├── co_sales_tax_refund.yaml │ │ │ │ │ │ │ │ └── co_sales_tax_refund_eligible.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── able_contribution │ │ │ │ │ │ │ └── co_able_contribution_subtraction.yaml │ │ │ │ │ │ │ ├── charitable_contribution │ │ │ │ │ │ │ ├── co_charitable_contribution_subtraction.yaml │ │ │ │ │ │ │ └── co_charitable_contribution_subtraction_eligible.yaml │ │ │ │ │ │ │ ├── collegeinvest_contribution │ │ │ │ │ │ │ └── co_collegeinvest_contribution.yaml │ │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ └── co_military_retirement_subtraction.yaml │ │ │ │ │ │ │ └── pension │ │ │ │ │ │ │ ├── co_pension_subtraction_indv.yaml │ │ │ │ │ │ │ ├── co_pension_subtraction_indv_eligible.yaml │ │ │ │ │ │ │ ├── co_social_security_subtraction_indv.yaml │ │ │ │ │ │ │ └── co_social_security_subtraction_indv_eligible.yaml │ │ │ │ │ ├── ct │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── add_back │ │ │ │ │ │ │ ├── ct_income_tax_high_tax_recapture.yaml │ │ │ │ │ │ │ ├── ct_income_tax_low_tax_recapture.yaml │ │ │ │ │ │ │ ├── ct_income_tax_middle_tax_recapture.yaml │ │ │ │ │ │ │ ├── ct_income_tax_phase_out_add_back.yaml │ │ │ │ │ │ │ └── ct_income_tax_recapture.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── ct_personal_credit_rate.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ └── ct_eitc.yaml │ │ │ │ │ │ │ └── property_tax │ │ │ │ │ │ │ │ ├── ct_property_tax_credit.yaml │ │ │ │ │ │ │ │ └── ct_property_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── ct_income_tax_after_personal_credits.yaml │ │ │ │ │ │ │ ├── ct_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ct_taxable_income.yaml │ │ │ │ │ │ │ ├── ct_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── ct_personal_exemptions.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── rebate │ │ │ │ │ │ │ └── ct_child_tax_rebate.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── ct_pension_annuity_subtraction.yaml │ │ │ │ │ │ │ ├── ct_social_security_benefit_adjustment.yaml │ │ │ │ │ │ │ └── tuition │ │ │ │ │ │ │ └── ct_tuition_subtraction.yaml │ │ │ │ │ ├── dc │ │ │ │ │ │ ├── dhs │ │ │ │ │ │ │ ├── ccsp │ │ │ │ │ │ │ │ ├── copay │ │ │ │ │ │ │ │ │ ├── dc_ccsp_copay.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_first_child_copay.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_is_full_time.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_is_second_youngest_child.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_is_youngest_child.yaml │ │ │ │ │ │ │ │ │ └── dc_ccsp_second_child_copay.yaml │ │ │ │ │ │ │ │ ├── dc_ccsp.yaml │ │ │ │ │ │ │ │ ├── dc_ccsp_maximum_subsidy_amount.yaml │ │ │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ │ │ ├── dc_ccsp_asset_eligible.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_eligible.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_eligible_child.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_income_eligible.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_income_test_waived.yaml │ │ │ │ │ │ │ │ │ └── qualified_activity_or_need │ │ │ │ │ │ │ │ │ ├── dc_ccsp_qualified_activity_eligible.yaml │ │ │ │ │ │ │ │ │ ├── dc_ccsp_qualified_activity_or_need_eligible.yaml │ │ │ │ │ │ │ │ │ └── dc_ccsp_qualified_need_eligible.yaml │ │ │ │ │ │ │ ├── dc_pap_eligible_child.yaml │ │ │ │ │ │ │ ├── gac │ │ │ │ │ │ │ │ ├── dc_gac.yaml │ │ │ │ │ │ │ │ ├── dc_gac_standard_payment.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── dc_gac_eligible.yaml │ │ │ │ │ │ │ │ │ ├── dc_gac_eligible_child.yaml │ │ │ │ │ │ │ │ │ └── dc_gac_income_eligible.yaml │ │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ │ └── dc_gac_earned_income_after_disregard_person.yaml │ │ │ │ │ │ │ ├── integration_tests.yaml │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── dc_power.yaml │ │ │ │ │ │ │ │ ├── dc_power_eligible.yaml │ │ │ │ │ │ │ │ └── dc_power_head_or_spouse_eligible.yaml │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── dc_tanf.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_assistance_unit_size.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_standard_payment.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── dc_tanf_basic_eligibility_requirements.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_demographic_eligible_person.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ └── dc_tanf_resources_eligible.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ ├── dc_tanf_childcare_deduction.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_countable_income.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_countable_unearned_income.yaml │ │ │ │ │ │ │ │ └── dc_tanf_earned_income_after_disregard_person.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ └── work_requirement │ │ │ │ │ │ │ │ ├── dc_tanf_is_working.yaml │ │ │ │ │ │ │ │ ├── dc_tanf_meets_work_requirements.yaml │ │ │ │ │ │ │ │ └── dc_tanf_work_requirement_exempt.yaml │ │ │ │ │ │ ├── doee │ │ │ │ │ │ │ └── liheap │ │ │ │ │ │ │ │ ├── dc_liheap_eligible.yaml │ │ │ │ │ │ │ │ ├── dc_liheap_income_level.yaml │ │ │ │ │ │ │ │ └── dc_liheap_payment.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ ├── dc_ctc.yaml │ │ │ │ │ │ │ ├── dc_ctc_capped_children.yaml │ │ │ │ │ │ │ └── dc_ctc_eligible_child.yaml │ │ │ │ │ │ │ ├── dc_cdcc.yaml │ │ │ │ │ │ │ ├── dc_deduction_indiv.yaml │ │ │ │ │ │ │ ├── dc_deduction_joint.yaml │ │ │ │ │ │ │ ├── dc_disability_exclusion.yaml │ │ │ │ │ │ │ ├── dc_disabled_exclusion_subtraction.yaml │ │ │ │ │ │ │ ├── dc_eitc.yaml │ │ │ │ │ │ │ ├── dc_eitc_with_qualifying_child.yaml │ │ │ │ │ │ │ ├── dc_eitc_without_qualifying_children.yaml │ │ │ │ │ │ │ ├── dc_files_separately.yaml │ │ │ │ │ │ │ ├── dc_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── dc_income_tax_before_credits_indiv.yaml │ │ │ │ │ │ │ ├── dc_income_tax_before_credits_joint.yaml │ │ │ │ │ │ │ ├── dc_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── dc_itemized_deductions.yaml │ │ │ │ │ │ │ ├── dc_kccatc.yaml │ │ │ │ │ │ │ ├── dc_ptc.yaml │ │ │ │ │ │ │ ├── dc_self_employment_loss_addition.yaml │ │ │ │ │ │ │ ├── dc_snap_temporary_local_benefit.yaml │ │ │ │ │ │ │ └── dc_withheld_income_tax.yaml │ │ │ │ │ ├── de │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ └── de_cdcc.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ ├── de_eitc.yaml │ │ │ │ │ │ │ │ ├── de_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ ├── de_non_refundable_eitc_if_claimed.yaml │ │ │ │ │ │ │ │ ├── de_refundable_eitc_if_claimed.yaml │ │ │ │ │ │ │ │ └── refundability_calculation │ │ │ │ │ │ │ │ │ ├── de_claims_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── de_income_tax_if_claiming_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ └── de_income_tax_if_claiming_refundable_eitc.yaml │ │ │ │ │ │ │ ├── personal │ │ │ │ │ │ │ │ ├── de_aged_personal_credit.yaml │ │ │ │ │ │ │ │ └── de_personal_credits.yaml │ │ │ │ │ │ │ └── relief_rebate │ │ │ │ │ │ │ │ └── de_relief_rebate.yaml │ │ │ │ │ │ │ ├── de_agi_indiv.yaml │ │ │ │ │ │ │ ├── de_agi_joint.yaml │ │ │ │ │ │ │ ├── de_files_separately.yaml │ │ │ │ │ │ │ ├── de_income_tax_before_non_refundable_credits_indv.yaml │ │ │ │ │ │ │ ├── de_income_tax_before_non_refundable_credits_joint.yaml │ │ │ │ │ │ │ ├── de_income_tax_before_non_refundable_credits_unit.yaml │ │ │ │ │ │ │ ├── de_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── de_taxable_income_indv.yaml │ │ │ │ │ │ │ ├── de_taxable_income_joint.yaml │ │ │ │ │ │ │ ├── de_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── de_deduction_indv.yaml │ │ │ │ │ │ │ ├── de_deduction_joint.yaml │ │ │ │ │ │ │ ├── de_tax_unit_itemizes.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── de_capped_real_estate_tax.yaml │ │ │ │ │ │ │ │ ├── de_itemized_deductions_indv.yaml │ │ │ │ │ │ │ │ └── de_itemized_deductions_joint.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── de_additional_standard_deduction.yaml │ │ │ │ │ │ │ │ ├── de_base_standard_deduction_indv.yaml │ │ │ │ │ │ │ │ ├── de_base_standard_deduction_joint.yaml │ │ │ │ │ │ │ │ └── de_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── exclusions │ │ │ │ │ │ │ ├── de_elderly_or_disabled_income_exclusion_eligible_person.yaml │ │ │ │ │ │ │ ├── de_elderly_or_disabled_income_exclusion_indiv.yaml │ │ │ │ │ │ │ └── de_elderly_or_disabled_income_exclusion_joint.yaml │ │ │ │ │ │ │ └── pension_exclusion │ │ │ │ │ │ │ └── de_pension_exclusion.yaml │ │ │ │ │ ├── ga │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── dependent_care_credit │ │ │ │ │ │ │ │ └── ga_cdcc.yaml │ │ │ │ │ │ │ ├── ga_ctc.yaml │ │ │ │ │ │ │ ├── ga_itemizer_credit.yaml │ │ │ │ │ │ │ ├── ga_low_income_credit.yaml │ │ │ │ │ │ │ └── ga_surplus_tax_rebate.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── ga_additional_standard_deduction.yaml │ │ │ │ │ │ │ │ └── ga_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── ga_exemptions.yaml │ │ │ │ │ │ │ ├── ga_deductions.yaml │ │ │ │ │ │ │ ├── ga_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── ga_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ga_taxable_income.yaml │ │ │ │ │ │ │ ├── ga_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── ga_exclusion_countable_earned_income.yaml │ │ │ │ │ │ │ └── retirement │ │ │ │ │ │ │ ├── ga_retirement_exclusion_countable_earned_income.yaml │ │ │ │ │ │ │ ├── ga_retirement_exclusion_eligible_person_younger_cap.yaml │ │ │ │ │ │ │ ├── ga_retirement_exclusion_person.yaml │ │ │ │ │ │ │ └── military │ │ │ │ │ │ │ ├── ga_military_retirement_exclusion_eligible_person.yaml │ │ │ │ │ │ │ └── ga_military_retirement_exclusion_person.yaml │ │ │ │ │ ├── hi │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── alternative_tax │ │ │ │ │ │ │ ├── hi_alternative_tax_on_capital_gains.yaml │ │ │ │ │ │ │ ├── hi_alternative_tax_on_capital_gains_eligible.yaml │ │ │ │ │ │ │ └── hi_taxable_income_for_alternative_tax.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── hi_cdcc.yaml │ │ │ │ │ │ │ │ ├── hi_cdcc_eligible.yaml │ │ │ │ │ │ │ │ ├── hi_cdcc_income_floor_eligible.yaml │ │ │ │ │ │ │ │ ├── hi_cdcc_integration.yaml │ │ │ │ │ │ │ │ ├── hi_cdcc_min_head_spouse_earned.yaml │ │ │ │ │ │ │ │ └── hi_dependent_care_benefits.yaml │ │ │ │ │ │ │ ├── food_excise │ │ │ │ │ │ │ │ ├── hi_food_excise_credit.yaml │ │ │ │ │ │ │ │ ├── hi_food_excise_credit_child_receiving_public_support.yaml │ │ │ │ │ │ │ │ ├── hi_food_excise_credit_minor_child_amount.yaml │ │ │ │ │ │ │ │ ├── hi_food_excise_credit_minor_child_count.yaml │ │ │ │ │ │ │ │ └── hi_food_excise_exemption_amount.yaml │ │ │ │ │ │ │ ├── hi_act_115_rebate.yaml │ │ │ │ │ │ │ ├── hi_eitc.yaml │ │ │ │ │ │ │ └── hi_low_income_household_renters │ │ │ │ │ │ │ │ ├── hi_low_income_household_renters_tax_credit.yaml │ │ │ │ │ │ │ │ └── hi_tax_credit_for_low_income_household_renters_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── hi_deductions.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── hi_casualty_loss_deduction.yaml │ │ │ │ │ │ │ │ ├── hi_itemized_deductions.yaml │ │ │ │ │ │ │ │ ├── hi_medical_expense_deduction.yaml │ │ │ │ │ │ │ │ └── hi_reduced_itemized_deductions.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ └── hi_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── hi_disabled_exemptions.yaml │ │ │ │ │ │ │ ├── hi_exemptions.yaml │ │ │ │ │ │ │ ├── hi_regular_exemptions.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── hi_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── hi_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── hi_taxable_income.yaml │ │ │ │ │ │ │ ├── hi_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── hi_military_pay_exclusion.yaml │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ ├── ia │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── alternate_tax │ │ │ │ │ │ │ ├── ia_alternate_tax_eligible.yaml │ │ │ │ │ │ │ ├── ia_alternate_tax_indiv.yaml │ │ │ │ │ │ │ ├── ia_alternate_tax_joint.yaml │ │ │ │ │ │ │ └── ia_alternate_tax_unit.yaml │ │ │ │ │ │ │ ├── consolidated │ │ │ │ │ │ │ ├── ia_alternate_tax_consolidated.yaml │ │ │ │ │ │ │ ├── ia_income_tax_consolidated.yaml │ │ │ │ │ │ │ ├── ia_regular_tax_consolidated.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ │ └── ia_taxable_income_consolidated.yaml │ │ │ │ │ │ │ ├── ia_amt_indiv.yaml │ │ │ │ │ │ │ ├── ia_amt_joint.yaml │ │ │ │ │ │ │ ├── ia_base_tax_indiv.yaml │ │ │ │ │ │ │ ├── ia_base_tax_joint.yaml │ │ │ │ │ │ │ ├── ia_basic_deduction_indiv.yaml │ │ │ │ │ │ │ ├── ia_basic_deduction_joint.yaml │ │ │ │ │ │ │ ├── ia_cdcc.yaml │ │ │ │ │ │ │ ├── ia_eitc.yaml │ │ │ │ │ │ │ ├── ia_exemption_credit.yaml │ │ │ │ │ │ │ ├── ia_fedtax_deduction.yaml │ │ │ │ │ │ │ ├── ia_files_separately.yaml │ │ │ │ │ │ │ ├── ia_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ia_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ia_integration.yaml │ │ │ │ │ │ │ ├── ia_is_tax_exempt.yaml │ │ │ │ │ │ │ ├── ia_itemized_deductions_indiv.yaml │ │ │ │ │ │ │ ├── ia_itemized_deductions_joint.yaml │ │ │ │ │ │ │ ├── ia_itemized_deductions_unit.yaml │ │ │ │ │ │ │ ├── ia_net_income.yaml │ │ │ │ │ │ │ ├── ia_pension_exclusion.yaml │ │ │ │ │ │ │ ├── ia_pension_exclusion_eligible.yaml │ │ │ │ │ │ │ ├── ia_prorate_fraction.yaml │ │ │ │ │ │ │ ├── ia_qbi_deduction.yaml │ │ │ │ │ │ │ ├── ia_reduced_tax.yaml │ │ │ │ │ │ │ ├── ia_regular_tax_indiv.yaml │ │ │ │ │ │ │ ├── ia_regular_tax_joint.yaml │ │ │ │ │ │ │ ├── ia_reportable_social_security.yaml │ │ │ │ │ │ │ ├── ia_standard_deduction_indiv.yaml │ │ │ │ │ │ │ ├── ia_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── ia_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── ia_taxable_income_joint.yaml │ │ │ │ │ │ │ └── ia_withheld_income_tax.yaml │ │ │ │ │ ├── id │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── grocery │ │ │ │ │ │ │ │ ├── eligible │ │ │ │ │ │ │ │ │ ├── id_grocery_credit_eligible.yaml │ │ │ │ │ │ │ │ │ └── id_grocery_credit_qualified_months.yaml │ │ │ │ │ │ │ │ ├── id_grocery_credit.yaml │ │ │ │ │ │ │ │ ├── id_grocery_credit_aged.yaml │ │ │ │ │ │ │ │ ├── id_grocery_credit_base.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── id_2022_rebate.yaml │ │ │ │ │ │ │ ├── id_2022_rebate_floor.yaml │ │ │ │ │ │ │ ├── id_aged_or_disabled_credit.yaml │ │ │ │ │ │ │ ├── id_aged_or_disabled_credit_eligible_person.yaml │ │ │ │ │ │ │ ├── id_ctc.yaml │ │ │ │ │ │ │ └── id_special_season_rebate.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── household_and_dependent_care │ │ │ │ │ │ │ │ ├── id_cdcc_limit.yaml │ │ │ │ │ │ │ │ └── id_household_and_dependent_care_expense_deduction.yaml │ │ │ │ │ │ │ ├── id_capital_gains_deduction.yaml │ │ │ │ │ │ │ └── retirement_benefits │ │ │ │ │ │ │ │ ├── id_retirement_benefits_deduction.yaml │ │ │ │ │ │ │ │ └── id_retirement_benefits_eligible_person.yaml │ │ │ │ │ │ │ ├── id_deductions.yaml │ │ │ │ │ │ │ ├── id_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── id_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── id_income_tax_liable.yaml │ │ │ │ │ │ │ ├── id_itemized_deductions.yaml │ │ │ │ │ │ │ ├── id_salt_deduction.yaml │ │ │ │ │ │ │ ├── id_taxable_income.yaml │ │ │ │ │ │ │ ├── id_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── other_taxes │ │ │ │ │ │ │ └── pbf │ │ │ │ │ │ │ │ ├── id_pbf.yaml │ │ │ │ │ │ │ │ ├── id_pbf_liable.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── id_aged_or_disabled_deduction.yaml │ │ │ │ │ │ │ └── id_aged_or_disabled_deduction_eligible_person.yaml │ │ │ │ │ ├── il │ │ │ │ │ │ ├── dceo │ │ │ │ │ │ │ └── liheap │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── il_liheap_eligible.yaml │ │ │ │ │ │ │ │ └── il_liheap_income_eligible.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ └── payment │ │ │ │ │ │ │ │ └── il_liheap_base_payment.yaml │ │ │ │ │ │ ├── dhs │ │ │ │ │ │ │ ├── aabd │ │ │ │ │ │ │ │ ├── asset │ │ │ │ │ │ │ │ │ ├── il_aabd_asset_value_eligible.yaml │ │ │ │ │ │ │ │ │ └── il_aabd_countable_vehicle_value.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── il_aabd_eligible_person.yaml │ │ │ │ │ │ │ │ │ ├── il_aabd_financial_eligible_person.yaml │ │ │ │ │ │ │ │ │ ├── il_aabd_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ │ └── il_aabd_non_financial_eligible_person.yaml │ │ │ │ │ │ │ │ ├── il_aabd_area.yaml │ │ │ │ │ │ │ │ ├── il_aabd_person.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ │ ├── il_aabd_child_care_expense_exemption.yaml │ │ │ │ │ │ │ │ │ └── il_aabd_earned_income_after_exemption_person.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ └── payment │ │ │ │ │ │ │ │ │ ├── il_aabd_personal_allowance.yaml │ │ │ │ │ │ │ │ │ ├── il_aabd_shelter_allowance.yaml │ │ │ │ │ │ │ │ │ ├── il_aabd_utility_allowance.yaml │ │ │ │ │ │ │ │ │ └── il_aabd_utility_allowance_person.yaml │ │ │ │ │ │ │ ├── ccap │ │ │ │ │ │ │ │ ├── il_ccap_eligible.yaml │ │ │ │ │ │ │ │ ├── il_ccap_eligible_child.yaml │ │ │ │ │ │ │ │ ├── il_ccap_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ ├── il_ccap_income_eligible.yaml │ │ │ │ │ │ │ │ └── il_ccap_parent_meets_working_requirements.yaml │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── assistance_unit │ │ │ │ │ │ │ │ ├── il_tanf_assistance_unit_fpg.yaml │ │ │ │ │ │ │ │ ├── il_tanf_assistance_unit_size.yaml │ │ │ │ │ │ │ │ ├── il_tanf_payment_eligible_child.yaml │ │ │ │ │ │ │ │ ├── il_tanf_payment_eligible_parent.yaml │ │ │ │ │ │ │ │ └── il_tanf_payment_eligible_requirements.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── il_income_eligible.yaml │ │ │ │ │ │ │ │ ├── il_tanf_demographic_eligible_person.yaml │ │ │ │ │ │ │ │ ├── il_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── il_tanf_eligible_child.yaml │ │ │ │ │ │ │ │ ├── il_tanf_immigration_status_eligible_person.yaml │ │ │ │ │ │ │ │ └── il_tanf_non_financial_eligible.yaml │ │ │ │ │ │ │ │ ├── il_tanf.yaml │ │ │ │ │ │ │ │ ├── il_tanf_payment_level_for_grant_calculation.yaml │ │ │ │ │ │ │ │ ├── il_tanf_payment_level_for_initial_eligibility.yaml │ │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ ├── il_tanf_childcare_deduction.yaml │ │ │ │ │ │ │ │ ├── il_tanf_initial_employment_deduction_fpg.yaml │ │ │ │ │ │ │ │ └── il_tanf_initial_employment_deduction_person.yaml │ │ │ │ │ │ │ │ ├── earned │ │ │ │ │ │ │ │ ├── il_tanf_countable_earned_income_for_grant_calculation.yaml │ │ │ │ │ │ │ │ ├── il_tanf_countable_earned_income_for_initial_eligibility.yaml │ │ │ │ │ │ │ │ └── il_tanf_countable_gross_earned_income.yaml │ │ │ │ │ │ │ │ └── unearned │ │ │ │ │ │ │ │ └── il_tanf_countable_unearned_income.yaml │ │ │ │ │ │ ├── hfs │ │ │ │ │ │ │ ├── bcc │ │ │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ │ │ ├── il_bcc_age_eligible.yaml │ │ │ │ │ │ │ │ │ ├── il_bcc_eligible.yaml │ │ │ │ │ │ │ │ │ └── il_bcc_insurance_eligible.yaml │ │ │ │ │ │ │ ├── fpp │ │ │ │ │ │ │ │ ├── il_fpp_income_eligible.yaml │ │ │ │ │ │ │ │ ├── il_fpp_income_level.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── hbwd │ │ │ │ │ │ │ │ ├── asset │ │ │ │ │ │ │ │ │ └── il_hbwd_countable_assets.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── il_hbwd_age_eligible.yaml │ │ │ │ │ │ │ │ │ ├── il_hbwd_asset_eligible.yaml │ │ │ │ │ │ │ │ │ ├── il_hbwd_disability_eligible.yaml │ │ │ │ │ │ │ │ │ ├── il_hbwd_eligible.yaml │ │ │ │ │ │ │ │ │ ├── il_hbwd_employment_eligible.yaml │ │ │ │ │ │ │ │ │ └── il_hbwd_income_eligible.yaml │ │ │ │ │ │ │ │ ├── il_hbwd_person.yaml │ │ │ │ │ │ │ │ ├── il_hbwd_premium.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ ├── il_hfs_immigration_status_eligible.yaml │ │ │ │ │ │ │ ├── mpe │ │ │ │ │ │ │ │ ├── il_mpe_eligible.yaml │ │ │ │ │ │ │ │ ├── il_mpe_income_eligible.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ │ └── smib │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ └── il_smib_eligible.yaml │ │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ │ ├── idoa │ │ │ │ │ │ │ └── bap │ │ │ │ │ │ │ │ └── il_bap_eligible.yaml │ │ │ │ │ │ ├── rta │ │ │ │ │ │ │ └── cta │ │ │ │ │ │ │ │ ├── free_ride │ │ │ │ │ │ │ │ ├── il_cta_free_ride_benefit.yaml │ │ │ │ │ │ │ │ ├── il_cta_free_ride_eligible.yaml │ │ │ │ │ │ │ │ └── il_cta_military_service_pass_eligible.yaml │ │ │ │ │ │ │ │ ├── il_cta_benefit.yaml │ │ │ │ │ │ │ │ └── reduce_fare │ │ │ │ │ │ │ │ ├── il_cta_children_reduced_fare_eligible.yaml │ │ │ │ │ │ │ │ ├── il_cta_reduced_fare_benefit.yaml │ │ │ │ │ │ │ │ ├── il_cta_reduced_fare_eligible.yaml │ │ │ │ │ │ │ │ ├── il_cta_rta_reduced_fare_eligible.yaml │ │ │ │ │ │ │ │ └── il_cta_student_reduced_fare_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── il_ctc.yaml │ │ │ │ │ │ │ ├── il_eitc.yaml │ │ │ │ │ │ │ ├── il_income_tax_rebate.yaml │ │ │ │ │ │ │ ├── il_income_tax_rebate_eligible.yaml │ │ │ │ │ │ │ ├── il_k12_education_expense_credit.yaml │ │ │ │ │ │ │ └── il_property_tax_credit.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── il_aged_blind_exemption.yaml │ │ │ │ │ │ │ ├── il_dependent_exemption.yaml │ │ │ │ │ │ │ ├── il_is_exemption_eligible.yaml │ │ │ │ │ │ │ ├── il_personal_exemption.yaml │ │ │ │ │ │ │ └── il_personal_exemption_eligibility_status.yaml │ │ │ │ │ │ │ ├── il_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── il_base_income.yaml │ │ │ │ │ │ │ └── il_taxable_income.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ └── taxes │ │ │ │ │ │ │ ├── il_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── il_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ └── il_use_tax.yaml │ │ │ │ │ ├── in │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ └── in_automatic_refund_rebate.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── in_additional_exemptions.yaml │ │ │ │ │ │ │ ├── in_adoption_exemption.yaml │ │ │ │ │ │ │ ├── in_aged_blind_exemptions.yaml │ │ │ │ │ │ │ ├── in_aged_low_agi_exemptions.yaml │ │ │ │ │ │ │ ├── in_base_exemptions.yaml │ │ │ │ │ │ │ ├── in_exemptions.yaml │ │ │ │ │ │ │ └── in_is_qualifying_dependent_child.yaml │ │ │ │ │ │ │ ├── in_agi.yaml │ │ │ │ │ │ │ ├── in_agi_tax.yaml │ │ │ │ │ │ │ ├── in_county_tax.yaml │ │ │ │ │ │ │ ├── in_eitc.yaml │ │ │ │ │ │ │ ├── in_eitc_eligible.yaml │ │ │ │ │ │ │ ├── in_homeowners_property_tax_deduction.yaml │ │ │ │ │ │ │ ├── in_military_service_deduction.yaml │ │ │ │ │ │ │ ├── in_nonpublic_school_deduction.yaml │ │ │ │ │ │ │ ├── in_refundable_credits.yaml │ │ │ │ │ │ │ ├── in_renters_deduction.yaml │ │ │ │ │ │ │ ├── in_unemployment_compensation_deduction.yaml │ │ │ │ │ │ │ ├── in_unified_elderly_tax_credit.yaml │ │ │ │ │ │ │ └── in_withheld_income_tax.yaml │ │ │ │ │ ├── ks │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── ks_disabled_veteran_exemptions_eligible_person.yaml.yaml │ │ │ │ │ │ │ └── ks_exemptions.yaml │ │ │ │ │ │ │ ├── ks_agi_subtractions.yaml │ │ │ │ │ │ │ ├── ks_cdcc.yaml │ │ │ │ │ │ │ ├── ks_exemptions.yaml │ │ │ │ │ │ │ ├── ks_fstc.yaml │ │ │ │ │ │ │ ├── ks_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ks_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ks_integration.yaml │ │ │ │ │ │ │ ├── ks_itemized_deductions.yaml │ │ │ │ │ │ │ ├── ks_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── ks_nonrefundable_eitc.yaml │ │ │ │ │ │ │ ├── ks_num_exemptions.yaml │ │ │ │ │ │ │ ├── ks_refundable_eitc.yaml │ │ │ │ │ │ │ ├── ks_standard_deduction.yaml │ │ │ │ │ │ │ ├── ks_taxable_income.yaml │ │ │ │ │ │ │ ├── ks_total_eitc.yaml │ │ │ │ │ │ │ └── ks_withheld_income_tax.yaml │ │ │ │ │ ├── ky │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── dependent_care_credit │ │ │ │ │ │ │ │ └── ky_cdcc.yaml │ │ │ │ │ │ │ ├── family_size_tax_credit │ │ │ │ │ │ │ │ ├── ky_family_size_tax_credit.yaml │ │ │ │ │ │ │ │ ├── ky_family_size_tax_credit_rate.yaml │ │ │ │ │ │ │ │ └── ky_modified_agi.yaml │ │ │ │ │ │ │ ├── personal │ │ │ │ │ │ │ │ ├── ky_aged_personal_tax_credits.yaml │ │ │ │ │ │ │ │ ├── ky_blind_personal_tax_credits.yaml │ │ │ │ │ │ │ │ ├── ky_military_personal_tax_credits.yaml │ │ │ │ │ │ │ │ ├── ky_personal_tax_credits.yaml │ │ │ │ │ │ │ │ ├── ky_personal_tax_credits_indiv.yaml │ │ │ │ │ │ │ │ └── ky_personal_tax_credits_joint.yaml │ │ │ │ │ │ │ └── tuition_tax │ │ │ │ │ │ │ │ ├── ky_tuition_tax_credit.yaml │ │ │ │ │ │ │ │ └── ky_tuition_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── ky_deductions_indiv.yaml │ │ │ │ │ │ │ ├── ky_deductions_joint.yaml │ │ │ │ │ │ │ ├── ky_itemized_deductions_indiv.yaml │ │ │ │ │ │ │ ├── ky_itemized_deductions_joint.yaml │ │ │ │ │ │ │ ├── ky_itemized_deductions_unit.yaml │ │ │ │ │ │ │ ├── ky_standard_deduction_indiv.yaml │ │ │ │ │ │ │ └── ky_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── exclusions │ │ │ │ │ │ │ └── pension_income │ │ │ │ │ │ │ │ ├── ky_pension_income_exclusion.yaml │ │ │ │ │ │ │ │ ├── ky_pension_income_exclusion_exemption_eligible.yaml │ │ │ │ │ │ │ │ └── ky_service_credits_percentage_pre_1998.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── ky_files_separately.yaml │ │ │ │ │ │ │ ├── ky_filing_status.yaml │ │ │ │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_indiv.yaml │ │ │ │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_joint.yaml │ │ │ │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_unit.yaml │ │ │ │ │ │ │ ├── ky_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ky_tax_unit_itemizes.yaml │ │ │ │ │ │ │ ├── ky_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── ky_taxable_income_joint.yaml │ │ │ │ │ │ │ └── ky_withheld_income_tax.yaml │ │ │ │ │ ├── la │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── la_non_refundable_cdcc.yaml │ │ │ │ │ │ │ │ └── la_refundable_cdcc.yaml │ │ │ │ │ │ │ ├── child_care_expense_credit │ │ │ │ │ │ │ │ ├── la_school_readiness_credit_eligible_child.yaml │ │ │ │ │ │ │ │ ├── la_school_readiness_credit_refundable_eligible.yaml │ │ │ │ │ │ │ │ └── la_school_readiness_tax_credit.yaml │ │ │ │ │ │ │ └── la_eitc.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── la_federal_tax_deduction.yaml │ │ │ │ │ │ │ ├── la_itemized_deductions.yaml │ │ │ │ │ │ │ └── la_standard_deduction.yaml │ │ │ │ │ │ │ ├── exempt_income │ │ │ │ │ │ │ ├── la_disability_income_exemption_person.yaml │ │ │ │ │ │ │ ├── la_retirement_exemption_person.yaml │ │ │ │ │ │ │ └── military_pay_exclusion │ │ │ │ │ │ │ │ └── la_military_pay_exclusion.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── personal │ │ │ │ │ │ │ │ ├── la_aged_exemption.yaml │ │ │ │ │ │ │ │ ├── la_blind_exemption_person.yaml │ │ │ │ │ │ │ │ ├── la_dependents_exemption.yaml │ │ │ │ │ │ │ │ ├── la_personal_exemption.yaml │ │ │ │ │ │ │ │ └── la_surviving_spouse_exemption.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── la_agi.yaml │ │ │ │ │ │ │ ├── la_agi_exempt_income.yaml │ │ │ │ │ │ │ ├── la_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── la_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── la_taxable_income.yaml │ │ │ │ │ │ │ └── la_withheld_income_tax.yaml │ │ │ │ │ ├── ma │ │ │ │ │ │ ├── doer │ │ │ │ │ │ │ └── liheap │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── ma_liheap_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_eligible_subsidized_housing.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_hecs_eligible.yaml │ │ │ │ │ │ │ │ └── ma_liheap_income_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_liheap.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_benefit_level.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_fpg.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_state_median_income_threshold.yaml │ │ │ │ │ │ │ │ ├── ma_liheap_utility_category.yaml │ │ │ │ │ │ │ │ └── payment │ │ │ │ │ │ │ │ ├── ma_liheap_hecs_payment.yaml │ │ │ │ │ │ │ │ └── ma_liheap_standard_payment.yaml │ │ │ │ │ │ ├── dot │ │ │ │ │ │ │ └── mbta │ │ │ │ │ │ │ │ ├── income_eligible_reduced_fares │ │ │ │ │ │ │ │ └── ma_mbta_income_eligible_reduced_fare_eligible.yaml │ │ │ │ │ │ │ │ ├── senior_charlie_card │ │ │ │ │ │ │ │ └── ma_mbta_senior_charlie_card_eligible.yaml │ │ │ │ │ │ │ │ └── tap_charlie_card │ │ │ │ │ │ │ │ └── ma_mbta_tap_charlie_card_eligible.yaml │ │ │ │ │ │ ├── dta │ │ │ │ │ │ │ ├── ssp │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── ma_maximum_state_supplement.yaml │ │ │ │ │ │ │ │ └── ma_state_supplement.yaml │ │ │ │ │ │ │ └── tcap │ │ │ │ │ │ │ │ ├── eaedc │ │ │ │ │ │ │ │ ├── dependent_care_deduction │ │ │ │ │ │ │ │ │ ├── ma_eaedc_dependent_care_deduction.yaml │ │ │ │ │ │ │ │ │ ├── ma_eaedc_dependent_care_deduction_person.yaml │ │ │ │ │ │ │ │ │ └── ma_eaedc_eligible_dependent.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── financial │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_assets_limit_eligible.yaml │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_financial_eligible.yaml │ │ │ │ │ │ │ │ │ │ └── ma_eaedc_income_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ma_eaedc_eligible.yaml │ │ │ │ │ │ │ │ │ └── non_financial │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_eligible_caretaker_family.yaml │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_eligible_disabled_dependent_present.yaml │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_eligible_disabled_head_or_spouse.yaml │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_eligible_elderly_present.yaml │ │ │ │ │ │ │ │ │ │ ├── ma_eaedc_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ │ │ └── ma_eaedc_non_financial_eligible.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ │ ├── ma_eaedc_countable_earned_income.yaml │ │ │ │ │ │ │ │ │ ├── ma_eaedc_earned_income_after_disregard_person.yaml │ │ │ │ │ │ │ │ │ └── ma_eaedc_standard_assistance.yaml │ │ │ │ │ │ │ │ ├── ma_eaedc.yaml │ │ │ │ │ │ │ │ └── ma_eaedc_if_tafdc_claimed.yaml │ │ │ │ │ │ │ │ └── tafdc │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── ma_tafdc_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_financial_eligible.yaml │ │ │ │ │ │ │ │ └── non_financial │ │ │ │ │ │ │ │ │ ├── ma_tafdc_age_limit.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_dependent_criteria_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_eligible_dependent.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_non_financial_eligible.yaml │ │ │ │ │ │ │ │ │ └── ma_tafdc_pregnancy_eligible.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ │ ├── ma_tafdc_child_support_deduction.yaml │ │ │ │ │ │ │ │ │ └── ma_tafdc_dependent_care_deduction_person.yaml │ │ │ │ │ │ │ │ ├── earned │ │ │ │ │ │ │ │ │ ├── ma_tafdc_countable_earned_income.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_earned_income_after_deductions.yaml │ │ │ │ │ │ │ │ │ ├── ma_tafdc_full_earned_income_disregard_eligible.yaml │ │ │ │ │ │ │ │ │ └── ma_tafdc_partially_disregarded_earned_income.yaml │ │ │ │ │ │ │ │ └── unearned │ │ │ │ │ │ │ │ │ └── ma_tafdc_countable_unearned_income.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_clothing_allowance.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_eligible_infant.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_exceeds_eaedc.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_if_claimed.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_infant_benefit.yaml │ │ │ │ │ │ │ │ ├── ma_tafdc_payment_standard.yaml │ │ │ │ │ │ │ │ └── ma_tafdc_potential_main_benefit.yaml │ │ │ │ │ │ ├── eec │ │ │ │ │ │ │ └── ccfa │ │ │ │ │ │ │ │ ├── copay │ │ │ │ │ │ │ │ ├── ma_ccfa_base_copay.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_total_copay.yaml │ │ │ │ │ │ │ │ └── ma_ccsp_copay_level.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── ma_ccfa_activity_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_asset_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_eligible.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_eligible_child.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_immigration_status_eligible.yaml │ │ │ │ │ │ │ │ └── ma_ccfa_income_eligible.yaml │ │ │ │ │ │ │ │ ├── enum_variables │ │ │ │ │ │ │ │ └── ma_ccfa_child_age_category.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_fpg.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_maximum_benefit_amount.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_region.yaml │ │ │ │ │ │ │ │ └── reimbursement │ │ │ │ │ │ │ │ ├── ma_ccfa_center_based_early_education_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_center_based_school_age_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_family_child_care_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_head_start_partner_and_kindergarten_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_informal_child_care_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_maximum_reimbursement.yaml │ │ │ │ │ │ │ │ ├── ma_ccfa_reimbursement_ratio.yaml │ │ │ │ │ │ │ │ └── ma_ccfa_uncapped_daily_payment.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── adjusted_gross_income │ │ │ │ │ │ │ ├── ma_part_a_agi.yaml │ │ │ │ │ │ │ └── ma_part_b_agi.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── ma_child_and_family_credit.yaml │ │ │ │ │ │ │ ├── ma_child_and_family_credit_or_dependent_care_credit.yaml │ │ │ │ │ │ │ ├── ma_covid_19_essential_employee_premium_pay_program.yaml │ │ │ │ │ │ │ ├── ma_dependent_care_credit.yaml │ │ │ │ │ │ │ ├── ma_eitc.yaml │ │ │ │ │ │ │ ├── ma_limited_income_tax_credit.yaml │ │ │ │ │ │ │ ├── ma_taxpayer_refund_rebate.yaml │ │ │ │ │ │ │ └── senior_circuit_breaker │ │ │ │ │ │ │ │ ├── ma_scb_total_income.yaml │ │ │ │ │ │ │ │ └── ma_senior_circuit_breaker.yaml │ │ │ │ │ │ │ ├── integration_ma.yaml │ │ │ │ │ │ │ ├── ma_income_tax_before_credits.yaml │ │ │ │ │ │ │ └── ma_withheld_income_tax.yaml │ │ │ │ │ ├── md │ │ │ │ │ │ ├── tanf │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── md_tanf_gross_earned_income_deduction.yaml │ │ │ │ │ │ │ │ └── md_tanf_maximum_benefit.yaml │ │ │ │ │ │ ├── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ │ ├── agi │ │ │ │ │ │ │ │ ├── md_agi.yaml │ │ │ │ │ │ │ │ ├── md_pension_subtraction_amount.yaml │ │ │ │ │ │ │ │ ├── md_subtractions.yaml │ │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ │ │ └── hundred_year │ │ │ │ │ │ │ │ │ ├── md_hundred_year_subtraction_eligible.yaml │ │ │ │ │ │ │ │ │ └── md_hundred_year_subtraction_person.yaml │ │ │ │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ │ │ └── md_capital_gains_surtax.yaml │ │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ │ │ ├── md_ctc.yaml │ │ │ │ │ │ │ │ │ └── md_ctc_eligible.yaml │ │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ │ ├── federal_eitc_without_age_minimum.yaml │ │ │ │ │ │ │ │ │ ├── md_married_or_has_child_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── md_married_or_has_child_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── md_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── md_qualifies_for_single_childless_eitc.yaml │ │ │ │ │ │ │ │ │ ├── md_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── md_unmarried_childless_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ └── md_unmarried_childless_refundable_eitc.yaml │ │ │ │ │ │ │ │ ├── md_cdcc.yaml │ │ │ │ │ │ │ │ ├── md_refundable_cdcc.yaml │ │ │ │ │ │ │ │ ├── poverty_line │ │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ │ ├── is_eligible_md_poverty_line_credit.yaml │ │ │ │ │ │ │ │ │ └── md_poverty_line_credit.yaml │ │ │ │ │ │ │ │ └── senior_tax │ │ │ │ │ │ │ │ │ ├── md_senior_tax_credit.yaml │ │ │ │ │ │ │ │ │ └── md_senior_tax_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ ├── md_itemized_deductions.yaml │ │ │ │ │ │ │ │ └── md_standard_deduction.yaml │ │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ │ ├── md_aged_dependent_exemption.yaml │ │ │ │ │ │ │ │ ├── md_aged_exemption.yaml │ │ │ │ │ │ │ │ ├── md_blind_exemption.yaml │ │ │ │ │ │ │ │ └── md_personal_exemption.yaml │ │ │ │ │ │ │ │ ├── integration_md.yaml │ │ │ │ │ │ │ │ ├── md_income_tax_before_credits.yaml │ │ │ │ │ │ │ │ ├── md_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ │ ├── md_local_income_tax_before_credits.yaml │ │ │ │ │ │ │ │ └── md_withheld_income_tax.yaml │ │ │ │ │ │ └── usda │ │ │ │ │ │ │ └── snap │ │ │ │ │ │ │ ├── md_snap_elderly_present.yaml │ │ │ │ │ │ │ └── md_snap_is_elderly.yaml │ │ │ │ │ ├── me │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── child_care_credit.yaml │ │ │ │ │ │ │ ├── me_dependent_exemption_credit.yaml │ │ │ │ │ │ │ ├── me_dependent_exemption_credit_amount_person.yaml │ │ │ │ │ │ │ ├── me_eitc.yaml │ │ │ │ │ │ │ ├── me_relief_rebate.yaml │ │ │ │ │ │ │ ├── me_relief_rebate_eligible.yaml │ │ │ │ │ │ │ ├── property_tax_fairness_credit │ │ │ │ │ │ │ │ ├── me_property_tax_fairness_credit.yaml │ │ │ │ │ │ │ │ ├── me_property_tax_fairness_credit_base_cap.yaml │ │ │ │ │ │ │ │ ├── me_property_tax_fairness_credit_benefit_base.yaml │ │ │ │ │ │ │ │ ├── me_property_tax_fairness_credit_countable_rent.yaml │ │ │ │ │ │ │ │ ├── me_property_tax_fairness_credit_eligible.yaml │ │ │ │ │ │ │ │ └── me_property_tax_fairness_credit_veterans_cap.yaml │ │ │ │ │ │ │ └── sales_tax_fairness_credit │ │ │ │ │ │ │ │ ├── me_sales_tax_fairness_credit.yaml │ │ │ │ │ │ │ │ └── me_sales_tax_fairness_credit_eligible.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── me_agi.yaml │ │ │ │ │ │ │ ├── me_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── me_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── me_withheld_income_tax.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── me_deduction_phaseout_percentage.yaml │ │ │ │ │ │ │ ├── me_deductions.yaml │ │ │ │ │ │ │ ├── me_itemized_deductions_pre_phaseout.yaml │ │ │ │ │ │ │ └── me_personal_exemption.yaml │ │ │ │ │ │ │ ├── me_agi_subtractions.yaml │ │ │ │ │ │ │ ├── me_pension_income_deduction.yaml │ │ │ │ │ │ │ └── me_taxable_income.yaml │ │ │ │ │ ├── mi │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── home_heating │ │ │ │ │ │ │ │ ├── alternate │ │ │ │ │ │ │ │ │ ├── mi_alternate_home_heating_credit.yaml │ │ │ │ │ │ │ │ │ └── mi_alternate_home_heating_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── mi_home_heating_credit.yaml │ │ │ │ │ │ │ │ ├── mi_home_heating_credit_eligible_rate.yaml │ │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ │ ├── mi_standard_allowance_heating_credit_eligible.yaml │ │ │ │ │ │ │ │ │ └── mi_standard_home_heating_credit.yaml │ │ │ │ │ │ │ ├── homestead_property_tax │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── mi_allowable_homestead_property_tax_credit.yaml │ │ │ │ │ │ │ │ ├── mi_homestead_property_tax_credit.yaml │ │ │ │ │ │ │ │ ├── mi_homestead_property_tax_credit_alternate_senior_amount.yaml │ │ │ │ │ │ │ │ ├── mi_homestead_property_tax_credit_countable_property_tax.yaml │ │ │ │ │ │ │ │ ├── mi_homestead_property_tax_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── mi_homestead_property_tax_credit_household_resource_exemption.yaml │ │ │ │ │ │ │ │ └── mi_homestead_property_tax_credit_pre_alternate_senior_amount.yaml │ │ │ │ │ │ │ └── mi_eitc.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── interest_dividends_capital_gains │ │ │ │ │ │ │ │ ├── mi_interest_dividends_capital_gains_deduction.yaml │ │ │ │ │ │ │ │ └── mi_interest_dividends_capital_gains_deduction_eligible.yaml │ │ │ │ │ │ │ ├── retirement │ │ │ │ │ │ │ │ ├── expanded │ │ │ │ │ │ │ │ │ ├── mi_expanded_retirement_benefits_deduction.yaml │ │ │ │ │ │ │ │ │ └── mi_expanded_retirement_benefits_deduction_eligible.yaml │ │ │ │ │ │ │ │ ├── tier_one │ │ │ │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_one_amount.yaml │ │ │ │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_one_eligible.yaml │ │ │ │ │ │ │ │ └── tier_three │ │ │ │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three.yaml │ │ │ │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_eligible.yaml │ │ │ │ │ │ │ │ │ └── ss_exempt │ │ │ │ │ │ │ │ │ ├── not_retired │ │ │ │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired.yaml │ │ │ │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people.yaml │ │ │ │ │ │ │ │ │ └── retired │ │ │ │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_ss_exempt_retired.yaml │ │ │ │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── tier_three │ │ │ │ │ │ │ │ ├── mi_standard_deduction_tier_three.yaml │ │ │ │ │ │ │ │ └── mi_standard_deduction_tier_three_eligible.yaml │ │ │ │ │ │ │ │ └── tier_two │ │ │ │ │ │ │ │ ├── mi_standard_deduction_tier_two.yaml │ │ │ │ │ │ │ │ ├── mi_standard_deduction_tier_two_eligible.yaml │ │ │ │ │ │ │ │ └── mi_standard_deduction_tier_two_increase_eligible_people.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── mi_disabled_exemption_eligible_person.yaml │ │ │ │ │ │ │ ├── mi_exemptions.yaml │ │ │ │ │ │ │ ├── mi_exemptions_count.yaml │ │ │ │ │ │ │ └── mi_personal_exemptions.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── mi_household_resources.yaml │ │ │ │ │ │ │ ├── mi_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── mi_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── mi_is_senior_for_tax.yaml │ │ │ │ │ │ │ ├── mi_taxable_income.yaml │ │ │ │ │ │ │ └── mi_withheld_income_tax.yaml │ │ │ │ │ ├── mn │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── mn_cdcc.yaml │ │ │ │ │ │ │ │ ├── mn_cdcc_dependent_count.yaml │ │ │ │ │ │ │ │ ├── mn_cdcc_eligible.yaml │ │ │ │ │ │ │ │ └── mn_cdcc_phase_out.yaml │ │ │ │ │ │ │ ├── mn_child_and_working_families_credits.yaml │ │ │ │ │ │ │ ├── mn_child_and_working_families_credits_ctc_eligible_child.yaml │ │ │ │ │ │ │ ├── mn_wfc.yaml │ │ │ │ │ │ │ └── mn_wfc_eligible.yaml │ │ │ │ │ │ │ ├── mn_amt.yaml │ │ │ │ │ │ │ ├── mn_amt_taxable_income.yaml │ │ │ │ │ │ │ ├── mn_basic_tax.yaml │ │ │ │ │ │ │ ├── mn_charity_subtraction.yaml │ │ │ │ │ │ │ ├── mn_elderly_disabled_subtraction.yaml │ │ │ │ │ │ │ ├── mn_exemptions.yaml │ │ │ │ │ │ │ ├── mn_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── mn_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── mn_integration.yaml │ │ │ │ │ │ │ ├── mn_itemized_deductions.yaml │ │ │ │ │ │ │ ├── mn_marriage_credit.yaml │ │ │ │ │ │ │ ├── mn_niit.yaml │ │ │ │ │ │ │ ├── mn_public_pension_subtraction.yaml │ │ │ │ │ │ │ ├── mn_social_security_subtraction.yaml │ │ │ │ │ │ │ ├── mn_standard_deduction.yaml │ │ │ │ │ │ │ ├── mn_taxable_income.yaml │ │ │ │ │ │ │ └── mn_withheld_income_tax.yaml │ │ │ │ │ ├── mo │ │ │ │ │ │ ├── dss │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ └── mo_tanf_income_limit.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── adjusted_gross_income │ │ │ │ │ │ │ │ └── mo_adjusted_gross_income.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ │ ├── property_tax │ │ │ │ │ │ │ │ │ ├── mo_property_tax_credit.yaml │ │ │ │ │ │ │ │ │ ├── mo_ptc_gross_income.yaml │ │ │ │ │ │ │ │ │ ├── mo_ptc_income_offset.yaml │ │ │ │ │ │ │ │ │ ├── mo_ptc_net_income.yaml │ │ │ │ │ │ │ │ │ └── mo_ptc_taxunit_eligible.yaml │ │ │ │ │ │ │ │ └── wftc │ │ │ │ │ │ │ │ │ └── mo_wftc.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ ├── mo_business_income_deduction.yaml │ │ │ │ │ │ │ │ ├── mo_federal_income_tax_deduction.yaml │ │ │ │ │ │ │ │ ├── mo_itemized_deductions.yaml │ │ │ │ │ │ │ │ └── mo_pension_and_ss_or_ssd_deduction │ │ │ │ │ │ │ │ │ ├── integration_tests │ │ │ │ │ │ │ │ │ └── mo_pension_and_ss_or_ssd.yaml │ │ │ │ │ │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction.yaml │ │ │ │ │ │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction_section_a.yaml │ │ │ │ │ │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction_section_b.yaml │ │ │ │ │ │ │ │ │ └── mo_pension_and_ss_or_ssd_deduction_section_c.yaml │ │ │ │ │ │ │ ├── income_tax │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── mo_income_tax_before_credits.yaml │ │ │ │ │ │ │ │ ├── mo_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ │ └── mo_income_tax_exempt.yaml │ │ │ │ │ │ │ ├── mo_withheld_income_tax.yaml │ │ │ │ │ │ │ ├── subtractions │ │ │ │ │ │ │ │ └── mo_qualified_health_insurance_premiums.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ │ ├── mo_net_state_income_taxes.yaml │ │ │ │ │ │ │ │ └── mo_taxable_income.yaml │ │ │ │ │ │ │ └── tax_sim │ │ │ │ │ │ │ ├── mo_adjusted_gross_income.yaml │ │ │ │ │ │ │ ├── mo_income_tax.yaml │ │ │ │ │ │ │ ├── mo_itemized_deductions.yaml │ │ │ │ │ │ │ ├── mo_taxable_income.yaml │ │ │ │ │ │ │ └── scenarios │ │ │ │ │ │ │ └── mo_income_tax_by_family_structure.yaml │ │ │ │ │ ├── ms │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── adjustments │ │ │ │ │ │ │ ├── ms_national_guard_or_reserve_pay_adjustment.yaml │ │ │ │ │ │ │ ├── ms_retirement_income_exemption.yaml │ │ │ │ │ │ │ └── ms_self_employment_adjustment.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── ms_cdcc.yaml │ │ │ │ │ │ │ │ └── ms_cdcc_eligible.yaml │ │ │ │ │ │ │ └── charitable_contribution │ │ │ │ │ │ │ │ └── ms_charitable_contributions_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── ms_itemized_deductions_indiv.yaml │ │ │ │ │ │ │ │ ├── ms_itemized_deductions_joint.yaml │ │ │ │ │ │ │ │ └── ms_real_estate_tax_deduction.yaml │ │ │ │ │ │ │ ├── ms_deductions_indiv.yaml │ │ │ │ │ │ │ ├── ms_deductions_joint.yaml │ │ │ │ │ │ │ ├── ms_tax_unit_itemizes.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── ms_standard_deduction_indiv.yaml │ │ │ │ │ │ │ │ └── ms_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── ms_aged_exemption.yaml │ │ │ │ │ │ │ ├── ms_blind_exemption.yaml │ │ │ │ │ │ │ ├── ms_dependents_exemption.yaml │ │ │ │ │ │ │ ├── ms_regular_exemption.yaml │ │ │ │ │ │ │ ├── ms_total_exemptions_indiv.yaml │ │ │ │ │ │ │ └── ms_total_exemptions_joint.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── ms_agi.yaml │ │ │ │ │ │ │ ├── ms_files_separately.yaml │ │ │ │ │ │ │ ├── ms_income_tax.yaml │ │ │ │ │ │ │ ├── ms_income_tax_before_credits_indiv.yaml │ │ │ │ │ │ │ ├── ms_income_tax_before_credits_joint.yaml │ │ │ │ │ │ │ ├── ms_income_tax_before_credits_unit.yaml │ │ │ │ │ │ │ ├── ms_pre_deductions_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── ms_prorate_fraction.yaml │ │ │ │ │ │ │ ├── ms_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── ms_taxable_income_joint.yaml │ │ │ │ │ │ │ └── ms_withheld_income_tax.yaml │ │ │ │ │ ├── mt │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── capital_gains │ │ │ │ │ │ │ ├── mt_capital_gains_tax_applicable_threshold_indiv.yaml │ │ │ │ │ │ │ ├── mt_capital_gains_tax_applicable_threshold_joint.yaml │ │ │ │ │ │ │ ├── mt_capital_gains_tax_indiv.yaml │ │ │ │ │ │ │ └── mt_capital_gains_tax_joint.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── elderly_homeowner_or_renter │ │ │ │ │ │ │ │ ├── mt_elderly_homeowner_or_renter_credit.yaml │ │ │ │ │ │ │ │ ├── mt_elderly_homeowner_or_renter_credit_eligible.yaml │ │ │ │ │ │ │ │ └── mt_elderly_homeowner_or_renter_credit_net_household_income.yaml │ │ │ │ │ │ │ ├── mt_capital_gain_credit.yaml │ │ │ │ │ │ │ ├── mt_eitc.yaml │ │ │ │ │ │ │ └── rebate │ │ │ │ │ │ │ │ ├── mt_income_tax_rebate.yaml │ │ │ │ │ │ │ │ └── mt_property_tax_rebate.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── mt_child_dependent_care_expense_deduction.yaml │ │ │ │ │ │ │ │ └── mt_child_dependent_care_expense_deduction_eligible_children.yaml │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── federal_itemization │ │ │ │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_for_federal_itemization.yaml │ │ │ │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_for_federal_itemization_indiv.yaml │ │ │ │ │ │ │ │ │ ├── mt_itemized_deductions_for_federal_itemization_indiv.yaml │ │ │ │ │ │ │ │ │ └── mt_itemized_deductions_for_federal_itemization_joint.yaml │ │ │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_indiv.yaml │ │ │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_unit.yaml │ │ │ │ │ │ │ │ ├── mt_itemized_deductions_indiv.yaml │ │ │ │ │ │ │ │ ├── mt_itemized_deductions_joint.yaml │ │ │ │ │ │ │ │ ├── mt_medical_expense_deduction_indiv.yaml │ │ │ │ │ │ │ │ ├── mt_medical_expense_deduction_joint.yaml │ │ │ │ │ │ │ │ └── mt_salt_deduction.yaml │ │ │ │ │ │ │ ├── mt_deductions_indiv.yaml │ │ │ │ │ │ │ ├── mt_tax_unit_itemizes.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── mt_standard_deduction_indiv.yaml │ │ │ │ │ │ │ │ └── mt_standard_deduction_joint.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── mt_aged_exemption_eligible_person.yaml │ │ │ │ │ │ │ ├── mt_dependent_exemptions_person.yaml │ │ │ │ │ │ │ ├── mt_interest_exemption.yaml │ │ │ │ │ │ │ ├── mt_interest_exemption_eligible.yaml │ │ │ │ │ │ │ ├── mt_interest_exemption_person.yaml │ │ │ │ │ │ │ ├── mt_personal_exemptions_indiv.yaml │ │ │ │ │ │ │ └── mt_personal_exemptions_joint.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── mt_agi_indiv.yaml │ │ │ │ │ │ │ ├── mt_applicable_ald_deductions.yaml │ │ │ │ │ │ │ ├── mt_files_separately.yaml │ │ │ │ │ │ │ ├── mt_income_tax.yaml │ │ │ │ │ │ │ ├── mt_income_tax_before_refundable_credits_indiv.yaml │ │ │ │ │ │ │ ├── mt_income_tax_before_refundable_credits_joint.yaml │ │ │ │ │ │ │ ├── mt_income_tax_before_refundable_credits_unit.yaml │ │ │ │ │ │ │ ├── mt_income_tax_indiv.yaml │ │ │ │ │ │ │ ├── mt_income_tax_joint.yaml │ │ │ │ │ │ │ ├── mt_pre_dependent_exemption_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── mt_regular_income_tax_indiv.yaml │ │ │ │ │ │ │ ├── mt_regular_income_tax_joint.yaml │ │ │ │ │ │ │ ├── mt_taxable_income_indiv.yaml │ │ │ │ │ │ │ ├── mt_taxable_income_joint.yaml │ │ │ │ │ │ │ ├── mt_taxable_social_security.yaml │ │ │ │ │ │ │ ├── mt_withheld_income_tax.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── mt_disability_income_exclusion_eligible_person.yaml │ │ │ │ │ │ │ ├── mt_disability_income_exclusion_person.yaml │ │ │ │ │ │ │ ├── mt_old_age_subtraction.yaml │ │ │ │ │ │ │ └── mt_tuition_subtraction_person.yaml │ │ │ │ │ ├── nc │ │ │ │ │ │ ├── ncdhhs │ │ │ │ │ │ │ ├── scca │ │ │ │ │ │ │ │ ├── entry │ │ │ │ │ │ │ │ │ ├── nc_scca_entry_eligible.yaml │ │ │ │ │ │ │ │ │ └── nc_scca_entry_income_eligible.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── nc_scca_age_group.yaml │ │ │ │ │ │ │ │ ├── nc_scca_child_age_eligible.yaml │ │ │ │ │ │ │ │ ├── nc_scca_countable_income.yaml │ │ │ │ │ │ │ │ ├── nc_scca_fpg_rate.yaml │ │ │ │ │ │ │ │ ├── nc_scca_is_school_age.yaml │ │ │ │ │ │ │ │ ├── nc_scca_market_rate.yaml │ │ │ │ │ │ │ │ ├── nc_scca_maximum_payment.yaml │ │ │ │ │ │ │ │ └── nc_scca_parent_fee.yaml │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── nc_demographic_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_countable_earned_income.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_countable_gross_unearned_income.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_household_size.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ ├── nc_tanf_need_standard.yaml │ │ │ │ │ │ │ │ └── nc_tanf_reduced_need_standard.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ │ └── nc_ctc.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ │ │ ├── nc_military_retirement_deduction.yaml │ │ │ │ │ │ │ │ │ └── nc_military_retirement_deduction_eligible.yaml │ │ │ │ │ │ │ │ ├── nc_child_deduction.yaml │ │ │ │ │ │ │ │ ├── nc_itemized_deductions.yaml │ │ │ │ │ │ │ │ ├── nc_standard_deduction.yaml │ │ │ │ │ │ │ │ └── nc_standard_or_itemized_deductions.yaml │ │ │ │ │ │ │ ├── nc_income_tax.yaml │ │ │ │ │ │ │ ├── nc_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ └── nc_withheld_income_tax.yaml │ │ │ │ │ │ │ └── nc_use_tax.yaml │ │ │ │ │ ├── nd │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── nd_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── nd_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── nd_integration.yaml │ │ │ │ │ │ │ ├── nd_ltcg_subtraction.yaml │ │ │ │ │ │ │ ├── nd_mpc.yaml │ │ │ │ │ │ │ ├── nd_qdiv_subtraction.yaml │ │ │ │ │ │ │ ├── nd_rtrc.yaml │ │ │ │ │ │ │ ├── nd_taxable_income.yaml │ │ │ │ │ │ │ └── nd_withheld_income_tax.yaml │ │ │ │ │ ├── ne │ │ │ │ │ │ ├── dhhs │ │ │ │ │ │ │ └── child_care_subsidy │ │ │ │ │ │ │ │ ├── ne_child_care_subsidy.yaml │ │ │ │ │ │ │ │ ├── ne_child_care_subsidy_eligible.yaml │ │ │ │ │ │ │ │ ├── ne_child_care_subsidy_eligible_child.yaml │ │ │ │ │ │ │ │ └── ne_child_care_subsidy_income_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── adjusted_gross_income │ │ │ │ │ │ │ ├── ne_military_retirement_subtraction.yaml │ │ │ │ │ │ │ └── ne_social_security_subtraction.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── ne_cdcc_nonrefundable.yaml │ │ │ │ │ │ │ │ ├── ne_cdcc_refundable.yaml │ │ │ │ │ │ │ │ └── ne_cdcc_refundable_eligible.yaml │ │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ │ │ ├── ne_refundable_ctc.yaml │ │ │ │ │ │ │ │ │ ├── ne_refundable_ctc_eligible_child.yaml │ │ │ │ │ │ │ │ │ ├── ne_refundable_ctc_income_eligible.yaml │ │ │ │ │ │ │ │ │ └── ne_refundable_ctc_total_household_income.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ └── ne_eitc.yaml │ │ │ │ │ │ │ ├── ne_elderly_disabled_credit.yaml │ │ │ │ │ │ │ └── school_readiness │ │ │ │ │ │ │ │ └── ne_school_readiness_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── ne_itemized_deductions.yaml │ │ │ │ │ │ │ └── ne_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── ne_exemptions.yaml │ │ │ │ │ │ │ ├── ne_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ne_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ne_integration.yaml │ │ │ │ │ │ │ ├── ne_taxable_income.yaml │ │ │ │ │ │ │ └── ne_withheld_income_tax.yaml │ │ │ │ │ ├── nh │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ └── nh_education_tax_credit.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── nh_base_exemption.yaml │ │ │ │ │ │ │ ├── nh_blind_exemption.yaml │ │ │ │ │ │ │ ├── nh_disabled_exemption.yaml │ │ │ │ │ │ │ └── nh_old_age_exemption.yaml │ │ │ │ │ │ │ └── nh_income_tax_before_refundable_credits.yaml │ │ │ │ │ ├── nj │ │ │ │ │ │ ├── njdhs │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── nj_tanf_countable_gross_unearned_income.yaml │ │ │ │ │ │ │ │ ├── nj_tanf_maximum_allowable_income.yaml │ │ │ │ │ │ │ │ ├── nj_tanf_maximum_benefit.yaml │ │ │ │ │ │ │ │ └── nj_tanf_resources_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ └── nj_cdcc.yaml │ │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ │ │ ├── nj_ctc.yaml │ │ │ │ │ │ │ │ └── nj_ctc_eligible.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ ├── nj_childless_eitc_age_eligible.yaml │ │ │ │ │ │ │ │ ├── nj_eitc.yaml │ │ │ │ │ │ │ │ └── nj_eitc_income_eligible.yaml │ │ │ │ │ │ │ └── property_tax_credit │ │ │ │ │ │ │ │ ├── nj_property_tax_credit.yaml │ │ │ │ │ │ │ │ └── nj_property_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── nj_medical_expense_deduction.yaml │ │ │ │ │ │ │ └── property_tax │ │ │ │ │ │ │ │ ├── nj_potential_property_tax_deduction.yaml │ │ │ │ │ │ │ │ ├── nj_property_tax_deduction.yaml │ │ │ │ │ │ │ │ ├── nj_property_tax_deduction_eligible.yaml │ │ │ │ │ │ │ │ └── nj_taking_property_tax_deduction.yaml │ │ │ │ │ │ │ ├── exclusions │ │ │ │ │ │ │ ├── nj_other_retirement_income_exclusion.yaml │ │ │ │ │ │ │ ├── nj_other_retirement_special_exclusion.yaml │ │ │ │ │ │ │ └── nj_pension_retirement_exclusion.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── nj_blind_or_disabled_exemption.yaml │ │ │ │ │ │ │ ├── nj_dependents_attending_college_exemption.yaml │ │ │ │ │ │ │ ├── nj_dependents_exemption.yaml │ │ │ │ │ │ │ ├── nj_regular_exemption.yaml │ │ │ │ │ │ │ └── nj_senior_exemption.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── nj_main_income_tax.yaml │ │ │ │ │ │ │ ├── nj_income_tax.yaml │ │ │ │ │ │ │ ├── nj_withheld_income_tax.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ ├── nj_agi.yaml │ │ │ │ │ │ │ ├── nj_taxable_income.yaml │ │ │ │ │ │ │ └── nj_taxable_income_before_property_tax_deduction.yaml │ │ │ │ │ ├── nm │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── nm_cdcc.yaml │ │ │ │ │ │ │ │ ├── nm_cdcc_eligible.yaml │ │ │ │ │ │ │ │ ├── nm_cdcc_eligible_child.yaml │ │ │ │ │ │ │ │ └── nm_cdcc_max_amount.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ ├── nm_eitc.yaml │ │ │ │ │ │ │ │ ├── nm_eitc_demographic_eligible.yaml │ │ │ │ │ │ │ │ └── nm_eitc_eligible.yaml │ │ │ │ │ │ │ ├── nm_ctc.yaml │ │ │ │ │ │ │ └── nm_medical_expense_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── certain_dependents │ │ │ │ │ │ │ │ ├── nm_deduction_for_certain_dependents.yaml │ │ │ │ │ │ │ │ └── nm_deduction_for_certain_dependents_eligible.yaml │ │ │ │ │ │ │ ├── nm_deductions.yaml │ │ │ │ │ │ │ ├── nm_itemized_deductions.yaml │ │ │ │ │ │ │ ├── nm_medical_care_expense_deduction.yaml │ │ │ │ │ │ │ ├── nm_net_capital_gains_deduction.yaml │ │ │ │ │ │ │ └── nm_salt_add_back.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── nm_armed_forces_retirement_pay_exemption_person.yaml │ │ │ │ │ │ │ ├── nm_blind_and_aged_exemption.yaml │ │ │ │ │ │ │ ├── nm_hundred_year_exemption.yaml │ │ │ │ │ │ │ ├── nm_low_and_middle_income_exemption.yaml │ │ │ │ │ │ │ ├── nm_medical_expense_exemption.yaml │ │ │ │ │ │ │ └── nm_social_security_income_exemption.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── nm_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── nm_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── nm_taxable_income.yaml │ │ │ │ │ │ │ ├── nm_withheld_income_tax.yaml │ │ │ │ │ │ │ └── rebates │ │ │ │ │ │ │ ├── 2021_income │ │ │ │ │ │ │ ├── nm_2021_income_rebate.yaml │ │ │ │ │ │ │ ├── nm_additional_2021_income_rebate.yaml │ │ │ │ │ │ │ └── nm_supplemental_2021_income_rebate.yaml │ │ │ │ │ │ │ ├── low_income_comprehensive │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── nm_low_income_comprehensive_tax_rebate.yaml │ │ │ │ │ │ │ └── nm_low_income_comprehensive_tax_rebate_exemptions.yaml │ │ │ │ │ │ │ ├── nm_property_tax_rebate.yaml │ │ │ │ │ │ │ └── nm_property_tax_rebate_eligibility.yaml │ │ │ │ │ ├── ny │ │ │ │ │ │ ├── nyserda │ │ │ │ │ │ │ └── drive_clean_rebate.yaml │ │ │ │ │ │ ├── otda │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── ny_tanf.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_countable_earned_income.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_countable_gross_unearned_income.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_grant_standard.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ ├── ny_tanf_need_standard.yaml │ │ │ │ │ │ │ │ └── ny_tanf_resources_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── ny_additional_ctc.yaml │ │ │ │ │ │ │ ├── ny_cdcc.yaml │ │ │ │ │ │ │ ├── ny_college_tuition_credit.yaml │ │ │ │ │ │ │ ├── ny_college_tuition_credit_eligible.yaml │ │ │ │ │ │ │ ├── ny_ctc.yaml │ │ │ │ │ │ │ ├── ny_ctc_post_2024.yaml │ │ │ │ │ │ │ ├── ny_ctc_post_2024_base.yaml │ │ │ │ │ │ │ ├── ny_ctc_post_2024_eligible.yaml │ │ │ │ │ │ │ ├── ny_ctc_post_2024_phase_out.yaml │ │ │ │ │ │ │ ├── ny_ctc_pre_2024.yaml │ │ │ │ │ │ │ ├── ny_eitc.yaml │ │ │ │ │ │ │ ├── ny_geothermal_energy_systems_credit.yaml │ │ │ │ │ │ │ ├── ny_household_credit.yaml │ │ │ │ │ │ │ ├── ny_inflation_refund_credit.yaml │ │ │ │ │ │ │ ├── ny_real_property_tax_credit.yaml │ │ │ │ │ │ │ ├── ny_solar_energy_systems_equipment_credit.yaml │ │ │ │ │ │ │ ├── ny_supplemental_eitc.yaml │ │ │ │ │ │ │ └── nyc_cdcc_share_qualifying_childcare_expenses.yaml │ │ │ │ │ │ │ ├── ny_allowable_college_tuition_expenses.yaml │ │ │ │ │ │ │ ├── ny_income_tax.yaml │ │ │ │ │ │ │ ├── ny_pension_exclusion.yaml │ │ │ │ │ │ │ ├── ny_supplemental_tax.yaml │ │ │ │ │ │ │ ├── ny_withheld_income_tax.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_higher_incremental_reduction.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_incremental_reduction.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_lower_incremental_reduction.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_reduction.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_reduction_applies.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_reduction_based_on_charitable_deduction.yaml │ │ │ │ │ │ │ │ ├── ny_itemized_deductions_reduction_based_on_charitable_deduction_applies.yaml │ │ │ │ │ │ │ │ └── ny_itemizes.yaml │ │ │ │ │ │ │ ├── ny_college_tuition_deduction.yaml │ │ │ │ │ │ │ └── ny_deductions.yaml │ │ │ │ │ │ │ ├── ny_exemptions.yaml │ │ │ │ │ │ │ └── ny_taxable_income.yaml │ │ │ │ │ ├── oh │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── joint_filing_credit │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── oh_joint_filing_credit.yaml │ │ │ │ │ │ │ │ ├── oh_joint_filing_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── oh_joint_filing_credit_qualifying_income.yaml │ │ │ │ │ │ │ │ └── oh_tax_before_joint_filing_credit.yaml │ │ │ │ │ │ │ ├── lump_sum_distribution │ │ │ │ │ │ │ │ ├── oh_lump_sum_distribution_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── oh_lump_sum_distribution_credit_eligible_person.yaml │ │ │ │ │ │ │ │ └── oh_lump_sum_distribution_credit_person.yaml │ │ │ │ │ │ │ ├── oh_adoption_credit_person.yaml │ │ │ │ │ │ │ ├── oh_cdcc.yaml │ │ │ │ │ │ │ ├── oh_eitc.yaml │ │ │ │ │ │ │ ├── oh_exemption_credits.yaml │ │ │ │ │ │ │ ├── oh_non_public_school_credits.yaml │ │ │ │ │ │ │ ├── oh_senior_citizen_credit.yaml │ │ │ │ │ │ │ └── retirement_income │ │ │ │ │ │ │ │ ├── lump_sum │ │ │ │ │ │ │ │ ├── oh_lump_sum_retirement_credit.yaml │ │ │ │ │ │ │ │ └── oh_lump_sum_retirement_credit_eligible.yaml │ │ │ │ │ │ │ │ ├── oh_retirement_credit.yaml │ │ │ │ │ │ │ │ └── pension_based │ │ │ │ │ │ │ │ ├── oh_pension_based_retirement_income_credit.yaml │ │ │ │ │ │ │ │ └── oh_pension_based_retirement_income_credit_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── medical_expense │ │ │ │ │ │ │ │ ├── insured_unreimbursed_expenses │ │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ │ ├── oh_insured_unreimbursed_medical_care_expense_amount.yaml │ │ │ │ │ │ │ │ │ ├── oh_insured_unreimbursed_medical_care_expenses.yaml │ │ │ │ │ │ │ │ │ └── oh_insured_unreimbursed_medical_care_expenses_person.yaml │ │ │ │ │ │ │ │ └── oh_uninsured_unreimbursed_medical_care_expenses.yaml │ │ │ │ │ │ │ ├── oh_529_plan_deduction.yaml │ │ │ │ │ │ │ └── oh_529_plan_deduction_person.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── personal │ │ │ │ │ │ │ │ ├── oh_personal_exemptions.yaml │ │ │ │ │ │ │ │ └── oh_personal_exemptions_eligible.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── oh_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── oh_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── oh_taxable_income.yaml │ │ │ │ │ │ │ └── oh_withheld_income_tax.yaml │ │ │ │ │ ├── ok │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ └── eitc │ │ │ │ │ │ │ │ ├── federal_credit │ │ │ │ │ │ │ │ ├── ok_federal_eitc.yaml │ │ │ │ │ │ │ │ ├── ok_federal_eitc_demographic_eligible.yaml │ │ │ │ │ │ │ │ ├── ok_federal_eitc_eligible.yaml │ │ │ │ │ │ │ │ ├── ok_federal_eitc_investment_income_eligible.yaml │ │ │ │ │ │ │ │ ├── ok_federal_eitc_maximum.yaml │ │ │ │ │ │ │ │ └── ok_federal_eitc_reduction.yaml │ │ │ │ │ │ │ │ └── ok_eitc.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── ok_agi_subtractions.yaml │ │ │ │ │ │ │ ├── ok_child_care_child_tax_credit.yaml │ │ │ │ │ │ │ ├── ok_count_exemptions.yaml │ │ │ │ │ │ │ ├── ok_exemptions.yaml │ │ │ │ │ │ │ ├── ok_gross_income.yaml │ │ │ │ │ │ │ ├── ok_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ok_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ok_integration.yaml │ │ │ │ │ │ │ ├── ok_itemized_deductions.yaml │ │ │ │ │ │ │ ├── ok_military_retirement_exclusion.yaml │ │ │ │ │ │ │ ├── ok_pension_subtraction.yaml │ │ │ │ │ │ │ ├── ok_ptc.yaml │ │ │ │ │ │ │ ├── ok_standard_deduction.yaml │ │ │ │ │ │ │ ├── ok_stc.yaml │ │ │ │ │ │ │ ├── ok_taxable_income.yaml │ │ │ │ │ │ │ ├── ok_use_tax.yaml │ │ │ │ │ │ │ └── ok_withheld_income_tax.yaml │ │ │ │ │ ├── or │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── exemption │ │ │ │ │ │ │ │ ├── or_disabled_child_dependent_exemptions.yaml │ │ │ │ │ │ │ │ ├── or_exemption_credit.yaml │ │ │ │ │ │ │ │ ├── or_regular_exemptions.yaml │ │ │ │ │ │ │ │ └── or_severely_disabled_exemptions.yaml │ │ │ │ │ │ │ ├── or_ctc.yaml │ │ │ │ │ │ │ ├── or_eitc.yaml │ │ │ │ │ │ │ ├── or_kicker.yaml │ │ │ │ │ │ │ ├── retirement_income │ │ │ │ │ │ │ │ ├── or_retirement_credit.yaml │ │ │ │ │ │ │ │ └── or_retirement_credit_eligible_person.yaml │ │ │ │ │ │ │ └── wfhdc │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── or_cdcc_relevent_expenses.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_eligibility_category.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_eligible.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_employment_eligible.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_has_qualified_individual_eligible.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_household_income.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_household_size_eligible.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_income_category.yaml │ │ │ │ │ │ │ │ ├── or_wfhdc_income_eligible.yaml │ │ │ │ │ │ │ │ └── or_working_family_household_and_dependent_care_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── itemized │ │ │ │ │ │ │ │ └── or_itemized_deductions.yaml │ │ │ │ │ │ │ ├── or_deductions.yaml │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ └── or_standard_deduction.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── or_income_tax_after_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── or_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── or_taxable_income.yaml │ │ │ │ │ │ │ ├── or_withheld_income_tax.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ └── or_federal_tax_liability_subtraction.yaml │ │ │ │ │ ├── pa │ │ │ │ │ │ ├── tanf │ │ │ │ │ │ │ ├── cash_assistance │ │ │ │ │ │ │ │ └── pa_tanf_age_eligible.yaml │ │ │ │ │ │ │ └── pregnancy_eligibility │ │ │ │ │ │ │ │ └── pa_tanf_pregnancy_eligibility.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── pa_cdcc.yaml │ │ │ │ │ │ │ └── pa_eitc.yaml │ │ │ │ │ │ │ ├── dhs │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ └── eligibility │ │ │ │ │ │ │ │ └── pa_tanf_resources_eligible.yaml │ │ │ │ │ │ │ ├── forgiveness │ │ │ │ │ │ │ ├── pa_income_tax_after_forgiveness.yaml │ │ │ │ │ │ │ ├── pa_income_tax_before_forgiveness.yaml │ │ │ │ │ │ │ ├── pa_tax_forgiveness_amount.yaml │ │ │ │ │ │ │ └── pa_tax_forgiveness_rate.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── pa_income_tax.yaml │ │ │ │ │ │ │ ├── pa_use_tax.yaml │ │ │ │ │ │ │ └── pa_withheld_income_tax.yaml │ │ │ │ │ ├── ri │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── agi │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ │ ├── ri_tuition_saving_program_contribution_subtraction.yaml │ │ │ │ │ │ │ │ ├── social_security │ │ │ │ │ │ │ │ ├── ri_social_security_modification.yaml │ │ │ │ │ │ │ │ └── ri_social_security_modification_eligible.yaml │ │ │ │ │ │ │ │ └── taxable_retirement_income │ │ │ │ │ │ │ │ ├── ri_retirement_income_subtraction.yaml │ │ │ │ │ │ │ │ └── ri_retirement_income_subtraction_eligible.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ └── ri_cdcc.yaml │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ └── ri_eitc.yaml │ │ │ │ │ │ │ ├── property_tax │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── ri_property_tax_credit.yaml │ │ │ │ │ │ │ │ └── ri_property_tax_credit_eligible.yaml │ │ │ │ │ │ │ └── rebates │ │ │ │ │ │ │ │ ├── ri_child_tax_rebate.yaml │ │ │ │ │ │ │ │ └── ri_child_tax_rebate_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── standard │ │ │ │ │ │ │ │ ├── ri_standard_deduction.yaml │ │ │ │ │ │ │ │ └── ri_standard_deduction_applicable_percentage.yaml │ │ │ │ │ │ │ ├── exemption │ │ │ │ │ │ │ └── ri_exemptions.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── ri_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── ri_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── ri_taxable_income.yaml │ │ │ │ │ │ │ └── ri_withheld_income_tax.yaml │ │ │ │ │ ├── sc │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ └── sc_eitc.yaml │ │ │ │ │ │ │ ├── sc_2022_rebate.yaml │ │ │ │ │ │ │ ├── sc_cdcc.yaml │ │ │ │ │ │ │ └── two_wage_earner │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── sc_gross_earned_income.yaml │ │ │ │ │ │ │ │ └── sc_two_wage_earner_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── net_captial_gain │ │ │ │ │ │ │ │ └── sc_net_capital_gain_deduction.yaml │ │ │ │ │ │ │ └── sc_young_child_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── sc_dependent_exemption.yaml │ │ │ │ │ │ │ └── sc_senior_exemption.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── sc_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── sc_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── sc_state_tax_addback.yaml │ │ │ │ │ │ │ ├── sc_taxable_income.yaml │ │ │ │ │ │ │ ├── sc_withheld_income_tax.yaml │ │ │ │ │ │ │ └── subtractions │ │ │ │ │ │ │ ├── military_retirement │ │ │ │ │ │ │ ├── sc_military_deduction_indv.yaml │ │ │ │ │ │ │ └── sc_military_deduction_survivors.yaml │ │ │ │ │ │ │ └── retirement │ │ │ │ │ │ │ ├── sc_retirement_cap.yaml │ │ │ │ │ │ │ ├── sc_retirement_deduction_indv.yaml │ │ │ │ │ │ │ └── sc_retirement_deduction_survivors.yaml │ │ │ │ │ ├── state_filing_status_if_married_filing_separately_on_same_return.yaml │ │ │ │ │ ├── tax │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── state_agi.yaml │ │ │ │ │ │ │ ├── state_income_tax.yaml │ │ │ │ │ │ │ ├── state_itemized_deductions.yaml │ │ │ │ │ │ │ └── state_standard_deduction.yaml │ │ │ │ │ ├── tx │ │ │ │ │ │ ├── dart │ │ │ │ │ │ │ ├── free_ride │ │ │ │ │ │ │ │ ├── tx_dart_free_ride_benefit.yaml │ │ │ │ │ │ │ │ └── tx_dart_free_ride_eligible_young_child.yaml │ │ │ │ │ │ │ ├── reduced_fare │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ │ ├── tx_dart_reduced_fare_age_eligible.yaml │ │ │ │ │ │ │ │ │ ├── tx_dart_reduced_fare_eligible.yaml │ │ │ │ │ │ │ │ │ └── tx_dart_reduced_fare_program_eligible.yaml │ │ │ │ │ │ │ │ └── tx_dart_reduced_fare_benefit.yaml │ │ │ │ │ │ │ └── tx_dart_benefit_person.yaml │ │ │ │ │ │ ├── dta │ │ │ │ │ │ │ └── csfp │ │ │ │ │ │ │ │ └── tx_dta_csfp_income_eligible.yaml │ │ │ │ │ │ ├── fpp │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── tx_fpp_age_eligible.yaml │ │ │ │ │ │ │ ├── tx_fpp_benefit.yaml │ │ │ │ │ │ │ ├── tx_fpp_income_eligible.yaml │ │ │ │ │ │ │ └── tx_fpp_income_limit.yaml │ │ │ │ │ │ ├── tanf │ │ │ │ │ │ │ ├── assistance_unit │ │ │ │ │ │ │ │ ├── tx_tanf_age_eligible_child.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_assistance_unit_size.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_categorically_eligible_person.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_eligible_child.yaml │ │ │ │ │ │ │ │ └── tx_tanf_eligible_parent.yaml │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── tx_tanf_budgetary_needs.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_budgetary_needs_test.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_caretaker_type.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_eligible.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_recognizable_needs_test.yaml │ │ │ │ │ │ │ │ └── tx_tanf_resources_eligible.yaml │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ │ │ ├── tx_tanf_child_support_deduction.yaml │ │ │ │ │ │ │ │ │ └── tx_tanf_dependent_care_deduction.yaml │ │ │ │ │ │ │ │ ├── earned │ │ │ │ │ │ │ │ │ ├── tx_tanf_countable_earned_income.yaml │ │ │ │ │ │ │ │ │ └── tx_tanf_earned_income_after_disregard_person.yaml │ │ │ │ │ │ │ │ ├── tx_tanf_income_for_budgetary_needs_test.yaml │ │ │ │ │ │ │ │ └── unearned │ │ │ │ │ │ │ │ │ └── tx_tanf_countable_unearned_income.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── ottanf │ │ │ │ │ │ │ │ ├── tx_ottanf.yaml │ │ │ │ │ │ │ │ ├── tx_ottanf_crisis_criteria.yaml │ │ │ │ │ │ │ │ └── tx_ottanf_eligible.yaml │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── tx_tanf_countable_resources.yaml │ │ │ │ │ │ │ ├── tx_regular_tanf.yaml │ │ │ │ │ │ │ ├── tx_tanf.yaml │ │ │ │ │ │ │ └── tx_tanf_payment_standard.yaml │ │ │ │ │ │ ├── twc │ │ │ │ │ │ │ └── ccs │ │ │ │ │ │ │ │ ├── copay │ │ │ │ │ │ │ │ └── tx_ccs_copay.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── tx_ccs_asset_eligible.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_eligible.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_eligible_child.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_income_eligible.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_work_exempt.yaml │ │ │ │ │ │ │ │ └── tx_ccs_work_requirement_eligible.yaml │ │ │ │ │ │ │ │ ├── payment │ │ │ │ │ │ │ │ └── tx_ccs_payment_rate.yaml │ │ │ │ │ │ │ │ ├── tx_ccs.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_child_age_category.yaml │ │ │ │ │ │ │ │ ├── tx_ccs_maximum_payment.yaml │ │ │ │ │ │ │ │ └── tx_ccs_workforce_board_region.yaml │ │ │ │ │ │ └── uct │ │ │ │ │ │ │ └── lifeline │ │ │ │ │ │ │ └── integration.yaml │ │ │ │ │ ├── ut │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── military_retirement_credit │ │ │ │ │ │ │ │ ├── ut_military_retirement_credit.yaml │ │ │ │ │ │ │ │ └── ut_military_retirement_credit_eligible.yaml │ │ │ │ │ │ │ ├── retirement_credit │ │ │ │ │ │ │ │ ├── ut_claims_retirement_credit.yaml │ │ │ │ │ │ │ │ └── ut_retirement_credit_max.yaml │ │ │ │ │ │ │ ├── ss_benefits_credit │ │ │ │ │ │ │ │ ├── ut_ss_benefits_credit.yaml │ │ │ │ │ │ │ │ └── ut_ss_benefits_credit_max.yaml │ │ │ │ │ │ │ ├── ut_at_home_parent_credit.yaml │ │ │ │ │ │ │ ├── ut_at_home_parent_credit_agi_eligible.yaml │ │ │ │ │ │ │ ├── ut_at_home_parent_credit_earned_income_eligible_person.yaml │ │ │ │ │ │ │ ├── ut_ctc.yaml │ │ │ │ │ │ │ ├── ut_eitc.yaml │ │ │ │ │ │ │ ├── ut_federal_deductions_for_taxpayer_credit.yaml │ │ │ │ │ │ │ ├── ut_personal_exemption.yaml │ │ │ │ │ │ │ ├── ut_personal_exemption_additional_dependent_eligible.yaml │ │ │ │ │ │ │ ├── ut_taxpayer_credit.yaml │ │ │ │ │ │ │ ├── ut_taxpayer_credit_max.yaml │ │ │ │ │ │ │ └── ut_taxpayer_credit_reduction.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── taxable_income │ │ │ │ │ │ │ ├── ut_taxable_income.yaml │ │ │ │ │ │ │ └── ut_total_income.yaml │ │ │ │ │ │ │ ├── ut_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── ut_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── ut_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ └── ut_withheld_income_tax.yaml │ │ │ │ │ ├── va │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── eitc │ │ │ │ │ │ │ │ ├── refundability_calculation │ │ │ │ │ │ │ │ │ ├── va_claims_refundable_eitc.yaml │ │ │ │ │ │ │ │ │ ├── va_income_tax_if_claiming_non-refundable_eitc.yaml │ │ │ │ │ │ │ │ │ └── va_income_tax_if_claiming_refundable_eitc.yaml │ │ │ │ │ │ │ │ ├── va_eitc.yaml │ │ │ │ │ │ │ │ ├── va_eitc_person.yaml │ │ │ │ │ │ │ │ ├── va_non_refundable_eitc.yaml │ │ │ │ │ │ │ │ ├── va_non_refundable_eitc_if_claimed.yaml │ │ │ │ │ │ │ │ └── va_refundable_eitc_if_claimed.yaml │ │ │ │ │ │ │ └── low_income_credit │ │ │ │ │ │ │ │ ├── va_low_income_tax_credit.yaml │ │ │ │ │ │ │ │ ├── va_low_income_tax_credit_agi_eligible.yaml │ │ │ │ │ │ │ │ └── va_low_income_tax_credit_eligible.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── cdcc_expense │ │ │ │ │ │ │ │ ├── va_child_dependent_care_deduction_cdcc_limit.yaml │ │ │ │ │ │ │ │ └── va_child_dependent_care_expense_deduction.yaml │ │ │ │ │ │ │ ├── va_capped_state_and_local_sales_or_income_tax.yaml │ │ │ │ │ │ │ ├── va_deductions.yaml │ │ │ │ │ │ │ ├── va_itemized_deductions.yaml │ │ │ │ │ │ │ ├── va_reduced_itemized_deductions.yaml │ │ │ │ │ │ │ └── va_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── va_aged_blind_exemption_person.yaml │ │ │ │ │ │ │ └── va_personal_exemption_person.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── spouse_tax_adjustment │ │ │ │ │ │ │ ├── va_agi_less_exemptions_person.yaml │ │ │ │ │ │ │ ├── va_spouse_tax_adjustment.yaml │ │ │ │ │ │ │ └── va_spouse_tax_adjustment_eligible.yaml │ │ │ │ │ │ │ ├── subtractions │ │ │ │ │ │ │ ├── va_age_deduction.yaml │ │ │ │ │ │ │ ├── va_disability_income_subtraction.yaml │ │ │ │ │ │ │ ├── va_federal_state_employees_subtraction.yaml │ │ │ │ │ │ │ ├── va_military_basic_pay_subtraction.yaml │ │ │ │ │ │ │ ├── va_military_benefit_subtraction.yaml │ │ │ │ │ │ │ └── va_national_guard_subtraction.yaml │ │ │ │ │ │ │ ├── va_agi_person.yaml │ │ │ │ │ │ │ ├── va_agi_share.yaml │ │ │ │ │ │ │ ├── va_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── va_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── va_must_file.yaml │ │ │ │ │ │ │ ├── va_rebate.yaml │ │ │ │ │ │ │ ├── va_taxable_income.yaml │ │ │ │ │ │ │ └── va_withheld_income_tax.yaml │ │ │ │ │ ├── vt │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── agi │ │ │ │ │ │ │ ├── subtractions │ │ │ │ │ │ │ │ ├── vt_csrs_retirement_pay_exclusion.yaml │ │ │ │ │ │ │ │ ├── vt_medical_expense_deductions.yaml │ │ │ │ │ │ │ │ ├── vt_military_retirement_pay_exclusion.yaml │ │ │ │ │ │ │ │ ├── vt_retirement_income_exemption.yaml │ │ │ │ │ │ │ │ └── vt_retirement_income_exemption_eligible.yaml │ │ │ │ │ │ │ ├── vt_capital_gains_exclusion.yaml │ │ │ │ │ │ │ └── vt_percentage_capital_gains_exclusion.yaml │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ │ ├── vt_cdcc.yaml │ │ │ │ │ │ │ │ ├── vt_low_income_cdcc.yaml │ │ │ │ │ │ │ │ └── vt_low_income_cdcc_eligible.yaml │ │ │ │ │ │ │ ├── rent │ │ │ │ │ │ │ │ ├── vt_renter_credit.yaml │ │ │ │ │ │ │ │ ├── vt_renter_credit_countable_tax_exempt_ss.yaml │ │ │ │ │ │ │ │ └── vt_renter_credit_integration.yaml │ │ │ │ │ │ │ ├── vt_charitable_contributions_credit.yaml │ │ │ │ │ │ │ ├── vt_ctc.yaml │ │ │ │ │ │ │ ├── vt_elderly_or_disabled_credit.yaml │ │ │ │ │ │ │ └── vt_veteran_tax_credit.yaml │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ └── vt_standard_deduction.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ └── vt_personal_exemptions.yaml │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── vt_amt.yaml │ │ │ │ │ │ │ ├── vt_child_care_contributions.yaml │ │ │ │ │ │ │ ├── vt_eitc.yaml │ │ │ │ │ │ │ ├── vt_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ │ ├── vt_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── vt_normal_income_tax.yaml │ │ │ │ │ │ │ ├── vt_taxable_income.yaml │ │ │ │ │ │ │ └── vt_withheld_income_tax.yaml │ │ │ │ │ ├── wa │ │ │ │ │ │ ├── dshs │ │ │ │ │ │ │ └── tanf │ │ │ │ │ │ │ │ ├── benefit │ │ │ │ │ │ │ │ └── wa_tanf_payment_standard.yaml │ │ │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ │ ├── wa_tanf_eligible.yaml │ │ │ │ │ │ │ │ └── wa_tanf_income_eligible.yaml │ │ │ │ │ │ │ │ ├── income │ │ │ │ │ │ │ │ └── wa_tanf_countable_earned_income.yaml │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── wa_tanf.yaml │ │ │ │ │ │ │ │ └── wa_tanf_resources_eligible.yaml │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ └── wa_working_families_tax_credit.yaml │ │ │ │ │ │ │ ├── wa_capital_gains_tax.yaml │ │ │ │ │ │ │ └── wa_income_tax.yaml │ │ │ │ │ ├── wi │ │ │ │ │ │ └── tax │ │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── wi_additional_exemption.yaml │ │ │ │ │ │ │ ├── wi_base_exemption.yaml │ │ │ │ │ │ │ ├── wi_capital_gain_loss_addition.yaml │ │ │ │ │ │ │ ├── wi_capital_gain_loss_subtration.yaml │ │ │ │ │ │ │ ├── wi_capital_loss.yaml │ │ │ │ │ │ │ ├── wi_childcare_expense_credit.yaml │ │ │ │ │ │ │ ├── wi_childcare_expense_subtraction.yaml │ │ │ │ │ │ │ ├── wi_earned_income_credit.yaml │ │ │ │ │ │ │ ├── wi_exemption.yaml │ │ │ │ │ │ │ ├── wi_homestead_credit.yaml │ │ │ │ │ │ │ ├── wi_homestead_eligible.yaml │ │ │ │ │ │ │ ├── wi_homestead_income.yaml │ │ │ │ │ │ │ ├── wi_homestead_property_tax.yaml │ │ │ │ │ │ │ ├── wi_income_tax_before_credits.yaml │ │ │ │ │ │ │ ├── wi_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ │ ├── wi_itemized_deduction_credit.yaml │ │ │ │ │ │ │ ├── wi_married_couple_credit.yaml │ │ │ │ │ │ │ ├── wi_property_tax_credit.yaml │ │ │ │ │ │ │ ├── wi_retirement_income_subtraction.yaml │ │ │ │ │ │ │ ├── wi_retirement_income_subtraction_agi_eligible.yaml │ │ │ │ │ │ │ ├── wi_standard_deduction.yaml │ │ │ │ │ │ │ ├── wi_taxable_income.yaml │ │ │ │ │ │ │ ├── wi_unemployment_compensation_subtraction.yaml │ │ │ │ │ │ │ └── wi_withheld_income_tax.yaml │ │ │ │ │ └── wv │ │ │ │ │ │ └── tax │ │ │ │ │ │ └── income │ │ │ │ │ │ ├── credits │ │ │ │ │ │ ├── cdcc │ │ │ │ │ │ │ └── wv_cdcc.yaml │ │ │ │ │ │ ├── heptc │ │ │ │ │ │ │ ├── wv_homestead_excess_property_tax_credit.yaml │ │ │ │ │ │ │ └── wv_homestead_excess_property_tax_credit_eligible.yaml │ │ │ │ │ │ ├── liftc │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── wv_low_income_family_tax_credit.yaml │ │ │ │ │ │ │ ├── wv_low_income_family_tax_credit_eligible.yaml │ │ │ │ │ │ │ └── wv_low_income_family_tax_credit_fpg.yaml │ │ │ │ │ │ └── sctc │ │ │ │ │ │ │ ├── wv_sctc.yaml │ │ │ │ │ │ │ └── wv_sctc_eligible.yaml │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ ├── homestead_exemption │ │ │ │ │ │ │ └── wv_homestead_exemption.yaml │ │ │ │ │ │ └── wv_personal_exemption.yaml │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ ├── subtractions │ │ │ │ │ │ ├── low_income_earned_income │ │ │ │ │ │ │ ├── wv_low_income_earned_income_exclusion.yaml │ │ │ │ │ │ │ └── wv_low_income_earned_income_exclusion_eligible.yaml │ │ │ │ │ │ ├── senior_citizen_disability │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ ├── wv_senior_citizen_disability_deduction_eligible_person.yaml │ │ │ │ │ │ │ └── wv_senior_citizen_disability_deduction_person.yaml │ │ │ │ │ │ ├── social_security │ │ │ │ │ │ │ ├── wv_social_security_benefits_subtraction_eligible.yaml │ │ │ │ │ │ │ └── wv_social_security_benefits_subtraction_person.yaml │ │ │ │ │ │ └── wv_public_pension_subtraction_person.yaml │ │ │ │ │ │ ├── wv_income_tax_before_non_refundable_credits.yaml │ │ │ │ │ │ ├── wv_income_tax_before_refundable_credits.yaml │ │ │ │ │ │ ├── wv_taxable_income.yaml │ │ │ │ │ │ └── wv_withheld_income_tax.yaml │ │ │ │ ├── tax │ │ │ │ │ └── income │ │ │ │ │ │ └── integration.yaml │ │ │ │ ├── territories │ │ │ │ │ └── pr │ │ │ │ │ │ ├── tax │ │ │ │ │ │ └── income │ │ │ │ │ │ │ ├── credits │ │ │ │ │ │ │ ├── earned_income │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── pr_earned_income_credit.yaml │ │ │ │ │ │ │ │ └── pr_earned_income_credit_eligible_person.yaml │ │ │ │ │ │ │ ├── low_income │ │ │ │ │ │ │ │ ├── pr_compensatory_low_income_credit.yaml │ │ │ │ │ │ │ │ ├── pr_low_income_credit.yaml │ │ │ │ │ │ │ │ ├── pr_low_income_credit_eligible.yaml │ │ │ │ │ │ │ │ └── pr_low_income_credit_eligible_person.yaml │ │ │ │ │ │ │ └── refundable_ctc │ │ │ │ │ │ │ │ └── pr_refundable_ctc.yaml │ │ │ │ │ │ │ ├── gradual_adjustment │ │ │ │ │ │ │ ├── pr_gradual_adjustment_amount.yaml │ │ │ │ │ │ │ └── pr_gradual_adjustment_eligible.yaml │ │ │ │ │ │ │ ├── pr_agi.yaml │ │ │ │ │ │ │ ├── pr_agi_person.yaml │ │ │ │ │ │ │ ├── pr_normal_tax.yaml │ │ │ │ │ │ │ ├── pr_tax_before_credits.yaml │ │ │ │ │ │ │ └── taxable_income │ │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── education │ │ │ │ │ │ │ │ ├── pr_education_deduction.yaml │ │ │ │ │ │ │ │ └── pr_education_deduction_beneficiary_count.yaml │ │ │ │ │ │ │ ├── pr_casualty_loss_deduction.yaml │ │ │ │ │ │ │ ├── pr_charitable_deduction.yaml │ │ │ │ │ │ │ ├── pr_medical_expense_deduction.yaml │ │ │ │ │ │ │ ├── pr_mortgage_deduction.yaml │ │ │ │ │ │ │ └── retirement │ │ │ │ │ │ │ │ ├── pr_retirement_deduction.yaml │ │ │ │ │ │ │ │ └── pr_retirement_deduction_eligibility.yaml │ │ │ │ │ │ │ ├── exemptions │ │ │ │ │ │ │ ├── dependent │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── pr_dependents_exemption.yaml │ │ │ │ │ │ │ │ ├── pr_eligible_dependent_for_exemption.yaml │ │ │ │ │ │ │ │ ├── pr_exemptions_is_eligible_nonstudent.yaml │ │ │ │ │ │ │ │ └── pr_exemptions_is_eligible_student.yaml │ │ │ │ │ │ │ ├── pr_personal_exemption.yaml │ │ │ │ │ │ │ └── pr_veteran_exemption.yaml │ │ │ │ │ │ │ └── pr_net_taxable_income.yaml │ │ │ │ │ │ └── tax_unit_dependent │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ └── pr_is_tax_unit_dependent.yaml │ │ │ │ ├── test_categorical_eligibility_vectorization.yaml │ │ │ │ └── usda │ │ │ │ │ ├── csfp │ │ │ │ │ ├── commodity_supplemental_food_program.yaml │ │ │ │ │ ├── commodity_supplemental_food_program_eligible.yaml │ │ │ │ │ └── integration.yaml │ │ │ │ │ ├── has_all_usda_elderly_disabled.yaml │ │ │ │ │ ├── has_usda_elderly_disabled.yaml │ │ │ │ │ ├── is_usda_disabled.yaml │ │ │ │ │ ├── is_usda_elderly.yaml │ │ │ │ │ ├── school_meals │ │ │ │ │ ├── free_school_meals.yaml │ │ │ │ │ ├── integration.yaml │ │ │ │ │ ├── meets_school_meal_categorical_eligibility.yaml │ │ │ │ │ ├── reduced_price_school_meals.yaml │ │ │ │ │ ├── school_meal_countable_income.yaml │ │ │ │ │ ├── school_meal_daily_subsidy.yaml │ │ │ │ │ ├── school_meal_fpg_ratio.yaml │ │ │ │ │ ├── school_meal_net_subsidy.yaml │ │ │ │ │ ├── school_meal_paid_daily_subsidy.yaml │ │ │ │ │ └── school_meal_tier.yaml │ │ │ │ │ ├── snap │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── is_snap_eligible.yaml │ │ │ │ │ │ ├── meets_snap_asset_test.yaml │ │ │ │ │ │ ├── meets_snap_categorical_eligibility.yaml │ │ │ │ │ │ ├── meets_snap_gross_income_test.yaml │ │ │ │ │ │ ├── meets_snap_net_income_test.yaml │ │ │ │ │ │ ├── student │ │ │ │ │ │ │ ├── is_snap_higher_ed_student.yaml │ │ │ │ │ │ │ ├── is_snap_ineligible_student.yaml │ │ │ │ │ │ │ ├── meets_snap_parent_exception.yaml │ │ │ │ │ │ │ └── meets_snap_work_exception.yaml │ │ │ │ │ │ └── work_requirements │ │ │ │ │ │ │ ├── meets_snap_abawd_work_requirements.yaml │ │ │ │ │ │ │ ├── meets_snap_general_work_requirements.yaml │ │ │ │ │ │ │ └── meets_snap_work_requirements.yaml │ │ │ │ │ ├── income │ │ │ │ │ │ ├── deductions │ │ │ │ │ │ │ ├── self_employment_income │ │ │ │ │ │ │ │ ├── integration.yaml │ │ │ │ │ │ │ │ ├── snap_self_employment_expense_deduction.yaml │ │ │ │ │ │ │ │ └── snap_self_employment_income_after_expense_deduction.yaml │ │ │ │ │ │ │ ├── snap_child_support_deduction.yaml │ │ │ │ │ │ │ ├── snap_earned_income_deduction.yaml │ │ │ │ │ │ │ ├── snap_excess_medical_expense_deduction.yaml │ │ │ │ │ │ │ ├── snap_excess_shelter_expense_deduction.yaml │ │ │ │ │ │ │ ├── snap_individual_utility_allowance.yaml │ │ │ │ │ │ │ ├── snap_limited_utility_allowance.yaml │ │ │ │ │ │ │ ├── snap_standard_deduction.yaml │ │ │ │ │ │ │ ├── snap_standard_utility_allowance.yaml │ │ │ │ │ │ │ ├── snap_state_using_standard_utility_allowance.yaml │ │ │ │ │ │ │ └── snap_utility_allowance_type.yaml │ │ │ │ │ │ ├── federal_work_study_income_exclusion.yaml │ │ │ │ │ │ ├── gross │ │ │ │ │ │ │ ├── snap_child_support_gross_income_deduction.yaml │ │ │ │ │ │ │ └── snap_gross_income_fpg_ratio.yaml │ │ │ │ │ │ ├── snap_countable_earner.yaml │ │ │ │ │ │ ├── snap_excluded_child_earner.yaml │ │ │ │ │ │ ├── snap_fpg.yaml │ │ │ │ │ │ ├── snap_net_income.yaml │ │ │ │ │ │ └── snap_net_income_fpg_ratio.yaml │ │ │ │ │ ├── integration.yaml │ │ │ │ │ ├── snap.yaml │ │ │ │ │ ├── snap_emergency_allotment.yaml │ │ │ │ │ ├── snap_expected_contribution.yaml │ │ │ │ │ ├── snap_min_allotment.yaml │ │ │ │ │ ├── snap_net_income.yaml │ │ │ │ │ ├── snap_net_income_pre_shelter.yaml │ │ │ │ │ ├── snap_normal_allotment.yaml │ │ │ │ │ ├── snap_unit.yaml │ │ │ │ │ ├── snap_utility_region.yaml │ │ │ │ │ ├── snap_utility_region_str.yaml │ │ │ │ │ └── takes_up_snap_if_eligible.yaml │ │ │ │ │ └── wic │ │ │ │ │ ├── integration.yaml │ │ │ │ │ ├── is_wic_at_nutritional_risk.yaml │ │ │ │ │ ├── is_wic_eligible.yaml │ │ │ │ │ ├── meets_wic_categorical_eligibility.yaml │ │ │ │ │ ├── meets_wic_income_test.yaml │ │ │ │ │ ├── wic.yaml │ │ │ │ │ ├── wic_category.yaml │ │ │ │ │ └── wic_fpg.yaml │ │ │ ├── household │ │ │ │ ├── child_index.yaml │ │ │ │ ├── cliff_evaluated.yaml │ │ │ │ ├── cliff_gap.yaml │ │ │ │ ├── demographic │ │ │ │ │ ├── age │ │ │ │ │ │ ├── age_group.yaml │ │ │ │ │ │ ├── birth_year.yaml │ │ │ │ │ │ ├── is_adult.yaml │ │ │ │ │ │ ├── is_child.yaml │ │ │ │ │ │ ├── is_senior.yaml │ │ │ │ │ │ ├── is_wa_adult.yaml │ │ │ │ │ │ └── monthly_age.yaml │ │ │ │ │ ├── geographic │ │ │ │ │ │ ├── county │ │ │ │ │ │ │ ├── county.yaml │ │ │ │ │ │ │ └── first_county_in_state.yaml │ │ │ │ │ │ ├── in_nyc.yaml │ │ │ │ │ │ ├── lives_in_vehicle.yaml │ │ │ │ │ │ ├── state_group.yaml │ │ │ │ │ │ └── state_name.yaml │ │ │ │ │ ├── household │ │ │ │ │ │ └── county_str.yaml │ │ │ │ │ ├── person │ │ │ │ │ │ ├── immigration_status.yaml │ │ │ │ │ │ ├── is_child_dependent.yaml │ │ │ │ │ │ ├── is_citizen_or_legal_immigrant.yaml │ │ │ │ │ │ ├── is_in_k12_school.yaml │ │ │ │ │ │ ├── is_married.yaml │ │ │ │ │ │ ├── is_mother.yaml │ │ │ │ │ │ ├── is_veteran.yaml │ │ │ │ │ │ └── share_of_care_and_support_costs_paid_by_tax_filer.yaml │ │ │ │ │ ├── spm_unit │ │ │ │ │ │ ├── spm_unit_is_married.yaml │ │ │ │ │ │ └── spm_unit_size.yaml │ │ │ │ │ └── tax_unit │ │ │ │ │ │ ├── age_head.yaml │ │ │ │ │ │ ├── age_spouse.yaml │ │ │ │ │ │ ├── blind_head.yaml │ │ │ │ │ │ ├── blind_spouse.yaml │ │ │ │ │ │ ├── disabled_head.yaml │ │ │ │ │ │ ├── disabled_spouse.yaml │ │ │ │ │ │ ├── disabled_tax_unit_head_or_spouse.yaml │ │ │ │ │ │ ├── filing_status.yaml │ │ │ │ │ │ ├── greater_age_head_spouse.yaml │ │ │ │ │ │ ├── head_is_dependent_elsewhere.yaml │ │ │ │ │ │ ├── head_is_disabled.yaml │ │ │ │ │ │ ├── head_of_household_eligible.yaml │ │ │ │ │ │ ├── is_tax_unit_head.yaml │ │ │ │ │ │ ├── is_tax_unit_head_or_spouse.yaml │ │ │ │ │ │ ├── is_tax_unit_spouse.yaml │ │ │ │ │ │ ├── military_disabled_head.yaml │ │ │ │ │ │ ├── military_disabled_spouse.yaml │ │ │ │ │ │ ├── older_spouse_birth_year.yaml │ │ │ │ │ │ ├── spouse_is_dependent_elsewhere.yaml │ │ │ │ │ │ ├── spouse_is_disabled.yaml │ │ │ │ │ │ ├── spouse_separate_tax_unit_size.yaml │ │ │ │ │ │ ├── surviving_spouse_eligible.yaml │ │ │ │ │ │ ├── tax_unit_children.yaml │ │ │ │ │ │ ├── tax_unit_dependents.yaml │ │ │ │ │ │ ├── tax_unit_grandparents.yaml │ │ │ │ │ │ ├── tax_unit_married.yaml │ │ │ │ │ │ ├── tax_unit_parents.yaml │ │ │ │ │ │ └── taxpayer_has_itin.yaml │ │ │ │ ├── expense │ │ │ │ │ ├── childcare │ │ │ │ │ │ ├── care_expenses.yaml │ │ │ │ │ │ ├── childcare_expenses.yaml │ │ │ │ │ │ ├── childcare_hours_per_week.yaml │ │ │ │ │ │ ├── pre_subsidy_care_expenses.yaml │ │ │ │ │ │ └── tax_unit_childcare_expenses.yaml │ │ │ │ │ ├── has_phone_expense.yaml │ │ │ │ │ ├── health │ │ │ │ │ │ └── has_bcc_qualifying_coverage.yaml │ │ │ │ │ ├── housing │ │ │ │ │ │ ├── rent.yaml │ │ │ │ │ │ └── rents.yaml │ │ │ │ │ ├── spm_unit_payroll_tax.yaml │ │ │ │ │ └── utilities │ │ │ │ │ │ └── electricity_expense.yaml │ │ │ │ ├── healthcare_benefit_value.yaml │ │ │ │ ├── household_health_benefits.yaml │ │ │ │ ├── household_income_decile.yaml │ │ │ │ ├── household_net_income_including_health_benefits.yaml │ │ │ │ ├── household_state_income_tax.yaml │ │ │ │ ├── income │ │ │ │ │ ├── equiv_household_net_income.yaml │ │ │ │ │ ├── household │ │ │ │ │ │ └── household_state_income_tax.yaml │ │ │ │ │ ├── person │ │ │ │ │ │ ├── market_income.yaml │ │ │ │ │ │ └── weekly_hours_worked.yaml │ │ │ │ │ ├── spm_unit │ │ │ │ │ │ ├── spm_unit_benefits.yaml │ │ │ │ │ │ ├── spm_unit_broadband_subsidy.yaml │ │ │ │ │ │ ├── spm_unit_is_in_spm_poverty.yaml │ │ │ │ │ │ ├── spm_unit_market_income.yaml │ │ │ │ │ │ └── spm_unit_net_income.yaml │ │ │ │ │ └── tax_unit │ │ │ │ │ │ └── spouse_separate_adjusted_gross_income.yaml │ │ │ │ ├── is_on_cliff.yaml │ │ │ │ ├── marginal_tax_rate.yaml │ │ │ │ └── marginal_tax_rate_including_health_benefits.yaml │ │ │ ├── income │ │ │ │ └── spm_unit_income_decile.yaml │ │ │ └── parameters │ │ │ │ └── test_uprating_extensions.py │ │ ├── contrib │ │ │ ├── aca │ │ │ │ ├── ptc_700_fpl_cliff.yaml │ │ │ │ ├── ptc_additional_bracket.yaml │ │ │ │ └── ptc_simplified_bracket.yaml │ │ │ ├── additional_tax_bracket │ │ │ │ └── additional_tax_bracket_reform.yaml │ │ │ ├── congress │ │ │ │ ├── afa │ │ │ │ │ └── afa_other_dependent_credit.yaml │ │ │ │ ├── american_family_act_with_baby_bonus.yaml │ │ │ │ ├── golden │ │ │ │ │ └── fisc_act.yaml │ │ │ │ ├── hawley │ │ │ │ │ └── awra │ │ │ │ │ │ └── american_worker_rebate_act.yaml │ │ │ │ ├── romney │ │ │ │ │ ├── family_security_act │ │ │ │ │ │ └── remove_head_of_household.yaml │ │ │ │ │ └── family_security_act_2024 │ │ │ │ │ │ ├── ctc │ │ │ │ │ │ └── family_security_act_2024_ctc.yaml │ │ │ │ │ │ └── eitc │ │ │ │ │ │ └── family_security_act_2024_eitc.yaml │ │ │ │ ├── tlaib │ │ │ │ │ ├── boost │ │ │ │ │ │ └── boost_middle_class_tax_credit.yaml │ │ │ │ │ ├── economic_dignity_for_all_agenda │ │ │ │ │ │ └── edaa_end_child_poverty_act.yaml │ │ │ │ │ └── end_child_poverty_act │ │ │ │ │ │ ├── ecpa_filer_credit.yaml │ │ │ │ │ │ └── integration.yaml │ │ │ │ └── wftca.yaml │ │ │ ├── crfb │ │ │ │ ├── non_refundable_ss_credit.yaml │ │ │ │ ├── senior_deduction_extension.yaml │ │ │ │ ├── tax_employer_all_payroll_tax.yaml │ │ │ │ ├── tax_employer_medicare_tax.yaml │ │ │ │ ├── tax_employer_payroll_tax_percentage.yaml │ │ │ │ └── tax_employer_social_security_tax.yaml │ │ │ ├── ctc │ │ │ │ ├── ctc_additional_bracket.yaml │ │ │ │ ├── ctc_minimum_refundable_amount.yaml │ │ │ │ ├── ctc_older_child_supplement.yaml │ │ │ │ ├── ctc_per_child_phase_in.yaml │ │ │ │ ├── ctc_per_child_phase_out.yaml │ │ │ │ └── integration.yaml │ │ │ ├── dc_kccatc.yaml │ │ │ ├── dc_single_joint_threshold_ratio.yaml │ │ │ ├── deductions │ │ │ │ └── salt │ │ │ │ │ └── limit_salt_deduction_to_property_taxes.yaml │ │ │ ├── eitc │ │ │ │ └── halve_joint_eitc_phase_out_rate.yaml │ │ │ ├── federal │ │ │ │ ├── abolish_federal_income_tax.yaml │ │ │ │ ├── abolish_payroll_tax.yaml │ │ │ │ └── reported_state_income_tax.yaml │ │ │ ├── harris │ │ │ │ ├── capital_gains │ │ │ │ │ └── harris_capital_gains.yaml │ │ │ │ ├── lift │ │ │ │ │ └── middle_class_tax_credit.yaml │ │ │ │ └── rent_relief_act │ │ │ │ │ └── rent_relief_tax_credit.yaml │ │ │ ├── local │ │ │ │ ├── ny │ │ │ │ │ └── nyc_mamdani_income_tax.yaml │ │ │ │ └── nyc │ │ │ │ │ └── stc │ │ │ │ │ └── nyc_school_tax_credit_with_phase_out.yaml │ │ │ ├── reconciliation │ │ │ │ └── reconciled_ssn_for_llc_and_aoc.yaml │ │ │ ├── reported_state_income_tax.yaml │ │ │ ├── snap │ │ │ │ ├── abolish_snap_deductions.yaml │ │ │ │ └── abolish_snap_net_income_test.yaml │ │ │ ├── snap_ea │ │ │ │ ├── mid_year_snap_ea_reform.py │ │ │ │ └── snap_ca_ea_reform.yaml │ │ │ ├── state_dependent_exemptions │ │ │ │ └── repeal_state_dependent_exemptions.yaml │ │ │ ├── states │ │ │ │ ├── dc │ │ │ │ │ └── property_tax │ │ │ │ │ │ └── dc_property_tax_credit.yaml │ │ │ │ ├── de │ │ │ │ │ └── dependent_credit_reform_test.yaml │ │ │ │ ├── mi │ │ │ │ │ └── mi_surtax.yaml │ │ │ │ ├── mn │ │ │ │ │ └── walz │ │ │ │ │ │ └── mn_walz_hf1938.yaml │ │ │ │ ├── mt │ │ │ │ │ └── ctc │ │ │ │ │ │ └── mt_ctc.yaml │ │ │ │ ├── ny │ │ │ │ │ └── ny_working_families_tax_credit.yaml │ │ │ │ ├── or │ │ │ │ │ └── rebate │ │ │ │ │ │ └── or_rebate_state_tax_exempt.yaml │ │ │ │ ├── ri │ │ │ │ │ ├── ctc_reform_test.yaml │ │ │ │ │ └── exemption_reform_test.yaml │ │ │ │ └── ut │ │ │ │ │ └── ut_refundable_eitc.yaml │ │ │ ├── tax_exempt │ │ │ │ └── tax_exempt_reform.yaml │ │ │ ├── taxsim │ │ │ │ ├── misc │ │ │ │ │ ├── capital_gains.yaml │ │ │ │ │ ├── ctc.yaml │ │ │ │ │ ├── eitc_2021_childless.yaml │ │ │ │ │ ├── general.yaml │ │ │ │ │ ├── qualified_dividends.yaml │ │ │ │ │ └── sch_r.yaml │ │ │ │ ├── taxsim_v10.yaml │ │ │ │ ├── taxsim_v11.yaml │ │ │ │ └── taxsim_v13.yaml │ │ │ ├── treasury │ │ │ │ └── repeal_dependent_exemptions.yaml │ │ │ └── ubi_center │ │ │ │ └── flat_tax.yaml │ │ └── reform │ │ │ ├── ctc_expansion.yaml │ │ │ └── winship.yaml │ ├── run_selective_tests.py │ ├── test_batched.py │ ├── utilities │ │ └── test_load_county_fips_dataset.py │ └── variables │ │ └── gov │ │ └── states │ │ └── vt │ │ └── tax │ │ └── income │ │ ├── adjusted_gross_income │ │ └── subtractions │ │ │ └── retirement_income_exemption │ │ │ └── vt_military_retirement_income_based_exemption.yaml │ │ ├── credits │ │ └── vt_veteran_tax_credit.yaml │ │ └── vt_eitc.yaml ├── tools │ ├── __init__.py │ ├── add_plotly_to_book.py │ ├── branched_simulation.py │ ├── cloning.py │ ├── default_uprating.py │ ├── documentation.py │ ├── general.py │ ├── geography │ │ ├── README.md │ │ ├── county_helpers.py │ │ └── download_50_state_census_block_data.py │ ├── parameters.py │ ├── taxsim │ │ └── generate_taxsim_tests.py │ └── variables.py ├── typing.py └── variables │ ├── contrib │ ├── congress │ │ └── wftca │ │ │ └── bonus_guaranteed_deduction.py │ ├── taxsim │ │ ├── taxsim_age1.py │ │ ├── taxsim_age2.py │ │ ├── taxsim_age3.py │ │ ├── taxsim_childcare.py │ │ ├── taxsim_dep13.py │ │ ├── taxsim_dep17.py │ │ ├── taxsim_dep18.py │ │ ├── taxsim_depx.py │ │ ├── taxsim_dividends.py │ │ ├── taxsim_fiitax.py │ │ ├── taxsim_gssi.py │ │ ├── taxsim_intrec.py │ │ ├── taxsim_ltcg.py │ │ ├── taxsim_mstat.py │ │ ├── taxsim_page.py │ │ ├── taxsim_pbusinc.py │ │ ├── taxsim_pensions.py │ │ ├── taxsim_pprofinc.py │ │ ├── taxsim_psemp.py │ │ ├── taxsim_pui.py │ │ ├── taxsim_pwages.py │ │ ├── taxsim_sage.py │ │ ├── taxsim_sbusinc.py │ │ ├── taxsim_scorp.py │ │ ├── taxsim_siitax.py │ │ ├── taxsim_sprofinc.py │ │ ├── taxsim_ssemp.py │ │ ├── taxsim_state.py │ │ ├── taxsim_stcg.py │ │ ├── taxsim_swages.py │ │ ├── taxsim_taxsimid.py │ │ ├── taxsim_tfica.py │ │ ├── taxsim_ui.py │ │ ├── taxsim_v10.py │ │ ├── taxsim_v11.py │ │ ├── taxsim_v12.py │ │ ├── taxsim_v18.py │ │ ├── taxsim_v25.py │ │ └── taxsim_year.py │ └── ubi_center │ │ ├── basic_income │ │ ├── basic_income.py │ │ ├── basic_income_before_phase_out.py │ │ ├── basic_income_eligible.py │ │ ├── basic_income_phase_in.py │ │ └── basic_income_phase_out.py │ │ └── flat_tax.py │ ├── gov │ ├── aca │ │ ├── __init__.py │ │ ├── aca_take_up_seed.py │ │ ├── eligibility │ │ │ ├── aca_child_index.py │ │ │ ├── aca_magi.py │ │ │ ├── aca_magi_fraction.py │ │ │ ├── has_esi.py │ │ │ ├── is_aca_eshi_eligible.py │ │ │ ├── is_aca_ptc_eligible.py │ │ │ ├── is_aca_ptc_immigration_status_eligible.py │ │ │ └── offered_aca_disqualifying_esi.py │ │ ├── ptc │ │ │ ├── aca_ptc.py │ │ │ ├── aca_required_contribution_percentage.py │ │ │ └── premium_tax_credit.py │ │ ├── slspc │ │ │ ├── slcsp.py │ │ │ ├── slcsp_age_0.py │ │ │ ├── slcsp_age_curve_amount_person.py │ │ │ ├── slcsp_age_curve_applies.py │ │ │ ├── slcsp_family_tier_amount.py │ │ │ ├── slcsp_family_tier_applies.py │ │ │ ├── slcsp_family_tier_category.py │ │ │ ├── slcsp_family_tier_multiplier.py │ │ │ ├── slcsp_rating_area.py │ │ │ ├── slcsp_rating_area_default.py │ │ │ └── slcsp_rating_area_la_county.py │ │ └── takes_up_aca_if_eligible.py │ ├── doe │ │ ├── high_efficiency_electric_home_rebate │ │ │ ├── capped_electric_heat_pump_clothes_dryer_rebate.py │ │ │ ├── capped_electric_load_service_center_upgrade_rebate.py │ │ │ ├── capped_electric_stove_cooktop_range_or_oven_rebate.py │ │ │ ├── capped_electric_wiring_rebate.py │ │ │ ├── capped_heat_pump_rebate.py │ │ │ ├── capped_heat_pump_water_heater_rebate.py │ │ │ ├── capped_insulation_air_sealing_ventilation_rebate.py │ │ │ ├── high_efficiency_electric_home_rebate.py │ │ │ └── high_efficiency_electric_home_rebate_percent_covered.py │ │ └── residential_efficiency_electrification_rebate │ │ │ └── residential_efficiency_electrification_rebate.py │ ├── ed │ │ ├── is_federal_work_study_participant.py │ │ └── pell_grant │ │ │ ├── dependent │ │ │ ├── pell_grant_dependent_allowances.py │ │ │ ├── pell_grant_dependent_available_income.py │ │ │ ├── pell_grant_dependent_contribution.py │ │ │ └── pell_grant_dependent_other_allowances.py │ │ │ ├── efc │ │ │ ├── pell_grant_dependents_in_college.py │ │ │ ├── pell_grant_efc.py │ │ │ ├── pell_grant_simplified_formula_applies.py │ │ │ └── pell_grant_uses_efc.py │ │ │ ├── head │ │ │ ├── pell_grant_head_allowances.py │ │ │ ├── pell_grant_head_assets.py │ │ │ ├── pell_grant_head_available_income.py │ │ │ ├── pell_grant_head_contribution.py │ │ │ ├── pell_grant_head_contribution_from_assets.py │ │ │ └── pell_grant_head_income.py │ │ │ ├── pell_grant.py │ │ │ ├── pell_grant_calculation_method.py │ │ │ ├── pell_grant_cost_of_attending_college.py │ │ │ ├── pell_grant_countable_assets.py │ │ │ ├── pell_grant_formula.py │ │ │ ├── pell_grant_months_in_school.py │ │ │ └── sai │ │ │ ├── eligibility_type │ │ │ ├── pell_grant_eligibility_type.py │ │ │ ├── pell_grant_household_type.py │ │ │ ├── pell_grant_max_fpg_limit.py │ │ │ └── pell_grant_min_fpg_limit.py │ │ │ ├── pell_grant_sai.py │ │ │ └── pell_grant_uses_sai.py │ ├── fcc │ │ ├── acp │ │ │ ├── acp.py │ │ │ └── is_acp_eligible.py │ │ ├── ebb │ │ │ ├── ebb.py │ │ │ ├── enrolled_in_ebb.py │ │ │ └── is_ebb_eligible.py │ │ ├── fcc_fpg_ratio.py │ │ └── lifeline │ │ │ ├── broadband_cost_after_lifeline.py │ │ │ ├── is_lifeline_eligible.py │ │ │ ├── is_lifeline_income_eligible.py │ │ │ └── lifeline.py │ ├── hhs │ │ ├── ccdf │ │ │ ├── ccdf_age_group.py │ │ │ ├── ccdf_county_cluster.py │ │ │ ├── ccdf_duration_of_care.py │ │ │ ├── ccdf_income.py │ │ │ ├── ccdf_income_to_smi_ratio.py │ │ │ ├── ccdf_market_rate.py │ │ │ ├── is_ccdf_age_eligible.py │ │ │ ├── is_ccdf_asset_eligible.py │ │ │ ├── is_ccdf_continuous_income_eligible.py │ │ │ ├── is_ccdf_eligible.py │ │ │ ├── is_ccdf_home_based.py │ │ │ ├── is_ccdf_income_eligible.py │ │ │ ├── is_ccdf_initial_income_eligible.py │ │ │ ├── is_ccdf_reason_for_care_eligible.py │ │ │ ├── is_enrolled_in_ccdf.py │ │ │ ├── meets_ccdf_activity_test.py │ │ │ ├── spm_unit_ccdf_subsidy.py │ │ │ └── spm_unit_total_ccdf_copay.py │ │ ├── chip │ │ │ ├── chip.py │ │ │ ├── chip_category.py │ │ │ ├── is_chip_eligible.py │ │ │ ├── is_chip_eligible_child.py │ │ │ ├── is_chip_eligible_pregnant.py │ │ │ ├── is_chip_eligible_standard_pregnant_person.py │ │ │ ├── is_chip_fcep_eligible_person.py │ │ │ └── per_capita_chip.py │ │ ├── head_start │ │ │ ├── early_head_start.py │ │ │ ├── head_start.py │ │ │ ├── is_early_head_start_eligible.py │ │ │ ├── is_head_start_categorically_eligible.py │ │ │ ├── is_head_start_eligible.py │ │ │ └── is_head_start_income_eligible.py │ │ ├── hhs_smi.py │ │ ├── medicaid │ │ │ ├── costs │ │ │ │ ├── medicaid_cost_if_enrolled.py │ │ │ │ └── medicaid_group.py │ │ │ ├── eligibility │ │ │ │ ├── categories │ │ │ │ │ ├── adult │ │ │ │ │ │ ├── is_adult_for_medicaid.py │ │ │ │ │ │ ├── is_adult_for_medicaid_fc.py │ │ │ │ │ │ └── is_adult_for_medicaid_nfc.py │ │ │ │ │ ├── infant │ │ │ │ │ │ ├── is_infant_for_medicaid.py │ │ │ │ │ │ ├── is_infant_for_medicaid_fc.py │ │ │ │ │ │ └── is_infant_for_medicaid_nfc.py │ │ │ │ │ ├── is_optional_senior_or_disabled_asset_eligible.py │ │ │ │ │ ├── is_optional_senior_or_disabled_for_medicaid.py │ │ │ │ │ ├── is_optional_senior_or_disabled_income_eligible.py │ │ │ │ │ ├── is_ssi_recipient_for_medicaid.py │ │ │ │ │ ├── medicaid_category.py │ │ │ │ │ ├── medically_needy │ │ │ │ │ │ ├── is_in_medicaid_medically_needy_category.py │ │ │ │ │ │ └── is_medically_needy_for_medicaid.py │ │ │ │ │ ├── older_child │ │ │ │ │ │ ├── is_older_child_for_medicaid.py │ │ │ │ │ │ ├── is_older_child_for_medicaid_fc.py │ │ │ │ │ │ └── is_older_child_for_medicaid_nfc.py │ │ │ │ │ ├── parent │ │ │ │ │ │ ├── is_parent_for_medicaid.py │ │ │ │ │ │ ├── is_parent_for_medicaid_fc.py │ │ │ │ │ │ └── is_parent_for_medicaid_nfc.py │ │ │ │ │ ├── pregnant │ │ │ │ │ │ ├── is_pregnant_for_medicaid.py │ │ │ │ │ │ ├── is_pregnant_for_medicaid_fc.py │ │ │ │ │ │ └── is_pregnant_for_medicaid_nfc.py │ │ │ │ │ ├── young_adult │ │ │ │ │ │ ├── is_young_adult_for_medicaid.py │ │ │ │ │ │ ├── is_young_adult_for_medicaid_fc.py │ │ │ │ │ │ └── is_young_adult_for_medicaid_nfc.py │ │ │ │ │ └── young_child │ │ │ │ │ │ ├── is_young_child_for_medicaid.py │ │ │ │ │ │ ├── is_young_child_for_medicaid_fc.py │ │ │ │ │ │ └── is_young_child_for_medicaid_nfc.py │ │ │ │ ├── is_medicaid_eligible.py │ │ │ │ ├── is_medicaid_immigration_status_eligible.py │ │ │ │ └── medicaid_work_requirement_eligible.py │ │ │ ├── income │ │ │ │ ├── medicaid_income_level.py │ │ │ │ ├── medicaid_magi.py │ │ │ │ └── tax_unit_medicaid_income_level.py │ │ │ ├── medicaid.py │ │ │ ├── medicaid_cost.py │ │ │ ├── medicaid_enrolled.py │ │ │ ├── medicaid_take_up_seed.py │ │ │ ├── receives_medicaid.py │ │ │ └── takes_up_medicaid_if_eligible.py │ │ ├── medicare │ │ │ ├── costs │ │ │ │ ├── medicare_cost.py │ │ │ │ └── medicare_enrolled.py │ │ │ ├── eligibility │ │ │ │ ├── is_medicare_eligible.py │ │ │ │ ├── months_receiving_social_security_disability.py │ │ │ │ ├── part_a │ │ │ │ │ ├── base_part_a_premium.py │ │ │ │ │ ├── is_premium_free_part_a.py │ │ │ │ │ └── medicare_quarters_of_coverage.py │ │ │ │ └── part_b │ │ │ │ │ ├── base_part_b_premium.py │ │ │ │ │ └── income_adjusted_part_b_premium.py │ │ │ └── savings_programs │ │ │ │ ├── category │ │ │ │ ├── is_qi_eligible.py │ │ │ │ ├── is_qmb_eligible.py │ │ │ │ ├── is_slmb_eligible.py │ │ │ │ └── msp_category.py │ │ │ │ ├── eligibility │ │ │ │ ├── msp_asset_eligible.py │ │ │ │ ├── msp_eligible.py │ │ │ │ └── msp_income_eligible.py │ │ │ │ ├── income │ │ │ │ ├── msp_countable_income.py │ │ │ │ └── msp_fpg.py │ │ │ │ ├── msp.py │ │ │ │ └── msp_benefit_value.py │ │ ├── spm_unit_fpg.py │ │ ├── tanf │ │ │ ├── cash │ │ │ │ ├── eligibility │ │ │ │ │ ├── is_demographic_tanf_eligible.py │ │ │ │ │ ├── is_person_demographic_tanf_eligible.py │ │ │ │ │ └── is_tanf_enrolled.py │ │ │ │ ├── income │ │ │ │ │ ├── tanf_gross_earned_income.py │ │ │ │ │ └── tanf_gross_unearned_income.py │ │ │ │ ├── tanf.py │ │ │ │ ├── tanf_person.py │ │ │ │ └── tanf_reported.py │ │ │ ├── non_cash │ │ │ │ ├── is_tanf_non_cash_eligible.py │ │ │ │ ├── is_tanf_non_cash_hheod.py │ │ │ │ ├── meets_tanf_non_cash_asset_test.py │ │ │ │ ├── meets_tanf_non_cash_gross_income_test.py │ │ │ │ └── meets_tanf_non_cash_net_income_test.py │ │ │ └── tanf_fpg.py │ │ └── tax_unit_fpg.py │ ├── hud │ │ ├── ami.py │ │ ├── household_income_ami_ratio.py │ │ ├── housing_assistance.py │ │ ├── housing_designated_welfare.py │ │ ├── hud_adjusted_income.py │ │ ├── hud_annual_income.py │ │ ├── hud_gross_rent.py │ │ ├── hud_hap.py │ │ ├── hud_income_level.py │ │ ├── hud_max_subsidy.py │ │ ├── hud_minimum_rent.py │ │ ├── hud_utility_allowance.py │ │ ├── income_level_factor │ │ │ ├── hud_especially_low_income_factor.py │ │ │ ├── hud_low_income_factor.py │ │ │ ├── hud_moderate_income_factor.py │ │ │ └── hud_very_low_income_factor.py │ │ ├── is_eligible_for_housing_assistance.py │ │ ├── is_hud_elderly_disabled_family.py │ │ ├── pha_payment_standard.py │ │ ├── receives_housing_assistance.py │ │ ├── tax_unit_income_ami_ratio.py │ │ └── ttp │ │ │ ├── hud_ttp.py │ │ │ ├── hud_ttp_adjusted_income_share.py │ │ │ └── hud_ttp_income_share.py │ ├── irs │ │ ├── credits │ │ │ ├── amt_foreign_tax_credit.py │ │ │ ├── cdcc │ │ │ │ ├── capped_cdcc.py │ │ │ │ ├── capped_count_cdcc_eligible.py │ │ │ │ ├── cdcc.py │ │ │ │ ├── cdcc_credit_limit.py │ │ │ │ ├── cdcc_eligible.py │ │ │ │ ├── cdcc_limit.py │ │ │ │ ├── cdcc_potential.py │ │ │ │ ├── cdcc_rate.py │ │ │ │ ├── cdcc_relevant_expenses.py │ │ │ │ ├── count_cdcc_eligible.py │ │ │ │ ├── head_earned.py │ │ │ │ ├── min_head_spouse_earned.py │ │ │ │ └── spouse_earned.py │ │ │ ├── clean_vehicle │ │ │ │ ├── new │ │ │ │ │ ├── new_clean_vehicle_credit.py │ │ │ │ │ ├── new_clean_vehicle_credit_credit_limit.py │ │ │ │ │ ├── new_clean_vehicle_credit_eligible.py │ │ │ │ │ └── new_clean_vehicle_credit_potential.py │ │ │ │ └── used │ │ │ │ │ ├── used_clean_vehicle_credit.py │ │ │ │ │ ├── used_clean_vehicle_credit_credit_limit.py │ │ │ │ │ ├── used_clean_vehicle_credit_eligible.py │ │ │ │ │ └── used_clean_vehicle_credit_potential.py │ │ │ ├── ctc │ │ │ │ ├── ctc.py │ │ │ │ ├── ctc_value.py │ │ │ │ ├── maximum │ │ │ │ │ ├── ctc_maximum.py │ │ │ │ │ ├── ctc_maximum_with_arpa_addition.py │ │ │ │ │ ├── ctc_qualifying_child.py │ │ │ │ │ ├── ctc_qualifying_children.py │ │ │ │ │ └── individual │ │ │ │ │ │ ├── ctc_adult_individual_maximum.py │ │ │ │ │ │ ├── ctc_child_individual_maximum.py │ │ │ │ │ │ ├── ctc_child_individual_maximum_arpa.py │ │ │ │ │ │ ├── ctc_individual_maximum.py │ │ │ │ │ │ ├── filer_meets_ctc_identification_requirements.py │ │ │ │ │ │ ├── meets_ctc_child_identification_requirements.py │ │ │ │ │ │ └── meets_ctc_identification_requirements.py │ │ │ │ ├── non_refundable_ctc.py │ │ │ │ ├── phase_out │ │ │ │ │ ├── arpa │ │ │ │ │ │ ├── ctc_arpa_addition.py │ │ │ │ │ │ ├── ctc_arpa_max_addition.py │ │ │ │ │ │ ├── ctc_arpa_phase_out.py │ │ │ │ │ │ ├── ctc_arpa_phase_out_cap.py │ │ │ │ │ │ ├── ctc_arpa_phase_out_threshold.py │ │ │ │ │ │ └── ctc_arpa_uncapped_phase_out.py │ │ │ │ │ ├── ctc_phase_out.py │ │ │ │ │ └── ctc_phase_out_threshold.py │ │ │ │ └── refundable │ │ │ │ │ ├── ctc_limiting_tax_liability.py │ │ │ │ │ ├── ctc_phase_in.py │ │ │ │ │ ├── ctc_phase_in_relevant_earnings.py │ │ │ │ │ ├── ctc_refundable_maximum.py │ │ │ │ │ ├── ctc_social_security_tax.py │ │ │ │ │ └── refundable_ctc.py │ │ │ ├── earned_income │ │ │ │ ├── eitc.py │ │ │ │ ├── eitc_agi_limit.py │ │ │ │ ├── eitc_child_count.py │ │ │ │ ├── eitc_maximum.py │ │ │ │ ├── eitc_phase_in_rate.py │ │ │ │ ├── eitc_phase_out_rate.py │ │ │ │ ├── eitc_phase_out_start.py │ │ │ │ ├── eitc_phased_in.py │ │ │ │ ├── eitc_reduction.py │ │ │ │ ├── eitc_relevant_investment_income.py │ │ │ │ ├── eligibility │ │ │ │ │ ├── eitc_demographic_eligible.py │ │ │ │ │ ├── eitc_eligible.py │ │ │ │ │ └── eitc_investment_income_eligible.py │ │ │ │ ├── filer_meets_eitc_identification_requirements.py │ │ │ │ ├── meets_eitc_identification_requirements.py │ │ │ │ └── takes_up_eitc.py │ │ │ ├── education │ │ │ │ ├── american_opportunity_credit │ │ │ │ │ ├── american_opportunity_credit.py │ │ │ │ │ ├── is_eligible_for_american_opportunity_credit.py │ │ │ │ │ ├── non_refundable_american_opportunity_credit.py │ │ │ │ │ ├── non_refundable_american_opportunity_credit_credit_limit.py │ │ │ │ │ ├── non_refundable_american_opportunity_credit_potential.py │ │ │ │ │ └── refundable_american_opportunity_credit.py │ │ │ │ ├── education_credit_phase_out.py │ │ │ │ ├── education_tax_credits.py │ │ │ │ ├── lifetime_learning_credit.py │ │ │ │ ├── lifetime_learning_credit_credit_limit.py │ │ │ │ └── lifetime_learning_credit_potential.py │ │ │ ├── elderly_and_disabled │ │ │ │ ├── elderly_disabled_credit.py │ │ │ │ ├── elderly_disabled_credit_credit_limit.py │ │ │ │ ├── elderly_disabled_credit_potential.py │ │ │ │ ├── eligibility.py │ │ │ │ ├── section_22_income.py │ │ │ │ └── total_disability_payments.py │ │ │ ├── energy_efficient_home_improvement │ │ │ │ ├── capped_home_energy_audit_credit.py │ │ │ │ ├── energy_efficient_home_improvement_credit.py │ │ │ │ ├── energy_efficient_home_improvement_credit_credit_limit.py │ │ │ │ ├── energy_efficient_home_improvement_credit_potential.py │ │ │ │ ├── improvements │ │ │ │ │ ├── capped_energy_efficient_door_credit.py │ │ │ │ │ ├── capped_energy_efficient_insulation_credit.py │ │ │ │ │ ├── capped_energy_efficient_roof_credit.py │ │ │ │ │ ├── capped_energy_efficient_window_credit.py │ │ │ │ │ └── prior_energy_efficient_window_credits.py │ │ │ │ ├── prior_energy_efficient_home_improvement_credits.py │ │ │ │ └── property │ │ │ │ │ ├── capped_advanced_main_air_circulating_fan_credit.py │ │ │ │ │ ├── capped_energy_efficient_central_air_conditioner_credit.py │ │ │ │ │ ├── capped_heat_pump_heat_pump_water_heater_biomass_stove_boiler_credit.py │ │ │ │ │ └── capped_qualified_furnace_or_hot_water_boiler_credit.py │ │ │ ├── estate │ │ │ │ └── estate_tax_credit.py │ │ │ ├── foreign_tax │ │ │ │ ├── foreign_tax_credit.py │ │ │ │ ├── foreign_tax_credit_credit_limit.py │ │ │ │ └── foreign_tax_credit_potential.py │ │ │ ├── general_business │ │ │ │ └── general_business_credit.py │ │ │ ├── income_tax_capped_non_refundable_credits.py │ │ │ ├── income_tax_non_refundable_credits.py │ │ │ ├── income_tax_refundable_credits.py │ │ │ ├── other_credits.py │ │ │ ├── prior_year_minimum_tax │ │ │ │ └── prior_year_minimum_tax_credit.py │ │ │ ├── recapture_of_investment_credit.py │ │ │ ├── recovery_rebate_credit │ │ │ │ ├── recovery_rebate_credit.py │ │ │ │ ├── rrc_arpa.py │ │ │ │ ├── rrc_caa.py │ │ │ │ └── rrc_cares.py │ │ │ ├── refundable_payroll_tax_credit.py │ │ │ ├── residential_clean_energy │ │ │ │ ├── residential_clean_energy_credit.py │ │ │ │ ├── residential_clean_energy_credit_credit_limit.py │ │ │ │ └── residential_clean_energy_credit_potential.py │ │ │ └── retirement_savings │ │ │ │ ├── savers_credit.py │ │ │ │ ├── savers_credit_credit_limit.py │ │ │ │ ├── savers_credit_eligible_person.py │ │ │ │ ├── savers_credit_person.py │ │ │ │ ├── savers_credit_potential.py │ │ │ │ └── savers_credit_qualified_contributions.py │ │ ├── deductions │ │ │ └── itemized │ │ │ │ └── salt_and_real_estate │ │ │ │ └── state_sales_tax_income_bracket.py │ │ ├── income │ │ │ ├── adjusted_earnings.py │ │ │ ├── filer_adjusted_earnings.py │ │ │ ├── sources │ │ │ │ ├── amt_non_agi_income.py │ │ │ │ └── investment_income_form_4952.py │ │ │ └── taxable_income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── above_the_line_deductions │ │ │ │ │ ├── README.md │ │ │ │ │ ├── above_the_line_deductions.py │ │ │ │ │ ├── alimony_expense_ald.py │ │ │ │ │ ├── domestic_production_ald.py │ │ │ │ │ ├── foreign_earned_income.py │ │ │ │ │ ├── health_savings_account_ald.py │ │ │ │ │ ├── limited_capital_loss.py │ │ │ │ │ ├── loss_ald.py │ │ │ │ │ ├── puerto_rico_income.py │ │ │ │ │ ├── self_employed_health_insurance_ald.py │ │ │ │ │ ├── self_employed_health_insurance_ald_person.py │ │ │ │ │ ├── self_employed_pension_contribution_ald.py │ │ │ │ │ ├── self_employed_pension_contribution_ald_person.py │ │ │ │ │ ├── self_employment_tax_ald.py │ │ │ │ │ ├── self_employment_tax_ald_person.py │ │ │ │ │ ├── specified_possession_income.py │ │ │ │ │ └── student_loan_interest │ │ │ │ │ │ ├── student_loan_interest_ald.py │ │ │ │ │ │ ├── student_loan_interest_ald_eligible.py │ │ │ │ │ │ └── student_loan_interest_ald_magi.py │ │ │ │ ├── adjusted_gross_income.py │ │ │ │ ├── adjusted_gross_income_person.py │ │ │ │ ├── irs_gross_income │ │ │ │ │ ├── earned_income │ │ │ │ │ │ ├── earned_income.py │ │ │ │ │ │ ├── earned_income_last_year.py │ │ │ │ │ │ ├── tax_unit_earned_income.py │ │ │ │ │ │ └── tax_unit_earned_income_last_year.py │ │ │ │ │ ├── has_qdiv_or_ltcg.py │ │ │ │ │ ├── irs_employment_income.py │ │ │ │ │ ├── irs_gross_income.py │ │ │ │ │ ├── loss_limited_net_capital_gains.py │ │ │ │ │ ├── pre_tax_contributions.py │ │ │ │ │ ├── social_security │ │ │ │ │ │ ├── tax_exempt_social_security.py │ │ │ │ │ │ ├── tax_unit_combined_income_for_social_security_taxability.py │ │ │ │ │ │ ├── tax_unit_social_security.py │ │ │ │ │ │ ├── tax_unit_ss_combined_income_excess.py │ │ │ │ │ │ ├── tax_unit_taxable_social_security.py │ │ │ │ │ │ ├── taxable_social_security.py │ │ │ │ │ │ └── taxable_ss_magi.py │ │ │ │ │ ├── tax_unit_partnership_s_corp_income.py │ │ │ │ │ ├── tax_unit_rental_income.py │ │ │ │ │ └── unemployment_insurance │ │ │ │ │ │ ├── tax_exempt_unemployment_compensation.py │ │ │ │ │ │ ├── tax_unit_taxable_unemployment_compensation.py │ │ │ │ │ │ ├── tax_unit_unemployment_compensation.py │ │ │ │ │ │ ├── taxable_uc_agi.py │ │ │ │ │ │ └── taxable_unemployment_insurance.py │ │ │ │ ├── positive_agi.py │ │ │ │ └── positive_gross_income.py │ │ │ │ ├── deductions │ │ │ │ ├── auto_loan_interest │ │ │ │ │ └── auto_loan_interest_deduction.py │ │ │ │ ├── capped_property_taxes.py │ │ │ │ ├── itemized_deductions_less_salt.py │ │ │ │ ├── itemizing │ │ │ │ │ ├── casualty_loss_deduction.py │ │ │ │ │ ├── charitable_deduction.py │ │ │ │ │ ├── charitable_deduction_for_non_itemizers.py │ │ │ │ │ ├── interest_deduction.py │ │ │ │ │ ├── itemized_taxable_income_deductions.py │ │ │ │ │ ├── itemized_taxable_income_deductions_reduction.py │ │ │ │ │ ├── medical_expense_deduction.py │ │ │ │ │ ├── misc_deduction.py │ │ │ │ │ ├── reported_salt.py │ │ │ │ │ ├── salt.py │ │ │ │ │ ├── salt_cap.py │ │ │ │ │ ├── salt_deduction.py │ │ │ │ │ ├── state_and_local_sales_or_income_tax.py │ │ │ │ │ ├── total_itemized_taxable_income_deductions.py │ │ │ │ │ ├── total_misc_deductions.py │ │ │ │ │ └── wagering_losses_deduction.py │ │ │ │ ├── overtime_income │ │ │ │ │ ├── overtime_income_deduction.py │ │ │ │ │ └── overtime_income_deduction_ssn_requirement_met.py │ │ │ │ ├── qualified_business_income_deduction │ │ │ │ │ ├── qbid_amount.py │ │ │ │ │ ├── qualified_business_income.py │ │ │ │ │ ├── qualified_business_income_deduction.py │ │ │ │ │ ├── qualified_business_income_deduction_person.py │ │ │ │ │ └── taxable_income_less_qbid.py │ │ │ │ ├── senior_deduction │ │ │ │ │ ├── additional_senior_deduction.py │ │ │ │ │ └── additional_senior_deduction_eligible_person.py │ │ │ │ ├── standard_deduction │ │ │ │ │ ├── additional_standard_deduction.py │ │ │ │ │ ├── aged_blind_count.py │ │ │ │ │ ├── aged_head.py │ │ │ │ │ ├── aged_spouse.py │ │ │ │ │ ├── basic_standard_deduction.py │ │ │ │ │ ├── is_irs_aged.py │ │ │ │ │ └── standard_deduction.py │ │ │ │ ├── tax_liability_if_itemizing.py │ │ │ │ ├── tax_liability_if_not_itemizing.py │ │ │ │ ├── tax_unit_itemizes.py │ │ │ │ ├── taxable_income_deductions.py │ │ │ │ ├── taxable_income_deductions_if_itemizing.py │ │ │ │ ├── taxable_income_deductions_if_not_itemizing.py │ │ │ │ ├── tip_income │ │ │ │ │ ├── tip_income_deduction.py │ │ │ │ │ └── tip_income_deduction_ssn_requirement_met.py │ │ │ │ ├── tuition_and_fees_deduction.py │ │ │ │ └── tuition_and_fees_deduction_eligible.py │ │ │ │ ├── exemptions │ │ │ │ ├── exemptions.py │ │ │ │ └── exemptions_count.py │ │ │ │ └── taxable_income.py │ │ ├── puf.py │ │ ├── tax │ │ │ ├── estate │ │ │ │ ├── estate_tax.py │ │ │ │ └── estate_tax_before_credits.py │ │ │ ├── federal_income │ │ │ │ ├── additional_medicare_tax.py │ │ │ │ ├── alternative_minimum_tax │ │ │ │ │ ├── alternative_minimum_tax.py │ │ │ │ │ ├── amt_part_iii_required.py │ │ │ │ │ ├── amt_tax_including_cg.py │ │ │ │ │ ├── base_tax │ │ │ │ │ │ ├── amt_base_tax.py │ │ │ │ │ │ ├── amt_higher_base_tax.py │ │ │ │ │ │ └── amt_lower_base_tax.py │ │ │ │ │ ├── exemption │ │ │ │ │ │ └── amt_exemption.py │ │ │ │ │ ├── income │ │ │ │ │ │ ├── amt_excluded_deductions.py │ │ │ │ │ │ ├── amt_income.py │ │ │ │ │ │ ├── amt_income_less_exemptions.py │ │ │ │ │ │ └── amt_separate_addition.py │ │ │ │ │ ├── kiddie_tax │ │ │ │ │ │ └── amt_kiddie_tax_applies.py │ │ │ │ │ └── regular_tax_before_credits.py │ │ │ │ ├── amt_form_completed.py │ │ │ │ ├── before_credits │ │ │ │ │ ├── income_tax_before_credits.py │ │ │ │ │ └── income_tax_main_rates.py │ │ │ │ ├── capital_gains │ │ │ │ │ ├── adjusted_net_capital_gain.py │ │ │ │ │ ├── capital_gains_28_percent_rate_gain.py │ │ │ │ │ ├── capital_gains_excluded_from_taxable_income.py │ │ │ │ │ ├── capital_gains_tax.py │ │ │ │ │ ├── dividend_income_reduced_by_investment_income.py │ │ │ │ │ ├── dwks09.py │ │ │ │ │ ├── dwks10.py │ │ │ │ │ ├── dwks13.py │ │ │ │ │ ├── dwks14.py │ │ │ │ │ ├── dwks19.py │ │ │ │ │ └── net_capital_gain.py │ │ │ │ ├── income_tax.py │ │ │ │ ├── income_tax_before_refundable_credits.py │ │ │ │ ├── income_tax_excluding_ptc.py │ │ │ │ ├── net_investment_income.py │ │ │ │ └── net_investment_income_tax.py │ │ │ ├── payroll │ │ │ │ ├── employee_payroll_tax.py │ │ │ │ ├── excess_payroll_tax_withheld.py │ │ │ │ ├── medicare │ │ │ │ │ ├── employee_medicare_tax.py │ │ │ │ │ └── employer_medicare_tax.py │ │ │ │ ├── payroll_tax_gross_wages.py │ │ │ │ ├── social_security │ │ │ │ │ ├── employee_social_security_tax.py │ │ │ │ │ ├── employer_social_security_tax.py │ │ │ │ │ └── taxable_earnings_for_social_security.py │ │ │ │ └── unreported_payroll_tax.py │ │ │ └── self_employment │ │ │ │ ├── self_employment_medicare_tax.py │ │ │ │ ├── self_employment_social_security_tax.py │ │ │ │ ├── self_employment_tax.py │ │ │ │ ├── social_security_taxable_self_employment_income.py │ │ │ │ └── taxable_self_employment_income.py │ │ ├── tax_unit │ │ │ ├── head_spouse_count.py │ │ │ ├── tax_unit_count_dependents.py │ │ │ ├── tax_unit_is_joint.py │ │ │ └── tax_unit_size.py │ │ ├── tax_unit_is_filer.py │ │ ├── tce │ │ │ └── is_tce_eligible.py │ │ ├── total_income_tax.py │ │ └── vita │ │ │ └── vita_eligible.py │ ├── local │ │ ├── ca │ │ │ ├── ala │ │ │ │ ├── ga │ │ │ │ │ ├── ca_ala_general_assistance.py │ │ │ │ │ ├── ca_ala_general_assistance_base_amount.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── ca_ala_general_assistance_age_eligible.py │ │ │ │ │ │ ├── ca_ala_general_assistance_eligible_person.py │ │ │ │ │ │ ├── ca_ala_general_assistance_immigration_status_eligible.py │ │ │ │ │ │ ├── ca_ala_general_assistance_income_eligible.py │ │ │ │ │ │ └── ca_ala_general_assistance_personal_property_eligible.py │ │ │ │ │ └── income │ │ │ │ │ │ ├── ca_ala_general_assistance_countable_income.py │ │ │ │ │ │ └── ca_ala_general_assistance_countable_income_person.py │ │ │ │ └── in_ala.py │ │ │ ├── la │ │ │ │ ├── dss │ │ │ │ │ ├── expectant_parent_payment │ │ │ │ │ │ ├── ca_la_expectant_parent_payment.py │ │ │ │ │ │ └── ca_la_expectant_parent_payment_eligible.py │ │ │ │ │ └── infant_supplement │ │ │ │ │ │ ├── ca_la_infant_supplement.py │ │ │ │ │ │ └── ca_la_infant_supplement_eligible_person.py │ │ │ │ ├── dwp │ │ │ │ │ └── ez_save │ │ │ │ │ │ ├── ca_la_ez_save.py │ │ │ │ │ │ ├── ca_la_ez_save_countable_income.py │ │ │ │ │ │ ├── ca_la_ez_save_eligible.py │ │ │ │ │ │ └── ca_la_ez_save_fpg.py │ │ │ │ ├── general_relief │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── cash │ │ │ │ │ │ │ ├── la_general_relief_cash_asset_eligible.py │ │ │ │ │ │ │ └── la_general_relief_cash_asset_limit.py │ │ │ │ │ │ ├── immigration │ │ │ │ │ │ │ ├── la_general_relief_immigration_status_eligible.py │ │ │ │ │ │ │ └── la_general_relief_immigration_status_eligible_person.py │ │ │ │ │ │ ├── la_general_relief_age_eligible.py │ │ │ │ │ │ ├── la_general_relief_disability_eligible.py │ │ │ │ │ │ ├── la_general_relief_eligible.py │ │ │ │ │ │ ├── la_general_relief_home_value_eligible.py │ │ │ │ │ │ ├── la_general_relief_motor_vehicle_value_eligible.py │ │ │ │ │ │ ├── la_general_relief_personal_property_eligible.py │ │ │ │ │ │ └── net_income │ │ │ │ │ │ │ ├── la_general_relief_net_income_eligible.py │ │ │ │ │ │ │ └── la_general_relief_net_income_limit.py │ │ │ │ │ ├── housing_subsidy │ │ │ │ │ │ ├── eligibility │ │ │ │ │ │ │ ├── la_general_relief_housing_subsidy_base_amount_eligible.py │ │ │ │ │ │ │ ├── la_general_relief_housing_subsidy_eligible.py │ │ │ │ │ │ │ └── la_general_relief_housing_subsidy_program_eligible.py │ │ │ │ │ │ ├── la_general_relief_housing_subsidy.py │ │ │ │ │ │ └── la_general_relief_rent_contribution.py │ │ │ │ │ ├── la_general_relief.py │ │ │ │ │ ├── la_general_relief_base_amount.py │ │ │ │ │ ├── la_general_relief_gross_income.py │ │ │ │ │ ├── la_general_relief_net_income.py │ │ │ │ │ └── la_general_relief_recipient.py │ │ │ │ └── in_la.py │ │ │ ├── riv │ │ │ │ ├── general_relief │ │ │ │ │ ├── ca_riv_general_relief.py │ │ │ │ │ ├── ca_riv_general_relief_budget_unit_size.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── ca_riv_general_relief_eligible.py │ │ │ │ │ │ ├── ca_riv_general_relief_immigration_status_eligible.py │ │ │ │ │ │ ├── ca_riv_general_relief_income_eligible.py │ │ │ │ │ │ ├── ca_riv_general_relief_ineligible_person.py │ │ │ │ │ │ ├── ca_riv_general_relief_meets_work_requirements.py │ │ │ │ │ │ └── ca_riv_general_relief_property_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ │ ├── ca_riv_general_relief_countable_income.py │ │ │ │ │ │ ├── ca_riv_general_relief_countable_income_person.py │ │ │ │ │ │ ├── ca_riv_general_relief_excluded_income.py │ │ │ │ │ │ ├── ca_riv_general_relief_unearned_income.py │ │ │ │ │ │ └── earned │ │ │ │ │ │ │ ├── ca_riv_general_relief_earned_income.py │ │ │ │ │ │ │ ├── ca_riv_general_relief_earned_income_deductions.py │ │ │ │ │ │ │ └── ca_riv_general_relief_net_earned_income.py │ │ │ │ │ ├── payment │ │ │ │ │ │ ├── ca_riv_general_relief_needs_standards.py │ │ │ │ │ │ └── ca_riv_general_relief_special_needs_amount.py │ │ │ │ │ └── property │ │ │ │ │ │ ├── ca_riv_general_relief_countable_property_value.py │ │ │ │ │ │ └── ca_riv_general_relief_countable_vehicle_value.py │ │ │ │ ├── in_riv.py │ │ │ │ ├── liheap │ │ │ │ │ ├── ca_riv_liheap_countable_income.py │ │ │ │ │ └── ca_riv_liheap_eligible.py │ │ │ │ └── share │ │ │ │ │ ├── ca_riv_share_countable_income.py │ │ │ │ │ ├── ca_riv_share_eligible.py │ │ │ │ │ ├── ca_riv_share_payment.py │ │ │ │ │ └── emergency_payment │ │ │ │ │ ├── ca_riv_share_electricity_emergency_payment.py │ │ │ │ │ └── ca_riv_share_eligible_for_emergency_payment.py │ │ │ └── sf │ │ │ │ └── wftc │ │ │ │ └── ca_sf_wftc.py │ │ ├── co │ │ │ └── denver │ │ │ │ ├── dhs │ │ │ │ ├── has_co_denver_dhs_elderly_disabled.py │ │ │ │ ├── is_co_denver_dhs_elderly.py │ │ │ │ └── property_tax_relief │ │ │ │ │ ├── co_denver_homeowner_property_tax_relief.py │ │ │ │ │ ├── co_denver_property_tax_relief.py │ │ │ │ │ ├── co_denver_property_tax_relief_income.py │ │ │ │ │ ├── co_denver_renter_property_tax_relief.py │ │ │ │ │ └── eligibility │ │ │ │ │ ├── co_denver_property_tax_relief_homeowner_eligible.py │ │ │ │ │ └── co_denver_property_tax_relief_renter_eligible.py │ │ │ │ └── in_denver.py │ │ ├── md │ │ │ └── montgomery │ │ │ │ └── tax │ │ │ │ └── income │ │ │ │ └── credits │ │ │ │ └── eitc │ │ │ │ └── refundable │ │ │ │ └── montgomery_refundable_eitc.py │ │ ├── ny │ │ │ └── nyc │ │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── nyc_cdcc.py │ │ │ │ │ ├── nyc_cdcc_age_restricted_expenses.py │ │ │ │ │ ├── nyc_cdcc_applicable_percentage.py │ │ │ │ │ ├── nyc_cdcc_eligible.py │ │ │ │ │ └── nyc_cdcc_share_qualifying_childcare_expenses.py │ │ │ │ ├── household │ │ │ │ │ └── nyc_household_credit.py │ │ │ │ ├── nyc_eitc.py │ │ │ │ ├── school │ │ │ │ │ ├── nyc_school_credit_income.py │ │ │ │ │ ├── nyc_school_tax_credit.py │ │ │ │ │ ├── nyc_school_tax_credit_fixed_amount.py │ │ │ │ │ ├── nyc_school_tax_credit_fixed_amount_eligible.py │ │ │ │ │ ├── nyc_school_tax_credit_rate_reduction_amount.py │ │ │ │ │ └── nyc_school_tax_credit_rate_reduction_amount_eligible.py │ │ │ │ └── unincorporated_business │ │ │ │ │ └── nyc_unincorporated_business_credit.py │ │ │ │ ├── nyc_income_tax.py │ │ │ │ ├── nyc_income_tax_before_credits.py │ │ │ │ ├── nyc_income_tax_before_refundable_credits.py │ │ │ │ ├── nyc_non_refundable_credits.py │ │ │ │ ├── nyc_refundable_credits.py │ │ │ │ └── taxable_income │ │ │ │ └── nyc_taxable_income.py │ │ ├── tax │ │ │ ├── assessed_property_value.py │ │ │ ├── income │ │ │ │ └── local_income_tax.py │ │ │ ├── sales │ │ │ │ └── local_sales_tax.py │ │ │ └── salt_refund_last_year.py │ │ └── tx │ │ │ └── harris │ │ │ ├── in_harris_county_tx.py │ │ │ └── rides │ │ │ ├── tx_harris_rides_eligible.py │ │ │ └── tx_harris_rides_subsidy.py │ ├── puf.py │ ├── simulation │ │ ├── capital_gains_responses.py │ │ └── labor_supply_response │ │ │ ├── employment_income_behavioral_response.py │ │ │ ├── income_elasticity.py │ │ │ ├── income_elasticity_lsr.py │ │ │ ├── labor_supply_behavioral_response.py │ │ │ ├── relative_income_change.py │ │ │ ├── relative_wage_change.py │ │ │ ├── self_employment_income_behavioral_response.py │ │ │ ├── substitution_elasticity.py │ │ │ └── substitution_elasticity_lsr.py │ ├── ssa │ │ ├── ss │ │ │ ├── never_eligible_for_social_security_benefits.py │ │ │ ├── social_security.py │ │ │ ├── social_security_dependents.py │ │ │ ├── social_security_disability.py │ │ │ ├── social_security_retirement.py │ │ │ └── social_security_survivors.py │ │ └── ssi │ │ │ ├── eligibility │ │ │ ├── income │ │ │ │ ├── _apply_ssi_exclusions.py │ │ │ │ ├── deemed │ │ │ │ │ ├── from_ineligible_parent │ │ │ │ │ │ └── ssi_unearned_income_deemed_from_ineligible_parent.py │ │ │ │ │ ├── from_ineligible_spouse │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── is_ssi_spousal_deeming_applies.py │ │ │ │ │ │ ├── ssi_earned_income_deemed_from_ineligible_spouse.py │ │ │ │ │ │ ├── ssi_income_deemed_from_ineligible_spouse.py │ │ │ │ │ │ └── ssi_unearned_income_deemed_from_ineligible_spouse.py │ │ │ │ │ ├── ssi_ineligible_child_allocation.py │ │ │ │ │ └── ssi_ineligible_parent_allocation.py │ │ │ │ ├── is_ssi_blind_or_disabled_working_student_exclusion_eligible.py │ │ │ │ ├── marital │ │ │ │ │ ├── ssi_marital_both_eligible.py │ │ │ │ │ ├── ssi_marital_earned_income.py │ │ │ │ │ └── ssi_marital_unearned_income.py │ │ │ │ ├── ssi_blind_or_disabled_working_student_exclusion.py │ │ │ │ ├── ssi_countable_income.py │ │ │ │ ├── ssi_earned_income.py │ │ │ │ ├── ssi_engaged_in_sga.py │ │ │ │ └── ssi_unearned_income.py │ │ │ ├── resources │ │ │ │ ├── meets_ssi_resource_test.py │ │ │ │ └── ssi_countable_resources.py │ │ │ └── status │ │ │ │ ├── is_ssi_aged.py │ │ │ │ ├── is_ssi_aged_blind_disabled.py │ │ │ │ ├── is_ssi_disabled.py │ │ │ │ ├── is_ssi_eligible_individual.py │ │ │ │ ├── is_ssi_eligible_spouse.py │ │ │ │ ├── is_ssi_ineligible_child.py │ │ │ │ ├── is_ssi_ineligible_parent.py │ │ │ │ ├── is_ssi_ineligible_spouse.py │ │ │ │ ├── is_ssi_qualified_noncitizen.py │ │ │ │ └── ssi_category.py │ │ │ ├── is_ssi_eligible.py │ │ │ ├── ssi.py │ │ │ ├── ssi_amount_if_eligible.py │ │ │ ├── ssi_claim_is_joint.py │ │ │ ├── tax_unit_ssi.py │ │ │ └── uncapped_ssi.py │ ├── states │ │ ├── ak │ │ │ └── dor │ │ │ │ ├── ak_energy_relief.py │ │ │ │ └── ak_permanent_fund_dividend.py │ │ ├── al │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── al_agi.py │ │ │ │ ├── al_income_tax.py │ │ │ │ ├── al_income_tax_before_non_refundable_credits.py │ │ │ │ ├── al_income_tax_before_refundable_credits.py │ │ │ │ ├── al_non_refundable_credits.py │ │ │ │ ├── al_refundable_credits.py │ │ │ │ ├── al_taxable_income.py │ │ │ │ ├── al_withheld_income_tax.py │ │ │ │ ├── deductions │ │ │ │ ├── al_deductions.py │ │ │ │ ├── al_standard_deduction.py │ │ │ │ ├── federal_income_tax │ │ │ │ │ └── al_federal_income_tax_deduction.py │ │ │ │ └── itemized │ │ │ │ │ ├── al_casualty_loss_deduction.py │ │ │ │ │ ├── al_investment_interest.py │ │ │ │ │ ├── al_itemized_deductions.py │ │ │ │ │ ├── al_medical_expense_deduction.py │ │ │ │ │ └── al_misc_deduction.py │ │ │ │ └── exemptions │ │ │ │ ├── al_dependent_exemption.py │ │ │ │ ├── al_personal_exemption.py │ │ │ │ └── retirement │ │ │ │ ├── al_retirement_exemption.py │ │ │ │ ├── al_retirement_exemption_eligible_person.py │ │ │ │ └── al_retirement_exemption_person.py │ │ ├── ar │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── ar_agi_indiv.py │ │ │ │ ├── ar_agi_joint.py │ │ │ │ ├── ar_exemptions.py │ │ │ │ ├── ar_files_separately.py │ │ │ │ ├── ar_gross_income_indiv.py │ │ │ │ ├── ar_gross_income_joint.py │ │ │ │ ├── ar_income_tax.py │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_indiv.py │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_joint.py │ │ │ │ ├── ar_income_tax_before_non_refundable_credits_unit.py │ │ │ │ ├── ar_income_tax_before_refundable_credits.py │ │ │ │ ├── ar_non_refundable_credits.py │ │ │ │ ├── ar_refundable_credits.py │ │ │ │ ├── ar_taxable_capital_gains_indiv.py │ │ │ │ ├── ar_taxable_capital_gains_joint.py │ │ │ │ ├── ar_taxable_income_indiv.py │ │ │ │ ├── ar_taxable_income_joint.py │ │ │ │ ├── ar_withheld_income_tax.py │ │ │ │ ├── credits │ │ │ │ ├── ar_additional_tax_credit_for_qualified_individuals.py │ │ │ │ ├── ar_additional_tax_credit_for_qualified_individuals_person.py │ │ │ │ ├── ar_cdcc.py │ │ │ │ ├── ar_inflation_relief_credit_person.py │ │ │ │ ├── ar_inflationary_relief_tax_credit.py │ │ │ │ └── personal │ │ │ │ │ ├── ar_personal_credit_dependent.py │ │ │ │ │ ├── ar_personal_credit_disabled_dependent.py │ │ │ │ │ ├── ar_personal_credits.py │ │ │ │ │ └── ar_personal_credits_base.py │ │ │ │ ├── deductions │ │ │ │ ├── ar_deduction_indiv.py │ │ │ │ ├── ar_deduction_joint.py │ │ │ │ ├── ar_tax_unit_itemizes.py │ │ │ │ ├── itemized │ │ │ │ │ ├── ar_itemized_deductions_indiv.py │ │ │ │ │ ├── ar_itemized_deductions_joint.py │ │ │ │ │ ├── ar_medical_expense_deduction_indiv.py │ │ │ │ │ ├── ar_medical_expense_deduction_joint.py │ │ │ │ │ ├── ar_misc_deduction_indiv.py │ │ │ │ │ ├── ar_misc_deduction_joint.py │ │ │ │ │ └── post_secondary_education │ │ │ │ │ │ ├── ar_post_secondary_education_tuition_deduction.py │ │ │ │ │ │ └── ar_post_secondary_education_tuition_deduction_person.py │ │ │ │ └── standard │ │ │ │ │ ├── ar_standard_deduction_indiv.py │ │ │ │ │ └── ar_standard_deduction_joint.py │ │ │ │ ├── exemptions │ │ │ │ ├── ar_capped_retirement_or_disability_benefits_exemption_person.py │ │ │ │ ├── ar_military_retirement_income_person.py │ │ │ │ ├── ar_retirement_or_disability_benefits_exemption.py │ │ │ │ └── ar_retirement_or_disability_benefits_exemption_person.py │ │ │ │ └── low_income │ │ │ │ └── ar_low_income_tax_joint.py │ │ ├── az │ │ │ ├── hhs │ │ │ │ └── tanf │ │ │ │ │ └── eligibility │ │ │ │ │ └── az_tanf_eligible_child.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── az_additions.py │ │ │ │ ├── az_agi.py │ │ │ │ ├── az_filing_status.py │ │ │ │ ├── az_income_tax.py │ │ │ │ ├── az_income_tax_before_non_refundable_credits.py │ │ │ │ ├── az_income_tax_before_refundable_credits.py │ │ │ │ ├── az_non_refundable_credits.py │ │ │ │ ├── az_refundable_credits.py │ │ │ │ ├── az_subtractions.py │ │ │ │ ├── az_taxable_income.py │ │ │ │ ├── az_withheld_income_tax.py │ │ │ │ ├── credits │ │ │ │ ├── az_increased_excise_tax_credit.py │ │ │ │ ├── az_increased_excise_tax_credit_eligible.py │ │ │ │ ├── charitable_contribution │ │ │ │ │ ├── az_charitable_contributions_credit.py │ │ │ │ │ ├── az_charitable_contributions_to_qualifying_charitable_organizations.py │ │ │ │ │ └── az_charitable_contributions_to_qualifying_foster_care_organizations.py │ │ │ │ ├── dependent_credit │ │ │ │ │ └── az_dependent_tax_credit.py │ │ │ │ ├── family_tax_credit │ │ │ │ │ ├── az_family_tax_credit.py │ │ │ │ │ └── az_family_tax_credit_eligible.py │ │ │ │ └── property_tax_credit │ │ │ │ │ ├── az_property_tax_credit.py │ │ │ │ │ ├── az_property_tax_credit_eligible.py │ │ │ │ │ └── az_property_tax_credit_income.py │ │ │ │ ├── deductions │ │ │ │ ├── az_deductions.py │ │ │ │ ├── itemized │ │ │ │ │ └── az_itemized_deductions.py │ │ │ │ └── standard │ │ │ │ │ ├── az_base_standard_deduction.py │ │ │ │ │ ├── az_increased_standard_deduction_for_charitable_contributions.py │ │ │ │ │ └── az_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── az_aged_exemption.py │ │ │ │ ├── az_aged_exemption_eligible_person.py │ │ │ │ ├── az_blind_exemption.py │ │ │ │ ├── az_exemptions.py │ │ │ │ ├── az_parents_grandparents_exemption.py │ │ │ │ └── az_stillborn_exemption.py │ │ │ │ └── subtractions │ │ │ │ ├── az_military_retirement_subtraction.py │ │ │ │ ├── az_public_pension_exclusion.py │ │ │ │ ├── capital_gains │ │ │ │ └── az_long_term_capital_gains_subtraction.py │ │ │ │ └── college_savings │ │ │ │ └── az_529_college_savings_plan_subtraction.py │ │ ├── ca │ │ │ ├── ca_child_care_subsidies.py │ │ │ ├── ca_foster_care_minor_dependent.py │ │ │ ├── ca_in_medical_care_facility.py │ │ │ ├── calepa │ │ │ │ └── carb │ │ │ │ │ └── cvrp │ │ │ │ │ ├── ca_cvrp.py │ │ │ │ │ ├── ca_cvrp_vehicle_rebate_amount.py │ │ │ │ │ ├── is_ca_cvrp_increased_rebate_eligible.py │ │ │ │ │ └── is_ca_cvrp_normal_rebate_eligible.py │ │ │ ├── cdss │ │ │ │ ├── ca_in_home_supportive_services.py │ │ │ │ ├── capi │ │ │ │ │ ├── ca_capi.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── ca_capi_eligible.py │ │ │ │ │ │ ├── ca_capi_eligible_person.py │ │ │ │ │ │ ├── ca_capi_income_eligible.py │ │ │ │ │ │ └── ca_capi_resource_eligible.py │ │ │ │ │ └── resources │ │ │ │ │ │ ├── ca_capi_countable_vehicle_value.py │ │ │ │ │ │ └── ca_capi_resources.py │ │ │ │ ├── state_supplement │ │ │ │ │ ├── ca_state_supplement.py │ │ │ │ │ ├── ca_state_supplement_eligible_person.py │ │ │ │ │ └── payment_standard │ │ │ │ │ │ ├── ca_state_supplement_aged_blind_disabled_amount.py │ │ │ │ │ │ ├── ca_state_supplement_aged_disabled_amount.py │ │ │ │ │ │ ├── ca_state_supplement_aged_disabled_count.py │ │ │ │ │ │ ├── ca_state_supplement_blind_amount.py │ │ │ │ │ │ ├── ca_state_supplement_dependent_amount.py │ │ │ │ │ │ ├── ca_state_supplement_food_allowance.py │ │ │ │ │ │ ├── ca_state_supplement_food_allowance_eligible.py │ │ │ │ │ │ ├── ca_state_supplement_medical_care_facility_amount.py │ │ │ │ │ │ ├── ca_state_supplement_out_of_home_care_facility_amount.py │ │ │ │ │ │ └── ca_state_supplement_payment_standard.py │ │ │ │ └── tanf │ │ │ │ │ ├── cash │ │ │ │ │ ├── ca_tanf.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── ca_tanf_applicant_financial_test.py │ │ │ │ │ │ ├── ca_tanf_eligible.py │ │ │ │ │ │ ├── ca_tanf_exempt.py │ │ │ │ │ │ ├── ca_tanf_financial_eligible.py │ │ │ │ │ │ ├── ca_tanf_immigration_status_eligible_person.py │ │ │ │ │ │ ├── ca_tanf_income_limit.py │ │ │ │ │ │ ├── ca_tanf_maximum_payment.py │ │ │ │ │ │ ├── ca_tanf_recipient_financial_test.py │ │ │ │ │ │ ├── ca_tanf_region1.py │ │ │ │ │ │ ├── ca_tanf_resources_eligible.py │ │ │ │ │ │ └── ca_tanf_vehicle_value_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ │ ├── ca_tanf_countable_income_applicant.py │ │ │ │ │ │ ├── ca_tanf_countable_income_recipient.py │ │ │ │ │ │ ├── ca_tanf_db_unearned_income.py │ │ │ │ │ │ ├── ca_tanf_earned_income.py │ │ │ │ │ │ └── ca_tanf_other_unearned_income.py │ │ │ │ │ └── resources │ │ │ │ │ │ ├── ca_tanf_resources.py │ │ │ │ │ │ └── ca_tanf_resources_limit.py │ │ │ │ │ └── child_care │ │ │ │ │ ├── child_care_time │ │ │ │ │ ├── ca_calworks_child_care_days_per_month.py │ │ │ │ │ ├── ca_calworks_child_care_full_time.py │ │ │ │ │ ├── ca_calworks_child_care_provider_category.py │ │ │ │ │ ├── ca_calworks_child_care_time_category.py │ │ │ │ │ └── ca_calworks_child_care_weeks_per_month.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── ca_calworks_child_care_age_eligible.py │ │ │ │ │ ├── ca_calworks_child_care_child_age_eligible.py │ │ │ │ │ ├── ca_calworks_child_care_eligible.py │ │ │ │ │ ├── ca_calworks_child_care_immigration_status_eligible_person.py │ │ │ │ │ ├── ca_calworks_child_care_meets_work_requirement.py │ │ │ │ │ └── ca_calworks_child_care_welfare_to_work.py │ │ │ │ │ └── reimbursement │ │ │ │ │ ├── ca_calworks_child_care.py │ │ │ │ │ ├── ca_calworks_child_care_factor_category.py │ │ │ │ │ ├── ca_calworks_child_care_payment.py │ │ │ │ │ ├── ca_calworks_child_care_payment_factor.py │ │ │ │ │ ├── ca_calworks_child_care_payment_standard.py │ │ │ │ │ └── ca_calworks_child_care_time_coefficient.py │ │ │ ├── chhs │ │ │ │ └── is_ca_medicaid_immigration_status_eligible.py │ │ │ ├── cpuc │ │ │ │ ├── care │ │ │ │ │ ├── ca_care.py │ │ │ │ │ ├── ca_care_amount_if_eligible.py │ │ │ │ │ └── eligibility │ │ │ │ │ │ ├── ca_care_categorically_eligible.py │ │ │ │ │ │ ├── ca_care_eligible.py │ │ │ │ │ │ ├── ca_care_income_eligible.py │ │ │ │ │ │ └── ca_care_poverty_line.py │ │ │ │ └── fera │ │ │ │ │ ├── ca_fera.py │ │ │ │ │ ├── ca_fera_amount_if_eligible.py │ │ │ │ │ └── ca_fera_eligible.py │ │ │ ├── dhcs │ │ │ │ └── ffyp │ │ │ │ │ └── ca_ffyp_eligible.py │ │ │ ├── edd │ │ │ │ └── ca_state_disability_insurance.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── alternative_minimum_tax │ │ │ │ ├── amti │ │ │ │ │ ├── ca_amti.py │ │ │ │ │ ├── ca_amti_adjustments.py │ │ │ │ │ └── ca_pre_exemption_amti.py │ │ │ │ ├── ca_amt.py │ │ │ │ └── exemption │ │ │ │ │ └── ca_amt_exemption.py │ │ │ │ ├── ca_additions.py │ │ │ │ ├── ca_agi.py │ │ │ │ ├── ca_agi_subtractions.py │ │ │ │ ├── ca_income_tax.py │ │ │ │ ├── ca_income_tax_before_credits.py │ │ │ │ ├── ca_income_tax_before_refundable_credits.py │ │ │ │ ├── ca_mental_health_services_tax.py │ │ │ │ ├── ca_taxable_income.py │ │ │ │ ├── ca_use_tax.py │ │ │ │ ├── ca_withheld_income_tax.py │ │ │ │ ├── credits │ │ │ │ ├── ca_cdcc.py │ │ │ │ ├── ca_cdcc_rate.py │ │ │ │ ├── ca_cdcc_relevant_expenses.py │ │ │ │ ├── ca_federal_capped_cdcc.py │ │ │ │ ├── ca_federal_cdcc.py │ │ │ │ ├── ca_non_refundable_credits.py │ │ │ │ ├── ca_refundable_credits.py │ │ │ │ ├── ca_renter_credit.py │ │ │ │ ├── earned_income │ │ │ │ │ ├── ca_eitc.py │ │ │ │ │ ├── ca_eitc_eligible.py │ │ │ │ │ └── ca_is_qualifying_child_for_caleitc.py │ │ │ │ ├── foster_youth │ │ │ │ │ ├── ca_foster_youth_tax_credit.py │ │ │ │ │ ├── ca_foster_youth_tax_credit_eligible_person.py │ │ │ │ │ └── ca_foster_youth_tax_credit_person.py │ │ │ │ └── young_child │ │ │ │ │ └── ca_yctc.py │ │ │ │ ├── deductions │ │ │ │ ├── ca_deductions.py │ │ │ │ ├── ca_investment_interest_deduction.py │ │ │ │ ├── itemized │ │ │ │ │ ├── ca_itemized_deductions.py │ │ │ │ │ └── ca_itemized_deductions_pre_limitation.py │ │ │ │ └── standard │ │ │ │ │ └── ca_standard_deduction.py │ │ │ │ └── exemptions │ │ │ │ └── ca_exemptions.py │ │ ├── co │ │ │ ├── ccap │ │ │ │ ├── co_ccap_add_on_parent_fee.py │ │ │ │ ├── co_ccap_base_parent_fee.py │ │ │ │ ├── co_ccap_child_eligible.py │ │ │ │ ├── co_ccap_countable_income.py │ │ │ │ ├── co_ccap_eligible.py │ │ │ │ ├── co_ccap_eligible_children.py │ │ │ │ ├── co_ccap_parent_fee.py │ │ │ │ ├── co_ccap_smi.py │ │ │ │ ├── co_ccap_subsidy.py │ │ │ │ ├── co_quality_rating_of_child_care_facility.py │ │ │ │ ├── entry │ │ │ │ │ ├── co_ccap_entry_eligible.py │ │ │ │ │ ├── co_ccap_entry_income_eligible.py │ │ │ │ │ ├── co_ccap_fpg_eligible.py │ │ │ │ │ ├── co_ccap_is_in_entry_process.py │ │ │ │ │ └── co_ccap_smi_eligible.py │ │ │ │ └── re_determination │ │ │ │ │ ├── co_ccap_is_in_re_determination_process.py │ │ │ │ │ ├── co_ccap_re_determination_eligible.py │ │ │ │ │ └── co_ccap_re_determination_income_eligible.py │ │ │ ├── cdhs │ │ │ │ └── tanf │ │ │ │ │ ├── co_tanf.py │ │ │ │ │ ├── co_tanf_count_children.py │ │ │ │ │ ├── co_tanf_eligible.py │ │ │ │ │ ├── co_tanf_grant_standard.py │ │ │ │ │ ├── co_tanf_income_eligible.py │ │ │ │ │ ├── co_tanf_need_standard.py │ │ │ │ │ └── income │ │ │ │ │ ├── co_tanf_countable_earned_income_grant_standard.py │ │ │ │ │ ├── co_tanf_countable_earned_income_need.py │ │ │ │ │ ├── co_tanf_countable_gross_earned_income.py │ │ │ │ │ └── co_tanf_countable_gross_unearned_income.py │ │ │ ├── co_child_care_subsidies.py │ │ │ ├── hcpf │ │ │ │ └── chp │ │ │ │ │ ├── co_chp.py │ │ │ │ │ ├── co_chp_eligible.py │ │ │ │ │ └── co_chp_out_of_pocket_maximum.py │ │ │ ├── ssa │ │ │ │ ├── oap │ │ │ │ │ ├── co_oap.py │ │ │ │ │ └── co_oap_eligible.py │ │ │ │ └── state_supplement │ │ │ │ │ ├── co_state_supplement.py │ │ │ │ │ └── co_state_supplement_eligible.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ ├── co_additions.py │ │ │ │ ├── co_state_addback.py │ │ │ │ ├── federal_deductions │ │ │ │ │ ├── co_federal_deduction_addback.py │ │ │ │ │ └── co_federal_deduction_addback_required.py │ │ │ │ └── qualified_business_income_deduction │ │ │ │ │ ├── co_qualified_business_income_deduction_addback.py │ │ │ │ │ └── co_qualified_business_income_deduction_addback_required.py │ │ │ │ ├── co_income_tax.py │ │ │ │ ├── co_income_tax_before_non_refundable_credits.py │ │ │ │ ├── co_income_tax_before_refundable_credits.py │ │ │ │ ├── co_non_refundable_credits.py │ │ │ │ ├── co_refundable_credits.py │ │ │ │ ├── co_taxable_income.py │ │ │ │ ├── co_withheld_income_tax.py │ │ │ │ ├── credits │ │ │ │ ├── care_worker │ │ │ │ │ ├── co_care_worker_credit.py │ │ │ │ │ ├── co_care_worker_credit_eligible.py │ │ │ │ │ ├── co_care_worker_credit_eligible_care_worker.py │ │ │ │ │ └── co_care_worker_credit_eligible_care_worker_count.py │ │ │ │ ├── cdcc │ │ │ │ │ ├── co_cdcc.py │ │ │ │ │ ├── co_low_income_cdcc.py │ │ │ │ │ └── co_low_income_cdcc_eligible.py │ │ │ │ ├── co_tabor_cash_back.py │ │ │ │ ├── ctc │ │ │ │ │ ├── co_ctc.py │ │ │ │ │ ├── co_ctc_eligible_child.py │ │ │ │ │ ├── co_ctc_eligible_children_count.py │ │ │ │ │ └── federal_ctc │ │ │ │ │ │ ├── co_federal_ctc.py │ │ │ │ │ │ ├── co_federal_ctc_child_individual_maximum.py │ │ │ │ │ │ ├── co_federal_ctc_maximum.py │ │ │ │ │ │ ├── co_non_refundable_ctc.py │ │ │ │ │ │ └── co_refundable_ctc.py │ │ │ │ ├── eitc │ │ │ │ │ └── co_eitc.py │ │ │ │ ├── family_affordability │ │ │ │ │ └── co_family_affordability_credit.py │ │ │ │ ├── income_qualified_senior_housing │ │ │ │ │ ├── co_income_qualified_senior_housing_credit.py │ │ │ │ │ └── co_income_qualified_senior_housing_eligible.py │ │ │ │ └── sales_tax_refund │ │ │ │ │ ├── co_modified_agi.py │ │ │ │ │ ├── co_sales_tax_refund.py │ │ │ │ │ └── co_sales_tax_refund_eligible.py │ │ │ │ ├── exemptions │ │ │ │ └── co_property_tax_exemption.py │ │ │ │ └── subtractions │ │ │ │ ├── able_contribution │ │ │ │ └── co_able_contribution_subtraction.py │ │ │ │ ├── charitable_contribution │ │ │ │ ├── co_charitable_contribution_subtraction.py │ │ │ │ └── co_charitable_contribution_subtraction_eligible.py │ │ │ │ ├── co_subtractions.py │ │ │ │ ├── collegeinvest_contribution │ │ │ │ └── co_collegeinvest_subtraction.py │ │ │ │ ├── military_retirement │ │ │ │ └── co_military_retirement_subtraction.py │ │ │ │ └── pension │ │ │ │ ├── co_pension_subtraction.py │ │ │ │ ├── co_pension_subtraction_income.py │ │ │ │ ├── co_pension_subtraction_indv.py │ │ │ │ ├── co_pension_subtraction_indv_eligible..py │ │ │ │ ├── co_social_security_subtraction_indv.py │ │ │ │ └── co_social_security_subtraction_indv_eligible.py │ │ ├── ct │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── add_back │ │ │ │ ├── ct_income_tax_high_tax_recapture.py │ │ │ │ ├── ct_income_tax_low_tax_recapture.py │ │ │ │ ├── ct_income_tax_middle_tax_recapture.py │ │ │ │ ├── ct_income_tax_phase_out_add_back.py │ │ │ │ └── ct_income_tax_recapture.py │ │ │ │ ├── additions │ │ │ │ ├── ct_additions.py │ │ │ │ └── ct_section_179_expense_add_back.py │ │ │ │ ├── amt │ │ │ │ └── ct_amt.py │ │ │ │ ├── credits │ │ │ │ ├── ct_personal_credit_rate.py │ │ │ │ ├── eitc │ │ │ │ │ └── ct_eitc.py │ │ │ │ └── property_tax │ │ │ │ │ ├── ct_property_tax_credit.py │ │ │ │ │ └── ct_property_tax_credit_eligible.py │ │ │ │ ├── ct_agi.py │ │ │ │ ├── ct_agi_subtractions.py │ │ │ │ ├── ct_income_tax.py │ │ │ │ ├── ct_income_tax_after_amt.py │ │ │ │ ├── ct_income_tax_after_personal_credits.py │ │ │ │ ├── ct_income_tax_before_refundable_credits.py │ │ │ │ ├── ct_non_refundable_credits.py │ │ │ │ ├── ct_refundable_credits.py │ │ │ │ ├── ct_taxable_income.py │ │ │ │ ├── ct_withheld_income_tax.py │ │ │ │ ├── exemptions │ │ │ │ └── ct_personal_exemptions.py │ │ │ │ ├── rebate │ │ │ │ └── ct_child_tax_rebate.py │ │ │ │ └── subtractions │ │ │ │ ├── ct_social_security_benefit_adjustment.py │ │ │ │ ├── ct_subtractions.py │ │ │ │ ├── pension_annuity │ │ │ │ └── ct_pension_annuity_subtraction.py │ │ │ │ └── tuition │ │ │ │ └── ct_tuition_subtraction.py │ │ ├── dc │ │ │ ├── dhs │ │ │ │ ├── ccsp │ │ │ │ │ ├── copay │ │ │ │ │ │ ├── dc_ccsp_copay.py │ │ │ │ │ │ ├── dc_ccsp_first_child_copay.py │ │ │ │ │ │ ├── dc_ccsp_is_full_time.py │ │ │ │ │ │ ├── dc_ccsp_is_second_youngest_child.py │ │ │ │ │ │ ├── dc_ccsp_is_youngest_child.py │ │ │ │ │ │ └── dc_ccsp_second_child_copay.py │ │ │ │ │ ├── dc_ccsp.py │ │ │ │ │ ├── dc_ccsp_assets.py │ │ │ │ │ ├── dc_ccsp_countable_income.py │ │ │ │ │ ├── dc_ccsp_enrolled.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── dc_ccsp_asset_eligible.py │ │ │ │ │ │ ├── dc_ccsp_eligible.py │ │ │ │ │ │ ├── dc_ccsp_eligible_child.py │ │ │ │ │ │ ├── dc_ccsp_immigration_status_eligible_person.py │ │ │ │ │ │ ├── dc_ccsp_income_eligible.py │ │ │ │ │ │ ├── dc_ccsp_income_test_waived.py │ │ │ │ │ │ └── qualified_activity_or_need │ │ │ │ │ │ │ ├── dc_ccsp_qualified_activity_eligible.py │ │ │ │ │ │ │ ├── dc_ccsp_qualified_activity_or_need_eligible.py │ │ │ │ │ │ │ └── dc_ccsp_qualified_need_eligible.py │ │ │ │ │ └── payment │ │ │ │ │ │ ├── dc_ccsp_attending_days_per_month.py │ │ │ │ │ │ ├── dc_ccsp_child_category.py │ │ │ │ │ │ ├── dc_ccsp_childcare_provider_category.py │ │ │ │ │ │ ├── dc_ccsp_maximum_subsidy_amount.py │ │ │ │ │ │ └── dc_ccsp_schedule_type.py │ │ │ │ ├── dc_pap_eligible_child.py │ │ │ │ ├── gac │ │ │ │ │ ├── dc_gac.py │ │ │ │ │ ├── dc_gac_assistance_unit_size.py │ │ │ │ │ ├── dc_gac_standard_payment.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── dc_gac_eligible.py │ │ │ │ │ │ ├── dc_gac_eligible_child.py │ │ │ │ │ │ └── dc_gac_income_eligible.py │ │ │ │ │ └── income │ │ │ │ │ │ ├── dc_gac_countable_income.py │ │ │ │ │ │ ├── dc_gac_countable_unearned_income_person.py │ │ │ │ │ │ └── dc_gac_earned_income_after_disregard_person.py │ │ │ │ ├── power │ │ │ │ │ ├── dc_power.py │ │ │ │ │ ├── dc_power_eligible.py │ │ │ │ │ ├── dc_power_has_disqualifying_beneifts.py │ │ │ │ │ └── dc_power_head_or_spouse_eligible.py │ │ │ │ └── tanf │ │ │ │ │ ├── dc_tanf.py │ │ │ │ │ ├── dc_tanf_assistance_unit_size.py │ │ │ │ │ ├── dc_tanf_countable_resources.py │ │ │ │ │ ├── dc_tanf_standard_payment.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── dc_tanf_basic_eligibility_requirements.py │ │ │ │ │ ├── dc_tanf_demographic_eligible_person.py │ │ │ │ │ ├── dc_tanf_eligible.py │ │ │ │ │ ├── dc_tanf_immigration_status_eligible_person.py │ │ │ │ │ ├── dc_tanf_income_eligible.py │ │ │ │ │ └── dc_tanf_resources_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ ├── dc_tanf_countable_income.py │ │ │ │ │ ├── deductions │ │ │ │ │ │ └── dc_tanf_childcare_deduction.py │ │ │ │ │ ├── earned │ │ │ │ │ │ ├── dc_tanf_countable_earned_income.py │ │ │ │ │ │ ├── dc_tanf_earned_income_after_disregard_person.py │ │ │ │ │ │ └── dc_tanf_gross_earned_income.py │ │ │ │ │ └── unearned │ │ │ │ │ │ ├── dc_tanf_countable_unearned_income.py │ │ │ │ │ │ └── dc_tanf_gross_unearned_income.py │ │ │ │ │ └── work_requirement │ │ │ │ │ ├── dc_tanf_is_working.py │ │ │ │ │ ├── dc_tanf_meets_work_requirements.py │ │ │ │ │ └── dc_tanf_work_requirement_exempt.py │ │ │ ├── doee │ │ │ │ └── liheap │ │ │ │ │ ├── dc_liheap_eligible.py │ │ │ │ │ ├── dc_liheap_heating_type.py │ │ │ │ │ ├── dc_liheap_housing_type.py │ │ │ │ │ ├── dc_liheap_income_level.py │ │ │ │ │ └── dc_liheap_payment.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ ├── dc_additions.py │ │ │ │ └── dc_self_employment_loss_addition.py │ │ │ │ ├── credits │ │ │ │ ├── ctc │ │ │ │ │ ├── dc_ctc.py │ │ │ │ │ ├── dc_ctc_capped_children.py │ │ │ │ │ └── dc_ctc_eligible_child.py │ │ │ │ ├── dc_cdcc.py │ │ │ │ ├── dc_kccatc.py │ │ │ │ ├── dc_non_refundable_credits.py │ │ │ │ ├── dc_ptc.py │ │ │ │ ├── dc_refundable_credits.py │ │ │ │ ├── eitc │ │ │ │ │ ├── dc_eitc.py │ │ │ │ │ ├── dc_eitc_with_qualifying_child.py │ │ │ │ │ └── dc_eitc_without_qualifying_child.py │ │ │ │ └── takes_up_dc_ptc.py │ │ │ │ ├── dc_agi.py │ │ │ │ ├── dc_files_separately.py │ │ │ │ ├── dc_income_tax.py │ │ │ │ ├── dc_income_tax_before_credits.py │ │ │ │ ├── dc_income_tax_before_credits_indiv.py │ │ │ │ ├── dc_income_tax_before_credits_joint.py │ │ │ │ ├── dc_income_tax_before_refundable_credits.py │ │ │ │ ├── dc_snap_temporary_local_benefit.py │ │ │ │ ├── dc_taxable_income_indiv.py │ │ │ │ ├── dc_taxable_income_joint.py │ │ │ │ ├── dc_withheld_income_tax.py │ │ │ │ ├── deductions │ │ │ │ ├── dc_deduction_indiv.py │ │ │ │ ├── dc_deduction_joint.py │ │ │ │ ├── dc_itemized_deductions.py │ │ │ │ └── dc_standard_deduction.py │ │ │ │ └── subtractions │ │ │ │ ├── dc_disability_exclusion.py │ │ │ │ ├── dc_disabled_exclusion_subtraction.py │ │ │ │ └── dc_income_subtractions.py │ │ ├── de │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ └── de_additions.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── de_cdcc.py │ │ │ │ ├── eitc │ │ │ │ │ ├── de_eitc.py │ │ │ │ │ ├── de_non_refundable_eitc.py │ │ │ │ │ ├── de_non_refundable_eitc_if_claimed.py │ │ │ │ │ ├── de_refundable_eitc.py │ │ │ │ │ ├── de_refundable_eitc_if_claimed.py │ │ │ │ │ └── refundability_calculation │ │ │ │ │ │ ├── de_claims_refundable_eitc.py │ │ │ │ │ │ ├── de_income_tax_if_claiming_non_refundable_eitc.py │ │ │ │ │ │ └── de_income_tax_if_claiming_refundable_eitc.py │ │ │ │ ├── personal │ │ │ │ │ ├── de_aged_personal_credit.py │ │ │ │ │ └── de_personal_credit.py │ │ │ │ └── relief_rebate │ │ │ │ │ └── de_relief_rebate.py │ │ │ │ ├── de_agi_indiv.py │ │ │ │ ├── de_agi_joint.py │ │ │ │ ├── de_files_separately.py │ │ │ │ ├── de_income_tax.py │ │ │ │ ├── de_income_tax_before_non_refundable_credits_indv.py │ │ │ │ ├── de_income_tax_before_non_refundable_credits_joint.py │ │ │ │ ├── de_income_tax_before_non_refundable_credits_unit.py │ │ │ │ ├── de_income_tax_before_refundable_credits.py │ │ │ │ ├── de_non_refundable_credits.py │ │ │ │ ├── de_pre_exclusions_agi.py │ │ │ │ ├── de_refundable_credits.py │ │ │ │ ├── de_taxable_income_indv.py │ │ │ │ ├── de_taxable_income_joint.py │ │ │ │ ├── de_withheld_income_tax.py │ │ │ │ ├── deductions │ │ │ │ ├── de_deduction_indv.py │ │ │ │ ├── de_deduction_joint.py │ │ │ │ ├── de_tax_unit_itemizes.py │ │ │ │ ├── itemized │ │ │ │ │ ├── de_capped_real_estate_tax.py │ │ │ │ │ ├── de_itemized_deductions_indv.py │ │ │ │ │ ├── de_itemized_deductions_joint.py │ │ │ │ │ └── de_itemized_deductions_unit.py │ │ │ │ └── standard │ │ │ │ │ ├── de_additional_standard_deduction.py │ │ │ │ │ ├── de_base_standard_deduction_indv.py │ │ │ │ │ ├── de_base_standard_deduction_joint.py │ │ │ │ │ ├── de_standard_deduction_indv.py │ │ │ │ │ └── de_standard_deduction_joint.py │ │ │ │ └── subtractions │ │ │ │ ├── de_subtractions.py │ │ │ │ ├── exclusions │ │ │ │ ├── de_elderly_or_disabled_income_exclusion_eligible_person.py │ │ │ │ ├── de_elderly_or_disabled_income_exclusion_indiv.py │ │ │ │ └── de_elderly_or_disabled_income_exclusion_joint.py │ │ │ │ └── pension_exclusion │ │ │ │ ├── de_pension_exclusion.py │ │ │ │ └── de_pension_exclusion_income.py │ │ ├── ga │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── ga_cdcc.py │ │ │ │ ├── ctc │ │ │ │ │ └── ga_ctc.py │ │ │ │ ├── ga_itemizer_credit.py │ │ │ │ ├── ga_low_income_credit.py │ │ │ │ └── ga_surplus_tax_rebate.py │ │ │ │ ├── deductions │ │ │ │ ├── ga_additional_standard_deduction.py │ │ │ │ ├── ga_deductions.py │ │ │ │ └── ga_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ └── ga_exemptions.py │ │ │ │ ├── ga_additions.py │ │ │ │ ├── ga_agi.py │ │ │ │ ├── ga_income_tax.py │ │ │ │ ├── ga_income_tax_before_non_refundable_credits.py │ │ │ │ ├── ga_income_tax_before_refundable_credits.py │ │ │ │ ├── ga_non_refundable_credits.py │ │ │ │ ├── ga_refundable_credits.py │ │ │ │ ├── ga_subtractions.py │ │ │ │ ├── ga_taxable_income.py │ │ │ │ ├── ga_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ ├── ga_investment_in_529_plan_deduction.py │ │ │ │ └── retirement │ │ │ │ ├── ga_retirement_exclusion.py │ │ │ │ ├── ga_retirement_exclusion_countable_earned_income.py │ │ │ │ ├── ga_retirement_exclusion_eligible_person.py │ │ │ │ ├── ga_retirement_exclusion_person.py │ │ │ │ ├── ga_retirement_income_exclusion_retirement_income.py │ │ │ │ └── military │ │ │ │ ├── ga_military_retirement_exclusion.py │ │ │ │ ├── ga_military_retirement_exclusion_eligible_person.py │ │ │ │ └── ga_military_retirement_exclusion_person.py │ │ ├── general_assistance.py │ │ ├── hi │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── alternative_tax │ │ │ │ ├── hi_alternative_tax_on_capital_gains.py │ │ │ │ ├── hi_alternative_tax_on_capital_gains_eligible.py │ │ │ │ └── hi_taxable_income_for_alternative_tax.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── dependent_care_benefit │ │ │ │ │ │ ├── hi_cdcc_income_floor_eligible.py │ │ │ │ │ │ ├── hi_cdcc_min_head_spouse_earned.py │ │ │ │ │ │ └── hi_dependent_care_benefits.py │ │ │ │ │ ├── hi_cdcc.py │ │ │ │ │ └── hi_cdcc_eligible.py │ │ │ │ ├── food_excise │ │ │ │ │ ├── hi_food_excise_credit.py │ │ │ │ │ ├── hi_food_excise_credit_child_receiving_public_support.py │ │ │ │ │ ├── hi_food_excise_credit_minor_child_amount.py │ │ │ │ │ ├── hi_food_excise_credit_minor_child_count.py │ │ │ │ │ └── hi_food_excise_exemption_amount.py │ │ │ │ ├── hi_act_115_rebate.py │ │ │ │ ├── hi_eitc.py │ │ │ │ └── hi_low_income_household_renters │ │ │ │ │ ├── hi_low_income_household_renters_tax_credit.py │ │ │ │ │ └── hi_tax_credit_for_low_income_household_renters_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── hi_deductions.py │ │ │ │ ├── itemized │ │ │ │ │ ├── hi_casualty_loss_deduction.py │ │ │ │ │ ├── hi_interest_deduction.py │ │ │ │ │ ├── hi_itemized_deductions.py │ │ │ │ │ ├── hi_medical_expense_deduction.py │ │ │ │ │ ├── hi_reduced_itemized_deductions.py │ │ │ │ │ ├── hi_salt_deduction.py │ │ │ │ │ └── hi_total_itemized_deductions.py │ │ │ │ └── standard │ │ │ │ │ └── hi_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── hi_disabled_exemptions.py │ │ │ │ ├── hi_exemptions.py │ │ │ │ └── hi_regular_exemptions.py │ │ │ │ ├── hi_additions.py │ │ │ │ ├── hi_agi.py │ │ │ │ ├── hi_income_tax.py │ │ │ │ ├── hi_income_tax_before_non_refundable_credits.py │ │ │ │ ├── hi_income_tax_before_refundable_credits.py │ │ │ │ ├── hi_non_refundable_credits.py │ │ │ │ ├── hi_refundable_credits.py │ │ │ │ ├── hi_subtractions.py │ │ │ │ ├── hi_taxable_income.py │ │ │ │ ├── hi_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ └── hi_military_pay_exclusion.py │ │ ├── ia │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── consolidated │ │ │ │ ├── ia_alternate_tax_consolidated.py │ │ │ │ ├── ia_income_tax_consolidated.py │ │ │ │ ├── ia_regular_tax_consolidated.py │ │ │ │ └── taxable_income │ │ │ │ │ ├── ia_additions_consolidated.py │ │ │ │ │ ├── ia_subtractions_consolidated.py │ │ │ │ │ ├── ia_taxable_income_consolidated.py │ │ │ │ │ └── ia_taxable_income_modifications_consolidated.py │ │ │ │ ├── credits │ │ │ │ ├── ia_cdcc.py │ │ │ │ ├── ia_eitc.py │ │ │ │ ├── ia_exemption_credit.py │ │ │ │ ├── ia_non_refundable_credits.py │ │ │ │ └── ia_refundable_credits.py │ │ │ │ ├── ia_alternate_tax_eligible.py │ │ │ │ ├── ia_files_separately.py │ │ │ │ ├── ia_income_tax.py │ │ │ │ ├── ia_income_tax_before_credits.py │ │ │ │ ├── ia_income_tax_before_refundable_credits.py │ │ │ │ ├── ia_is_tax_exempt.py │ │ │ │ ├── ia_modified_income.py │ │ │ │ ├── ia_reduced_tax.py │ │ │ │ ├── ia_reportable_social_security.py │ │ │ │ ├── ia_withheld_income_tax.py │ │ │ │ ├── including_married_filing_separately │ │ │ │ ├── alternate_tax │ │ │ │ │ ├── ia_alternate_tax_indiv.py │ │ │ │ │ ├── ia_alternate_tax_joint.py │ │ │ │ │ └── ia_alternate_tax_unit.py │ │ │ │ ├── deductions │ │ │ │ │ ├── ia_basic_deduction_indiv.py │ │ │ │ │ ├── ia_basic_deduction_joint.py │ │ │ │ │ ├── ia_fedtax_deduction.py │ │ │ │ │ ├── ia_itemized_deductions_indiv.py │ │ │ │ │ ├── ia_itemized_deductions_joint.py │ │ │ │ │ ├── ia_itemized_deductions_unit.py │ │ │ │ │ ├── ia_qbi_deduction.py │ │ │ │ │ ├── ia_standard_deduction_indiv.py │ │ │ │ │ └── ia_standard_deduction_joint.py │ │ │ │ ├── ia_amt_indiv.py │ │ │ │ ├── ia_amt_joint.py │ │ │ │ ├── ia_base_tax_indiv.py │ │ │ │ ├── ia_base_tax_joint.py │ │ │ │ ├── ia_income_tax_indiv.py │ │ │ │ ├── ia_income_tax_joint.py │ │ │ │ ├── ia_regular_tax_indiv.py │ │ │ │ ├── ia_regular_tax_joint.py │ │ │ │ ├── ia_taxable_income_indiv.py │ │ │ │ └── ia_taxable_income_joint.py │ │ │ │ └── net_income │ │ │ │ ├── ia_gross_income.py │ │ │ │ ├── ia_income_adjustments.py │ │ │ │ ├── ia_net_income.py │ │ │ │ ├── ia_pension_exclusion.py │ │ │ │ ├── ia_pension_exclusion_eligible.py │ │ │ │ └── ia_prorate_fraction.py │ │ ├── id │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── 2022_rebate │ │ │ │ │ ├── id_2022_rebate.py │ │ │ │ │ └── id_2022_rebate_floor.py │ │ │ │ ├── grocery │ │ │ │ │ ├── eligible │ │ │ │ │ │ ├── id_grocery_credit_qualified_months.py │ │ │ │ │ │ └── id_grocery_credit_qualifying_month.py │ │ │ │ │ ├── id_grocery_credit.py │ │ │ │ │ ├── id_grocery_credit_aged.py │ │ │ │ │ └── id_grocery_credit_base.py │ │ │ │ ├── id_aged_or_disabled_credit.py │ │ │ │ ├── id_aged_or_disabled_credit_eligible_person.py │ │ │ │ ├── id_ctc.py │ │ │ │ └── id_special_season_rebate.py │ │ │ │ ├── deductions │ │ │ │ ├── id_capital_gains_deduction.py │ │ │ │ ├── id_deductions.py │ │ │ │ ├── id_itemized_deductions.py │ │ │ │ ├── id_salt_deduction.py │ │ │ │ └── retirement_benefits │ │ │ │ │ ├── id_retirement_benefits_deduction.py │ │ │ │ │ ├── id_retirement_benefits_deduction_relevant_income.py │ │ │ │ │ └── id_retirement_benefits_eligible_person.py │ │ │ │ ├── id_additions.py │ │ │ │ ├── id_agi.py │ │ │ │ ├── id_income_tax.py │ │ │ │ ├── id_income_tax_before_non_refundable_credits.py │ │ │ │ ├── id_income_tax_before_refundable_credits.py │ │ │ │ ├── id_income_tax_liable.py │ │ │ │ ├── id_non_refundable_credits.py │ │ │ │ ├── id_receives_aged_or_disabled_credit.py │ │ │ │ ├── id_refundable_credits.py │ │ │ │ ├── id_taxable_income.py │ │ │ │ ├── id_withheld_income_tax.py │ │ │ │ ├── other_taxes │ │ │ │ └── pbf │ │ │ │ │ ├── id_pbf.py │ │ │ │ │ └── id_pbf_liable.py │ │ │ │ └── subtractions │ │ │ │ ├── household_and_dependent_care │ │ │ │ ├── id_cdcc_limit.py │ │ │ │ └── id_household_and_dependent_care_expense_deduction.py │ │ │ │ ├── id_aged_or_disabled_deduction.py │ │ │ │ ├── id_aged_or_disabled_deduction_eligible_person.py │ │ │ │ └── id_subtractions.py │ │ ├── il │ │ │ ├── dceo │ │ │ │ └── liheap │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── il_liheap_eligible.py │ │ │ │ │ ├── il_liheap_eligible_for_crisis_assistance.py │ │ │ │ │ └── il_liheap_income_eligible.py │ │ │ │ │ ├── il_liheap.py │ │ │ │ │ └── payment │ │ │ │ │ ├── il_liheap_base_payment.py │ │ │ │ │ └── il_liheap_crisis_assistance_amount.py │ │ │ ├── dhs │ │ │ │ ├── aabd │ │ │ │ │ ├── asset │ │ │ │ │ │ ├── il_aabd_asset_value_eligible.py │ │ │ │ │ │ ├── il_aabd_countable_assets.py │ │ │ │ │ │ ├── il_aabd_countable_vehicle_value.py │ │ │ │ │ │ └── il_aabd_vehicle_is_essential.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── il_aabd_eligible_person.py │ │ │ │ │ │ ├── il_aabd_financial_eligible_person.py │ │ │ │ │ │ ├── il_aabd_immigration_status_eligible_person.py │ │ │ │ │ │ └── il_aabd_non_financial_eligible_person.py │ │ │ │ │ ├── il_aabd.py │ │ │ │ │ ├── il_aabd_area.py │ │ │ │ │ ├── il_aabd_institutional_status.py │ │ │ │ │ ├── il_aabd_person.py │ │ │ │ │ ├── income │ │ │ │ │ │ ├── earned │ │ │ │ │ │ │ ├── il_aabd_earned_income_after_exemption_person.py │ │ │ │ │ │ │ └── il_aabd_gross_earned_income.py │ │ │ │ │ │ ├── expense │ │ │ │ │ │ │ ├── il_aabd_child_care_expense_exemption.py │ │ │ │ │ │ │ └── il_aabd_expense_exemption_person.py │ │ │ │ │ │ ├── il_aabd_countable_income.py │ │ │ │ │ │ ├── il_aabd_countable_unearned_income.py │ │ │ │ │ │ ├── il_aabd_flat_exemption_excess_over_unearned_income.py │ │ │ │ │ │ └── il_aabd_gross_unearned_income.py │ │ │ │ │ └── payment │ │ │ │ │ │ ├── il_aabd_grant_amount.py │ │ │ │ │ │ ├── il_aabd_need_standard_person.py │ │ │ │ │ │ ├── personal_allowance │ │ │ │ │ │ ├── il_aabd_is_bedfast.py │ │ │ │ │ │ └── il_aabd_personal_allowance.py │ │ │ │ │ │ ├── shelter │ │ │ │ │ │ └── il_aabd_shelter_allowance.py │ │ │ │ │ │ └── utility │ │ │ │ │ │ ├── il_utility_allowance.py │ │ │ │ │ │ └── il_utility_allowance_person.py │ │ │ │ ├── ccap │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── il_ccap_eligible.py │ │ │ │ │ │ ├── il_ccap_eligible_child.py │ │ │ │ │ │ ├── il_ccap_immigration_status_eligible_person.py │ │ │ │ │ │ ├── il_ccap_income_eligible.py │ │ │ │ │ │ └── il_ccap_parent_meets_working_requirements.py │ │ │ │ │ ├── il_ccap_countable_income.py │ │ │ │ │ └── il_ccap_enrolled.py │ │ │ │ └── tanf │ │ │ │ │ ├── assistance_unit │ │ │ │ │ ├── il_tanf_assistance_unit_fpg.py │ │ │ │ │ ├── il_tanf_assistance_unit_size.py │ │ │ │ │ ├── il_tanf_payment_eligible_child.py │ │ │ │ │ ├── il_tanf_payment_eligible_parent.py │ │ │ │ │ └── il_tanf_payment_eligible_requirements.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── il_tanf_demographic_eligible_person.py │ │ │ │ │ ├── il_tanf_eligible.py │ │ │ │ │ ├── il_tanf_eligible_child.py │ │ │ │ │ ├── il_tanf_immigration_status_eligible_person.py │ │ │ │ │ ├── il_tanf_income_eligible.py │ │ │ │ │ └── il_tanf_non_financial_eligible.py │ │ │ │ │ ├── il_tanf.py │ │ │ │ │ ├── il_tanf_payment_level_for_grant_application.py │ │ │ │ │ ├── il_tanf_payment_level_for_initial_eligibility.py │ │ │ │ │ └── income │ │ │ │ │ ├── deductions │ │ │ │ │ ├── il_tanf_childcare_deduction.py │ │ │ │ │ ├── il_tanf_initial_employment_deduction_fpg.py │ │ │ │ │ └── il_tanf_initial_employment_deduction_person.py │ │ │ │ │ ├── earned │ │ │ │ │ ├── il_tanf_countable_earned_income_for_grant_calculation.py │ │ │ │ │ ├── il_tanf_countable_earned_income_for_initial_eligibility.py │ │ │ │ │ ├── il_tanf_countable_gross_earned_income.py │ │ │ │ │ └── il_tanf_gross_earned_income.py │ │ │ │ │ ├── il_tanf_countable_income_for_grant_calculation.py │ │ │ │ │ ├── il_tanf_countable_income_for_initial_eligibility.py │ │ │ │ │ └── unearned │ │ │ │ │ ├── il_tanf_countable_unearned_income.py │ │ │ │ │ └── il_tanf_gross_unearned_income.py │ │ │ ├── hfs │ │ │ │ ├── bcc │ │ │ │ │ └── eligibility │ │ │ │ │ │ ├── il_bcc_age_eligible.py │ │ │ │ │ │ ├── il_bcc_eligible.py │ │ │ │ │ │ └── il_bcc_insurance_eligible.py │ │ │ │ ├── fpp │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── il_fpp_eligible.py │ │ │ │ │ │ └── il_fpp_income_eligible.py │ │ │ │ │ └── il_fpp_income_level.py │ │ │ │ ├── hbwd │ │ │ │ │ ├── asset │ │ │ │ │ │ └── il_hbwd_countable_assets.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── il_hbwd_age_eligible.py │ │ │ │ │ │ ├── il_hbwd_asset_eligible.py │ │ │ │ │ │ ├── il_hbwd_disability_eligible.py │ │ │ │ │ │ ├── il_hbwd_eligible.py │ │ │ │ │ │ ├── il_hbwd_employment_eligible.py │ │ │ │ │ │ └── il_hbwd_income_eligible.py │ │ │ │ │ ├── il_hbwd.py │ │ │ │ │ ├── il_hbwd_person.py │ │ │ │ │ ├── il_hbwd_premium.py │ │ │ │ │ └── income │ │ │ │ │ │ ├── earned │ │ │ │ │ │ ├── il_hbwd_countable_earned_income.py │ │ │ │ │ │ └── il_hbwd_gross_earned_income.py │ │ │ │ │ │ ├── il_hbwd_countable_income.py │ │ │ │ │ │ └── unearned │ │ │ │ │ │ └── il_hbwd_countable_unearned_income.py │ │ │ │ ├── il_hfs_immigration_status_eligible.py │ │ │ │ ├── mpe │ │ │ │ │ ├── eligibility │ │ │ │ │ │ └── il_mpe_income_eligible.py │ │ │ │ │ └── il_mpe_eligible.py │ │ │ │ └── smib │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── il_smib_categorical_eligible.py │ │ │ │ │ └── il_smib_eligible.py │ │ │ │ │ ├── il_smib.py │ │ │ │ │ └── il_smib_person.py │ │ │ ├── idoa │ │ │ │ └── bap │ │ │ │ │ └── il_bap_eligible.py │ │ │ ├── rta │ │ │ │ └── cta │ │ │ │ │ ├── free_ride │ │ │ │ │ ├── il_cta_free_ride_benefit.py │ │ │ │ │ ├── il_cta_free_ride_eligible.py │ │ │ │ │ └── il_cta_military_service_pass_eligible.py │ │ │ │ │ ├── il_cta_benefit.py │ │ │ │ │ └── reduced_fare │ │ │ │ │ ├── il_cta_children_reduced_fare_eligible.py │ │ │ │ │ ├── il_cta_reduced_fare_benefit.py │ │ │ │ │ ├── il_cta_reduced_fare_eligible.py │ │ │ │ │ ├── il_cta_rta_reduced_fare_eligible.py │ │ │ │ │ └── il_cta_student_reduced_fare_eligible.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── base_income │ │ │ │ ├── il_base_income.py │ │ │ │ ├── il_base_income_additions.py │ │ │ │ └── il_base_income_subtractions.py │ │ │ │ ├── credits │ │ │ │ ├── il_ctc.py │ │ │ │ ├── il_eitc.py │ │ │ │ ├── il_income_tax_rebate.py │ │ │ │ ├── il_income_tax_rebate_eligible.py │ │ │ │ ├── il_k12_education_expense_credit.py │ │ │ │ ├── il_non_refundable_credits.py │ │ │ │ ├── il_property_tax_credit.py │ │ │ │ └── il_refundable_credits.py │ │ │ │ ├── exemptions │ │ │ │ ├── il_aged_blind_exemption.py │ │ │ │ ├── il_dependent_exemption.py │ │ │ │ ├── il_is_exemption_eligible.py │ │ │ │ ├── il_personal_exemption.py │ │ │ │ ├── il_personal_exemption_eligibility_status.py │ │ │ │ └── il_total_exemptions.py │ │ │ │ ├── il_income_tax.py │ │ │ │ ├── il_income_tax_before_non_refundable_credits.py │ │ │ │ ├── il_income_tax_before_refundable_credits.py │ │ │ │ ├── il_taxable_income.py │ │ │ │ ├── il_total_tax.py │ │ │ │ ├── il_use_tax.py │ │ │ │ ├── il_withheld_income_tax.py │ │ │ │ ├── pass_through │ │ │ │ ├── il_pass_through_entity_tax_credit.py │ │ │ │ └── il_pass_through_withholding.py │ │ │ │ └── schedule_m │ │ │ │ ├── il_schedule_m_additions.py │ │ │ │ └── il_schedule_m_subtractions.py │ │ ├── in │ │ │ └── tax │ │ │ │ ├── income │ │ │ │ ├── add_backs │ │ │ │ │ ├── in_add_backs.py │ │ │ │ │ ├── in_bonus_depreciation_add_back.py │ │ │ │ │ ├── in_nol_add_back.py │ │ │ │ │ ├── in_oos_municipal_obligation_interest_add_back.py │ │ │ │ │ ├── in_other_add_backs.py │ │ │ │ │ ├── in_section_179_expense_add_back.py │ │ │ │ │ └── in_tax_add_back.py │ │ │ │ ├── credits │ │ │ │ │ ├── earned_income_credit │ │ │ │ │ │ ├── in_eitc.py │ │ │ │ │ │ └── in_eitc_eligible.py │ │ │ │ │ ├── elderly_tax_credit │ │ │ │ │ │ └── in_unified_elderly_tax_credit.py │ │ │ │ │ ├── in_automatic_refund_rebate.py │ │ │ │ │ └── in_refundable_credits.py │ │ │ │ ├── deductions │ │ │ │ │ ├── in_deductions.py │ │ │ │ │ ├── in_healthcare_sharing_deduction.py │ │ │ │ │ ├── in_homeowners_property_tax_deduction.py │ │ │ │ │ ├── in_military_service_deduction.py │ │ │ │ │ ├── in_nol.py │ │ │ │ │ ├── in_nonpublic_school_deduction.py │ │ │ │ │ ├── in_other_deductions.py │ │ │ │ │ ├── in_renters_deduction.py │ │ │ │ │ └── in_unemployment_compensation_deduction.py │ │ │ │ ├── exemptions │ │ │ │ │ ├── in_additional_exemptions.py │ │ │ │ │ ├── in_adoption_exemption.py │ │ │ │ │ ├── in_aged_blind_exemptions.py │ │ │ │ │ ├── in_aged_low_agi_exemptions.py │ │ │ │ │ ├── in_base_exemptions.py │ │ │ │ │ ├── in_exemptions.py │ │ │ │ │ ├── in_is_qualifying_dependent_child.py │ │ │ │ │ └── in_qualifying_child_count.py │ │ │ │ ├── in_agi.py │ │ │ │ ├── in_agi_tax.py │ │ │ │ ├── in_county_tax.py │ │ │ │ ├── in_income_tax.py │ │ │ │ ├── in_income_tax_before_refundable_credits.py │ │ │ │ └── in_withheld_income_tax.py │ │ │ │ └── use │ │ │ │ └── in_use_tax.py │ │ ├── ks │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── eitc │ │ │ │ │ ├── ks_nonrefundable_eitc.py │ │ │ │ │ ├── ks_refundable_eitc.py │ │ │ │ │ └── ks_total_eitc.py │ │ │ │ ├── ks_cdcc.py │ │ │ │ ├── ks_fstc.py │ │ │ │ ├── ks_non_refundable_credits.py │ │ │ │ └── ks_refundable_credits.py │ │ │ │ ├── deductions │ │ │ │ ├── ks_itemized_deductions.py │ │ │ │ └── ks_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── ks_count_exemptions.py │ │ │ │ ├── ks_disabled_veteran_exemptions_person.py │ │ │ │ └── ks_exemptions.py │ │ │ │ ├── ks_additions.py │ │ │ │ ├── ks_agi.py │ │ │ │ ├── ks_agi_subtractions.py │ │ │ │ ├── ks_income_tax.py │ │ │ │ ├── ks_income_tax_before_credits.py │ │ │ │ ├── ks_income_tax_before_refundable_credits.py │ │ │ │ ├── ks_taxable_income.py │ │ │ │ └── ks_withheld_income_tax.py │ │ ├── ky │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── dependent_care_service │ │ │ │ │ └── ky_cdcc.py │ │ │ │ ├── family_size_credit │ │ │ │ │ ├── ky_family_size_tax_credit.py │ │ │ │ │ ├── ky_family_size_tax_credit_rate.py │ │ │ │ │ └── ky_modified_agi.py │ │ │ │ ├── ky_non_refundable_credits.py │ │ │ │ ├── ky_refundable_credits.py │ │ │ │ ├── personal │ │ │ │ │ ├── ky_aged_personal_tax_credits.py │ │ │ │ │ ├── ky_blind_personal_tax_credits.py │ │ │ │ │ ├── ky_military_personal_tax_credits.py │ │ │ │ │ ├── ky_personal_tax_credits.py │ │ │ │ │ ├── ky_personal_tax_credits_indiv.py │ │ │ │ │ └── ky_personal_tax_credits_joint.py │ │ │ │ └── tuition_tax │ │ │ │ │ ├── ky_tuition_tax_credit.py │ │ │ │ │ └── ky_tuition_tax_credit_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── ky_deductions_indiv.py │ │ │ │ ├── ky_deductions_joint.py │ │ │ │ ├── ky_itemized_deduction_indiv.py │ │ │ │ ├── ky_itemized_deduction_joint.py │ │ │ │ ├── ky_itemized_deductions_unit.py │ │ │ │ ├── ky_standard_deduction_indiv.py │ │ │ │ ├── ky_standard_deduction_joint.py │ │ │ │ └── ky_tax_unit_itemizes.py │ │ │ │ ├── exclusions │ │ │ │ └── pension_income │ │ │ │ │ ├── ky_pension_income_exclusion.py │ │ │ │ │ ├── ky_pension_income_exclusion_exemption_eligible.py │ │ │ │ │ ├── ky_service_credit_months_post_1997.py │ │ │ │ │ ├── ky_service_credit_months_pre_1998.py │ │ │ │ │ ├── ky_service_credits_percentage_pre_1998.py │ │ │ │ │ └── retired_from_ky_government.py │ │ │ │ ├── ky_additions.py │ │ │ │ ├── ky_agi.py │ │ │ │ ├── ky_filing_separately.py │ │ │ │ ├── ky_filing_status.py │ │ │ │ ├── ky_income_tax.py │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_indiv.py │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_joint.py │ │ │ │ ├── ky_income_tax_before_non_refundable_credits_unit.py │ │ │ │ ├── ky_income_tax_before_refundable_credits.py │ │ │ │ ├── ky_subtractions.py │ │ │ │ ├── ky_taxable_income_indiv.py │ │ │ │ ├── ky_taxable_income_joint.py │ │ │ │ └── ky_withheld_income_tax.py │ │ ├── la │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── la_non_refundable_cdcc.py │ │ │ │ │ └── la_refundable_cdcc.py │ │ │ │ ├── la_eitc.py │ │ │ │ └── school_readiness │ │ │ │ │ ├── la_quality_rating_of_child_care_facility.py │ │ │ │ │ ├── la_school_readiness_credit_eligible_child.py │ │ │ │ │ ├── la_school_readiness_credit_non_refundable.py │ │ │ │ │ ├── la_school_readiness_credit_refundable.py │ │ │ │ │ ├── la_school_readiness_credit_refundable_eligible.py │ │ │ │ │ └── la_school_readiness_tax_credit.py │ │ │ │ ├── deductions │ │ │ │ ├── la_federal_tax_deduction.py │ │ │ │ ├── la_itemized_deductions.py │ │ │ │ └── la_standard_deduction.py │ │ │ │ ├── exempt_income │ │ │ │ ├── la_agi_exempt_income.py │ │ │ │ ├── la_disability_income_exemption_person.py │ │ │ │ ├── la_retirement_exemption_person.py │ │ │ │ └── military_pay_exclusion │ │ │ │ │ └── la_military_pay_exclusion.py │ │ │ │ ├── exemptions │ │ │ │ ├── la_exemptions.py │ │ │ │ └── personal │ │ │ │ │ ├── blind │ │ │ │ │ ├── la_blind_exemption.py │ │ │ │ │ ├── la_blind_exemption_person.py │ │ │ │ │ └── la_receives_blind_exemption.py │ │ │ │ │ ├── la_aged_exemption.py │ │ │ │ │ ├── la_dependents_exemption.py │ │ │ │ │ ├── la_personal_exemption.py │ │ │ │ │ └── la_widow_exemption.py │ │ │ │ ├── la_agi.py │ │ │ │ ├── la_income_tax.py │ │ │ │ ├── la_income_tax_before_non_refundable_credits.py │ │ │ │ ├── la_income_tax_before_refundable_credits.py │ │ │ │ ├── la_non_refundable_credits.py │ │ │ │ ├── la_refundable_credits.py │ │ │ │ ├── la_taxable_income.py │ │ │ │ └── la_withheld_income_tax.py │ │ ├── ma │ │ │ ├── doer │ │ │ │ └── liheap │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── ma_liheap_eligible.py │ │ │ │ │ ├── ma_liheap_eligible_subsidized_housing.py │ │ │ │ │ ├── ma_liheap_hecs_eligible.py │ │ │ │ │ └── ma_liheap_income_eligible.py │ │ │ │ │ ├── ma_liheap_benefit_level.py │ │ │ │ │ ├── ma_liheap_fpg.py │ │ │ │ │ ├── ma_liheap_heating_type.py │ │ │ │ │ ├── ma_liheap_income.py │ │ │ │ │ ├── ma_liheap_state_median_income_threshold.py │ │ │ │ │ ├── ma_liheap_utility_category.py │ │ │ │ │ └── payment │ │ │ │ │ ├── ma_liheap.py │ │ │ │ │ ├── ma_liheap_hecs_payment.py │ │ │ │ │ └── ma_liheap_standard_payment.py │ │ │ ├── dot │ │ │ │ └── mbta │ │ │ │ │ ├── income_eligible_reduced_fares │ │ │ │ │ ├── ma_mbta_enrolled_in_applicable_programs.py │ │ │ │ │ └── ma_mbta_income_eligible_reduced_fare_eligible.py │ │ │ │ │ ├── senior_charlie_card │ │ │ │ │ └── ma_mbta_senior_charlie_card_eligible.py │ │ │ │ │ └── tap_charlie_card │ │ │ │ │ └── ma_mbta_tap_charlie_card_eligible.py │ │ │ ├── dta │ │ │ │ ├── ssp │ │ │ │ │ ├── ma_maximum_state_supplement.py │ │ │ │ │ ├── ma_state_living_arrangement.py │ │ │ │ │ └── ma_state_supplement.py │ │ │ │ └── tcap │ │ │ │ │ ├── eaedc │ │ │ │ │ ├── dependent_care_deduction │ │ │ │ │ │ ├── ma_eaedc_dependent_care_deduction.py │ │ │ │ │ │ ├── ma_eaedc_dependent_care_deduction_person.py │ │ │ │ │ │ └── ma_eaedc_eligible_dependent.py │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── financial │ │ │ │ │ │ │ ├── ma_eaedc_assets_limit_eligible.py │ │ │ │ │ │ │ ├── ma_eaedc_financial_eligible.py │ │ │ │ │ │ │ └── ma_eaedc_income_eligible.py │ │ │ │ │ │ ├── ma_eaedc_eligible.py │ │ │ │ │ │ └── non_financial │ │ │ │ │ │ │ ├── ma_eaedc_eligible_caretaker_family.py │ │ │ │ │ │ │ ├── ma_eaedc_eligible_disabled_dependent_present.py │ │ │ │ │ │ │ ├── ma_eaedc_eligible_disabled_head_or_spouse.py │ │ │ │ │ │ │ ├── ma_eaedc_eligible_elderly_present.py │ │ │ │ │ │ │ ├── ma_eaedc_immigration_status_eligible.py │ │ │ │ │ │ │ └── ma_eaedc_non_financial_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ │ ├── ma_eaedc_countable_earned_income.py │ │ │ │ │ │ ├── ma_eaedc_earned_income_after_disregard_person.py │ │ │ │ │ │ ├── ma_eaedc_living_arrangement.py │ │ │ │ │ │ ├── ma_eaedc_net_income.py │ │ │ │ │ │ └── ma_eaedc_standard_assistance.py │ │ │ │ │ ├── ma_eaedc.py │ │ │ │ │ ├── ma_eaedc_countable_assets.py │ │ │ │ │ └── ma_eaedc_if_claimed.py │ │ │ │ │ ├── ma_tafdc_exceeds_eaedc.py │ │ │ │ │ ├── ma_tcap_gross_earned_income.py │ │ │ │ │ ├── ma_tcap_gross_unearned_income.py │ │ │ │ │ └── tafdc │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── ma_tafdc_eligible.py │ │ │ │ │ ├── ma_tafdc_financial_eligible.py │ │ │ │ │ └── non_financial │ │ │ │ │ │ ├── ma_tafdc_age_limit.py │ │ │ │ │ │ ├── ma_tafdc_dependent_criteria_eligible.py │ │ │ │ │ │ ├── ma_tafdc_eligible_dependent.py │ │ │ │ │ │ ├── ma_tafdc_immigration_status_eligible.py │ │ │ │ │ │ ├── ma_tafdc_non_financial_eligible.py │ │ │ │ │ │ └── ma_tafdc_pregnancy_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── ma_tafdc_child_support_deduction.py │ │ │ │ │ │ ├── ma_tafdc_dependent_care_deduction.py │ │ │ │ │ │ ├── ma_tafdc_dependent_care_deduction_person.py │ │ │ │ │ │ └── ma_tafdc_work_related_expense_deduction.py │ │ │ │ │ ├── earned │ │ │ │ │ │ ├── ma_tafdc_countable_earned_income.py │ │ │ │ │ │ ├── ma_tafdc_earned_income_after_deductions.py │ │ │ │ │ │ ├── ma_tafdc_full_earned_income_disregard_eligible.py │ │ │ │ │ │ └── ma_tafdc_partially_disregarded_earned_income.py │ │ │ │ │ ├── ma_tafdc_applicable_income_for_financial_eligibility.py │ │ │ │ │ ├── ma_tafdc_applicable_income_grant_amount.py │ │ │ │ │ └── unearned │ │ │ │ │ │ └── ma_tafdc_countable_unearned_income.py │ │ │ │ │ ├── is_tafdc_related_to_head_or_spouse.py │ │ │ │ │ ├── ma_tafdc.py │ │ │ │ │ ├── ma_tafdc_eligible_infant.py │ │ │ │ │ ├── ma_tafdc_if_claimed.py │ │ │ │ │ └── payment │ │ │ │ │ ├── ma_tafdc_clothing_allowance.py │ │ │ │ │ ├── ma_tafdc_infant_benefit.py │ │ │ │ │ ├── ma_tafdc_payment_standard.py │ │ │ │ │ └── ma_tafdc_potential_main_benefit.py │ │ │ ├── eec │ │ │ │ └── ccfa │ │ │ │ │ ├── copay │ │ │ │ │ ├── ma_ccfa_base_copay.py │ │ │ │ │ ├── ma_ccfa_copay_level.py │ │ │ │ │ └── ma_ccfa_total_copay.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── ma_ccfa_activity_eligible.py │ │ │ │ │ ├── ma_ccfa_asset_eligible.py │ │ │ │ │ ├── ma_ccfa_eligible.py │ │ │ │ │ ├── ma_ccfa_eligible_child.py │ │ │ │ │ ├── ma_ccfa_immigration_status_eligible.py │ │ │ │ │ └── ma_ccfa_income_eligible.py │ │ │ │ │ ├── ma_ccfa.py │ │ │ │ │ ├── ma_ccfa_care_provider_type.py │ │ │ │ │ ├── ma_ccfa_child_age_category.py │ │ │ │ │ ├── ma_ccfa_countable_income.py │ │ │ │ │ ├── ma_ccfa_enrolled.py │ │ │ │ │ ├── ma_ccfa_fpg.py │ │ │ │ │ ├── ma_ccfa_is_in_relatives_home_care.py │ │ │ │ │ ├── ma_ccfa_maximum_benefit_amount.py │ │ │ │ │ ├── ma_ccfa_region.py │ │ │ │ │ ├── ma_ccfa_schedule_type.py │ │ │ │ │ ├── ma_child_care_subsidies.py │ │ │ │ │ └── reimbursement │ │ │ │ │ ├── ma_ccfa_center_based_early_education_reimbursement.py │ │ │ │ │ ├── ma_ccfa_center_based_school_age_reimbursement.py │ │ │ │ │ ├── ma_ccfa_family_child_care_reimbursement.py │ │ │ │ │ ├── ma_ccfa_head_start_partner_and_kindergarten_reimbursement.py │ │ │ │ │ ├── ma_ccfa_informal_child_care_reimbursement.py │ │ │ │ │ ├── ma_ccfa_maximum_reimbursement.py │ │ │ │ │ ├── ma_ccfa_reimbursement_ratio.py │ │ │ │ │ └── ma_ccfa_uncapped_daily_payment.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── ma_agi.py │ │ │ │ ├── ma_part_a_agi.py │ │ │ │ ├── ma_part_b_agi.py │ │ │ │ └── ma_part_c_agi.py │ │ │ │ ├── credits │ │ │ │ ├── ma_child_and_family_credit.py │ │ │ │ ├── ma_child_and_family_credit_or_dependent_care_credit.py │ │ │ │ ├── ma_covid_19_essential_employee_premium_pay_program │ │ │ │ │ ├── claimed_ma_covid_19_essential_employee_premium_pay_program_2020.py │ │ │ │ │ └── ma_covid_19_essential_employee_premium_pay_program.py │ │ │ │ ├── ma_dependent_care_credit.py │ │ │ │ ├── ma_eitc.py │ │ │ │ ├── ma_limited_income_tax_credit.py │ │ │ │ ├── ma_taxpayer_refund_rebate.py │ │ │ │ └── senior_circuit_breaker │ │ │ │ │ ├── ma_scb_total_income.py │ │ │ │ │ └── ma_senior_circuit_breaker.py │ │ │ │ ├── gross_income │ │ │ │ ├── ma_gross_income.py │ │ │ │ ├── ma_part_a_gross_income.py │ │ │ │ ├── ma_part_b_gross_income.py │ │ │ │ └── ma_part_c_gross_income.py │ │ │ │ ├── is_ma_income_tax_exempt.py │ │ │ │ ├── ma_income_tax.py │ │ │ │ ├── ma_income_tax_before_credits.py │ │ │ │ ├── ma_income_tax_before_refundable_credits.py │ │ │ │ ├── ma_income_tax_exemption_threshold.py │ │ │ │ ├── ma_non_refundable_credits.py │ │ │ │ ├── ma_refundable_credits.py │ │ │ │ ├── ma_withheld_income_tax.py │ │ │ │ └── taxable_income │ │ │ │ ├── ma_part_a_cg_excess_exemption.py │ │ │ │ ├── ma_part_a_div_excess_exemption.py │ │ │ │ ├── ma_part_a_taxable_capital_gains_income.py │ │ │ │ ├── ma_part_a_taxable_dividend_income.py │ │ │ │ ├── ma_part_a_taxable_income.py │ │ │ │ ├── ma_part_b_excess_exemption.py │ │ │ │ ├── ma_part_b_taxable_income.py │ │ │ │ ├── ma_part_b_taxable_income_before_exemption.py │ │ │ │ ├── ma_part_b_taxable_income_deductions.py │ │ │ │ ├── ma_part_b_taxable_income_exemption.py │ │ │ │ └── ma_part_c_taxable_income.py │ │ ├── md │ │ │ ├── tanf │ │ │ │ ├── income │ │ │ │ │ └── earned │ │ │ │ │ │ └── md_tanf_gross_earned_income_deduction.py │ │ │ │ ├── md_tanf_count_children.py │ │ │ │ ├── md_tanf_eligible.py │ │ │ │ └── md_tanf_maximum_benefit.py │ │ │ ├── tax │ │ │ │ └── income │ │ │ │ │ ├── agi │ │ │ │ │ ├── additions │ │ │ │ │ │ └── md_total_additions.py │ │ │ │ │ ├── md_agi.py │ │ │ │ │ └── subtractions │ │ │ │ │ │ ├── hundred_year │ │ │ │ │ │ ├── md_hundred_year_subtraction.py │ │ │ │ │ │ ├── md_hundred_year_subtraction_eligible.py │ │ │ │ │ │ └── md_hundred_year_subtraction_person.py │ │ │ │ │ │ ├── md_dependent_care_subtraction.py │ │ │ │ │ │ ├── md_pension_subtraction.py │ │ │ │ │ │ ├── md_pension_subtraction_amount.py │ │ │ │ │ │ ├── md_socsec_subtraction.py │ │ │ │ │ │ ├── md_socsec_subtraction_amount.py │ │ │ │ │ │ ├── md_total_subtractions.py │ │ │ │ │ │ └── md_two_income_subtraction.py │ │ │ │ │ ├── capital_gains │ │ │ │ │ ├── md_capital_gains_surtax.py │ │ │ │ │ └── md_capital_gains_surtax_applies.py │ │ │ │ │ ├── credits │ │ │ │ │ ├── cdcc │ │ │ │ │ │ ├── md_cdcc.py │ │ │ │ │ │ └── md_refundable_cdcc.py │ │ │ │ │ ├── ctc │ │ │ │ │ │ ├── md_ctc.py │ │ │ │ │ │ └── md_ctc_eligible.py │ │ │ │ │ ├── eitc │ │ │ │ │ │ ├── federal_eitc_without_age_minimum.py │ │ │ │ │ │ ├── md_eitc.py │ │ │ │ │ │ ├── md_qualifies_for_unmarried_childless_eitc.py │ │ │ │ │ │ ├── non_refundable │ │ │ │ │ │ │ ├── md_married_or_has_child_non_refundable_eitc.py │ │ │ │ │ │ │ ├── md_non_refundable_eitc.py │ │ │ │ │ │ │ └── md_unmarried_childless_non_refundable_eitc.py │ │ │ │ │ │ └── refundable │ │ │ │ │ │ │ ├── md_married_or_has_child_refundable_eitc.py │ │ │ │ │ │ │ ├── md_refundable_eitc.py │ │ │ │ │ │ │ └── md_unmarried_childless_refundable_eitc.py │ │ │ │ │ ├── md_non_refundable_credits.py │ │ │ │ │ ├── md_refundable_credits.py │ │ │ │ │ ├── poverty_line │ │ │ │ │ │ ├── is_eligible_md_poverty_line_credit.py │ │ │ │ │ │ └── md_poverty_line_credit.py │ │ │ │ │ └── senior_tax │ │ │ │ │ │ ├── md_senior_tax_credit.py │ │ │ │ │ │ └── md_senior_tax_credit_eligible.py │ │ │ │ │ ├── deductions │ │ │ │ │ ├── md_deductions.py │ │ │ │ │ ├── md_itemized_deductions.py │ │ │ │ │ └── md_standard_deduction.py │ │ │ │ │ ├── exemptions │ │ │ │ │ ├── md_aged_blind_exemptions.py │ │ │ │ │ ├── md_aged_dependent_exemption.py │ │ │ │ │ ├── md_aged_exemption.py │ │ │ │ │ ├── md_blind_exemption.py │ │ │ │ │ ├── md_exemptions.py │ │ │ │ │ ├── md_personal_exemption.py │ │ │ │ │ └── md_total_personal_exemptions.py │ │ │ │ │ ├── income_sources │ │ │ │ │ └── md_tax_unit_earned_income.py │ │ │ │ │ ├── local │ │ │ │ │ └── md_local_income_tax_before_credits.py │ │ │ │ │ ├── md_income_tax.py │ │ │ │ │ ├── md_income_tax_before_credits.py │ │ │ │ │ ├── md_income_tax_before_refundable_credits.py │ │ │ │ │ ├── md_taxable_income.py │ │ │ │ │ └── md_withheld_income_tax.py │ │ │ └── usda │ │ │ │ └── snap │ │ │ │ └── min_allotment │ │ │ │ ├── md_snap_elderly_present.py │ │ │ │ └── md_snap_is_elderly.py │ │ ├── me │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── me_additions.py │ │ │ │ ├── me_agi.py │ │ │ │ ├── me_agi_subtractions.py │ │ │ │ └── me_pension_income_deduction.py │ │ │ │ ├── credits │ │ │ │ ├── child_care_credit │ │ │ │ │ ├── me_child_care_credit.py │ │ │ │ │ ├── me_non_refundable_child_care_credit.py │ │ │ │ │ ├── me_refundable_child_care_credit.py │ │ │ │ │ └── me_step_4_share_of_child_care_expenses.py │ │ │ │ ├── dependent_exemption │ │ │ │ │ ├── me_dependent_exemption_credit.py │ │ │ │ │ └── me_dependent_exemption_credit_amount_person.py │ │ │ │ ├── fairness │ │ │ │ │ ├── me_sales_and_property_tax_fairness_credit_income.py │ │ │ │ │ ├── property_tax_fairness_credit │ │ │ │ │ │ ├── me_property_tax_fairness_credit.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_base_cap.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_benefit_base.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_cap.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_countable_rent.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_countable_rent_property_tax.py │ │ │ │ │ │ ├── me_property_tax_fairness_credit_eligible.py │ │ │ │ │ │ └── me_property_tax_fairness_credit_veterans_cap.py │ │ │ │ │ └── sales_tax_fairness_credit │ │ │ │ │ │ ├── me_sales_tax_fairness_credit.py │ │ │ │ │ │ └── me_sales_tax_fairness_credit_eligible.py │ │ │ │ ├── me_eitc.py │ │ │ │ ├── me_relief_rebate.py │ │ │ │ └── me_relief_rebate_eligible.py │ │ │ │ ├── me_income_tax.py │ │ │ │ ├── me_income_tax_before_credits.py │ │ │ │ ├── me_income_tax_before_refundable_credits.py │ │ │ │ ├── me_non_refundable_credits.py │ │ │ │ ├── me_refundable_credits.py │ │ │ │ ├── me_withheld_income_tax.py │ │ │ │ └── taxable_income │ │ │ │ ├── deductions │ │ │ │ ├── me_deduction_phaseout_percentage.py │ │ │ │ ├── me_itemized_deductions_pre_phaseout.py │ │ │ │ └── personal_exemption │ │ │ │ │ └── me_personal_exemption_deduction.py │ │ │ │ ├── me_deductions.py │ │ │ │ ├── me_exemptions.py │ │ │ │ └── me_taxable_income.py │ │ ├── mi │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── home_heating │ │ │ │ │ ├── alternate │ │ │ │ │ │ ├── mi_alternate_home_heating_credit.py │ │ │ │ │ │ └── mi_alternate_home_heating_credit_eligible.py │ │ │ │ │ ├── mi_home_heating_credit.py │ │ │ │ │ ├── mi_home_heating_credit_eligible_rate.py │ │ │ │ │ └── standard │ │ │ │ │ │ ├── mi_standard_home_heating_credit.py │ │ │ │ │ │ └── mi_standard_home_heating_credit_eligible.py │ │ │ │ ├── homestead_property_tax │ │ │ │ │ ├── mi_allowable_homestead_property_tax_credit.py │ │ │ │ │ ├── mi_homestead_property_tax_credit.py │ │ │ │ │ ├── mi_homestead_property_tax_credit_alternate_senior_amount.py │ │ │ │ │ ├── mi_homestead_property_tax_credit_countable_property_tax.py │ │ │ │ │ ├── mi_homestead_property_tax_credit_eligible.py │ │ │ │ │ ├── mi_homestead_property_tax_credit_household_resource_exemption.py │ │ │ │ │ └── mi_homestead_property_tax_credit_pre_alternate_senior_amount.py │ │ │ │ └── mi_eitc.py │ │ │ │ ├── deductions │ │ │ │ ├── interest_dividends_capital_gains │ │ │ │ │ ├── mi_interest_dividends_capital_gains_deduction.py │ │ │ │ │ └── mi_interest_dividends_capital_gains_deduction_eligible.py │ │ │ │ ├── retirement │ │ │ │ │ ├── expanded │ │ │ │ │ │ ├── mi_expanded_retirement_benefits_deduction.py │ │ │ │ │ │ └── mi_expanded_retirement_benefits_deduction_eligible.py │ │ │ │ │ ├── mi_pension_benefit.py │ │ │ │ │ ├── tier_one │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_one.py │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_one_amount.py │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_one_eligible.py │ │ │ │ │ └── tier_three │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three.py │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_eligible.py │ │ │ │ │ │ └── ss_exempt │ │ │ │ │ │ ├── not_retired │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired.py │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_three_ss_exempt_not_retired_eligible_people.py │ │ │ │ │ │ └── retired │ │ │ │ │ │ ├── mi_retirement_benefits_deduction_tier_three_ss_exempt_retired.py │ │ │ │ │ │ └── mi_retirement_benefits_deduction_tier_three_ss_exempt_retired_eligible_people.py │ │ │ │ └── standard │ │ │ │ │ ├── mi_standard_deduction.py │ │ │ │ │ ├── tier_three │ │ │ │ │ ├── mi_standard_deduction_tier_three.py │ │ │ │ │ └── mi_standard_deduction_tier_three_eligible.py │ │ │ │ │ └── tier_two │ │ │ │ │ ├── mi_standard_deduction_tier_two.py │ │ │ │ │ ├── mi_standard_deduction_tier_two_eligible.py │ │ │ │ │ └── mi_standard_deduction_tier_two_increase_eligible_people.py │ │ │ │ ├── exemptions │ │ │ │ ├── mi_disabled_exemption_eligible_person.py │ │ │ │ ├── mi_exemptions.py │ │ │ │ ├── mi_exemptions_count.py │ │ │ │ └── mi_personal_exemptions.py │ │ │ │ ├── mi_additions.py │ │ │ │ ├── mi_household_resources.py │ │ │ │ ├── mi_income_tax.py │ │ │ │ ├── mi_income_tax_before_non_refundable_credits.py │ │ │ │ ├── mi_income_tax_before_refundable_credits.py │ │ │ │ ├── mi_is_senior_for_tax.py │ │ │ │ ├── mi_non_refundable_credits.py │ │ │ │ ├── mi_refundable_credits.py │ │ │ │ ├── mi_subtractions.py │ │ │ │ ├── mi_taxable_income.py │ │ │ │ └── mi_withheld_income_tax.py │ │ ├── mn │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ └── mn_additions.py │ │ │ │ ├── amt │ │ │ │ ├── mn_amt.py │ │ │ │ └── mn_amt_taxable_income.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── mn_cdcc.py │ │ │ │ │ ├── mn_cdcc_dependent_count.py │ │ │ │ │ ├── mn_cdcc_eligible.py │ │ │ │ │ └── mn_cdcc_phase_out.py │ │ │ │ ├── mn_child_and_working_families_credits.py │ │ │ │ ├── mn_child_and_working_families_credits_ctc_eligible_child.py │ │ │ │ ├── mn_marriage_credit.py │ │ │ │ ├── mn_non_refundable_credits.py │ │ │ │ ├── mn_refundable_credits.py │ │ │ │ ├── mn_wfc.py │ │ │ │ └── mn_wfc_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── mn_deductions.py │ │ │ │ ├── mn_itemized_deductions.py │ │ │ │ ├── mn_itemizing.py │ │ │ │ └── mn_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ └── mn_exemptions.py │ │ │ │ ├── mn_basic_tax.py │ │ │ │ ├── mn_income_tax.py │ │ │ │ ├── mn_income_tax_before_credits.py │ │ │ │ ├── mn_income_tax_before_refundable_credits.py │ │ │ │ ├── mn_taxable_income.py │ │ │ │ ├── mn_withheld_income_tax.py │ │ │ │ ├── niit │ │ │ │ └── mn_niit.py │ │ │ │ └── subtractions │ │ │ │ ├── mn_charity_subtraction.py │ │ │ │ ├── mn_elderly_disabled_subtraction.py │ │ │ │ ├── mn_public_pension_subtraction.py │ │ │ │ ├── mn_social_security_subtraction.py │ │ │ │ └── mn_subtractions.py │ │ ├── mo │ │ │ ├── dss │ │ │ │ └── tanf │ │ │ │ │ └── mo_tanf_income_limit.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ └── mo_adjusted_gross_income.py │ │ │ │ ├── credits │ │ │ │ ├── mo_non_refundable_credits.py │ │ │ │ ├── mo_refundable_credits.py │ │ │ │ ├── mo_wftc.py │ │ │ │ └── property_tax │ │ │ │ │ ├── mo_property_tax_credit.py │ │ │ │ │ ├── mo_ptc_gross_income.py │ │ │ │ │ ├── mo_ptc_income_offset.py │ │ │ │ │ ├── mo_ptc_net_income.py │ │ │ │ │ └── mo_ptc_taxunit_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── mo_business_income_deduction.py │ │ │ │ ├── mo_federal_income_tax_deduction.py │ │ │ │ ├── mo_itemized_deductions.py │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction.py │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction_section_a.py │ │ │ │ ├── mo_pension_and_ss_or_ssd_deduction_section_b.py │ │ │ │ └── mo_pension_and_ss_or_ssd_deduction_section_c.py │ │ │ │ ├── income_tax │ │ │ │ ├── mo_income_tax.py │ │ │ │ ├── mo_income_tax_before_credits.py │ │ │ │ ├── mo_income_tax_before_refundable_credits.py │ │ │ │ └── mo_income_tax_exempt.py │ │ │ │ ├── mo_withheld_income_tax.py │ │ │ │ ├── subtractions │ │ │ │ └── mo_qualified_health_insurance_premiums.py │ │ │ │ └── taxable_income │ │ │ │ ├── mo_net_state_income_taxes.py │ │ │ │ └── mo_taxable_income.py │ │ ├── ms │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjustments │ │ │ │ ├── ms_national_guard_or_reserve_pay_adjustment.py │ │ │ │ ├── ms_retirement_income_exemption.py │ │ │ │ └── ms_self_employment_adjustment.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── ms_cdcc.py │ │ │ │ │ └── ms_cdcc_eligible.py │ │ │ │ └── charitable_contribution │ │ │ │ │ ├── ms_charitable_contributions_credit.py │ │ │ │ │ └── ms_charitable_contributions_to_qualifying_foster_care_organizations.py │ │ │ │ ├── deductions │ │ │ │ ├── itemized │ │ │ │ │ ├── ms_itemized_deductions_indiv.py │ │ │ │ │ ├── ms_itemized_deductions_joint.py │ │ │ │ │ ├── ms_itemized_deductions_unit.py │ │ │ │ │ └── ms_real_estate_tax_deduction.py │ │ │ │ ├── ms_deductions_indiv.py │ │ │ │ ├── ms_deductions_joint.py │ │ │ │ ├── ms_tax_unit_itemizes.py │ │ │ │ └── standard │ │ │ │ │ ├── ms_standard_deduction_indiv.py │ │ │ │ │ └── ms_standard_deduction_joint.py │ │ │ │ ├── exemptions │ │ │ │ ├── ms_aged_exemption.py │ │ │ │ ├── ms_blind_exemption.py │ │ │ │ ├── ms_dependents_exemption.py │ │ │ │ ├── ms_regular_exemption.py │ │ │ │ ├── ms_total_exemptions.py │ │ │ │ ├── ms_total_exemptions_indiv.py │ │ │ │ └── ms_total_exemptions_joint.py │ │ │ │ ├── ms_agi.py │ │ │ │ ├── ms_agi_adjustments.py │ │ │ │ ├── ms_files_separately.py │ │ │ │ ├── ms_income_tax.py │ │ │ │ ├── ms_income_tax_before_credits_indiv.py │ │ │ │ ├── ms_income_tax_before_credits_joint.py │ │ │ │ ├── ms_income_tax_before_credits_unit.py │ │ │ │ ├── ms_non_refundable_credits.py │ │ │ │ ├── ms_prorate_fraction.py │ │ │ │ ├── ms_refundable_credits.py │ │ │ │ ├── ms_withheld_income_tax.py │ │ │ │ └── taxable_income │ │ │ │ ├── ms_pre_deductions_taxable_income_indiv.py │ │ │ │ ├── ms_taxable_income_indiv.py │ │ │ │ └── ms_taxable_income_joint.py │ │ ├── mt │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ └── mt_additions.py │ │ │ │ ├── base │ │ │ │ ├── mt_agi_indiv.py │ │ │ │ ├── mt_agi_joint.py │ │ │ │ ├── mt_applicable_ald_deductions.py │ │ │ │ ├── mt_income_tax.py │ │ │ │ ├── mt_taxable_social_security.py │ │ │ │ └── mt_withheld_income_tax.py │ │ │ │ ├── capital_gains │ │ │ │ ├── mt_capital_gains_tax_applicable_threshold_indiv.py │ │ │ │ ├── mt_capital_gains_tax_applicable_threshold_joint.py │ │ │ │ ├── mt_capital_gains_tax_indiv.py │ │ │ │ └── mt_capital_gains_tax_joint.py │ │ │ │ ├── credits │ │ │ │ ├── capital_gain │ │ │ │ │ └── mt_capital_gain_credit.py │ │ │ │ ├── eitc │ │ │ │ │ └── mt_eitc.py │ │ │ │ ├── mt_elderly_homeowner_or_renter │ │ │ │ │ ├── mt_elderly_homeowner_or_renter_credit.py │ │ │ │ │ ├── mt_elderly_homeowner_or_renter_credit_eligible.py │ │ │ │ │ ├── mt_elderly_homeowner_or_renter_credit_gross_household_income.py │ │ │ │ │ └── mt_elderly_homeowner_or_renter_credit_net_household_income.py │ │ │ │ └── rebate │ │ │ │ │ ├── mt_income_tax_rebate.py │ │ │ │ │ └── mt_property_tax_rebate.py │ │ │ │ ├── deductions │ │ │ │ ├── cdcc │ │ │ │ │ ├── mt_child_dependent_care_expense_deduction.py │ │ │ │ │ ├── mt_child_dependent_care_expense_deduction_eligibile_child.py │ │ │ │ │ └── mt_child_dependent_care_expense_deduction_eligible_children.py │ │ │ │ ├── general │ │ │ │ │ └── mt_tax_unit_itemizes.py │ │ │ │ ├── itemized │ │ │ │ │ ├── federal_itemization │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_for_federal_itemization.py │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_for_federal_itemization_indiv.py │ │ │ │ │ │ ├── mt_itemized_deductions_for_federal_itemization_indiv.py │ │ │ │ │ │ └── mt_itemized_deductions_for_federal_itemization_joint.py │ │ │ │ │ ├── federal_tax │ │ │ │ │ │ ├── mt_federal_income_tax_deduction_indiv.py │ │ │ │ │ │ └── mt_federal_income_tax_deduction_unit.py │ │ │ │ │ ├── general │ │ │ │ │ │ ├── mt_itemized_deductions_indiv.py │ │ │ │ │ │ ├── mt_itemized_deductions_joint.py │ │ │ │ │ │ └── mt_misc_deductions.py │ │ │ │ │ ├── medical │ │ │ │ │ │ ├── mt_medical_expense_deduction_indiv.py │ │ │ │ │ │ └── mt_medical_expense_deduction_joint.py │ │ │ │ │ └── salt │ │ │ │ │ │ └── mt_salt_deduction.py │ │ │ │ ├── mt_deductions_indiv.py │ │ │ │ └── standard │ │ │ │ │ ├── mt_standard_deduction_indiv.py │ │ │ │ │ └── mt_standard_deduction_joint.py │ │ │ │ ├── exemptions │ │ │ │ ├── aged │ │ │ │ │ └── mt_aged_exemption_eligible_person.py │ │ │ │ ├── dependent │ │ │ │ │ └── mt_dependent_exemptions_person.py │ │ │ │ ├── interest │ │ │ │ │ ├── mt_interest_exemption.py │ │ │ │ │ ├── mt_interest_exemption_eligible_person.py │ │ │ │ │ └── mt_interest_exemption_person.py │ │ │ │ └── personal │ │ │ │ │ ├── mt_personal_exemptions_indiv.py │ │ │ │ │ └── mt_personal_exemptions_joint.py │ │ │ │ ├── filing │ │ │ │ └── mt_files_separately.py │ │ │ │ ├── subtractions │ │ │ │ ├── disability │ │ │ │ │ ├── mt_disability_income_exclusion.py │ │ │ │ │ ├── mt_disability_income_exclusion_eligible_person.py │ │ │ │ │ └── mt_disability_income_exclusion_person.py │ │ │ │ ├── mt_subtractions.py │ │ │ │ ├── old_age │ │ │ │ │ └── mt_old_age_subtraction.py │ │ │ │ └── tuition │ │ │ │ │ ├── mt_tuition_subtraction.py │ │ │ │ │ └── mt_tuition_subtraction_person.py │ │ │ │ └── tax_calculation │ │ │ │ ├── mt_income_tax_before_non_refundable_credits_indiv.py │ │ │ │ ├── mt_income_tax_before_non_refundable_credits_joint.py │ │ │ │ ├── mt_income_tax_before_refundable_credits_indiv.py │ │ │ │ ├── mt_income_tax_before_refundable_credits_joint.py │ │ │ │ ├── mt_income_tax_before_refundable_credits_unit.py │ │ │ │ ├── mt_income_tax_indiv.py │ │ │ │ ├── mt_income_tax_joint.py │ │ │ │ ├── mt_non_refundable_credits.py │ │ │ │ ├── mt_pre_dependent_exemption_taxable_income_indiv.py │ │ │ │ ├── mt_refundable_credits.py │ │ │ │ ├── mt_refundable_credits_before_renter_credit.py │ │ │ │ ├── mt_regular_income_tax_indiv.py │ │ │ │ ├── mt_regular_income_tax_joint.py │ │ │ │ ├── mt_taxable_income_indiv.py │ │ │ │ └── mt_taxable_income_joint.py │ │ ├── nc │ │ │ ├── ncdhhs │ │ │ │ ├── scca │ │ │ │ │ ├── entry │ │ │ │ │ │ ├── nc_scca_entry_eligible.py │ │ │ │ │ │ └── nc_scca_entry_income_eligible.py │ │ │ │ │ ├── nc_scca.py │ │ │ │ │ ├── nc_scca_age_group.py │ │ │ │ │ ├── nc_scca_child_age_eligible.py │ │ │ │ │ ├── nc_scca_countable_income.py │ │ │ │ │ ├── nc_scca_fpg_rate.py │ │ │ │ │ ├── nc_scca_has_eligible_child.py │ │ │ │ │ ├── nc_scca_is_school_age.py │ │ │ │ │ ├── nc_scca_market_rate.py │ │ │ │ │ ├── nc_scca_maximum_payment.py │ │ │ │ │ └── nc_scca_parent_fee.py │ │ │ │ └── tanf │ │ │ │ │ ├── income │ │ │ │ │ ├── nc_tanf_countable_earned_income.py │ │ │ │ │ └── nc_tanf_countable_gross_unearned_income.py │ │ │ │ │ ├── nc_demographic_tanf_eligible.py │ │ │ │ │ ├── nc_tanf.py │ │ │ │ │ ├── nc_tanf_eligible.py │ │ │ │ │ ├── nc_tanf_household_size.py │ │ │ │ │ ├── nc_tanf_income_eligible.py │ │ │ │ │ ├── nc_tanf_need_standard.py │ │ │ │ │ └── nc_tanf_reduced_need_standard.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ └── nc_ctc.py │ │ │ │ ├── deductions │ │ │ │ ├── military_retirement │ │ │ │ │ ├── nc_military_retirement_deduction.py │ │ │ │ │ └── nc_military_retirement_deduction_eligible.py │ │ │ │ ├── nc_child_deduction.py │ │ │ │ ├── nc_deductions.py │ │ │ │ ├── nc_itemized_deductions.py │ │ │ │ ├── nc_standard_deduction.py │ │ │ │ └── nc_standard_or_itemized_deductions.py │ │ │ │ ├── nc_additions.py │ │ │ │ ├── nc_income_tax.py │ │ │ │ ├── nc_income_tax_before_credits.py │ │ │ │ ├── nc_non_refundable_credits.py │ │ │ │ ├── nc_taxable_income.py │ │ │ │ ├── nc_use_tax.py │ │ │ │ └── nc_withheld_income_tax.py │ │ ├── nd │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── nd_mpc.py │ │ │ │ └── nd_rtrc.py │ │ │ │ ├── nd_additions.py │ │ │ │ ├── nd_income_tax.py │ │ │ │ ├── nd_income_tax_before_credits.py │ │ │ │ ├── nd_income_tax_before_refundable_credits.py │ │ │ │ ├── nd_non_refundable_credits.py │ │ │ │ ├── nd_refundable_credits.py │ │ │ │ ├── nd_taxable_income.py │ │ │ │ ├── nd_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ ├── nd_ltcg_subtraction.py │ │ │ │ ├── nd_qdiv_subtraction.py │ │ │ │ └── nd_subtractions.py │ │ ├── ne │ │ │ ├── dhhs │ │ │ │ ├── child_care_subsidy │ │ │ │ │ ├── ne_child_care_subsidy.py │ │ │ │ │ ├── ne_child_care_subsidy_eligible.py │ │ │ │ │ ├── ne_child_care_subsidy_eligible_child.py │ │ │ │ │ ├── ne_child_care_subsidy_eligible_parent.py │ │ │ │ │ └── ne_child_care_subsidy_income_eligible.py │ │ │ │ ├── ne_child_care_subsidies.py │ │ │ │ └── ne_dhhs_has_special_needs.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── ne_additions.py │ │ │ │ ├── ne_agi.py │ │ │ │ ├── ne_agi_subtractions.py │ │ │ │ └── subtractions │ │ │ │ │ ├── ne_military_retirement_substraction.py │ │ │ │ │ └── ne_social_security_subtraction.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── ne_cdcc_nonrefundable.py │ │ │ │ │ ├── ne_cdcc_refundable.py │ │ │ │ │ └── ne_cdcc_refundable_eligible.py │ │ │ │ ├── ctc │ │ │ │ │ └── refundable │ │ │ │ │ │ ├── ne_refundable_ctc.py │ │ │ │ │ │ ├── ne_refundable_ctc_eligible_child.py │ │ │ │ │ │ ├── ne_refundable_ctc_income_eligible.py │ │ │ │ │ │ └── ne_refundable_ctc_total_household_income.py │ │ │ │ ├── eitc │ │ │ │ │ └── ne_eitc.py │ │ │ │ ├── ne_elderly_disabled_credit.py │ │ │ │ └── school_readiness │ │ │ │ │ ├── ne_school_readiness_credit.py │ │ │ │ │ ├── ne_school_readiness_credit_child_care_worker_rating.py │ │ │ │ │ └── ne_school_readiness_credit_eligible_worker.py │ │ │ │ ├── deductions │ │ │ │ ├── ne_base_standard_deduction.py │ │ │ │ ├── ne_itemized_deductions.py │ │ │ │ └── ne_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ └── ne_exemptions.py │ │ │ │ ├── ne_income_tax.py │ │ │ │ ├── ne_income_tax_before_credits.py │ │ │ │ ├── ne_income_tax_before_refundable_credits.py │ │ │ │ ├── ne_non_refundable_credits.py │ │ │ │ ├── ne_refundable_credits.py │ │ │ │ ├── ne_taxable_income.py │ │ │ │ └── ne_withheld_income_tax.py │ │ ├── nh │ │ │ └── tax │ │ │ │ ├── credits │ │ │ │ └── nh_education_tax_credit.py │ │ │ │ └── income │ │ │ │ ├── exemptions │ │ │ │ ├── nh_base_exemption.py │ │ │ │ ├── nh_blind_exemption.py │ │ │ │ ├── nh_disabled_exemption.py │ │ │ │ ├── nh_old_age_exemption.py │ │ │ │ └── nh_total_exemptions.py │ │ │ │ ├── nh_income_tax.py │ │ │ │ ├── nh_income_tax_before_refundable_credits.py │ │ │ │ ├── nh_refundable_credits.py │ │ │ │ └── nh_taxable_income.py │ │ ├── nj │ │ │ ├── njdhs │ │ │ │ └── tanf │ │ │ │ │ ├── income │ │ │ │ │ ├── nj_tanf_countable_gross_unearned_income.py │ │ │ │ │ └── nj_tanf_gross_earned_income.py │ │ │ │ │ ├── nj_tanf_countable_resources.py │ │ │ │ │ ├── nj_tanf_maximum_allowable_income.py │ │ │ │ │ ├── nj_tanf_maximum_benefit.py │ │ │ │ │ └── nj_tanf_resources_eligible.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── nj_additions.py │ │ │ │ ├── nj_agi.py │ │ │ │ ├── nj_agi_subtractions.py │ │ │ │ ├── nj_gross_income.py │ │ │ │ └── nj_total_income.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── nj_cdcc.py │ │ │ │ ├── ctc │ │ │ │ │ ├── nj_ctc.py │ │ │ │ │ └── nj_ctc_eligible.py │ │ │ │ ├── eitc │ │ │ │ │ ├── nj_childless_eitc_age_eligible.py │ │ │ │ │ ├── nj_eitc.py │ │ │ │ │ └── nj_eitc_income_eligible.py │ │ │ │ └── property_tax_credit │ │ │ │ │ ├── nj_property_tax_credit.py │ │ │ │ │ └── nj_property_tax_credit_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── nj_medical_expense_deduction.py │ │ │ │ └── nj_total_deductions.py │ │ │ │ ├── exclusions │ │ │ │ ├── nj_eligible_pension_income.py │ │ │ │ ├── nj_other_retirement_income_exclusion.py │ │ │ │ ├── nj_other_retirement_special_exclusion.py │ │ │ │ ├── nj_pension_retirement_exclusion.py │ │ │ │ └── nj_retirement_exclusion_fraction.py │ │ │ │ ├── exemptions │ │ │ │ ├── nj_blind_or_disabled_exemption.py │ │ │ │ ├── nj_dependents_attending_college_exemption.py │ │ │ │ ├── nj_dependents_exemption.py │ │ │ │ ├── nj_regular_exemption.py │ │ │ │ ├── nj_senior_exemption.py │ │ │ │ └── nj_total_exemptions.py │ │ │ │ ├── nj_income_tax.py │ │ │ │ ├── nj_income_tax_before_refundable_credits.py │ │ │ │ ├── nj_main_income_tax.py │ │ │ │ ├── nj_non_refundable_credits.py │ │ │ │ ├── nj_refundable_credits.py │ │ │ │ ├── nj_withheld_income_tax.py │ │ │ │ ├── property_tax │ │ │ │ ├── nj_potential_property_tax_deduction.py │ │ │ │ ├── nj_property_tax_deduction.py │ │ │ │ ├── nj_property_tax_deduction_eligible.py │ │ │ │ └── nj_taking_property_tax_deduction.py │ │ │ │ └── taxable_income │ │ │ │ ├── nj_taxable_income.py │ │ │ │ └── nj_taxable_income_before_property_tax_deduction.py │ │ ├── nm │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── nm_cdcc.py │ │ │ │ │ ├── nm_cdcc_eligible.py │ │ │ │ │ ├── nm_cdcc_eligible_child.py │ │ │ │ │ └── nm_cdcc_max_amount.py │ │ │ │ ├── eitc │ │ │ │ │ ├── nm_eitc.py │ │ │ │ │ ├── nm_eitc_demographic_eligible.py │ │ │ │ │ └── nm_eitc_eligible.py │ │ │ │ ├── nm_ctc.py │ │ │ │ └── nm_medical_expense_credit.py │ │ │ │ ├── deductions │ │ │ │ ├── certain_dependents │ │ │ │ │ ├── nm_deduction_for_certain_dependents.py │ │ │ │ │ └── nm_deduction_for_certain_dependents_eligible.py │ │ │ │ ├── nm_deductions.py │ │ │ │ ├── nm_itemized_deductions.py │ │ │ │ ├── nm_medical_care_expense_deduction.py │ │ │ │ ├── nm_net_capital_gains_deduction.py │ │ │ │ └── nm_salt_add_back.py │ │ │ │ ├── exemptions │ │ │ │ ├── nm_armed_forces_retirement_pay_exemption_person.py │ │ │ │ ├── nm_blind_and_aged_exemption.py │ │ │ │ ├── nm_exemptions.py │ │ │ │ ├── nm_hundred_year_exemption.py │ │ │ │ ├── nm_low_and_middle_income_exemption.py │ │ │ │ ├── nm_medical_expense_exemption.py │ │ │ │ └── nm_social_security_income_exemption.py │ │ │ │ ├── nm_additions.py │ │ │ │ ├── nm_income_tax.py │ │ │ │ ├── nm_income_tax_before_non_refundable_credits.py │ │ │ │ ├── nm_income_tax_before_refundable_credits.py │ │ │ │ ├── nm_modified_gross_income.py │ │ │ │ ├── nm_non_refundable_credits.py │ │ │ │ ├── nm_other_deductions_and_exemptions.py │ │ │ │ ├── nm_refundable_credits.py │ │ │ │ ├── nm_taxable_income.py │ │ │ │ ├── nm_withheld_income_tax.py │ │ │ │ └── rebates │ │ │ │ ├── 2021_rebate │ │ │ │ ├── nm_2021_income_rebate.py │ │ │ │ ├── nm_additional_2021_income_rebate.py │ │ │ │ └── nm_supplemental_2021_income_rebate.py │ │ │ │ ├── low_income_comprehensive │ │ │ │ ├── nm_low_income_comprehensive_tax_rebate.py │ │ │ │ └── nm_low_income_comprehensive_tax_rebate_exemptions.py │ │ │ │ └── property_tax_rebate │ │ │ │ ├── nm_property_tax_rebate.py │ │ │ │ └── nm_property_tax_rebate_eligible.py │ │ ├── ny │ │ │ ├── nyserda │ │ │ │ └── drive_clean │ │ │ │ │ ├── ny_drive_clean_purchased_qualifying_vehicle.py │ │ │ │ │ ├── ny_drive_clean_rebate.py │ │ │ │ │ ├── ny_drive_clean_vehicle_cost.py │ │ │ │ │ └── ny_drive_clean_vehicle_electric_range.py │ │ │ ├── otda │ │ │ │ └── tanf │ │ │ │ │ ├── income │ │ │ │ │ ├── ny_tanf_countable_earned_income.py │ │ │ │ │ ├── ny_tanf_countable_gross_unearned_income.py │ │ │ │ │ └── ny_tanf_gross_earned_income.py │ │ │ │ │ ├── ny_tanf.py │ │ │ │ │ ├── ny_tanf_countable_resources.py │ │ │ │ │ ├── ny_tanf_eligible.py │ │ │ │ │ ├── ny_tanf_grant_standard.py │ │ │ │ │ ├── ny_tanf_income_eligible.py │ │ │ │ │ ├── ny_tanf_need_standard.py │ │ │ │ │ └── ny_tanf_resources_eligible.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── ny_additions.py │ │ │ │ ├── ny_agi.py │ │ │ │ ├── ny_agi_subtractions.py │ │ │ │ └── ny_pension_exclusion.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── ny_cdcc.py │ │ │ │ │ ├── ny_cdcc_max.py │ │ │ │ │ └── ny_cdcc_rate.py │ │ │ │ ├── college_tuition │ │ │ │ │ ├── ny_college_tuition_credit.py │ │ │ │ │ └── ny_college_tuition_credit_eligible.py │ │ │ │ ├── ctc │ │ │ │ │ ├── ny_additional_ctc.py │ │ │ │ │ ├── ny_ctc.py │ │ │ │ │ ├── ny_ctc_post_2024.py │ │ │ │ │ ├── ny_ctc_post_2024_base.py │ │ │ │ │ ├── ny_ctc_post_2024_eligible.py │ │ │ │ │ ├── ny_ctc_post_2024_phase_out.py │ │ │ │ │ ├── ny_ctc_pre_2024.py │ │ │ │ │ └── ny_ctc_pre_2024_eligible.py │ │ │ │ ├── ny_eitc.py │ │ │ │ ├── ny_geothermal_energy_system_credit.py │ │ │ │ ├── ny_household_credit.py │ │ │ │ ├── ny_inflation_refund_credit.py │ │ │ │ ├── ny_qualified_geothermal_energy_system_expenditures.py │ │ │ │ ├── ny_real_property_tax_credit.py │ │ │ │ ├── ny_supplemental_eitc.py │ │ │ │ └── solar_energy_systems │ │ │ │ │ ├── ny_qualified_solar_energy_systems_equipment_expenditures.py │ │ │ │ │ └── ny_solar_energy_systems_equipment_credit.py │ │ │ │ ├── ny_allowable_college_tuition_expenses.py │ │ │ │ ├── ny_income_tax.py │ │ │ │ ├── ny_income_tax_before_credits.py │ │ │ │ ├── ny_income_tax_before_refundable_credits.py │ │ │ │ ├── ny_main_income_tax.py │ │ │ │ ├── ny_non_refundable_credits.py │ │ │ │ ├── ny_refundable_credits.py │ │ │ │ ├── ny_supplemental_tax.py │ │ │ │ ├── ny_withheld_income_tax.py │ │ │ │ └── taxable_income │ │ │ │ ├── deductions │ │ │ │ ├── itemized │ │ │ │ │ ├── ny_college_tuition_deduction.py │ │ │ │ │ ├── ny_itemized_deductions.py │ │ │ │ │ ├── ny_itemized_deductions_max.py │ │ │ │ │ ├── ny_itemizes.py │ │ │ │ │ └── reduction │ │ │ │ │ │ ├── based_on_charitable_deduction │ │ │ │ │ │ ├── incremental │ │ │ │ │ │ │ ├── ny_itemized_deductions_higher_incremental_reduction.py │ │ │ │ │ │ │ ├── ny_itemized_deductions_incremental_reduction.py │ │ │ │ │ │ │ └── ny_itemized_deductions_lower_incremental_reduction.py │ │ │ │ │ │ ├── ny_itemized_deductions_reduction_based_on_charitable_deduction.py │ │ │ │ │ │ └── ny_itemized_deductions_reduction_based_on_charitable_deduction_applies.py │ │ │ │ │ │ ├── ny_itemized_deductions_reduction.py │ │ │ │ │ │ └── ny_itemized_deductions_reduction_applies.py │ │ │ │ └── ny_standard_deduction.py │ │ │ │ ├── ny_deductions.py │ │ │ │ ├── ny_exemptions.py │ │ │ │ └── ny_taxable_income.py │ │ ├── oh │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ ├── oh_additions.py │ │ │ │ ├── oh_bonus_depreciation_add_back.py │ │ │ │ └── oh_other_add_backs.py │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── oh_agi.py │ │ │ │ └── oh_agi_person.py │ │ │ │ ├── credits │ │ │ │ ├── joint_filing_credit │ │ │ │ │ ├── oh_joint_filing_credit.py │ │ │ │ │ ├── oh_joint_filing_credit_agi_subtractions.py │ │ │ │ │ ├── oh_joint_filing_credit_eligible.py │ │ │ │ │ ├── oh_joint_filing_credit_qualifying_income.py │ │ │ │ │ ├── oh_partial_non_refundable_credits.py │ │ │ │ │ └── oh_tax_before_joint_filing_credit.py │ │ │ │ ├── lump_sum_distribution │ │ │ │ │ ├── oh_lump_sum_distribution_credit.py │ │ │ │ │ ├── oh_lump_sum_distribution_credit_eligible.py │ │ │ │ │ ├── oh_lump_sum_distribution_credit_eligible_person.py │ │ │ │ │ └── oh_lump_sum_distribution_credit_person.py │ │ │ │ ├── oh_adoption_credit.py │ │ │ │ ├── oh_adoption_credit_person.py │ │ │ │ ├── oh_cdcc.py │ │ │ │ ├── oh_eitc.py │ │ │ │ ├── oh_exemption_credit.py │ │ │ │ ├── oh_has_taken_oh_lump_sum_credits.py │ │ │ │ ├── oh_non_public_school_credits.py │ │ │ │ ├── oh_senior_citizen_credit.py │ │ │ │ └── retirement_income │ │ │ │ │ ├── lump_sum │ │ │ │ │ ├── oh_lump_sum_retirement_credit.py │ │ │ │ │ └── oh_lump_sum_retirement_credit_eligible.py │ │ │ │ │ ├── oh_retirement_credit.py │ │ │ │ │ └── pension_based │ │ │ │ │ ├── oh_pension_based_retirement_income_credit.py │ │ │ │ │ └── oh_pension_based_retirement_income_credit_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── 529_plan │ │ │ │ │ ├── oh_529_plan_deduction.py │ │ │ │ │ └── oh_529_plan_deduction_person.py │ │ │ │ ├── medical_exepenses │ │ │ │ │ ├── insured_unreimbursed_expenses │ │ │ │ │ │ ├── oh_insured_unreimbursed_medical_care_expense_amount.py │ │ │ │ │ │ ├── oh_insured_unreimbursed_medical_care_expenses.py │ │ │ │ │ │ └── oh_insured_unreimbursed_medical_care_expenses_person.py │ │ │ │ │ ├── oh_uninsured_unreimbursed_medical_care_expenses.py │ │ │ │ │ ├── oh_unreimbursed_medical_care_expense_deduction.py │ │ │ │ │ └── oh_unreimbursed_medical_care_expense_deduction_person.py │ │ │ │ ├── oh_deductions.py │ │ │ │ ├── oh_federal_conformity_deduction.py │ │ │ │ ├── oh_section_179_expense_add_back.py │ │ │ │ └── oh_uniformed_services_retirement_income_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── oh_personal_exemptions.py │ │ │ │ └── oh_personal_exemptions_eligible_person.py │ │ │ │ ├── oh_income_tax.py │ │ │ │ ├── oh_income_tax_before_non_refundable_credits.py │ │ │ │ ├── oh_income_tax_before_refundable_credits.py │ │ │ │ ├── oh_income_tax_exempt.py │ │ │ │ ├── oh_modified_agi.py │ │ │ │ ├── oh_non_refundable_credits.py │ │ │ │ ├── oh_refundable_credits.py │ │ │ │ ├── oh_taxable_income.py │ │ │ │ └── oh_withheld_income_tax.py │ │ ├── ok │ │ │ ├── tanf │ │ │ │ └── ok_tanf.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── eitc │ │ │ │ │ ├── federal_credit │ │ │ │ │ │ ├── eligible │ │ │ │ │ │ │ ├── ok_federal_eitc_demographic_eligible.py │ │ │ │ │ │ │ ├── ok_federal_eitc_eligible.py │ │ │ │ │ │ │ └── ok_federal_eitc_investment_income_eligible.py │ │ │ │ │ │ ├── ok_federal_eitc.py │ │ │ │ │ │ ├── ok_federal_eitc_maximum.py │ │ │ │ │ │ ├── ok_federal_eitc_phase_in_rate.py │ │ │ │ │ │ ├── ok_federal_eitc_phase_out_rate.py │ │ │ │ │ │ ├── ok_federal_eitc_phase_out_start.py │ │ │ │ │ │ ├── ok_federal_eitc_phased_in.py │ │ │ │ │ │ └── ok_federal_eitc_reduction.py │ │ │ │ │ └── ok_eitc.py │ │ │ │ ├── ok_child_care_child_tax_credit.py │ │ │ │ ├── ok_gross_income.py │ │ │ │ ├── ok_non_refundable_credits.py │ │ │ │ ├── ok_ptc.py │ │ │ │ ├── ok_refundable_credits.py │ │ │ │ └── ok_stc.py │ │ │ │ ├── deductions │ │ │ │ ├── ok_itemized_deductions.py │ │ │ │ └── ok_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── ok_count_exemptions.py │ │ │ │ └── ok_exemptions.py │ │ │ │ ├── ok_additions.py │ │ │ │ ├── ok_adjustments.py │ │ │ │ ├── ok_agi.py │ │ │ │ ├── ok_agi_subtractions.py │ │ │ │ ├── ok_income_tax.py │ │ │ │ ├── ok_income_tax_before_credits.py │ │ │ │ ├── ok_income_tax_before_refundable_credits.py │ │ │ │ ├── ok_taxable_income.py │ │ │ │ ├── ok_use_tax.py │ │ │ │ ├── ok_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ ├── ok_military_retirement_exclusion.py │ │ │ │ └── ok_pension_subtraction.py │ │ ├── or │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── exemption │ │ │ │ │ ├── or_disabled_child_dependent_exemptions.py │ │ │ │ │ ├── or_exemption_credit.py │ │ │ │ │ ├── or_regular_exemptions.py │ │ │ │ │ └── or_severely_disabled_exemptions.py │ │ │ │ ├── kicker │ │ │ │ │ ├── or_kicker.py │ │ │ │ │ └── or_tax_before_credits_in_prior_year.py │ │ │ │ ├── or_ctc.py │ │ │ │ ├── or_eitc.py │ │ │ │ ├── or_non_refundable_credits.py │ │ │ │ ├── or_refundable_credits.py │ │ │ │ ├── retirement_credit │ │ │ │ │ ├── or_retirement_credit.py │ │ │ │ │ ├── or_retirement_credit_eligible_person.py │ │ │ │ │ └── or_retirement_credit_household_income.py │ │ │ │ └── wfhdc │ │ │ │ │ ├── or_cdcc_relevant_expenses.py │ │ │ │ │ ├── or_wfhdc_eligibility_category.py │ │ │ │ │ ├── or_wfhdc_eligible.py │ │ │ │ │ ├── or_wfhdc_employment_eligible.py │ │ │ │ │ ├── or_wfhdc_has_qualified_individual_eligible.py │ │ │ │ │ ├── or_wfhdc_household_income.py │ │ │ │ │ ├── or_wfhdc_household_size_eligible.py │ │ │ │ │ ├── or_wfhdc_income_category.py │ │ │ │ │ ├── or_wfhdc_income_eligible.py │ │ │ │ │ └── or_working_family_household_and_dependent_care_credit.py │ │ │ │ ├── deductions │ │ │ │ ├── or_deductions.py │ │ │ │ ├── or_itemized_deductions.py │ │ │ │ └── or_standard_deduction.py │ │ │ │ ├── or_additions.py │ │ │ │ ├── or_agi.py │ │ │ │ ├── or_income_tax.py │ │ │ │ ├── or_income_tax_before_credits.py │ │ │ │ ├── or_income_tax_before_refundable_credits.py │ │ │ │ ├── or_taxable_income.py │ │ │ │ ├── or_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ ├── or_federal_pension_subtraction.py │ │ │ │ ├── or_federal_tax_liability_subtraction.py │ │ │ │ └── or_income_subtractions.py │ │ ├── pa │ │ │ ├── dhs │ │ │ │ └── tanf │ │ │ │ │ ├── cash_assistance │ │ │ │ │ └── pa_tanf_age_eligible.py │ │ │ │ │ └── eligibility │ │ │ │ │ ├── pa_tanf_countable_resources.py │ │ │ │ │ ├── pa_tanf_resources_eligible.py │ │ │ │ │ └── pregnancy_eligibility │ │ │ │ │ └── age_eligibility.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── pa_cdcc.py │ │ │ │ └── pa_eitc.py │ │ │ │ ├── deductions │ │ │ │ └── pa_tax_deductions.py │ │ │ │ ├── forgiveness │ │ │ │ ├── pa_eligibility_income.py │ │ │ │ ├── pa_income_tax_after_forgiveness.py │ │ │ │ ├── pa_income_tax_before_forgiveness.py │ │ │ │ ├── pa_tax_forgiveness_amount.py │ │ │ │ └── pa_tax_forgiveness_rate.py │ │ │ │ ├── pa_income_tax.py │ │ │ │ ├── pa_refundable_tax_credits.py │ │ │ │ ├── pa_use_tax.py │ │ │ │ ├── pa_withheld_income_tax.py │ │ │ │ └── taxable_income │ │ │ │ ├── pa_adjusted_taxable_income.py │ │ │ │ ├── pa_nontaxable_pension_income.py │ │ │ │ └── pa_total_taxable_income.py │ │ ├── ri │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── agi │ │ │ │ ├── ri_additions.py │ │ │ │ ├── ri_agi.py │ │ │ │ └── subtractions │ │ │ │ │ ├── ri_subtractions.py │ │ │ │ │ ├── ri_tuition_saving_program_contribution_subtraction.py │ │ │ │ │ ├── social_security │ │ │ │ │ ├── ri_social_security_modification.py │ │ │ │ │ └── ri_social_security_modification_eligible.py │ │ │ │ │ └── taxable_retirement_income │ │ │ │ │ ├── ri_retirement_income_subtraction.py │ │ │ │ │ └── ri_retirement_income_subtraction_eligible.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── ri_cdcc.py │ │ │ │ ├── eitc │ │ │ │ │ └── ri_eitc.py │ │ │ │ ├── property_tax │ │ │ │ │ ├── ri_property_tax_credit.py │ │ │ │ │ ├── ri_property_tax_credit_eligible.py │ │ │ │ │ └── ri_property_tax_household_income.py │ │ │ │ └── rebates │ │ │ │ │ ├── ri_child_tax_rebate.py │ │ │ │ │ └── ri_child_tax_rebate_eligible.py │ │ │ │ ├── deductions │ │ │ │ └── standard │ │ │ │ │ ├── ri_standard_deduction.py │ │ │ │ │ └── ri_standard_deduction_applicable_percentage.py │ │ │ │ ├── exemption │ │ │ │ └── ri_exemptions.py │ │ │ │ ├── ri_income_tax.py │ │ │ │ ├── ri_income_tax_before_non_refundable_credits.py │ │ │ │ ├── ri_income_tax_before_refundable_credits.py │ │ │ │ ├── ri_non_refundable_credits.py │ │ │ │ ├── ri_refundable_credits.py │ │ │ │ ├── ri_taxable_income.py │ │ │ │ └── ri_withheld_income_tax.py │ │ ├── sc │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ ├── sc_additions.py │ │ │ │ └── sc_state_tax_addback.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ └── sc_cdcc.py │ │ │ │ ├── college_tuition │ │ │ │ │ ├── sc_tuition_credit.py │ │ │ │ │ └── sc_tuition_credit_eligible.py │ │ │ │ ├── eitc │ │ │ │ │ └── sc_eitc.py │ │ │ │ ├── sc_2022_rebate.py │ │ │ │ └── two_wage_earner │ │ │ │ │ ├── sc_gross_earned_income.py │ │ │ │ │ └── sc_two_wage_earner_credit.py │ │ │ │ ├── deductions │ │ │ │ ├── net_capital_gain │ │ │ │ │ └── sc_net_capital_gain_deduction.py │ │ │ │ └── sc_young_child_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── sc_dependent_exemption.py │ │ │ │ └── senior │ │ │ │ │ ├── sc_senior_exemption.py │ │ │ │ │ └── sc_senior_exemption_person.py │ │ │ │ ├── sc_income_tax.py │ │ │ │ ├── sc_income_tax_before_non_refundable_credits.py │ │ │ │ ├── sc_income_tax_before_refundable_credits.py │ │ │ │ ├── sc_non_refundable_credits.py │ │ │ │ ├── sc_refundable_credits.py │ │ │ │ ├── sc_taxable_income.py │ │ │ │ ├── sc_withheld_income_tax.py │ │ │ │ └── subtractions │ │ │ │ ├── military_retirement │ │ │ │ ├── sc_military_deduction.py │ │ │ │ ├── sc_military_deduction_indv.py │ │ │ │ └── sc_military_deduction_survivors.py │ │ │ │ ├── retirement │ │ │ │ ├── sc_retirement_cap.py │ │ │ │ ├── sc_retirement_deduction.py │ │ │ │ ├── sc_retirement_deduction_indv.py │ │ │ │ └── sc_retirement_deduction_survivors.py │ │ │ │ └── sc_subtractions.py │ │ ├── state_filing_status_if_married_filing_separately_on_same_return.py │ │ ├── tax │ │ │ ├── income │ │ │ │ ├── _generate_state_mfs_variables.py │ │ │ │ ├── state_agi.py │ │ │ │ ├── state_cdcc.py │ │ │ │ ├── state_ctc.py │ │ │ │ ├── state_eitc.py │ │ │ │ ├── state_income_tax.py │ │ │ │ ├── state_income_tax_before_refundable_credits.py │ │ │ │ ├── state_itemized_deductions.py │ │ │ │ ├── state_non_refundable_credits.py │ │ │ │ ├── state_property_tax_credit.py │ │ │ │ ├── state_refundable_credits.py │ │ │ │ ├── state_standard_deduction.py │ │ │ │ ├── state_taxable_income.py │ │ │ │ └── state_withheld_income_tax.py │ │ │ └── sales │ │ │ │ └── state_sales_tax.py │ │ ├── tx │ │ │ ├── dart │ │ │ │ ├── free_ride │ │ │ │ │ ├── tx_dart_free_ride_benefit.py │ │ │ │ │ └── tx_dart_free_ride_eligible_young_child.py │ │ │ │ ├── reduced_fare │ │ │ │ │ ├── eligibility │ │ │ │ │ │ ├── tx_dart_reduced_fare_age_eligible.py │ │ │ │ │ │ ├── tx_dart_reduced_fare_eligible.py │ │ │ │ │ │ └── tx_dart_reduced_fare_program_eligible.py │ │ │ │ │ └── tx_dart_reduced_fare_benefit.py │ │ │ │ └── tx_dart_benefit_person.py │ │ │ ├── dta │ │ │ │ └── csfp │ │ │ │ │ └── tx_dta_csfp_income_eligible.py │ │ │ ├── fpp │ │ │ │ ├── tx_fpp_age_eligible.py │ │ │ │ ├── tx_fpp_benefit.py │ │ │ │ ├── tx_fpp_eligible.py │ │ │ │ ├── tx_fpp_income_eligible.py │ │ │ │ └── tx_fpp_income_limit.py │ │ │ ├── tanf │ │ │ │ ├── assistance_unit │ │ │ │ │ ├── tx_tanf_age_eligible_child.py │ │ │ │ │ ├── tx_tanf_assistance_unit_size.py │ │ │ │ │ ├── tx_tanf_categorically_eligible_person.py │ │ │ │ │ ├── tx_tanf_eligible_child.py │ │ │ │ │ └── tx_tanf_eligible_parent.py │ │ │ │ ├── eligibility │ │ │ │ │ ├── tx_tanf_budgetary_needs.py │ │ │ │ │ ├── tx_tanf_budgetary_needs_test.py │ │ │ │ │ ├── tx_tanf_caretaker_type.py │ │ │ │ │ ├── tx_tanf_eligible.py │ │ │ │ │ ├── tx_tanf_income_eligible.py │ │ │ │ │ ├── tx_tanf_recognizable_needs_test.py │ │ │ │ │ └── tx_tanf_resources_eligible.py │ │ │ │ ├── income │ │ │ │ │ ├── deductions │ │ │ │ │ │ ├── tx_tanf_child_support_deduction.py │ │ │ │ │ │ └── tx_tanf_dependent_care_deduction.py │ │ │ │ │ ├── earned │ │ │ │ │ │ ├── tx_tanf_countable_earned_income.py │ │ │ │ │ │ ├── tx_tanf_earned_income_after_disregard_person.py │ │ │ │ │ │ └── tx_tanf_gross_earned_income.py │ │ │ │ │ ├── tx_tanf_countable_income.py │ │ │ │ │ ├── tx_tanf_income_for_budgetary_needs_test.py │ │ │ │ │ └── unearned │ │ │ │ │ │ ├── tx_tanf_countable_unearned_income.py │ │ │ │ │ │ └── tx_tanf_gross_unearned_income.py │ │ │ │ ├── ottanf │ │ │ │ │ ├── tx_ottanf.py │ │ │ │ │ ├── tx_ottanf_crisis_criteria.py │ │ │ │ │ └── tx_ottanf_eligible.py │ │ │ │ ├── resources │ │ │ │ │ └── tx_tanf_countable_resources.py │ │ │ │ ├── tx_regular_tanf.py │ │ │ │ ├── tx_tanf.py │ │ │ │ └── tx_tanf_payment_standard.py │ │ │ ├── twc │ │ │ │ └── ccs │ │ │ │ │ ├── copay │ │ │ │ │ └── tx_ccs_copay.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── tx_ccs_asset_eligible.py │ │ │ │ │ ├── tx_ccs_eligible.py │ │ │ │ │ ├── tx_ccs_eligible_child.py │ │ │ │ │ ├── tx_ccs_income_eligible.py │ │ │ │ │ ├── tx_ccs_work_exempt.py │ │ │ │ │ └── tx_ccs_work_requirement_eligible.py │ │ │ │ │ ├── payment │ │ │ │ │ ├── tx_ccs_care_schedule.py │ │ │ │ │ ├── tx_ccs_payment_rate.py │ │ │ │ │ ├── tx_ccs_provider_rating.py │ │ │ │ │ └── tx_ccs_provider_type.py │ │ │ │ │ ├── tx_ccs.py │ │ │ │ │ ├── tx_ccs_child_age_category.py │ │ │ │ │ ├── tx_ccs_countable_income.py │ │ │ │ │ ├── tx_ccs_maximum_payment.py │ │ │ │ │ └── tx_ccs_workforce_board_region.py │ │ │ └── uct │ │ │ │ └── lifeline │ │ │ │ └── tx_lifeline_supplement.py │ │ ├── unemployment_compensation.py │ │ ├── ut │ │ │ ├── README.md │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── child_tax_credit │ │ │ │ │ └── ut_ctc.py │ │ │ │ ├── military_retirement_credit │ │ │ │ │ ├── ut_military_retirement_credit.py │ │ │ │ │ └── ut_military_retirement_credit_eligible.py │ │ │ │ ├── retirement_credit │ │ │ │ │ ├── ut_claims_retirement_credit.py │ │ │ │ │ ├── ut_retirement_credit.py │ │ │ │ │ └── ut_retirement_credit_max.py │ │ │ │ ├── ss_benefits_credit │ │ │ │ │ ├── ut_ss_benefits_credit.py │ │ │ │ │ └── ut_ss_benefits_credit_max.py │ │ │ │ ├── taxpayer_credit │ │ │ │ │ ├── ut_federal_deductions_for_taxpayer_credit.py │ │ │ │ │ ├── ut_personal_exemption.py │ │ │ │ │ ├── ut_personal_exemption_additional_dependent_eligible.py │ │ │ │ │ ├── ut_personal_exemption_additional_dependents.py │ │ │ │ │ ├── ut_taxpayer_credit.py │ │ │ │ │ ├── ut_taxpayer_credit_max.py │ │ │ │ │ ├── ut_taxpayer_credit_phase_out_income.py │ │ │ │ │ ├── ut_taxpayer_credit_reduction.py │ │ │ │ │ └── ut_total_dependents.py │ │ │ │ ├── ut_at_home_parent_credit.py │ │ │ │ ├── ut_at_home_parent_credit_agi_eligible.py │ │ │ │ ├── ut_at_home_parent_credit_earned_income_eligible_person.py │ │ │ │ ├── ut_eitc.py │ │ │ │ ├── ut_non_refundable_credits.py │ │ │ │ └── ut_refundable_credits.py │ │ │ │ ├── taxable_income │ │ │ │ ├── ut_additions.py │ │ │ │ ├── ut_state_tax_refund.py │ │ │ │ ├── ut_subtractions.py │ │ │ │ ├── ut_taxable_income.py │ │ │ │ └── ut_total_income.py │ │ │ │ ├── ut_income_tax.py │ │ │ │ ├── ut_income_tax_before_credits.py │ │ │ │ ├── ut_income_tax_before_non_refundable_credits.py │ │ │ │ ├── ut_income_tax_before_refundable_credits.py │ │ │ │ ├── ut_income_tax_exempt.py │ │ │ │ └── ut_withheld_income_tax.py │ │ ├── va │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ └── va_additions.py │ │ │ │ ├── credits │ │ │ │ ├── eitc │ │ │ │ │ ├── refundability_calculation │ │ │ │ │ │ ├── va_claims_refundable_eitc.py │ │ │ │ │ │ ├── va_income_tax_if_claiming_non_refundable_eitc.py │ │ │ │ │ │ └── va_income_tax_if_claiming_refundable_eitc.py │ │ │ │ │ ├── va_eitc.py │ │ │ │ │ ├── va_eitc_person.py │ │ │ │ │ ├── va_non_refundable_eitc.py │ │ │ │ │ ├── va_non_refundable_eitc_if_claimed.py │ │ │ │ │ ├── va_refundable_eitc.py │ │ │ │ │ └── va_refundable_eitc_if_claimed.py │ │ │ │ └── low_income_credit │ │ │ │ │ ├── va_low_income_tax_credit.py │ │ │ │ │ ├── va_low_income_tax_credit_agi_eligible.py │ │ │ │ │ └── va_low_income_tax_credit_eligible.py │ │ │ │ ├── deductions │ │ │ │ ├── cdcc_expense │ │ │ │ │ ├── va_child_dependent_care_deduction_cdcc_limit.py │ │ │ │ │ └── va_child_dependent_care_expense_deduction.py │ │ │ │ ├── va_capped_state_and_local_sales_or_income_tax.py │ │ │ │ ├── va_deductions.py │ │ │ │ ├── va_itemized_deductions.py │ │ │ │ ├── va_reduced_itemized_deductions.py │ │ │ │ └── va_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ ├── va_aged_blind_exemption.py │ │ │ │ ├── va_aged_blind_exemption_person.py │ │ │ │ ├── va_personal_exemption.py │ │ │ │ ├── va_personal_exemption_person.py │ │ │ │ └── va_total_exemptions.py │ │ │ │ ├── spouse_tax_adjustment │ │ │ │ ├── va_agi_less_exemptions_person.py │ │ │ │ ├── va_spouse_tax_adjustment.py │ │ │ │ └── va_spouse_tax_adjustment_eligible.py │ │ │ │ ├── subtractions │ │ │ │ ├── age_deduction │ │ │ │ │ ├── va_age_deduction.py │ │ │ │ │ └── va_age_deduction_agi.py │ │ │ │ ├── va_disability_income_subtraction.py │ │ │ │ ├── va_federal_state_employees_subtraction.py │ │ │ │ ├── va_military_basic_pay │ │ │ │ │ └── va_military_basic_pay_subtraction.py │ │ │ │ ├── va_military_benefit_subtraction.py │ │ │ │ └── va_national_guard_subtraction.py │ │ │ │ ├── va_agi.py │ │ │ │ ├── va_agi_person.py │ │ │ │ ├── va_agi_share.py │ │ │ │ ├── va_income_tax.py │ │ │ │ ├── va_income_tax_before_non_refundable_credits.py │ │ │ │ ├── va_income_tax_before_refundable_credits.py │ │ │ │ ├── va_must_file.py │ │ │ │ ├── va_non_refundable_credits.py │ │ │ │ ├── va_rebate.py │ │ │ │ ├── va_refundable_credits.py │ │ │ │ ├── va_subtractions.py │ │ │ │ ├── va_taxable_income.py │ │ │ │ └── va_withheld_income_tax.py │ │ ├── vt │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── adjusted_gross_income │ │ │ │ ├── subtractions │ │ │ │ │ ├── retirement_income_exemption │ │ │ │ │ │ ├── vt_csrs_retirement_pay_exclusion.py │ │ │ │ │ │ ├── vt_military_retirement_cap_based_exemption.py │ │ │ │ │ │ ├── vt_military_retirement_income_based_exemption.py │ │ │ │ │ │ ├── vt_military_retirement_pay_exclusion.py │ │ │ │ │ │ ├── vt_retirement_income_exemption.py │ │ │ │ │ │ └── vt_retirement_income_exemption_eligible.py │ │ │ │ │ ├── vt_capital_gain_exclusion │ │ │ │ │ │ ├── vt_capital_gains_exclusion.py │ │ │ │ │ │ └── vt_percentage_capital_gains_exclusion.py │ │ │ │ │ ├── vt_medical_expense_deduction.py │ │ │ │ │ └── vt_subtractions.py │ │ │ │ ├── vt_additions.py │ │ │ │ └── vt_agi.py │ │ │ │ ├── credits │ │ │ │ ├── cdcc │ │ │ │ │ ├── vt_cdcc.py │ │ │ │ │ ├── vt_low_income_cdcc.py │ │ │ │ │ └── vt_low_income_cdcc_eligible.py │ │ │ │ ├── ctc │ │ │ │ │ └── vt_ctc.py │ │ │ │ ├── renter │ │ │ │ │ ├── vt_renter_credit.py │ │ │ │ │ ├── vt_renter_credit_countable_tax_exempt_ss.py │ │ │ │ │ └── vt_renter_credit_income.py │ │ │ │ ├── vt_charitable_contributions_credit.py │ │ │ │ ├── vt_elderly_or_disabled_credit.py │ │ │ │ └── vt_veteran_tax_credit.py │ │ │ │ ├── deductions │ │ │ │ └── vt_standard_deduction.py │ │ │ │ ├── exemptions │ │ │ │ └── vt_personal_exemptions.py │ │ │ │ ├── vt_amt.py │ │ │ │ ├── vt_child_care_contributions.py │ │ │ │ ├── vt_eitc.py │ │ │ │ ├── vt_income_tax.py │ │ │ │ ├── vt_income_tax_before_non_refundable_credits.py │ │ │ │ ├── vt_income_tax_before_refundable_credits.py │ │ │ │ ├── vt_non_refundable_credits.py │ │ │ │ ├── vt_normal_income_tax.py │ │ │ │ ├── vt_refundable_credits.py │ │ │ │ ├── vt_taxable_income.py │ │ │ │ └── vt_withheld_income_tax.py │ │ ├── wa │ │ │ ├── dshs │ │ │ │ └── tanf │ │ │ │ │ ├── benefit │ │ │ │ │ └── wa_tanf_payment_standard.py │ │ │ │ │ ├── eligibility │ │ │ │ │ ├── wa_tanf_eligible.py │ │ │ │ │ └── wa_tanf_income_eligible.py │ │ │ │ │ ├── income │ │ │ │ │ ├── wa_tanf_countable_earned_income.py │ │ │ │ │ └── wa_tanf_countable_income.py │ │ │ │ │ ├── wa_tanf.py │ │ │ │ │ ├── wa_tanf_countable_resources.py │ │ │ │ │ └── wa_tanf_resources_eligible.py │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── credits │ │ │ │ ├── wa_refundable_credits.py │ │ │ │ └── wa_working_families_tax_credit.py │ │ │ │ ├── wa_capital_gains_tax.py │ │ │ │ ├── wa_income_tax.py │ │ │ │ └── wa_income_tax_before_refundable_credits.py │ │ ├── wi │ │ │ └── tax │ │ │ │ └── income │ │ │ │ ├── additions │ │ │ │ ├── wi_additions.py │ │ │ │ ├── wi_capital_gain_loss_addition.py │ │ │ │ └── wi_capital_loss.py │ │ │ │ ├── credits │ │ │ │ ├── childcare_expense │ │ │ │ │ └── wi_childcare_expense_credit.py │ │ │ │ ├── earned_income │ │ │ │ │ └── wi_earned_income_credit.py │ │ │ │ ├── homestead │ │ │ │ │ ├── wi_homestead_credit.py │ │ │ │ │ ├── wi_homestead_eligible.py │ │ │ │ │ ├── wi_homestead_income.py │ │ │ │ │ └── wi_homestead_property_tax.py │ │ │ │ ├── itemized_deduction │ │ │ │ │ └── wi_itemized_deduction_credit.py │ │ │ │ ├── married_couple │ │ │ │ │ └── wi_married_couple_credit.py │ │ │ │ ├── property_tax │ │ │ │ │ └── wi_property_tax_credit.py │ │ │ │ ├── wi_non_refundable_credits.py │ │ │ │ └── wi_refundable_credits.py │ │ │ │ ├── exemptions │ │ │ │ ├── wi_additional_exemption.py │ │ │ │ ├── wi_base_exemption.py │ │ │ │ └── wi_exemption.py │ │ │ │ ├── subtractions │ │ │ │ ├── wi_capital_gain_loss_subtraction.py │ │ │ │ ├── wi_childcare_expense_subtraction.py │ │ │ │ ├── wi_income_subtractions.py │ │ │ │ ├── wi_retirement_income_subtraction.py │ │ │ │ ├── wi_retirement_income_subtraction_agi_eligible.py │ │ │ │ └── wi_unemployment_compensation_subtraction.py │ │ │ │ ├── wi_agi.py │ │ │ │ ├── wi_income_before_credits.py │ │ │ │ ├── wi_income_tax.py │ │ │ │ ├── wi_income_tax_before_refundable_credits.py │ │ │ │ ├── wi_standard_deduction.py │ │ │ │ ├── wi_taxable_income.py │ │ │ │ └── wi_withheld_income_tax.py │ │ ├── workers_compensation.py │ │ └── wv │ │ │ └── tax │ │ │ └── income │ │ │ ├── credits │ │ │ ├── heptc │ │ │ │ ├── wv_gross_household_income.py │ │ │ │ ├── wv_homestead_excess_property_tax_credit.py │ │ │ │ └── wv_homestead_excess_property_tax_credit_eligible.py │ │ │ ├── liftc │ │ │ │ ├── wv_low_income_family_tax_credit.py │ │ │ │ ├── wv_low_income_family_tax_credit_agi.py │ │ │ │ ├── wv_low_income_family_tax_credit_eligible.py │ │ │ │ └── wv_low_income_family_tax_credit_fpg.py │ │ │ ├── sctc │ │ │ │ ├── wv_sctc.py │ │ │ │ ├── wv_sctc_eligible.py │ │ │ │ └── wv_taxable_property_value.py │ │ │ └── wv_cdcc.py │ │ │ ├── exemptions │ │ │ ├── homestead_exemption │ │ │ │ └── wv_homestead_exemption.py │ │ │ └── wv_personal_exemption.py │ │ │ ├── subtractions │ │ │ ├── low_income_earned_income │ │ │ │ ├── wv_low_income_earned_income_exclusion.py │ │ │ │ └── wv_low_income_earned_income_exclusion_eligible.py │ │ │ ├── public_pension │ │ │ │ ├── wv_public_pension_subtraction.py │ │ │ │ └── wv_public_pension_subtraction_person.py │ │ │ ├── senior_citizen_disability │ │ │ │ ├── wv_senior_citizen_disability_deduction.py │ │ │ │ ├── wv_senior_citizen_disability_deduction_eligible_person.py │ │ │ │ ├── wv_senior_citizen_disability_deduction_person.py │ │ │ │ └── wv_senior_citizen_disability_deduction_total_modifications.py │ │ │ └── social_security │ │ │ │ ├── wv_social_security_benefits_subtraction.py │ │ │ │ ├── wv_social_security_benefits_subtraction_eligible.py │ │ │ │ └── wv_social_security_benefits_subtraction_person.py │ │ │ ├── wv_additions.py │ │ │ ├── wv_agi.py │ │ │ ├── wv_income_tax.py │ │ │ ├── wv_income_tax_before_non_refundable_credits.py │ │ │ ├── wv_income_tax_before_refundable_credits.py │ │ │ ├── wv_non_refundable_credits.py │ │ │ ├── wv_refundable_credits.py │ │ │ ├── wv_subtractions.py │ │ │ ├── wv_taxable_income.py │ │ │ └── wv_withheld_income_tax.py │ ├── territories │ │ └── pr │ │ │ ├── pr_is_tax_unit_dependent.py │ │ │ └── tax │ │ │ └── income │ │ │ ├── credits │ │ │ ├── earned_income │ │ │ │ ├── pr_earned_income_credit.py │ │ │ │ ├── pr_earned_income_credit_eligible.py │ │ │ │ ├── pr_earned_income_credit_eligible_person.py │ │ │ │ └── pr_earned_income_credit_unearned_income.py │ │ │ ├── low_income │ │ │ │ ├── pr_compensatory_low_income_credit.py │ │ │ │ ├── pr_low_income_credit.py │ │ │ │ ├── pr_low_income_credit_eligible.py │ │ │ │ ├── pr_low_income_credit_eligible_people.py │ │ │ │ └── pr_low_income_credit_eligible_person.py │ │ │ ├── pr_refundable_credits.py │ │ │ └── refundable_ctc │ │ │ │ ├── pr_refundable_ctc.py │ │ │ │ └── pr_refundable_ctc_social_security_tax.py │ │ │ ├── gradual_adjustment │ │ │ ├── pr_gradual_adjustment_amount.py │ │ │ └── pr_gradual_adjustment_eligible.py │ │ │ ├── pr_agi.py │ │ │ ├── pr_agi_person.py │ │ │ ├── pr_gross_income.py │ │ │ ├── pr_gross_income_person.py │ │ │ ├── pr_income_tax.py │ │ │ ├── pr_normal_tax.py │ │ │ ├── pr_regular_tax_before_credits.py │ │ │ └── taxable_income │ │ │ ├── deductions │ │ │ ├── education │ │ │ │ ├── pr_education_deduction.py │ │ │ │ └── pr_education_deduction_beneficiary_count.py │ │ │ ├── pr_casualty_loss_deduction.py │ │ │ ├── pr_charitable_deduction.py │ │ │ ├── pr_deductions.py │ │ │ ├── pr_medical_expense_deduction.py │ │ │ ├── pr_mortgage_deduction.py │ │ │ └── retirement │ │ │ │ ├── pr_retirement_deduction.py │ │ │ │ └── pr_retirement_deduction_eligibility.py │ │ │ ├── exemptions │ │ │ ├── dependent │ │ │ │ ├── pr_dependents_exemption.py │ │ │ │ ├── pr_eligible_dependent_for_exemption.py │ │ │ │ ├── pr_exemptions_is_eligible_nonstudent.py │ │ │ │ └── pr_exemptions_is_eligible_student.py │ │ │ ├── pr_exemptions.py │ │ │ ├── pr_personal_exemption.py │ │ │ └── pr_veteran_exemption.py │ │ │ └── pr_net_taxable_income.py │ └── usda │ │ ├── csfp │ │ ├── commodity_supplemental_food_program.py │ │ └── commodity_supplemental_food_program_eligible.py │ │ ├── fdpir │ │ └── fdpir.py │ │ ├── has_all_usda_elderly_disabled.py │ │ ├── has_usda_elderly_disabled.py │ │ ├── is_usda_disabled.py │ │ ├── is_usda_elderly.py │ │ ├── school_meals │ │ ├── free_school_meals.py │ │ ├── free_school_meals_reported.py │ │ ├── meets_school_meal_categorical_eligibility.py │ │ ├── reduced_price_school_meals.py │ │ ├── school_meal_countable_income.py │ │ ├── school_meal_daily_subsidy.py │ │ ├── school_meal_fpg_ratio.py │ │ ├── school_meal_net_subsidy.py │ │ ├── school_meal_paid_daily_subsidy.py │ │ └── school_meal_tier.py │ │ ├── snap │ │ ├── eligibility │ │ │ ├── is_snap_eligible.py │ │ │ ├── meets_snap_asset_test.py │ │ │ ├── meets_snap_categorical_eligibility.py │ │ │ ├── meets_snap_gross_income_test.py │ │ │ ├── meets_snap_net_income_test.py │ │ │ ├── snap_assets.py │ │ │ ├── student │ │ │ │ ├── is_snap_higher_ed_student.py │ │ │ │ ├── is_snap_ineligible_student.py │ │ │ │ ├── meets_snap_parent_exception.py │ │ │ │ └── meets_snap_work_exception.py │ │ │ └── work_requirements │ │ │ │ ├── meets_snap_abawd_work_requirements.py │ │ │ │ ├── meets_snap_general_work_requirements.py │ │ │ │ └── meets_snap_work_requirements.py │ │ ├── income │ │ │ ├── deductions │ │ │ │ ├── self_employment │ │ │ │ │ ├── snap_self_employment_expense_deduction.py │ │ │ │ │ ├── snap_self_employment_income_after_expense_deduction.py │ │ │ │ │ └── snap_self_employment_income_expense.py │ │ │ │ ├── shelter │ │ │ │ │ ├── snap_excess_shelter_expense_deduction.py │ │ │ │ │ ├── snap_individual_utility_allowance.py │ │ │ │ │ ├── snap_limited_utility_allowance.py │ │ │ │ │ ├── snap_limited_utility_allowance_by_household_size.py │ │ │ │ │ ├── snap_net_income_pre_shelter.py │ │ │ │ │ ├── snap_standard_utility_allowance.py │ │ │ │ │ ├── snap_standard_utility_allowance_by_household_size.py │ │ │ │ │ ├── snap_state_using_standard_utility_allowance.py │ │ │ │ │ ├── snap_utility_allowance.py │ │ │ │ │ └── snap_utility_allowance_type.py │ │ │ │ ├── snap_child_support_deduction.py │ │ │ │ ├── snap_deductions.py │ │ │ │ ├── snap_dependent_care_deduction.py │ │ │ │ ├── snap_earned_income_deduction.py │ │ │ │ ├── snap_excess_medical_expense_deduction.py │ │ │ │ └── snap_standard_deduction.py │ │ │ ├── gross │ │ │ │ ├── snap_child_support_gross_income_deduction.py │ │ │ │ ├── snap_gross_income.py │ │ │ │ └── snap_gross_income_fpg_ratio.py │ │ │ ├── snap_countable_earner.py │ │ │ ├── snap_earned_income.py │ │ │ ├── snap_earned_income_person.py │ │ │ ├── snap_excluded_child_earner.py │ │ │ ├── snap_fpg.py │ │ │ ├── snap_net_income.py │ │ │ ├── snap_net_income_fpg_ratio.py │ │ │ └── snap_unearned_income.py │ │ ├── snap.py │ │ ├── snap_emergency_allotment.py │ │ ├── snap_expected_contribution.py │ │ ├── snap_max_allotment.py │ │ ├── snap_min_allotment.py │ │ ├── snap_normal_allotment.py │ │ ├── snap_region.py │ │ ├── snap_region_str.py │ │ ├── snap_reported.py │ │ ├── snap_take_up_seed.py │ │ ├── snap_unit.py │ │ ├── snap_utility_region.py │ │ ├── snap_utility_region_str.py │ │ └── takes_up_snap_if_eligible.py │ │ └── wic │ │ ├── is_wic_at_nutritional_risk.py │ │ ├── is_wic_eligible.py │ │ ├── meets_wic_categorical_eligibility.py │ │ ├── meets_wic_income_test.py │ │ ├── receives_wic.py │ │ ├── wic.py │ │ ├── wic_category.py │ │ ├── wic_category_str.py │ │ ├── wic_fpg.py │ │ └── would_claim_wic.py │ ├── household │ ├── assets │ │ ├── net_worth.py │ │ ├── spm_unit_assets.py │ │ └── spm_unit_cash_assets.py │ ├── child_index.py │ ├── cliff.py │ ├── demographic │ │ ├── age │ │ │ ├── age.py │ │ │ ├── age_group.py │ │ │ ├── birth_year.py │ │ │ ├── is_child.py │ │ │ ├── is_senior.py │ │ │ ├── is_wa_adult.py │ │ │ └── monthly_age.py │ │ ├── geographic │ │ │ ├── county │ │ │ │ ├── county.py │ │ │ │ ├── county_enum.py │ │ │ │ ├── county_str.py │ │ │ │ └── first_county_in_state.py │ │ │ ├── in_nyc.py │ │ │ ├── is_homeless.py │ │ │ ├── is_on_tribal_land.py │ │ │ ├── is_rural.py │ │ │ ├── lives_in_vehicle.py │ │ │ ├── safmr_used_for_hcv.py │ │ │ ├── state │ │ │ │ ├── average_home_energy_use_in_state.py │ │ │ │ └── in_state.py │ │ │ ├── state_code.py │ │ │ ├── state_code_str.py │ │ │ ├── state_group.py │ │ │ ├── state_group_str.py │ │ │ ├── state_name.py │ │ │ ├── tax_unit_state.py │ │ │ └── zip_code │ │ │ │ ├── three_digit_zip_code.py │ │ │ │ └── zip_code.py │ │ ├── household │ │ │ ├── bedrooms.py │ │ │ ├── household_count.py │ │ │ ├── household_size.py │ │ │ ├── household_vehicle_value.py │ │ │ ├── household_vehicles_owned.py │ │ │ ├── is_sro.py │ │ │ ├── living_arrangements_allow_for_food_preparation.py │ │ │ └── rent_is_shared_with_another_tax_unit.py │ │ ├── identifiers │ │ │ ├── family_id.py │ │ │ ├── household_id.py │ │ │ ├── person_family_id.py │ │ │ ├── person_household_id.py │ │ │ ├── person_id.py │ │ │ ├── person_tax_unit_id.py │ │ │ └── tax_unit_id.py │ │ ├── marital_unit │ │ │ ├── is_separated.py │ │ │ ├── is_surviving_spouse.py │ │ │ ├── marital_unit_id.py │ │ │ ├── marital_unit_weight.py │ │ │ └── person_marital_unit_id.py │ │ ├── person │ │ │ ├── adopted_this_year.py │ │ │ ├── care_and_support_costs.py │ │ │ ├── care_and_support_payments_from_tax_filer.py │ │ │ ├── claimed_as_dependent_on_another_return.py │ │ │ ├── cps_race.py │ │ │ ├── current_pregnancies.py │ │ │ ├── current_pregnancy_month.py │ │ │ ├── detailed_occupation_recode.py │ │ │ ├── divorce_year.py │ │ │ ├── four_year_college_student.py │ │ │ ├── has_disabled_spouse.py │ │ │ ├── has_itin.py │ │ │ ├── has_never_worked.py │ │ │ ├── immigration_status.py │ │ │ ├── immigration_status_str.py │ │ │ ├── in_out_of_home_care_facility.py │ │ │ ├── is_adult.py │ │ │ ├── is_blind.py │ │ │ ├── is_breastfeeding.py │ │ │ ├── is_child_dependent.py │ │ │ ├── is_citizen_or_legal_immigrant.py │ │ │ ├── is_computer_scientist.py │ │ │ ├── is_deaf.py │ │ │ ├── is_deceased.py │ │ │ ├── is_disabled.py │ │ │ ├── is_english_proficient.py │ │ │ ├── is_executive_administrative_professional.py │ │ │ ├── is_farmer_fisher.py │ │ │ ├── is_father.py │ │ │ ├── is_female.py │ │ │ ├── is_full_time_college_student.py │ │ │ ├── is_full_time_student.py │ │ │ ├── is_fully_disabled_service_connected_veteran.py │ │ │ ├── is_grandparent_of_filer_or_spouse.py │ │ │ ├── is_hispanic.py │ │ │ ├── is_in_foster_care.py │ │ │ ├── is_in_foster_care_group_home.py │ │ │ ├── is_in_k12_nonpublic_school.py │ │ │ ├── is_in_k12_school.py │ │ │ ├── is_in_secondary_school.py │ │ │ ├── is_incapable_of_self_care.py │ │ │ ├── is_incarcerated.py │ │ │ ├── is_male.py │ │ │ ├── is_married.py │ │ │ ├── is_migratory_child.py │ │ │ ├── is_military.py │ │ │ ├── is_mother.py │ │ │ ├── is_parent.py │ │ │ ├── is_parent_of_filer_or_spouse.py │ │ │ ├── is_part_time_college_student.py │ │ │ ├── is_permanently_and_totally_disabled.py │ │ │ ├── is_permanently_disabled_veteran.py │ │ │ ├── is_pregnant.py │ │ │ ├── is_reference_person.py │ │ │ ├── is_related_to_head_or_spouse.py │ │ │ ├── is_retired.py │ │ │ ├── is_runaway_child.py │ │ │ ├── is_severely_disabled.py │ │ │ ├── is_surviving_child_of_disabled_veteran.py │ │ │ ├── is_surviving_spouse_of_disabled_veteran.py │ │ │ ├── is_veteran.py │ │ │ ├── own_children_in_household.py │ │ │ ├── person_count.py │ │ │ ├── postpartum │ │ │ │ ├── count_days_postpartum.py │ │ │ │ ├── under_12_months_postpartum.py │ │ │ │ └── under_60_days_postpartum.py │ │ │ ├── race.py │ │ │ ├── receives_or_needs_protective_services.py │ │ │ ├── retired_from_federal_government.py │ │ │ ├── share_of_care_and_support_costs_paid_by_tax_filer.py │ │ │ ├── ssn_card_type.py │ │ │ ├── technical_institution_student.py │ │ │ ├── was_in_foster_care.py │ │ │ ├── year_deceased.py │ │ │ ├── year_of_retirement.py │ │ │ └── years_in_military.py │ │ ├── spm_unit │ │ │ ├── spm_unit_count.py │ │ │ ├── spm_unit_count_adults.py │ │ │ ├── spm_unit_count_children.py │ │ │ ├── spm_unit_id.py │ │ │ ├── spm_unit_is_married.py │ │ │ └── spm_unit_size.py │ │ ├── tax_unit │ │ │ ├── age_head.py │ │ │ ├── age_spouse.py │ │ │ ├── blind_head.py │ │ │ ├── blind_spouse.py │ │ │ ├── cohabitating_spouses.py │ │ │ ├── disabled_head.py │ │ │ ├── disabled_spouse.py │ │ │ ├── disabled_tax_unit_head_or_spouse.py │ │ │ ├── filing_status.py │ │ │ ├── greater_age_head_spouse.py │ │ │ ├── head_is_dependent_elsewhere.py │ │ │ ├── head_is_disabled.py │ │ │ ├── head_of_household_eligible.py │ │ │ ├── is_child_of_tax_head.py │ │ │ ├── is_tax_unit_dependent.py │ │ │ ├── is_tax_unit_head.py │ │ │ ├── is_tax_unit_head_or_spouse.py │ │ │ ├── is_tax_unit_spouse.py │ │ │ ├── military_disabled_head.py │ │ │ ├── military_disabled_spouse.py │ │ │ ├── older_spouse_birth_year.py │ │ │ ├── separate_filer_itemizes.py │ │ │ ├── spouse_is_dependent_elsewhere.py │ │ │ ├── spouse_is_disabled.py │ │ │ ├── spouse_separate_tax_unit_size.py │ │ │ ├── surviving_spouse_eligible.py │ │ │ ├── tax_unit_child_dependents.py │ │ │ ├── tax_unit_children.py │ │ │ ├── tax_unit_count.py │ │ │ ├── tax_unit_dependents.py │ │ │ ├── tax_unit_grandparents.py │ │ │ ├── tax_unit_household_id.py │ │ │ ├── tax_unit_married.py │ │ │ ├── tax_unit_parents.py │ │ │ ├── tax_unit_stillborn_children.py │ │ │ └── taxpayer_has_itin.py │ │ └── weights │ │ │ ├── family_weight.py │ │ │ ├── household_weight.py │ │ │ ├── person_weight.py │ │ │ ├── spm_unit_weight.py │ │ │ └── tax_unit_weight.py │ ├── emp_self_emp_ratio.py │ ├── expense │ │ ├── charitable │ │ │ ├── charitable_cash_donations.py │ │ │ └── charitable_non_cash_donations.py │ │ ├── child_support │ │ │ ├── child_support_expense.py │ │ │ └── child_support_received.py │ │ ├── childcare │ │ │ ├── after_school_expenses.py │ │ │ ├── care_expenses.py │ │ │ ├── childcare_attending_days_per_month.py │ │ │ ├── childcare_days_per_week.py │ │ │ ├── childcare_expenses.py │ │ │ ├── childcare_hours_per_day.py │ │ │ ├── childcare_hours_per_week.py │ │ │ ├── childcare_provider_type_group.py │ │ │ ├── pre_subsidy_care_expenses.py │ │ │ ├── pre_subsidy_childcare_expenses.py │ │ │ ├── spm_unit_capped_work_childcare_expenses.py │ │ │ ├── spm_unit_pre_subsidy_childcare_expenses.py │ │ │ └── tax_unit_childcare_expenses.py │ │ ├── education │ │ │ ├── count_529_contribution_beneficiaries.py │ │ │ ├── investment_in_529_plan.py │ │ │ ├── investment_in_529_plan_indv.py │ │ │ └── non_public_school_tuition.py │ │ ├── health │ │ │ ├── ambulance_expense.py │ │ │ ├── employer_contribution_to_health_insurance_premiums_category.py │ │ │ ├── er_visit_expense.py │ │ │ ├── has_bcc_qualifying_coverage.py │ │ │ ├── has_marketplace_health_coverage.py │ │ │ ├── health_insurance_premiums.py │ │ │ ├── health_insurance_premiums_without_medicare_part_b.py │ │ │ ├── health_savings_account_contributions.py │ │ │ ├── imaging_expense.py │ │ │ ├── inpatient_expense.py │ │ │ ├── lab_expense.py │ │ │ ├── long_term_health_insurance_premiums.py │ │ │ ├── medical_out_of_pocket_expenses.py │ │ │ ├── medicare_part_b_premiums.py │ │ │ ├── other_medical_expenses.py │ │ │ ├── outpatient_expense.py │ │ │ ├── over_the_counter_health_expenses.py │ │ │ ├── physician_services_expense.py │ │ │ ├── prescription_expense.py │ │ │ ├── self_employed_health_insurance_premiums.py │ │ │ └── urgent_care_expense.py │ │ ├── housing │ │ │ ├── expenditures │ │ │ │ ├── energy_efficiency_improvements │ │ │ │ │ ├── energy_efficient_door_expenditures.py │ │ │ │ │ ├── energy_efficient_insulation_expenditures.py │ │ │ │ │ ├── energy_efficient_roof_expenditures.py │ │ │ │ │ └── energy_efficient_window_expenditures.py │ │ │ │ ├── energy_efficient_property │ │ │ │ │ ├── fuel_cell_property_capacity.py │ │ │ │ │ ├── fuel_cell_property_expenditures.py │ │ │ │ │ ├── geothermal_heat_pump_property_expenditures.py │ │ │ │ │ ├── qualified_battery_storage_technology_expenditures.py │ │ │ │ │ ├── small_wind_energy_property_expenditures.py │ │ │ │ │ ├── solar_electric_property_expenditures.py │ │ │ │ │ └── solar_water_heating_property_expenditures.py │ │ │ │ ├── energy_property │ │ │ │ │ ├── advanced_main_air_circulating_fan_expenditures.py │ │ │ │ │ ├── air_sealing_ventilation_expenditures.py │ │ │ │ │ ├── biomass_stove_boiler_expenditures.py │ │ │ │ │ ├── electric_heat_pump_clothes_dryer_expenditures.py │ │ │ │ │ ├── electric_load_service_center_upgrade_expenditures.py │ │ │ │ │ ├── electric_stove_cooktop_range_or_oven_expenditures.py │ │ │ │ │ ├── electric_wiring_expenditures.py │ │ │ │ │ ├── energy_efficient_central_air_conditioner_expenditures.py │ │ │ │ │ ├── heat_pump_expenditures.py │ │ │ │ │ ├── heat_pump_water_heater_expenditures.py │ │ │ │ │ └── qualified_furnace_or_hot_water_boiler_expenditures.py │ │ │ │ ├── home_energy_audit_expenditures.py │ │ │ │ └── residential_efficiency_electrification │ │ │ │ │ ├── current_home_energy_use.py │ │ │ │ │ ├── residential_efficiency_electrification_retrofit_energy_savings.py │ │ │ │ │ └── residential_efficiency_electrification_retrofit_expenditures.py │ │ │ ├── heat_expense_included_in_rent.py │ │ │ ├── heating_expense_last_year.py │ │ │ ├── heating_expense_person.py │ │ │ ├── heating_expenses.py │ │ │ ├── homeowners_association_fees.py │ │ │ ├── homeowners_insurance.py │ │ │ ├── housing_cost.py │ │ │ ├── is_in_public_housing.py │ │ │ ├── mortgage_payments.py │ │ │ ├── pre_subsidy_rent.py │ │ │ ├── rent.py │ │ │ ├── rents.py │ │ │ ├── small_area_fair_market_rent.py │ │ │ ├── tenant_pays_utilities.py │ │ │ ├── tenure_type.py │ │ │ └── utilities_included_in_rent.py │ │ ├── person │ │ │ ├── alimony_expense.py │ │ │ ├── deductible_interest_expense.py │ │ │ ├── deductible_mortgage_interest.py │ │ │ ├── educator_expense.py │ │ │ ├── home_mortgage_interest.py │ │ │ ├── investment_expense.py │ │ │ ├── investment_interest_expense.py │ │ │ ├── k12_tuition_and_fees.py │ │ │ ├── mortgage_interest.py │ │ │ ├── non_deductible_mortgage_interest.py │ │ │ ├── non_mortgage_interest.py │ │ │ ├── pre_subsidy_transportation_expense.py │ │ │ ├── qualified_adoption_assistance_expense.py │ │ │ ├── qualified_tuition_expenses.py │ │ │ ├── student_loan_interest.py │ │ │ ├── tax_preparation_fees.py │ │ │ ├── tuition_and_fees.py │ │ │ └── unreimbursed_business_employee_expenses.py │ │ ├── retirement │ │ │ ├── able_contributions.py │ │ │ ├── able_contributions_person.py │ │ │ ├── early_withdrawal_penalty.py │ │ │ ├── roth_401k_contributions.py │ │ │ ├── roth_403b_contributions.py │ │ │ ├── roth_ira_contributions.py │ │ │ ├── self_employed_pension_contributions.py │ │ │ ├── traditional_401k_contributions.py │ │ │ ├── traditional_403b_contributions.py │ │ │ └── traditional_ira_contributions.py │ │ ├── tax │ │ │ ├── casualty_loss.py │ │ │ ├── excess_withheld_payroll_tax.py │ │ │ ├── qualified_retirement_penalty.py │ │ │ ├── real_estate_taxes.py │ │ │ ├── spm_unit_federal_tax.py │ │ │ ├── spm_unit_federal_tax_reported.py │ │ │ ├── spm_unit_payroll_tax.py │ │ │ ├── spm_unit_payroll_tax_reported.py │ │ │ ├── spm_unit_self_employment_tax.py │ │ │ ├── spm_unit_state_tax.py │ │ │ ├── spm_unit_state_tax_reported.py │ │ │ ├── state_income_tax_reported.py │ │ │ └── taxable_estate_value.py │ │ ├── utilities │ │ │ ├── bottled_gas_expense.py │ │ │ ├── broadband_cost.py │ │ │ ├── coal_expense.py │ │ │ ├── cooking_fuel_expense.py │ │ │ ├── count_distinct_utility_expenses.py │ │ │ ├── electricity_expense.py │ │ │ ├── fuel_oil_expense.py │ │ │ ├── gas_expense.py │ │ │ ├── has_heating_cooling_expense.py │ │ │ ├── has_phone_expense.py │ │ │ ├── heating_cooling_expense.py │ │ │ ├── metered_gas_expense.py │ │ │ ├── phone_cost.py │ │ │ ├── phone_expense.py │ │ │ ├── pre_subsidy_electricity_expense.py │ │ │ ├── sewage_expense.py │ │ │ ├── trash_expense.py │ │ │ ├── utility_expense.py │ │ │ └── water_expense.py │ │ └── vehicle │ │ │ ├── auto_loan_balance.py │ │ │ ├── auto_loan_interest.py │ │ │ ├── new_clean_vehicle_battery_capacity.py │ │ │ ├── new_clean_vehicle_battery_components_made_in_north_america.py │ │ │ ├── new_clean_vehicle_battery_critical_minerals_extracted_in_trading_partner_country.py │ │ │ ├── new_clean_vehicle_classification.py │ │ │ ├── new_clean_vehicle_msrp.py │ │ │ ├── purchased_qualifying_new_clean_vehicle.py │ │ │ ├── purchased_qualifying_used_clean_vehicle.py │ │ │ └── used_clean_vehicle_sale_price.py │ ├── healthcare_benefit_value.py │ ├── household_net_income_including_health_benefits.py │ ├── income │ │ ├── fsla_overtime_salary_threshold.py │ │ ├── household │ │ │ ├── equiv_household_net_income.py │ │ │ ├── household_benefits.py │ │ │ ├── household_count_people.py │ │ │ ├── household_health_benefits.py │ │ │ ├── household_income_decile.py │ │ │ ├── household_local_benefits.py │ │ │ ├── household_market_income.py │ │ │ ├── household_net_income.py │ │ │ ├── household_refundable_state_tax_credits.py │ │ │ ├── household_refundable_tax_credits.py │ │ │ ├── household_state_benefits.py │ │ │ ├── household_state_income_tax.py │ │ │ ├── household_state_tax_before_refundable_credits.py │ │ │ ├── household_tax.py │ │ │ ├── household_tax_before_refundable_credits.py │ │ │ ├── income_decile.py │ │ │ └── person_in_poverty.py │ │ ├── illicit_income.py │ │ ├── person │ │ │ ├── capital_gains │ │ │ │ ├── capital_gains.py │ │ │ │ ├── capital_losses.py │ │ │ │ ├── long_term_capital_gains.py │ │ │ │ ├── long_term_capital_gains_on_collectibles.py │ │ │ │ ├── long_term_capital_gains_on_small_business_stock.py │ │ │ │ ├── non_sch_d_capital_gains.py │ │ │ │ ├── other_net_gain.py │ │ │ │ ├── short_term_capital_gains.py │ │ │ │ └── unrecaptured_section_1250_gain.py │ │ │ ├── dependent_care_employer_benefits.py │ │ │ ├── dividends │ │ │ │ ├── dividend_income.py │ │ │ │ ├── non_qualified_dividend_income.py │ │ │ │ ├── qualified_bdc_income.py │ │ │ │ ├── qualified_dividend_income.py │ │ │ │ └── qualified_reit_and_ptp_income.py │ │ │ ├── employment_income_last_year.py │ │ │ ├── estate │ │ │ │ ├── estate_income.py │ │ │ │ └── estate_income_would_be_qualified.py │ │ │ ├── farm │ │ │ │ ├── farm_operations_income.py │ │ │ │ ├── farm_operations_income_would_be_qualified.py │ │ │ │ ├── farm_rent_income.py │ │ │ │ └── farm_rent_income_would_be_qualified.py │ │ │ ├── fsla_overtime_occupation_exemption_category.py │ │ │ ├── fsla_overtime_premium.py │ │ │ ├── gambling_losses.py │ │ │ ├── gambling_winnings.py │ │ │ ├── general │ │ │ │ ├── disability_benefits.py │ │ │ │ ├── market_income.py │ │ │ │ ├── military_service_income.py │ │ │ │ ├── personal_property.py │ │ │ │ ├── state_or_federal_salary.py │ │ │ │ └── veterans_benefits.py │ │ │ ├── hours_worked_last_week.py │ │ │ ├── interest │ │ │ │ ├── interest_income.py │ │ │ │ ├── tax_exempt_interest_income.py │ │ │ │ └── taxable_interest_income.py │ │ │ ├── is_eligible_for_fsla_overtime.py │ │ │ ├── is_paid_hourly.py │ │ │ ├── misc │ │ │ │ ├── alimony_income.py │ │ │ │ ├── debt_relief.py │ │ │ │ ├── gi_cash_assistance.py │ │ │ │ ├── investment_income_elected_form_4952.py │ │ │ │ ├── military_basic_pay.py │ │ │ │ ├── miscellaneous_income.py │ │ │ │ ├── rental_income.py │ │ │ │ ├── rental_income_would_be_qualified.py │ │ │ │ ├── salt_refund_income.py │ │ │ │ ├── strike_benefits.py │ │ │ │ └── us_bonds_for_higher_ed.py │ │ │ ├── monthly_hours_worked.py │ │ │ ├── retirement │ │ │ │ ├── csrs_retirement_pay.py │ │ │ │ ├── keogh_distributions.py │ │ │ │ ├── military_retirement_pay.py │ │ │ │ ├── military_retirement_pay_survivors.py │ │ │ │ ├── pension_income.py │ │ │ │ ├── pension_survivors.py │ │ │ │ ├── private_pension_income.py │ │ │ │ ├── public_pension_income.py │ │ │ │ ├── railroad_benefits.py │ │ │ │ ├── retirement_benefits_from_ss_exempt_employment.py │ │ │ │ ├── retirement_distributions.py │ │ │ │ ├── sep_distributions.py │ │ │ │ ├── tax_exempt_401k_distributions.py │ │ │ │ ├── tax_exempt_403b_distributions.py │ │ │ │ ├── tax_exempt_ira_distributions.py │ │ │ │ ├── tax_exempt_pension_income.py │ │ │ │ ├── tax_exempt_private_pension_income.py │ │ │ │ ├── tax_exempt_public_pension_income.py │ │ │ │ ├── tax_exempt_retirement_distributions.py │ │ │ │ ├── tax_exempt_sep_distributions.py │ │ │ │ ├── taxable_401k_distributions.py │ │ │ │ ├── taxable_403b_distributions.py │ │ │ │ ├── taxable_federal_pension_income.py │ │ │ │ ├── taxable_ira_distributions.py │ │ │ │ ├── taxable_pension_income.py │ │ │ │ ├── taxable_private_pension_income.py │ │ │ │ ├── taxable_public_pension_income.py │ │ │ │ ├── taxable_retirement_distributions.py │ │ │ │ └── taxable_sep_distributions.py │ │ │ ├── self_employment │ │ │ │ ├── business_is_qualified.py │ │ │ │ ├── business_is_sstb.py │ │ │ │ ├── is_self_employed.py │ │ │ │ ├── partnership_s_corp_income.py │ │ │ │ ├── partnership_s_corp_income_would_be_qualified.py │ │ │ │ ├── s_corp_self_employment_income.py │ │ │ │ ├── self_employment_income_last_year.py │ │ │ │ ├── self_employment_income_would_be_qualified.py │ │ │ │ ├── unadjusted_basis_qualified_property.py │ │ │ │ └── w2_wages_from_qualified_business.py │ │ │ ├── ssi_qualifying_quarters_earnings.py │ │ │ ├── ssi_reported.py │ │ │ ├── tip_income.py │ │ │ ├── us_govt_interest_person.py │ │ │ └── weekly_hours_worked.py │ │ ├── spm_unit │ │ │ ├── deep_poverty_gap.py │ │ │ ├── deep_poverty_line.py │ │ │ ├── experienced_covid_income_loss.py │ │ │ ├── in_deep_poverty.py │ │ │ ├── in_poverty.py │ │ │ ├── poverty_gap.py │ │ │ ├── poverty_line.py │ │ │ ├── spm_unit_benefits.py │ │ │ ├── spm_unit_broadband_subsidy.py │ │ │ ├── spm_unit_broadband_subsidy_reported.py │ │ │ ├── spm_unit_capped_housing_subsidy.py │ │ │ ├── spm_unit_capped_housing_subsidy_reported.py │ │ │ ├── spm_unit_energy_subsidy.py │ │ │ ├── spm_unit_energy_subsidy_reported.py │ │ │ ├── spm_unit_fips.py │ │ │ ├── spm_unit_income_decile.py │ │ │ ├── spm_unit_is_in_deep_spm_poverty.py │ │ │ ├── spm_unit_is_in_spm_poverty.py │ │ │ ├── spm_unit_market_income.py │ │ │ ├── spm_unit_net_income.py │ │ │ ├── spm_unit_net_income_reported.py │ │ │ ├── spm_unit_oecd_equiv_net_income'.py │ │ │ ├── spm_unit_paycheck_withholdings.py │ │ │ ├── spm_unit_pell_grant.py │ │ │ ├── spm_unit_school_lunch_subsidy.py │ │ │ ├── spm_unit_snap.py │ │ │ ├── spm_unit_spm_expenses.py │ │ │ ├── spm_unit_spm_threshold.py │ │ │ ├── spm_unit_taxes.py │ │ │ ├── spm_unit_tenure_type.py │ │ │ ├── spm_unit_total_income.py │ │ │ ├── spm_unit_wic.py │ │ │ └── spm_unit_wic_reported.py │ │ └── tax_unit │ │ │ ├── form_4972_lumpsum_distributions.py │ │ │ ├── net_capital_gains.py │ │ │ ├── property_sales_net_capital_gain.py │ │ │ ├── spouse_separate_adjusted_gross_income.py │ │ │ └── us_govt_interest.py │ ├── marginal_tax_rate.py │ └── marginal_tax_rate_including_health_benefits.py │ └── input │ ├── employment_income.py │ ├── employment_income_before_lsr.py │ ├── farm_income.py │ ├── geography.py │ ├── self_employment_income.py │ └── self_employment_income_before_lsr.py ├── pyproject.toml ├── test.py ├── update_itemization.sh └── uv.lock /.claude/agents/ci-fixer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/ci-fixer.md -------------------------------------------------------------------------------- /.claude/agents/cross-program-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/cross-program-validator.md -------------------------------------------------------------------------------- /.claude/agents/document_collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/document_collector.md -------------------------------------------------------------------------------- /.claude/agents/documentation-enricher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/documentation-enricher.md -------------------------------------------------------------------------------- /.claude/agents/edge-case-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/edge-case-generator.md -------------------------------------------------------------------------------- /.claude/agents/implementation-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/implementation-validator.md -------------------------------------------------------------------------------- /.claude/agents/integration-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/integration-agent.md -------------------------------------------------------------------------------- /.claude/agents/issue-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/issue-manager.md -------------------------------------------------------------------------------- /.claude/agents/legislation-statute-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/legislation-statute-analyzer.md -------------------------------------------------------------------------------- /.claude/agents/naming-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/naming-coordinator.md -------------------------------------------------------------------------------- /.claude/agents/parameter-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/parameter-architect.md -------------------------------------------------------------------------------- /.claude/agents/performance-optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/performance-optimizer.md -------------------------------------------------------------------------------- /.claude/agents/policy-domain-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/policy-domain-validator.md -------------------------------------------------------------------------------- /.claude/agents/pr-pusher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/pr-pusher.md -------------------------------------------------------------------------------- /.claude/agents/reference-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/reference-validator.md -------------------------------------------------------------------------------- /.claude/agents/rules-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/rules-engineer.md -------------------------------------------------------------------------------- /.claude/agents/rules-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/rules-reviewer.md -------------------------------------------------------------------------------- /.claude/agents/test-creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/agents/test-creator.md -------------------------------------------------------------------------------- /.claude/commands/encode-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/commands/encode-policy.md -------------------------------------------------------------------------------- /.claude/commands/fix-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/commands/fix-pr.md -------------------------------------------------------------------------------- /.claude/commands/review-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/commands/review-pr.md -------------------------------------------------------------------------------- /.claude/docs/agent-coordination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/docs/agent-coordination.md -------------------------------------------------------------------------------- /.claude/docs/agent-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/docs/agent-testing.md -------------------------------------------------------------------------------- /.claude/docs/isolation-enforcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/docs/isolation-enforcement.md -------------------------------------------------------------------------------- /.claude/docs/isolation-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/docs/isolation-setup.md -------------------------------------------------------------------------------- /.claude/docs/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/docs/workflow.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.claude/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.claude/startup.sh -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/changelog_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/changelog_template.md -------------------------------------------------------------------------------- /.github/publish-git-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/publish-git-tag.sh -------------------------------------------------------------------------------- /.github/update_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/update_api.py -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/python.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.vscode/python.code-snippets -------------------------------------------------------------------------------- /.vscode/yaml.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/.vscode/yaml.code-snippets -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include policyengine_us * 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/Makefile -------------------------------------------------------------------------------- /PSL_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/PSL_catalog.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/README.md -------------------------------------------------------------------------------- /changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/changelog.yaml -------------------------------------------------------------------------------- /changelog_entry.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/examples/income-sources.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/examples/income-sources.ipynb -------------------------------------------------------------------------------- /docs/gov/fcc/acp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/fcc/acp.ipynb -------------------------------------------------------------------------------- /docs/gov/fcc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/fcc/index.md -------------------------------------------------------------------------------- /docs/gov/fcc/lifeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/fcc/lifeline.ipynb -------------------------------------------------------------------------------- /docs/gov/hhs/aca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hhs/aca.md -------------------------------------------------------------------------------- /docs/gov/hhs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hhs/index.md -------------------------------------------------------------------------------- /docs/gov/hhs/medicaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hhs/medicaid.md -------------------------------------------------------------------------------- /docs/gov/hhs/tanf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hhs/tanf.ipynb -------------------------------------------------------------------------------- /docs/gov/household/filing_status_breakdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/household/filing_status_breakdown.ipynb -------------------------------------------------------------------------------- /docs/gov/hud/housing-assistance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hud/housing-assistance.ipynb -------------------------------------------------------------------------------- /docs/gov/hud/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/hud/index.md -------------------------------------------------------------------------------- /docs/gov/irs/capital-gains.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/capital-gains.ipynb -------------------------------------------------------------------------------- /docs/gov/irs/credits/cdcc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/credits/cdcc.ipynb -------------------------------------------------------------------------------- /docs/gov/irs/credits/clean-vehicle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/credits/clean-vehicle.ipynb -------------------------------------------------------------------------------- /docs/gov/irs/credits/ctc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/credits/ctc.ipynb -------------------------------------------------------------------------------- /docs/gov/irs/credits/eitc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/credits/eitc.ipynb -------------------------------------------------------------------------------- /docs/gov/irs/tax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/irs/tax.ipynb -------------------------------------------------------------------------------- /docs/gov/ssa/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/ssa/index.md -------------------------------------------------------------------------------- /docs/gov/ssa/ssi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/ssa/ssi.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ca/caleitc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ca/caleitc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ca/calepa/carb/cvrp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ca/calepa/carb/cvrp.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ca/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ca/index.md -------------------------------------------------------------------------------- /docs/gov/states/dc/dc_ctc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/dc/dc_ctc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/de/index.md -------------------------------------------------------------------------------- /docs/gov/states/de/tax-benefit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/de/tax-benefit.ipynb -------------------------------------------------------------------------------- /docs/gov/states/de/tax/income/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/de/tax/income/index.ipynb -------------------------------------------------------------------------------- /docs/gov/states/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/index.md -------------------------------------------------------------------------------- /docs/gov/states/ma/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ma/index.md -------------------------------------------------------------------------------- /docs/gov/states/ma/tax-benefit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ma/tax-benefit.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ma/tax/income/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ma/tax/income/index.ipynb -------------------------------------------------------------------------------- /docs/gov/states/md/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/md/index.md -------------------------------------------------------------------------------- /docs/gov/states/md/tax/income/credits/cdcc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/md/tax/income/credits/cdcc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/md/tax/income/credits/ctc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/md/tax/income/credits/ctc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/md/tax/income/credits/eitc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/md/tax/income/credits/eitc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/md/tax/income/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/md/tax/income/index.ipynb -------------------------------------------------------------------------------- /docs/gov/states/mo/tax-benefit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/mo/tax-benefit.ipynb -------------------------------------------------------------------------------- /docs/gov/states/mo/tax/credits/property_tax_credit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/mo/tax/credits/property_tax_credit.ipynb -------------------------------------------------------------------------------- /docs/gov/states/mo/tax/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/mo/tax/index.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/cdcc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/cdcc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/ctc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/ctc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/eitc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/eitc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/index.md -------------------------------------------------------------------------------- /docs/gov/states/ny/ny_wftc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/ny_wftc.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/tax-benefit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/tax-benefit.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ny/tax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ny/tax.ipynb -------------------------------------------------------------------------------- /docs/gov/states/or/tax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/or/tax.ipynb -------------------------------------------------------------------------------- /docs/gov/states/pa/tax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/pa/tax.ipynb -------------------------------------------------------------------------------- /docs/gov/states/state_credit_impact_on_poverty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/state_credit_impact_on_poverty.ipynb -------------------------------------------------------------------------------- /docs/gov/states/ut/ut_income_tax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/ut/ut_income_tax.ipynb -------------------------------------------------------------------------------- /docs/gov/states/wa/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/states/wa/index.md -------------------------------------------------------------------------------- /docs/gov/usda/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/usda/index.md -------------------------------------------------------------------------------- /docs/gov/usda/school-meals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/usda/school-meals.ipynb -------------------------------------------------------------------------------- /docs/gov/usda/snap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/usda/snap.ipynb -------------------------------------------------------------------------------- /docs/gov/usda/wic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/gov/usda/wic.ipynb -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/usage/speed.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/usage/speed.ipynb -------------------------------------------------------------------------------- /docs/usage/structural_reform_dating.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/usage/structural_reform_dating.ipynb -------------------------------------------------------------------------------- /docs/validation/taxsim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/docs/validation/taxsim.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/environment.yml -------------------------------------------------------------------------------- /policyengine_us/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/__init__.py -------------------------------------------------------------------------------- /policyengine_us/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/conftest.py -------------------------------------------------------------------------------- /policyengine_us/data/__init__.py: -------------------------------------------------------------------------------- 1 | from .zip_code_dataset import ZIP_CODE_DATASET 2 | -------------------------------------------------------------------------------- /policyengine_us/data/zip_code_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/data/zip_code_dataset.py -------------------------------------------------------------------------------- /policyengine_us/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/entities.py -------------------------------------------------------------------------------- /policyengine_us/model_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/model_api.py -------------------------------------------------------------------------------- /policyengine_us/modelled_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/modelled_policies.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/calibration/gov/cbo/income_tax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/calibration/gov/cbo/income_tax.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/calibration/gov/cbo/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/calibration/gov/cbo/snap.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/calibration/gov/cbo/ssi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/calibration/gov/cbo/ssi.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/README.md: -------------------------------------------------------------------------------- 1 | # Government 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/README.md: -------------------------------------------------------------------------------- 1 | # Affordable Care Act 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/al.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/al.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/dc.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/default.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/ma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/ma.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/mn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/mn.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/ms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/ms.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/ny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/ny.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/or.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/or.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/ut.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/age_curves/vt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/age_curves/vt.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/enrollment/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/enrollment/state.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/family_tier_ratings/ny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/family_tier_ratings/ny.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/family_tier_ratings/vt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/family_tier_ratings/vt.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/family_tier_states.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/family_tier_states.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/la_county_rating_area.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/la_county_rating_area.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/max_child_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/max_child_count.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/ptc_income_eligibility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/ptc_income_eligibility.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/slcsp/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/slcsp/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/slcsp/max_adult_age.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/slcsp/max_adult_age.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/slcsp/max_child_age.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/slcsp/max_child_age.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/spending/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/spending/state.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/state_rating_area_cost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/state_rating_area_cost.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/aca/takeup_rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/aca/takeup_rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/bls/README.md: -------------------------------------------------------------------------------- 1 | # Bureau of Labor Statistics (BLS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/bls/cpi/README.md: -------------------------------------------------------------------------------- 1 | # Consumer Price Index (CPI) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/bls/cpi/c_cpi_u.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/bls/cpi/c_cpi_u.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/bls/cpi/cpi_u.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/bls/cpi/cpi_u.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/bls/cpi/cpi_w.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/bls/cpi/cpi_w.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/README.md: -------------------------------------------------------------------------------- 1 | # Contributed 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/cbo/README.md: -------------------------------------------------------------------------------- 1 | # Congressional Budget Office 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/afa/ctc/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/delauro/README.md: -------------------------------------------------------------------------------- 1 | # Rep Rosa DeLauro 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/delauro/american_family_act/README.md: -------------------------------------------------------------------------------- 1 | # American Family Act 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/romney/README.md: -------------------------------------------------------------------------------- 1 | # Senator Mitt Romney 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/romney/family_security_act/README.md: -------------------------------------------------------------------------------- 1 | # Family Security Act 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/romney/family_security_act_2_0/README.md: -------------------------------------------------------------------------------- 1 | # Family Security Act 2.0 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/tlaib/README.md: -------------------------------------------------------------------------------- 1 | # Rep Rashida Tlaib 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/tlaib/end_child_poverty_act/README.md: -------------------------------------------------------------------------------- 1 | # End Child Poverty Act 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/congress/wftca/README.md: -------------------------------------------------------------------------------- 1 | # Working Families Tax Cut Act 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/dc_kccatc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/contrib/dc_kccatc/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/dc_kccatc/active.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/contrib/dc_kccatc/active.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/individual_eitc/README.md: -------------------------------------------------------------------------------- 1 | # Individual EITCs 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/maryland_child_alliance/README.md: -------------------------------------------------------------------------------- 1 | # Maryland Child Alliance 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/states/mt/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/states/ny/wftc/README.MD: -------------------------------------------------------------------------------- 1 | # Working Families Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/contrib/ubi_center/README.md: -------------------------------------------------------------------------------- 1 | # UBI Center -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/doe/README.md: -------------------------------------------------------------------------------- 1 | # Department of Energy (DOE) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/doe/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/doe/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/dol/README.md: -------------------------------------------------------------------------------- 1 | # Department of Labor (DOL) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/dol/minimum_wage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/dol/minimum_wage.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/README.md: -------------------------------------------------------------------------------- 1 | # Department of Education 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ed/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/pell_grant/README.md: -------------------------------------------------------------------------------- 1 | # Pell Grant 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/pell_grant/amount/max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ed/pell_grant/amount/max.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/pell_grant/amount/min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ed/pell_grant/amount/min.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ed/pell_grant/efc/README.md: -------------------------------------------------------------------------------- 1 | # Expected Family Contribution 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/acp/README.md: -------------------------------------------------------------------------------- 1 | # Affordable Connectivity Program (ACP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/acp/amount/standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/acp/amount/standard.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/acp/amount/tribal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/acp/amount/tribal.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/acp/fpg_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/acp/fpg_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/ebb/README.md: -------------------------------------------------------------------------------- 1 | # Emergency Broadband Benefit (EBB) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/ebb/amount/standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/ebb/amount/standard.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/ebb/amount/tribal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/ebb/amount/tribal.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/fcc/lifeline/fpg_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/fcc/lifeline/fpg_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Health and Human Services (HHS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/README.md: -------------------------------------------------------------------------------- 1 | # Child Care Development Fund (CCDF) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/age_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/age_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/asset_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/asset_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/copay_percent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/copay_percent.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/county_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/county_cluster.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/income_limit_smi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/income_limit_smi.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/ccdf/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/ccdf/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/chip/child/max_age.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/chip/child/max_age.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/chip/fcep/income_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/chip/fcep/income_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/fpg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/fpg.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/head_start/age_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/head_start/age_range.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/head_start/enrollment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/head_start/enrollment.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/head_start/spending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/head_start/spending.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/liheap/smi_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/liheap/smi_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/medicaid/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/medicaid/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/medicaid/takeup_rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/medicaid/takeup_rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/smi/README.md: -------------------------------------------------------------------------------- 1 | # State Median Income (SMI) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/smi/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/smi/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families (TANF) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/tanf/abolish_tanf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/tanf/abolish_tanf.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/tanf/non_cash/README.md: -------------------------------------------------------------------------------- 1 | # Non-cash 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hhs/uprating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hhs/uprating.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/household/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/household/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/abolition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/abolition.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/adjusted_income/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/adjusted_income/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/ami_limit/README.md: -------------------------------------------------------------------------------- 1 | # Area Median Income (AMI) Limit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/ami_limit/family_size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/ami_limit/family_size.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/ami_limit/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/ami_limit/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/elderly_age_threshold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/elderly_age_threshold.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/hud/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/hud/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/README.md: -------------------------------------------------------------------------------- 1 | # Internal Revenue Service (IRS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/ald/README.md: -------------------------------------------------------------------------------- 1 | # Above-the-line deductions 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/ald/deductions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/ald/deductions.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/ald/loss/capital/max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/ald/loss/capital/max.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/ald/loss/max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/ald/loss/max.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/capital_gains/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/capital_gains/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/cdcc/max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/cdcc/max.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/phase_out/arpa/README.md: -------------------------------------------------------------------------------- 1 | # ARPA 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/refundable/README.md: -------------------------------------------------------------------------------- 1 | # Refundability 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/refundable/phase_in/README.md: -------------------------------------------------------------------------------- 1 | # Phase-in 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/ctc/refundable/social_security/README.md: -------------------------------------------------------------------------------- 1 | # Social Security 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/education/README.md: -------------------------------------------------------------------------------- 1 | # Education credits 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/eitc/max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/eitc/max.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/eitc/takeup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/eitc/takeup.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/elderly_or_disabled/README.md: -------------------------------------------------------------------------------- 1 | # Elderly or disabled credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/estate/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/estate/base.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/non_refundable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/non_refundable.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/credits/refundable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/credits/refundable.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/deductions/qbi/README.md: -------------------------------------------------------------------------------- 1 | # Qualified business income 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/gross_income/sources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/gross_income/sources.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/income/amt/README.md: -------------------------------------------------------------------------------- 1 | # Alternative minimum tax 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/income/amt/brackets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/income/amt/brackets.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/income/amt/multiplier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/income/amt/multiplier.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/income/bracket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/income/bracket.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/income/exemption/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/payroll/social_security/README.md: -------------------------------------------------------------------------------- 1 | # Social Security 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/social_security/README.md: -------------------------------------------------------------------------------- 1 | # Social Security 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/tax/estate/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/tax/estate/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/tce/age_threshold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/tce/age_threshold.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/uprating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/uprating.py -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/irs/uprating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/irs/uprating.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/README.md: -------------------------------------------------------------------------------- 1 | # Local 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/ala/README.md: -------------------------------------------------------------------------------- 1 | # Alameda 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/la/README.md: -------------------------------------------------------------------------------- 1 | # Los Angeles 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/riv/README.md: -------------------------------------------------------------------------------- 1 | # Riverside 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/riv/cap/README.md: -------------------------------------------------------------------------------- 1 | # Department of Community Action Partnership (CAP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/riv/cap/share/README.md: -------------------------------------------------------------------------------- 1 | # Sharing Households Assist Riverside’s Energy 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/ca/sf/wftc/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/local/ca/sf/wftc/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/local/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/local/md/montgomery/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/simulation/labor_supply_responses/bounds/README.md: -------------------------------------------------------------------------------- 1 | # Bounds 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/simulation/labor_supply_responses/elasticities/README.md: -------------------------------------------------------------------------------- 1 | # Elasticities -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/simulation/reported_snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/simulation/reported_snap.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/README.md: -------------------------------------------------------------------------------- 1 | # Social Security Administration (SSA) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/nawi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/nawi.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/sga/READme.md: -------------------------------------------------------------------------------- 1 | # Substantial Gainful Activity 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/sga/blind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/sga/blind.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/sga/non_blind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/sga/non_blind.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/ssi/README.md: -------------------------------------------------------------------------------- 1 | # Supplemental Security Income (SSI) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/ssi/abolish_ssi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/ssi/abolish_ssi.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/ssi/amount/couple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/ssi/amount/couple.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/ssi/amount/individual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/ssi/amount/individual.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/ssa/uprating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/ssa/uprating.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/README.md: -------------------------------------------------------------------------------- 1 | # States 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ak/README.md: -------------------------------------------------------------------------------- 1 | # Alaska 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/al/README.md: -------------------------------------------------------------------------------- 1 | # Alabama 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ar/README.md: -------------------------------------------------------------------------------- 1 | # Arkansas 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ar/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/az/README.md: -------------------------------------------------------------------------------- 1 | # Arizona -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/README.md: -------------------------------------------------------------------------------- 1 | # California 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/calepa/README.md: -------------------------------------------------------------------------------- 1 | # California Environmental Protection Agency (CalEPA) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/calepa/carb/README.md: -------------------------------------------------------------------------------- 1 | # California Air Resources Board (CARB) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/calepa/carb/cvrp/README.md: -------------------------------------------------------------------------------- 1 | # Clean Vehicle Rebate Project 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/calepa/carb/cvrp/increased_rebate/README.md: -------------------------------------------------------------------------------- 1 | # Increased rebate 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/calepa/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ca/calepa/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/cpi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ca/cpi.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/cpuc/README.md: -------------------------------------------------------------------------------- 1 | # California Public Utilities Commission (CPUC) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/cpuc/care/README.md: -------------------------------------------------------------------------------- 1 | # CARE 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/cpuc/fera/README.md: -------------------------------------------------------------------------------- 1 | # FERA 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/cpuc/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ca/cpuc/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/infant/age_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ca/infant/age_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/tax/income/agi/README.md: -------------------------------------------------------------------------------- 1 | # Adjusted Gross Income 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ca/tax/income/use_tax/README.md: -------------------------------------------------------------------------------- 1 | # Use tax 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/README.md: -------------------------------------------------------------------------------- 1 | # Colorado -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/ccap/age_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/co/ccap/age_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/cdhs/README.md: -------------------------------------------------------------------------------- 1 | # Colorado Department of Human Services 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/cdhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/hcpf/chp/child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/co/hcpf/chp/child.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/ssa/README.md: -------------------------------------------------------------------------------- 1 | # Social Security Administration -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/ssa/oap/README.md: -------------------------------------------------------------------------------- 1 | # Old Age Pension -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/tax/income/credits/family_affordability/README.md: -------------------------------------------------------------------------------- 1 | # Family Affordability Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/co/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/co/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ct/README.md: -------------------------------------------------------------------------------- 1 | # Connecticut 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ct/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/README.md: -------------------------------------------------------------------------------- 1 | # District of Columbia 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/dhs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Human Services 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/dhs/ccsp/README.md: -------------------------------------------------------------------------------- 1 | # Child Care Subsidy Program (CCSP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/dhs/gac/README.md: -------------------------------------------------------------------------------- 1 | # General Assistance for Children Program (GAC) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/dhs/power/README.md: -------------------------------------------------------------------------------- 1 | # Program on Work, Employment, and Responsibility (POWER) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/dhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families (TANF) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/doee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/dc/doee/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/doee/liheap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/dc/doee/liheap/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit. 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/credits/kccatc/README.md: -------------------------------------------------------------------------------- 1 | # Keep Child Care Affordable Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/credits/ptc/README.md: -------------------------------------------------------------------------------- 1 | # Property Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/dc/tax/income/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/dc/tax/income/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/de/README.md: -------------------------------------------------------------------------------- 1 | # Delaware 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/de/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/de/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/de/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/de/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ga/README.md: -------------------------------------------------------------------------------- 1 | # Georgia 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ga/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/hi/README.md: -------------------------------------------------------------------------------- 1 | # Hawaii 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/hi/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/household/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/household/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ia/README.md: -------------------------------------------------------------------------------- 1 | # Iowa 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ia/tax/income/credits/child_care/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ia/tax/income/credits/earned_income/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/id/README.md: -------------------------------------------------------------------------------- 1 | # Idaho -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/id/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/README.md: -------------------------------------------------------------------------------- 1 | # Illinois -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/dceo/README.md: -------------------------------------------------------------------------------- 1 | # Illinois Department of Commerce and Economic Opportunity (DCEO) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/dhs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Human Services (DHS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/dhs/aabd/README.md: -------------------------------------------------------------------------------- 1 | # Aid to the Aged, Blind or Disabled (AABD) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/dhs/ccap/README.md: -------------------------------------------------------------------------------- 1 | # Child Care Assistance Program (CCAP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/hfs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Healthcare and Family Services (HFS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/hfs/hbwd/README.md: -------------------------------------------------------------------------------- 1 | # Health Benefits for Workers with Disabilities (HBWD) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/idoa/README.md: -------------------------------------------------------------------------------- 1 | # Illinois Department of Aging (IDOA) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/idoa/bap/README.md: -------------------------------------------------------------------------------- 1 | # Benefit Access Program 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/rta/README.md: -------------------------------------------------------------------------------- 1 | # Regional Transportation Authority 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/rta/cta/README.md: -------------------------------------------------------------------------------- 1 | # Chicago Transit Authority 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/tax/income/credits/ctc/READme.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/tax/income/credits/k12/README.md: -------------------------------------------------------------------------------- 1 | # K-12 Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/il/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/il/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/in/README.md: -------------------------------------------------------------------------------- 1 | # Indiana 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/in/tax/income/exemptions/aged_blind/README.md: -------------------------------------------------------------------------------- 1 | # Aged and blind 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/in/tax/income/exemptions/aged_low_agi/README.md: -------------------------------------------------------------------------------- 1 | # Aged low-AGI 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ks/README.md: -------------------------------------------------------------------------------- 1 | # Kansas 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ky/README.md: -------------------------------------------------------------------------------- 1 | # Kentucky 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ky/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ky/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/la/README.md: -------------------------------------------------------------------------------- 1 | # Louisiana 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/la/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/la/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/README.md: -------------------------------------------------------------------------------- 1 | # Massachusetts 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/doer/README.md: -------------------------------------------------------------------------------- 1 | # Massachusetts Department of Energy Resources 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/doer/liheap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ma/doer/liheap/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/doer/liheap/hecs/README.md: -------------------------------------------------------------------------------- 1 | # High Energy Cost Supplement (HECS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dot/README.md: -------------------------------------------------------------------------------- 1 | # Massachusetts Department of Transportation (MassDoT) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dot/mbta/README.md: -------------------------------------------------------------------------------- 1 | # Massachusetts Bay Transportation Authority (MBTA) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dta/README.md: -------------------------------------------------------------------------------- 1 | # Department of Transitional Assistance 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dta/ssp/README.md: -------------------------------------------------------------------------------- 1 | # State Supplement Program (SSP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dta/ssp/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ma/dta/ssp/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dta/tcap/README.md: -------------------------------------------------------------------------------- 1 | # Transitional Cash Assistance Program 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/dta/tcap/eaedc/README.md: -------------------------------------------------------------------------------- 1 | # Emergency Aid to the Elderly, Disabled and Children 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/eec/README.md: -------------------------------------------------------------------------------- 1 | # Department of Early Education and Care's 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/eec/ccfa/README.md: -------------------------------------------------------------------------------- 1 | # Child Care Financial Assistance 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/tax/income/ald/README.md: -------------------------------------------------------------------------------- 1 | # Above-the-line deductions 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ma/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/README.md: -------------------------------------------------------------------------------- 1 | # Maryland 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/agi/README.md: -------------------------------------------------------------------------------- 1 | # AGI 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/credits/cdcc/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/md/tax/income/credits/poverty_line/README.md: -------------------------------------------------------------------------------- 1 | # Poverty Line Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/me/README.md: -------------------------------------------------------------------------------- 1 | # Maine 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/me/tax/income/credits/child_care/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/me/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mi/README.md: -------------------------------------------------------------------------------- 1 | # Michigan 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mi/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mi/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/mi/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/README.md: -------------------------------------------------------------------------------- 1 | # Minnesota 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/tax/income/amt/README.md: -------------------------------------------------------------------------------- 1 | # Alternative Minimum Tax 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/tax/income/credits/cwfc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Working Families Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/tax/income/credits/cwfc/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mn/tax/income/credits/cwfc/wfc/README.md: -------------------------------------------------------------------------------- 1 | # Working Families Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/README.md: -------------------------------------------------------------------------------- 1 | # Missouri 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/dss/README.md: -------------------------------------------------------------------------------- 1 | # Department of Social Services 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/dss/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/mo/dss/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/dss/tanf/README.md: -------------------------------------------------------------------------------- 1 | # TANF 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/tax/income/credits/property_tax/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/tax/income/credits/wftc/README.md: -------------------------------------------------------------------------------- 1 | # Working Families Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mo/tax/income/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/mo/tax/income/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ms/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ms/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ms/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mt/README.md: -------------------------------------------------------------------------------- 1 | # Montana 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/mt/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/README.md: -------------------------------------------------------------------------------- 1 | # North Carolina 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/ncdhhs/scca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nc/ncdhhs/scca/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/ncdhhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nc/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nc/tax/use_tax/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nc/tax/use_tax/base.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nd/README.md: -------------------------------------------------------------------------------- 1 | # North Dakota 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ne/README.md: -------------------------------------------------------------------------------- 1 | # Nebraska 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ne/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ne/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nh/README.md: -------------------------------------------------------------------------------- 1 | # New Hampshire 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nh/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nh/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/README.md: -------------------------------------------------------------------------------- 1 | # New Jersey 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/njdhs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Human Services 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/njdhs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nj/njdhs/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/njdhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/snap/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nj/snap/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/snap/in_effect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/nj/snap/in_effect.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nj/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nm/README.md: -------------------------------------------------------------------------------- 1 | # New Mexico 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nm/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nm/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/nm/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/README.md: -------------------------------------------------------------------------------- 1 | # New York 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/otda/README.md: -------------------------------------------------------------------------------- 1 | # Office of Temporary and Disability Assistance 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/otda/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/agi/README.md: -------------------------------------------------------------------------------- 1 | # AGI 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Empire State Child Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/credits/household_credit/non_single/README.md: -------------------------------------------------------------------------------- 1 | # Non-single 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ny/tax/income/deductions/itemized/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/oh/README.md: -------------------------------------------------------------------------------- 1 | # Ohio 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/oh/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/oh/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/oh/tax/income/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/oh/tax/income/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ok/README.md: -------------------------------------------------------------------------------- 1 | # Oklahoma 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ok/tax/income/credits/earned_income/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ok/tax/use/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ok/tax/use/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/or/README.md: -------------------------------------------------------------------------------- 1 | # Oregon 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/or/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/or/tax/income/credits/wfhdc/README.md: -------------------------------------------------------------------------------- 1 | # Working family household and dependent care credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/pa/README.md: -------------------------------------------------------------------------------- 1 | # Pennsylvania 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/pa/dhs/README.md: -------------------------------------------------------------------------------- 1 | # Department of Human Services 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/pa/dhs/tanf/README.md: -------------------------------------------------------------------------------- 1 | # Temporary Assistance for Needy Families -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/pa/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/pa/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ri/README.md: -------------------------------------------------------------------------------- 1 | # Rhode Island 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ri/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ri/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ri/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ri/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/sc/README.md: -------------------------------------------------------------------------------- 1 | # South Carolina 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/sc/tax/income/credits/cdcc/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/sc/tax/income/credits/eitc/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/sc/tax/income/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/sc/tax/income/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/tx/README.md: -------------------------------------------------------------------------------- 1 | # Texas 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/tx/tanf/README.md: -------------------------------------------------------------------------------- 1 | # TANF 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/tx/twc/README.md: -------------------------------------------------------------------------------- 1 | # Texas Workforce Commission (TWC) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/tx/twc/ccs/README.md: -------------------------------------------------------------------------------- 1 | # Child Care Services (CCS) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ut/README.md: -------------------------------------------------------------------------------- 1 | # Utah 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ut/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ut/tax/income/credits/earned_income/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ut/tax/income/credits/ss_benefits/README.md: -------------------------------------------------------------------------------- 1 | # Social Security Benefits 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/ut/tax/income/rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/ut/tax/income/rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/va/README.md: -------------------------------------------------------------------------------- 1 | # Virginia 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/va/tax/income/rates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/va/tax/income/rates.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/vt/README.md: -------------------------------------------------------------------------------- 1 | # Vermont 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/vt/tax/income/credits/ctc/README.md: -------------------------------------------------------------------------------- 1 | # Child Tax Credit -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wa/README.md: -------------------------------------------------------------------------------- 1 | # Washington 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wa/dshs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/states/wa/dshs/index.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wa/tax/income/credits/working_families_tax_credit/phase_out/README.md: -------------------------------------------------------------------------------- 1 | # Phase-out 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wi/README.md: -------------------------------------------------------------------------------- 1 | # Wisconsin 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wi/tax/income/credits/childcare_expense/README.md: -------------------------------------------------------------------------------- 1 | # Child and Dependent Care Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wi/tax/income/credits/earned_income/README.md: -------------------------------------------------------------------------------- 1 | # Earned Income Tax Credit 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/states/wv/README.md: -------------------------------------------------------------------------------- 1 | # West Virginia 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/territories/pr/READme.md: -------------------------------------------------------------------------------- 1 | # Puerto Rico -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/README.md: -------------------------------------------------------------------------------- 1 | # US Department of Agriculture (USDA) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/csfp/amount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/csfp/amount.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/csfp/fpg_limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/csfp/fpg_limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/csfp/min_age.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/csfp/min_age.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/disabled_programs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/disabled_programs.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/elderly_age_threshold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/elderly_age_threshold.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/README.md: -------------------------------------------------------------------------------- 1 | # Supplemental Nutrition Assistance Program (SNAP) 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/abolish_snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/abolish_snap.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/asset_test/limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/asset_test/limit.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/income/limit/net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/income/limit/net.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/max_allotment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/max_allotment.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/min_allotment/READme.md: -------------------------------------------------------------------------------- 1 | # Minimum allotment -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/takeup_rate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/takeup_rate.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/uprating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/snap/uprating.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/snap/work_requirements/abawd/README.md: -------------------------------------------------------------------------------- 1 | # Able-Bodied Adult Without Dependents 2 | -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/wic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/wic/README.md -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/wic/abolish_wic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/wic/abolish_wic.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/wic/nutritional_risk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/wic/nutritional_risk.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/wic/takeup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/wic/takeup.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/gov/usda/wic/value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/gov/usda/wic/value.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/simulation/disabled_programs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/simulation/disabled_programs.yaml -------------------------------------------------------------------------------- /policyengine_us/parameters/uprating_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/parameters/uprating_extensions.py -------------------------------------------------------------------------------- /policyengine_us/params_on_demand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/params_on_demand/README.md -------------------------------------------------------------------------------- /policyengine_us/reforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/aca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/aca/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/aca/aca_ptc_700_fpl_cliff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/aca/aca_ptc_700_fpl_cliff.py -------------------------------------------------------------------------------- /policyengine_us/reforms/aca/aca_ptc_additional_bracket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/aca/aca_ptc_additional_bracket.py -------------------------------------------------------------------------------- /policyengine_us/reforms/aca/aca_ptc_simplified_bracket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/aca/aca_ptc_simplified_bracket.py -------------------------------------------------------------------------------- /policyengine_us/reforms/additional_tax_bracket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/additional_tax_bracket/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/biden/budget_2025/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/biden/budget_2025/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/cbo/payroll/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/cbo/payroll/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/afa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/afa/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/delauro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/delauro/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/golden/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/golden/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/golden/fisc_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/golden/fisc_act.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/hawley/awra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/hawley/awra/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/tlaib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/tlaib/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/tlaib/boost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/tlaib/boost/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/wyden_smith/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/wyden_smith/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/congress/wyden_smith/ctc_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/congress/wyden_smith/ctc_expansion.py -------------------------------------------------------------------------------- /policyengine_us/reforms/crfb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/crfb/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/crfb/non_refundable_ss_credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/crfb/non_refundable_ss_credit.py -------------------------------------------------------------------------------- /policyengine_us/reforms/crfb/senior_deduction_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/crfb/senior_deduction_extension.py -------------------------------------------------------------------------------- /policyengine_us/reforms/crfb/tax_employer_medicare_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/crfb/tax_employer_medicare_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/crfb/tax_employer_payroll_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/crfb/tax_employer_payroll_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/ctc_additional_bracket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/ctc_additional_bracket.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/ctc_minimum_refundable_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/ctc_minimum_refundable_amount.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/ctc_older_child_supplement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/ctc_older_child_supplement.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/ctc_per_child_phase_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/ctc_per_child_phase_in.py -------------------------------------------------------------------------------- /policyengine_us/reforms/ctc/ctc_per_child_phase_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/ctc/ctc_per_child_phase_out.py -------------------------------------------------------------------------------- /policyengine_us/reforms/dc_kccatc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/dc_kccatc.py -------------------------------------------------------------------------------- /policyengine_us/reforms/dc_tax_threshold_joint_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/dc_tax_threshold_joint_ratio.py -------------------------------------------------------------------------------- /policyengine_us/reforms/deductions/salt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/deductions/salt/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/eitc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/eitc/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/federal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/federal/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/federal/abolish_federal_income_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/federal/abolish_federal_income_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/federal/abolish_payroll_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/federal/abolish_payroll_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/federal/reported_state_income_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/federal/reported_state_income_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/harris/capital_gains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/harris/capital_gains/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/harris/lift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/harris/lift/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/harris/lift/middle_class_tax_credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/harris/lift/middle_class_tax_credit.py -------------------------------------------------------------------------------- /policyengine_us/reforms/harris/rent_relief_act/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/harris/rent_relief_act/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/local/ny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/local/ny/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/local/ny/mamdani_income_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/local/ny/mamdani_income_tax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/local/nyc/stc/phase_out/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/local/nyc/stc/phase_out/README.md -------------------------------------------------------------------------------- /policyengine_us/reforms/local/nyc/stc/phase_out/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/local/nyc/stc/phase_out/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/reconciliation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/reconciliation/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/reforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/reforms.py -------------------------------------------------------------------------------- /policyengine_us/reforms/snap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/snap/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/snap/abolish_snap_deductions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/snap/abolish_snap_deductions.py -------------------------------------------------------------------------------- /policyengine_us/reforms/snap/abolish_snap_net_income_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/snap/abolish_snap_net_income_test.py -------------------------------------------------------------------------------- /policyengine_us/reforms/state_dependent_exemptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/state_dependent_exemptions/README.md -------------------------------------------------------------------------------- /policyengine_us/reforms/state_dependent_exemptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/state_dependent_exemptions/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/dc/property_tax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/dc/property_tax/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/de/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/de/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mi/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mi/surtax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mi/surtax.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mn/walz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mn/walz/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mn/walz/mn_walz_hf1938.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mn/walz/mn_walz_hf1938.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mt/ctc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mt/ctc/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/mt/ctc/mt_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/mt/ctc/mt_ctc.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ny/wftc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ny/wftc/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/oregon/rebate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/oregon/rebate/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ri/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ri/ctc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ri/ctc/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ri/ctc/ri_ctc_reform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ri/ctc/ri_ctc_reform.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ri/exemption/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ri/exemption/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ut/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ut/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/states/ut/ut_refundable_eitc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/states/ut/ut_refundable_eitc.py -------------------------------------------------------------------------------- /policyengine_us/reforms/tax_exempt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/tax_exempt/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/tax_exempt/tax_exempt_reform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/tax_exempt/tax_exempt_reform.py -------------------------------------------------------------------------------- /policyengine_us/reforms/taxsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/taxsim.py -------------------------------------------------------------------------------- /policyengine_us/reforms/treasury/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/treasury/__init__.py -------------------------------------------------------------------------------- /policyengine_us/reforms/winship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/reforms/winship.py -------------------------------------------------------------------------------- /policyengine_us/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/system.py -------------------------------------------------------------------------------- /policyengine_us/tests/code_health/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/code_health/parameters.py -------------------------------------------------------------------------------- /policyengine_us/tests/code_health/variable_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/code_health/variable_names.py -------------------------------------------------------------------------------- /policyengine_us/tests/microsimulation/test_microsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/microsimulation/test_microsim.py -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/abolitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/abolitions.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_ptc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/aca/ptc/aca_ptc.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/fcc/acp/acp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/fcc/acp/acp.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/fcc/ebb/ebb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/fcc/ebb/ebb.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hhs/chip/chip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hhs/chip/chip.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hhs/hhs_smi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hhs/hhs_smi.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hud/ami.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hud/ami.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hud/hud_hap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hud/hud_hap.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hud/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hud/integration.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/hud/ttp/hud_ttp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/hud/ttp/hud_ttp.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/ssa/ssi/ssi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/ssa/ssi/ssi.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/usda/snap/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/usda/snap/snap.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/gov/usda/wic/wic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/gov/usda/wic/wic.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/baseline/household/cliff_gap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/baseline/household/cliff_gap.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/congress/wftca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/congress/wftca.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/ctc/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/ctc/integration.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/dc_kccatc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/dc_kccatc.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/states/mi/mi_surtax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/states/mi/mi_surtax.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/states/mt/ctc/mt_ctc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/states/mt/ctc/mt_ctc.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/misc/ctc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/misc/ctc.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/misc/general.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/misc/general.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/misc/sch_r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/misc/sch_r.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/taxsim_v10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/taxsim_v10.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/taxsim_v11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/taxsim_v11.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/taxsim/taxsim_v13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/taxsim/taxsim_v13.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/contrib/ubi_center/flat_tax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/contrib/ubi_center/flat_tax.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/reform/ctc_expansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/reform/ctc_expansion.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/policy/reform/winship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/policy/reform/winship.yaml -------------------------------------------------------------------------------- /policyengine_us/tests/run_selective_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/run_selective_tests.py -------------------------------------------------------------------------------- /policyengine_us/tests/test_batched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tests/test_batched.py -------------------------------------------------------------------------------- /policyengine_us/tools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /policyengine_us/tools/add_plotly_to_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/add_plotly_to_book.py -------------------------------------------------------------------------------- /policyengine_us/tools/branched_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/branched_simulation.py -------------------------------------------------------------------------------- /policyengine_us/tools/cloning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/cloning.py -------------------------------------------------------------------------------- /policyengine_us/tools/default_uprating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/default_uprating.py -------------------------------------------------------------------------------- /policyengine_us/tools/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/documentation.py -------------------------------------------------------------------------------- /policyengine_us/tools/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/general.py -------------------------------------------------------------------------------- /policyengine_us/tools/geography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/geography/README.md -------------------------------------------------------------------------------- /policyengine_us/tools/geography/county_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/geography/county_helpers.py -------------------------------------------------------------------------------- /policyengine_us/tools/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/parameters.py -------------------------------------------------------------------------------- /policyengine_us/tools/taxsim/generate_taxsim_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/taxsim/generate_taxsim_tests.py -------------------------------------------------------------------------------- /policyengine_us/tools/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/tools/variables.py -------------------------------------------------------------------------------- /policyengine_us/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/typing.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_age1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_age1.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_age2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_age2.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_age3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_age3.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_childcare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_childcare.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_dep13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_dep13.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_dep17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_dep17.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_dep18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_dep18.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_depx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_depx.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_dividends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_dividends.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_fiitax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_fiitax.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_gssi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_gssi.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_intrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_intrec.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_ltcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_ltcg.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_mstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_mstat.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_page.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_pbusinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_pbusinc.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_pensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_pensions.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_pprofinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_pprofinc.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_psemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_psemp.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_pui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_pui.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_pwages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_pwages.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_sage.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_sbusinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_sbusinc.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_scorp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_scorp.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_siitax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_siitax.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_sprofinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_sprofinc.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_ssemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_ssemp.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_state.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_stcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_stcg.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_swages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_swages.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_taxsimid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_taxsimid.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_tfica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_tfica.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_ui.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_v10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_v10.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_v11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_v11.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_v12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_v12.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_v18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_v18.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_v25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_v25.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/taxsim/taxsim_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/taxsim/taxsim_year.py -------------------------------------------------------------------------------- /policyengine_us/variables/contrib/ubi_center/flat_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/contrib/ubi_center/flat_tax.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/__init__.py: -------------------------------------------------------------------------------- 1 | # ACA employer-sponsored-insurance (ESI) variables 2 | -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/aca_take_up_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/aca_take_up_seed.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/eligibility/aca_magi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/eligibility/aca_magi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/eligibility/has_esi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/eligibility/has_esi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/ptc/aca_ptc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/ptc/aca_ptc.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/ptc/premium_tax_credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/ptc/premium_tax_credit.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/slspc/slcsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/slspc/slcsp.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/slspc/slcsp_age_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/slspc/slcsp_age_0.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/slspc/slcsp_rating_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/slspc/slcsp_rating_area.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/aca/takes_up_aca_if_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/aca/takes_up_aca_if_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ed/pell_grant/pell_grant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ed/pell_grant/pell_grant.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/acp/acp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/acp/acp.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/acp/is_acp_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/acp/is_acp_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/ebb/ebb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/ebb/ebb.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/ebb/enrolled_in_ebb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/ebb/enrolled_in_ebb.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/ebb/is_ebb_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/ebb/is_ebb_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/fcc_fpg_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/fcc_fpg_ratio.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/fcc/lifeline/lifeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/fcc/lifeline/lifeline.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/ccdf_age_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/ccdf_age_group.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/ccdf_county_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/ccdf_county_cluster.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/ccdf_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/ccdf_income.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/ccdf_market_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/ccdf_market_rate.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/is_ccdf_age_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/is_ccdf_age_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/is_ccdf_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/is_ccdf_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/is_ccdf_home_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/is_ccdf_home_based.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/ccdf/is_enrolled_in_ccdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/ccdf/is_enrolled_in_ccdf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/chip/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/chip/chip.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/chip/chip_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/chip/chip_category.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/chip/is_chip_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/chip/is_chip_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/chip/per_capita_chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/chip/per_capita_chip.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/head_start/head_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/head_start/head_start.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/hhs_smi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/hhs_smi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/medicaid/medicaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/medicaid/medicaid.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/medicaid/medicaid_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/medicaid/medicaid_cost.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/spm_unit_fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/spm_unit_fpg.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/tanf/cash/tanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/tanf/cash/tanf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/tanf/cash/tanf_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/tanf/cash/tanf_person.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/tanf/cash/tanf_reported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/tanf/cash/tanf_reported.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/tanf/tanf_fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/tanf/tanf_fpg.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hhs/tax_unit_fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hhs/tax_unit_fpg.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/ami.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/housing_assistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/housing_assistance.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_adjusted_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_adjusted_income.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_annual_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_annual_income.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_gross_rent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_gross_rent.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_hap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_hap.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_income_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_income_level.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_max_subsidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_max_subsidy.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_minimum_rent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_minimum_rent.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/hud_utility_allowance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/hud_utility_allowance.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/pha_payment_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/pha_payment_standard.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/tax_unit_income_ami_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/tax_unit_income_ami_ratio.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/hud/ttp/hud_ttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/hud/ttp/hud_ttp.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/credits/cdcc/cdcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/credits/cdcc/cdcc.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/credits/cdcc/cdcc_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/credits/cdcc/cdcc_rate.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/credits/ctc/ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/credits/ctc/ctc.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/credits/ctc/ctc_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/credits/ctc/ctc_value.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/credits/other_credits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/credits/other_credits.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/puf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/puf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/tax/estate/estate_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/tax/estate/estate_tax.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/tax_unit/tax_unit_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/tax_unit/tax_unit_size.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/tax_unit_is_filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/tax_unit_is_filer.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/tce/is_tce_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/tce/is_tce_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/total_income_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/total_income_tax.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/irs/vita/vita_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/irs/vita/vita_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/local/ca/ala/in_ala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/local/ca/ala/in_ala.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/local/ca/la/in_la.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/local/ca/la/in_la.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/local/ca/riv/in_riv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/local/ca/riv/in_riv.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/local/co/denver/in_denver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/local/co/denver/in_denver.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/puf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/puf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ss/social_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ss/social_security.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ssi/is_ssi_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ssi/is_ssi_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ssi/ssi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ssi/ssi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ssi/ssi_claim_is_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ssi/ssi_claim_is_joint.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ssi/tax_unit_ssi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ssi/tax_unit_ssi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/ssa/ssi/uncapped_ssi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/ssa/ssi/uncapped_ssi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/co/ccap/co_ccap_smi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/co/ccap/co_ccap_smi.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/co/hcpf/chp/co_chp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/co/hcpf/chp/co_chp.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/co/ssa/oap/co_oap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/co/ssa/oap/co_oap.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/dc/dhs/ccsp/dc_ccsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/dc/dhs/ccsp/dc_ccsp.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/dc/dhs/gac/dc_gac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/dc/dhs/gac/dc_gac.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/dc/dhs/tanf/dc_tanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/dc/dhs/tanf/dc_tanf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/general_assistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/general_assistance.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/il/dhs/aabd/il_aabd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/il/dhs/aabd/il_aabd.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/il/dhs/tanf/il_tanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/il/dhs/tanf/il_tanf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/il/hfs/hbwd/il_hbwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/il/hfs/hbwd/il_hbwd.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/il/hfs/smib/il_smib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/il/hfs/smib/il_smib.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/ma/eec/ccfa/ma_ccfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/ma/eec/ccfa/ma_ccfa.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/ok/tanf/ok_tanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/ok/tanf/ok_tanf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/tx/tanf/tx_tanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/tx/tanf/tx_tanf.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/tx/twc/ccs/tx_ccs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/tx/twc/ccs/tx_ccs.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/states/ut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/states/ut/README.md -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/fdpir/fdpir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/fdpir/fdpir.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/is_usda_disabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/is_usda_disabled.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/is_usda_elderly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/is_usda_elderly.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/income/snap_fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/income/snap_fpg.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/snap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/snap.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/snap_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/snap_region.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/snap_region_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/snap_region_str.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/snap_reported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/snap_reported.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/snap/snap_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/snap/snap_unit.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/is_wic_eligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/is_wic_eligible.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/receives_wic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/receives_wic.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/wic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/wic.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/wic_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/wic_category.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/wic_category_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/wic_category_str.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/wic_fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/wic_fpg.py -------------------------------------------------------------------------------- /policyengine_us/variables/gov/usda/wic/would_claim_wic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/gov/usda/wic/would_claim_wic.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/assets/net_worth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/assets/net_worth.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/child_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/child_index.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/cliff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/cliff.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/demographic/age/age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/demographic/age/age.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/emp_self_emp_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/emp_self_emp_ratio.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/expense/housing/rent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/expense/housing/rent.py -------------------------------------------------------------------------------- /policyengine_us/variables/household/marginal_tax_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/household/marginal_tax_rate.py -------------------------------------------------------------------------------- /policyengine_us/variables/input/employment_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/input/employment_income.py -------------------------------------------------------------------------------- /policyengine_us/variables/input/farm_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/input/farm_income.py -------------------------------------------------------------------------------- /policyengine_us/variables/input/geography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/input/geography.py -------------------------------------------------------------------------------- /policyengine_us/variables/input/self_employment_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/policyengine_us/variables/input/self_employment_income.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/test.py -------------------------------------------------------------------------------- /update_itemization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/update_itemization.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolicyEngine/policyengine-us/HEAD/uv.lock --------------------------------------------------------------------------------