├── .babelrc ├── .cfignore ├── .circleci └── config.yml ├── .codeclimate.yml ├── .eslintrc.js ├── .flaskenv ├── .github └── ISSUE_TEMPLATE │ └── issue-template.md ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── Procfile ├── README.md ├── bin ├── cf_env_setup.sh ├── post-checkout ├── post-merge └── run.sh ├── cli.py ├── data ├── MV_change_template.txt ├── crosswalks │ ├── README_crosswalks.txt │ ├── f3_reports.sql │ ├── f3p_reports.sql │ ├── f3x_reports.sql │ ├── f5_reports.sql │ ├── f7_report.sql │ └── f9_report.sql ├── efile_guide_f3.json ├── efile_guide_f3p.json ├── efile_guide_f3x.json ├── flyway │ ├── README.md │ ├── build.gradle │ ├── manifest_headless_flyway.yml │ └── run.sh ├── load_base_advisory_opinion_data.sql ├── load_base_mur_data.sql ├── migrations │ ├── V0000.1__create_roles.sql │ ├── V0001__schemas.sql │ ├── V0002__extensions.sql │ ├── V0003__disclosure_schema_functions.sql │ ├── V0004__public_schema_functions.sql │ ├── V0005__real_efile_schema_functions.sql │ ├── V0006__real_pfile_schema_functions.sql │ ├── V0007__aouser_schema_objects.sql │ ├── V0008__auditsearch_schema_objects.sql │ ├── V0009__disclosure_cand_valid_fec_yr.sql │ ├── V0010__auditsearch_cand_audit_vw.sql │ ├── V0011__disclosure_cmte_valid_fec_yr.sql │ ├── V0012__auditsearch_cmte_audit_vw.sql │ ├── V0013__disclosure_cand_cmte_linkage.sql │ ├── V0014__public_sequences.sql │ ├── V0015__disclosure_schema_objects.sql │ ├── V0016__rad_pri_user_schema_objects.sql │ ├── V0017__disclosure_rad_active_analyst_vw.sql │ ├── V0018__rad_pri_user_rad_assgn_table.sql │ ├── V0019__disclosure_rad_cmte_analyst_search_vw.sql │ ├── V0020__fecapp_schema_objects.sql │ ├── V0021__fecmur_schema_objects.sql │ ├── V0022__public_checkpointtable.sql │ ├── V0023__real_efile_reps_table.sql │ ├── V0024__public_schema_objects.sql │ ├── V0025__staging_schema_objects.sql │ ├── V0026__more_public_schema_objects.sql │ ├── V0027.1__public_real_efile_f3.sql │ ├── V0027__real_efile_f3_table.sql │ ├── V0028.1__public_real_efile_f3p.sql │ ├── V0028__real_efile_f3p.sql │ ├── V0029.1__more_public_real_efile_objects.sql │ ├── V0029__more_real_efile_objects.sql │ ├── V0030__more_real_efile_objects.sql │ ├── V0031__real_pfile_objects.sql │ ├── V0032__rohan_schema_objects.sql │ ├── V0033__more_staging_schema_objects.sql │ ├── V0034__indexes.sql │ ├── V0035__triggers.sql │ ├── V0036__defaults.sql │ ├── V0037__constraints.sql │ ├── V0038__permissions.sql │ ├── V0039.1__ofec_sched_a_aggregate_state_recipient_totals_mv.sql │ ├── V0039__states_and_zips_data.sql │ ├── V0040__omnibus_dates.sql │ ├── V0041__large_aggregates.sql │ ├── V0043.1__calendar_permissions.sql │ ├── V0043__fecapp_calendar.sql │ ├── V0044__auditsearch_view.sql │ ├── V0045.1__public_auditsearch_grant.sql │ ├── V0045__public_auditsearch_mv.sql │ ├── V0046__alter_aggregate_tables_index_name.sql │ ├── V0047__alter_ofec_sched_a_aggregate_state_recipient_totals_mv.sql │ ├── V0048__alter_ofec_sched_a_aggregate_size_merged_mv.sql │ ├── V0049__replace_elections_list.sql │ ├── V0050__add_ref_zip_to_district.sql │ ├── V0051__alter_ofec_elections_list_mv.sql │ ├── V0052__alter_ofec_elections_list_mv_2.sql │ ├── V0053__add_ofec_filings_all_mv.sql │ ├── V0054__copy_ofec_sched_a_aggregate_state_recipient.sql │ ├── V0055__add_expression_based_index_for_sched_b_tables.sql │ ├── V0056__public_auditsearch_all_mv.sql │ ├── V0057__drop_old_aggregate_objects.sql │ ├── V0058__create_fecapp_trc_st_elect_office.sql │ ├── V0059.1__public_audit_case_mv.sql │ ├── V0059.2__temp_ofec_candidate_flag.sql │ ├── V0059__rename_ofec_candidate_flag.sql │ ├── V0060__add_remaining_schedule_b_coalesce_indexes.sql │ ├── V0061__refine_audit_case_mv_vw.sql │ ├── V0062__change_audit_case_mv_na_cand_name.sql │ ├── V0063__filings_add_request_type_idx.sql │ ├── V0064__schedule_f_add_cycle_idx.sql │ ├── V0065__add_missing_permission.sql │ ├── V0067__filter_mur_view.sql │ ├── V0068__add_sched_a_zip_indexes.sql │ ├── V0069__remove_ofec_candidate_flag.sql │ ├── V0070__alter_table_fec_fitem_sched_b.sql │ ├── V0071__update_ofec_totals_candidate_committees_mv.sql │ ├── V0072__update_ofec_sched_e_related_objects.sql │ ├── V0073__update_ofec_committee_fulltext_and_candidate_fulltext_mvs.sql │ ├── V0074__alter_table_fec_fitem_sched_a.sql │ ├── V0075__add_efile_raw_table_indexes.sql │ ├── V0076__add_ofec_candidate_totals_with_0s_mv.sql │ ├── V0077__add_cmte_type_audit_case.sql │ ├── V0078__add_trc_election_result.sql │ ├── V0079__add_indexes_on_fec_fitem_sched_b_tables.sql │ ├── V0080__audit_committee_fulltext.sql │ ├── V0081.1__add_column_to_ofec_report_pac_party_all_mv.sql │ ├── V0081__add_ofec_report_pac_party_all_mv.sql │ ├── V0082__add_indexes_on_fec_fitem_sched_a_tables.sql │ ├── V0083__fix_ofec_sched_a_aggregate_state_recipient_totals_mv.sql │ ├── V0084__add_table_entity_chart.sql │ ├── V0085__fix_ofec_candidate_totals_mv.sql │ ├── V0086__add_future_ofec_candidate_totals_mv.sql │ ├── V0091__drop_ofec_sched_b_objects.sql │ ├── V0092__drop_ofec_election_result_mv.sql │ ├── V0093__operations_log_view.sql │ ├── V0094__add_ofec_agg_coverage_date_mv.sql │ ├── V0095__add_entity_chart_vw.sql │ ├── V0096__drop_ofec_sched_a_objects.sql │ ├── V0097__add_ofec_sched_e_mv.sql │ ├── V0098__update_ofec_agg_coverage_date_mv_logic.sql │ ├── V0099__modify_candidate_committee_totals.sql │ ├── V0100__add_ofec_sched_a_agg_state_vw.sql │ ├── V0101__add_column_orig_amndt_dt_to_form_9.sql │ ├── V0102__drop_ofec_rad_mv.sql │ ├── V0103__fix_ofec_rad_analyst_vw.sql │ ├── V0104__update_ofec_sched_e_mv_add_columns.sql │ ├── V0105__add_adr_af.sql │ ├── V0106__create_views_for_every_mv.sql │ ├── V0107__fix_processed_amendment_chain.sql │ ├── V0108__drop_ofec_entity_chart.sql │ ├── V0109__add_more_form_type_to_rpt_mv.sql │ ├── V0110__Include_F13_F4_in_ofec_totals_pacs_parties_mv.sql │ ├── V0111__add_cmte_tp_to_fec_fitem_sched_a_b_tables.sql │ ├── V0112__add_amndt_ind_prev_file_num_to_ofec_sched_e_mv.sql │ ├── V0113__remove_ofec_totals_pacs_and_totals_parties_mvs.sql │ ├── V0114__add_memo_agg_to_sched_b_agg_tables.sql │ ├── V0115__add_form_4_summary_fields.sql │ ├── V0116__add_amndt_number_to_ofec_sched_e_mv.sql │ ├── V0117__update_ofec_filings_all_mv_rm_redundent_RFAI_data.sql │ ├── V0118__drop_original_sb_agg_tables.sql │ ├── V0119__update_sched_c_d_e_f_and_related_tables.sql │ ├── V0120__update_ofec_sched_e_mv_s_o_ind_handling.sql │ ├── V0121__fix_cand_cmte_totals.sql │ ├── V0122__drop_unused_sched_c_e_f_and_related_objects.sql │ ├── V0123__ofec_totals_combined_mv_update_op_exp.sql │ ├── V0124__ofec_candidate_history_mv_update_cand_inactive.sql │ ├── V0125__ofec_totals_combined_mv_ttl_fed_disb_null.sql │ ├── V0126__ofec_candidate_totals_mv_coh.sql │ ├── V0127__ofec_committee_totals_per_cycle_vw.sql │ ├── V0128__cand_totals_add_columns.sql │ ├── V0129__add_fec_fitem_sched_ab_2019_2020.sql │ ├── V0130__add_published_flg_to_fecmur_case.sql │ ├── V0131__ofec_cand_cmte_linkage_mv_add_column.sql │ ├── V0132__ofec_cand_totals_mv_update.sql │ ├── V0133__fix_ofec_cand_cmte_linkage_mv.sql │ ├── V0134__ofec_totals_combined_mv_exclude_sl.sql │ ├── V0135__ofec_candidate_history_mv_update_cand_election_yr.sql │ ├── V0136__ofec_cand_cmte_linkage_mv.sql │ ├── V0137__ofec_candidate_history_mv.sql │ ├── V0138__ofec_candidate_totals_mv.sql │ ├── V0139__ofec_candidate_details_mv.sql │ ├── V0140__fix_cand_election.sql │ ├── V0141__ofec_candidate_detail_mv.sql │ ├── V0142__update_to_tsvector_function_over_all_columns.sql │ ├── V0143__break_dependencies_on_committee_history.sql │ ├── V0144__add_affiliated_committee_to_committee_history.sql │ ├── V0145__real_efile_se_f57_vw.sql │ ├── V0146__ofec_report_presidential_mv.sql │ ├── V0147__ofec_report_house_senate_mv.sql │ ├── V0148__ofec_report_pac_party_mv.sql │ ├── V0149__add_extension_unaccent.sql │ ├── V0150__add_org_tp_cmte_dsgn_columns_to_sched_a_b_tables.sql │ ├── V0151__define_parse_fulltext_for_tsvector_accents.sql │ ├── V0152__update_parse_fulltext_for_tsvector_function_over_all_columns.sql │ ├── V0153__drop_unused_objects.sql │ ├── V0154__add_cand_fulltxt_tsvector_column_real_efile_se_f57_vw.sql │ ├── V0155__ofec_candidate_history_mv_add_filter_columns.sql │ ├── V0156__ofec_agg_coverage_date.sql │ ├── V0157__create_candidate_totals_detail_mv.sql │ ├── V0158__ofec_cand_cmte_linkage_mv_exclude_leadership_PAC.sql │ ├── V0159__ofec_candidate_totals_mv_include_all_F3_F3P_F3X_exclude_non_candidate_cmtes.sql │ ├── V0160__ofec_totals_house_senate_mv_include_all_F3_F3P_F3X_exclude_non_H_S_candidate_cmtes.sql │ ├── V0161__ofec_communication_cost_mv_replace_source.sql │ ├── V0162__drop_fec_vsum_sched_vws.sql │ ├── V0163__ofec_reports_ie_only_mv.sql │ ├── V0164__correct_views_with_column_data_type_unknown.sql │ ├── V0165__ofec_sched_a_agg_state_mv.sql │ ├── V0166__create_ofec_non_financial_amendment_chain_vw.sql │ ├── V0167__ofec_filings_all_mv.sql │ ├── V0168__add_filing_type_to_filings_all_mv.sql │ ├── V0169__add_cycles_has_reports_to_ofec_committee_history_mv.sql │ ├── V0170__ofec_sched_e_mv_add_filing_date.sql │ ├── V0171__drop_ofec_totals_candidate_committees.sql │ ├── V0172__remove_left_join_ofec_candidate_totals_detail_mv.sql │ ├── V0173__add_most_recent_to_ofec_sched_e_mv.sql │ ├── V0174__add_tsvector_trigger_to_sa7.sql │ ├── V0175__update_real_efile_se_f57_vw_cand_fulltxt_tsvector_column.sql │ ├── V0176__remove_null_from_ofec_committee_history_mv.sql │ ├── V0177__add_filing_form_real_efile_se_f57_vw.sql │ ├── V0178__add_candid_to_ofec_filings_all_mv.sql │ ├── V0179__update_ofec_candidate_history_mv.sql │ ├── V0180__add_PRES_2016_2020_tables.sql │ ├── V0181__update_ofec_candidate_totals_mv.sql │ ├── V0182__add_ofec_presidential_by_candidate_vw.sql │ ├── V0183__add_ofec_presidential_by_state_vw.sql │ ├── V0184__add_ofec_presidential_summary_vw.sql │ ├── V0185__add_ofec_presidential_by_size_vw.sql │ ├── V0186__add_ofec_presidential_coverage_date_vw.sql │ ├── V0187__add_F24_version.sql │ ├── V0188__ofec_totals_pac_party_vw.sql │ ├── V0189__ofec_candidate_totals_detail_mv.sql │ ├── V0190__ofec_totals_pac_party_vw.sql │ ├── V0191__drop_ofec_totals_pacs_parties.sql │ ├── V0192__add_pg_date_column_to_presidential_tables.sql │ ├── V0193__add_is_active_ofec_committee_history_mv.sql │ ├── V0194__ofec_filings_amendments_all_mv.sql │ ├── V0195__include_new_transaction_code_to_individual.sql │ ├── V0196__add_is_active_ofec_committee_detail_mv.sql │ ├── V0197__add_is_active_ofec_committee_fulltext_mv.sql │ ├── V0198__add_index_sa7_sb4.sql │ ├── V0199__add_idx_sched_a_cmte_id_dt_sub_id_desc.sql │ ├── V0200__add_index_on_pg_date.sql │ ├── V0201__add_index_on_is_individual_contbr_city_state.sql │ ├── V0202__rename_column_name.sql │ ├── V0203__ofec_filings_all_mv.sql │ ├── V0204__ofec_totals_combined_mv.sql │ ├── V0205__tres_nm_ofec_filings_all_mv.sql │ ├── V0206__add_mur_arch_tables.sql │ ├── V0207__drop_ofec_filings_mv.sql │ ├── V0208__add_sche_b_disb_dt_sub_id.sql │ ├── V0209__add_sche_b_cmte_id_cmte_id_disb_dt_sub_id.sql │ ├── V0210__add_mur_name.sql │ ├── V0211__ofec_totals_house_senate_mv.sql │ ├── V0212__add_DIM_CMTE_IE_INF_table.sql │ ├── V0213__add_leadership_pac_linkage.sql │ ├── V0214__add_ofec_pcc_conversion_exclude.sql │ ├── V0215__add_ofec_pcc_to_non_pcc_mv.sql │ ├── V0216__add_sponsor_id_ofec_committee_history_mv.sql │ ├── V0217__add_sponsor_id_ofec_committee_detail_mv.sql │ ├── V0218__ofec_committee_history_mv_add_pcc_to_pac_info.sql │ ├── V0219__update_docquery_https.sql │ ├── V0220__add_ofec_committee_bank_vw.sql │ ├── V0221__bank_ofec_filings_all_mv.sql │ ├── V0222__add_index_idx_ofec_totals_combined_mv_cmte_id_cycle.sql │ ├── V0223__update_report_pdf_url_or_null.sql │ ├── V0224__ofec_filings_all_mv_pdfurl.sql │ ├── V0225__add_fec_fitem_sched_ab_2021_2022.sql │ ├── V0226__modify_report_pdf_url_or_null.sql │ ├── V0227__modify_report_fec_url.sql │ ├── V0228__modify_ofec_totals_combined.sql │ ├── V0229__add_ofec_pac_sponsor_candidate.sql │ ├── V0230__create_table_af_case_disposition.sql │ ├── V0231__create_af_number_rad_civil_pnlty_updt.sql │ ├── V0232__add_totals_fields.sql │ ├── V0233__add_sponsors_and_org_type.sql │ ├── V0234__add_ofec_pac_sponsor_candidate_list_per_cycle.sql │ ├── V0235__first_f1_ofec_committee_detail_mv.sql │ ├── V0236__add_first_f1_date_ofec_total_combined_mv.sql │ ├── V0237__add_first_f1_date_ofec_totals_house_senate_ie_only.sql │ ├── V0238__add_first_f1_index.sql │ ├── V0239__ofec_sched_b_aggregate_recipient_mv.sql │ ├── V0240__modify_function_expand_document.sql │ ├── V0241__idx_ofec_sched_b_aggregate_recipient_mv.sql │ ├── V0242__add_3_columns_ofec_candidate_totals_mv.sql │ ├── V0243__fix_columns_name_ofec_candidate_totals_mv.sql │ ├── V0244__modify_committee_type_function.sql │ ├── V0245__add_state_district_ofec_candidate_totals_mv.sql │ ├── V0246__add_PK_to_dsc_sched_aggregate_tables.sql │ ├── V0247__modify_expand_committee_type.sql │ ├── V0248__add_columns_to_real_efile_pfile_F1.sql │ ├── V0249__add_function_get_committee_label.sql │ ├── V0250__add_committee_label_ofec_committee_history_mv.sql │ ├── V0251__ofec_filings_all_mv_add_filer_name_text.sql │ ├── V0252__ofec_report_presidential_mv_add_filer_name_text.sql │ ├── V0253__ofec_report_house_senate_mv_add_filer_name_text.sql │ ├── V0254__ofec_report_pac_party_mv_add_filer_name_text.sql │ ├── V0255__ofec_sched_e_mv_add_spender_name_text.sql │ ├── V0256__fix_duplicate_indexes_on_real_efile_tables.sql │ ├── V0257__ofec_filings_all_mv_add_cmteid_text.sql │ ├── V0258__ofec_report_presidential_mv_add_cmteid_text.sql │ ├── V0259__ofec_report_house_senate_mv_add_cmteid_text.sql │ ├── V0260__ofec_report_pac_party_mv_add_cmteid_text.sql │ ├── V0261__ofec_sched_e_mv_add_spender_id_text.sql │ ├── V0262__ofec_sched_e_mv_add_coalesce.sql │ ├── V0263__ofec_reports_ie_only_mv_add_filer_name_text.sql │ ├── V0264__ofec_reports_ie_only_mv_add_committee_name.sql │ ├── V0265__add_state_full_ofec_candidate_totals_mv.sql │ ├── V0266__add_totals_inaugural_donations_mv.sql │ ├── V0267__add_presidential_2024_tables.sql │ ├── V0268__update_presidential_views_to_include_2024_data.sql │ ├── V0269__ofec_sched_e_mv_add_exp_purpose.sql │ ├── V0270__add_fec_fitem_sched_ab_2023_2024.sql │ ├── V0271__h4_mv_create.sql │ ├── V0272__add_ofec_schedule_d_report.sql │ ├── V0273__ofec_filings_all_mv_add_coalesce.sql │ ├── V0274__ofec_reports_presidential_mv_add_coalesce.sql │ ├── V0275__ofec_reports_house_senate_mv_add_coalesce.sql │ ├── V0276__ofec_reports_pac_party_mv_add_coalesce.sql │ ├── V0277__ofec_filings_all_mv_fix_coalesce.sql │ ├── V0278__add_pdfurl_to_h4.sql │ ├── V0279__add_presidential_2008_tables.sql │ ├── V0280__add_presidential_2012_tables.sql │ ├── V0281__update_presidential_views_to_include_2008_2012_data.sql │ ├── V0282__add_sched_d_line_num_index.sql │ ├── V0283__add_sched_d_filters_rm_nulls.sql │ ├── V0284__increase_size_pres_nml_b_disb_desc.sql │ ├── V0285__fec_vsum_f1_f1z_vw.sql │ ├── V0286__rename_column_ofec_pacronyms.sql │ ├── V0287__add_candidate_firstlast_name_vw.sql │ ├── V0288__add_parsed_name_ofec_candidate_history_mv.sql │ ├── V0289__last_file_ofec_committee_detail_history_mv.sql │ ├── V0290__add_ofec_sched_a_nat_party_mv.sql │ ├── V0291__add_ofec_sched_b_nat_party_mv.sql │ ├── V0292__add_ofec_sched_a_aggregate_employer_mv.sql │ ├── V0293__add_ofec_sched_a_aggregate_occupation_mv.sql │ ├── V0294__recpnt_nm_text_ofec_sched_b_aggregate_recipient_mv.sql │ ├── V0295__refactor_ofec_sched_a_nat_party_mv.sql │ ├── V0296__refactor_ofec_sched_b_nat_party_mv.sql │ ├── V0297__add_ofec_totals_national_party_mv.sql │ ├── V0298__remove_line_num_npa_sa_mv.sql │ ├── V0299__remove_line_num_npa_sb_mv.sql │ ├── V0300__update_contbr_name_text_npa_sa.sql │ ├── V0301__update_recipient_name_text_npa_sb.sql │ ├── V0302__add_test_efile_schema_and_table.sql │ ├── V0303__add_disbursement_dt_sched_e.sql │ ├── V0304__add_arch_curent_mur_sorting_vw.sql │ ├── V0305__add_ref_case_disposition_category.sql │ ├── V0306__update_form_category_ofec_filings_all_mv.sql │ ├── V0307__add_fec_fitem_sched_ab_2025_2026.sql │ ├── V0308__add_parsed_name_candidate_detail_mv.sql │ ├── V0309__add_published_flg_to_aouser_ao.sql │ ├── V0310__refactor_file_num_join_ofec_filings_all_mv.sql │ ├── V0311__add_fosers_tables.sql │ ├── V0312__add_rm_views.sql │ ├── V0313__add_contents_column.sql │ ├── V0314__create_form_56_mv.sql │ └── V0315__ofec_filings_all_mv_add_f3l.sql ├── notes.md ├── refresh_materialized_views.sql ├── rename_temporary_views.sql ├── sample_db.sql └── subset-config.json ├── endpoints_walk.py ├── jdbc_utils.py ├── locustfile.py ├── manage.py ├── manifests ├── manifest_api_dev.yml ├── manifest_api_feature.yml ├── manifest_api_prod.yml ├── manifest_api_stage.yml ├── manifest_celery_beat_dev.yml ├── manifest_celery_beat_feature.yml ├── manifest_celery_beat_prod.yml ├── manifest_celery_beat_stage.yml ├── manifest_celery_worker_dev.yml ├── manifest_celery_worker_feature.yml ├── manifest_celery_worker_prod.yml ├── manifest_celery_worker_stage.yml ├── manifest_task_dev.yml.template ├── manifest_task_feature.yml.template ├── manifest_task_prod.yml.template └── manifest_task_stage.yml.template ├── package.json ├── requirements-dev.txt ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── src ├── App.js ├── components │ ├── Footer.js │ └── Header.js ├── index.js ├── public │ └── index.html ├── server.js └── static │ ├── css │ ├── custom.css │ └── styles.css │ ├── fonts │ ├── gandhiserif-bold.eot │ ├── gandhiserif-bold.ttf │ ├── gandhiserif-bold.woff │ ├── gandhiserif-bold.woff2 │ ├── gandhiserif-bolditalic.eot │ ├── gandhiserif-bolditalic.ttf │ ├── gandhiserif-bolditalic.woff │ ├── gandhiserif-bolditalic.woff2 │ ├── gandhiserif-italic.eot │ ├── gandhiserif-italic.ttf │ ├── gandhiserif-italic.woff │ ├── gandhiserif-italic.woff2 │ ├── gandhiserif-regular.eot │ ├── gandhiserif-regular.ttf │ ├── gandhiserif-regular.woff │ ├── gandhiserif-regular.woff2 │ ├── karla-bold.eot │ ├── karla-bold.ttf │ ├── karla-bold.woff │ ├── karla-bold.woff2 │ ├── karla-regular.eot │ ├── karla-regular.ttf │ ├── karla-regular.woff │ └── karla-regular.woff2 │ └── img │ ├── beta-fec-fb.png │ ├── beta-fec-tw.png │ ├── favicon │ ├── data │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ └── mstile-144x144.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── general │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ └── mstile-144x144.png │ ├── help │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ └── mstile-144x144.png │ └── legal │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ └── mstile-144x144.png │ ├── feature--candidate-support.jpg │ ├── feature--compare-candidates.jpg │ ├── feature--contributions-narrow.jpg │ ├── feature--contributions.jpg │ ├── feature--data.png │ ├── feature--dates.jpg │ ├── feature--filing.jpg │ ├── feature--forms.jpg │ ├── feature--legal.png │ ├── feature--reporting.png │ ├── feature--training.jpg │ ├── fec-office.jpg │ ├── financial-document-circle.svg │ ├── headshot--goodman.jpg │ ├── headshot--hunter.jpg │ ├── headshot--no-photo.jpg │ ├── headshot--petersen.jpg │ ├── headshot--walther.jpg │ ├── headshot--weintraub.jpg │ ├── hero-about.jpg │ ├── hero-data.jpg │ ├── hero-home.jpg │ ├── hero-legal.jpg │ ├── hero-press.jpg │ ├── hero-registration.jpg │ ├── i-calendar--secondary-contrast.svg │ ├── i-calendar-circle.svg │ ├── i-complex--calendar.png │ ├── i-complex--calendar.svg │ ├── i-complex--data.png │ ├── i-complex--data.svg │ ├── i-complex--legal.png │ ├── i-complex--legal.svg │ ├── i-complex--regreport.png │ ├── i-complex--regreport.svg │ ├── i-document--secondary-contrast.svg │ ├── i-document-circle.svg │ ├── i-elections--neutral.svg │ ├── i-elections--primary-contrast.svg │ ├── i-elections--primary.png │ ├── i-elections--primary.svg │ ├── i-email--inverse.png │ ├── i-email--inverse.svg │ ├── i-email--primary.png │ ├── i-email--primary.svg │ ├── i-github--inverse.png │ ├── i-github--inverse.svg │ ├── i-github--primary.png │ ├── i-github--primary.svg │ ├── i-mail--primary.png │ ├── i-mail--primary.svg │ ├── i-overviews--primary.svg │ ├── i-phone--primary.png │ ├── i-phone--primary.svg │ ├── i-table--neutral.svg │ ├── i-table--primary-contrast.svg │ ├── i-table--primary.svg │ ├── i-twitter--primary.png │ ├── i-twitter--primary.svg │ ├── loading--primary.gif │ ├── loading-ellipsis-gray.gif │ ├── loading-ellipsis.gif │ ├── loading.gif │ ├── print-logo.png │ ├── reaction-confusing.svg │ ├── reaction-informative.svg │ ├── reaction-not-interested.svg │ ├── seal--cropped.png │ ├── seal--cropped.svg │ ├── seal--inverse.png │ ├── seal--inverse.svg │ ├── seal.png │ ├── seal.svg │ ├── social │ ├── data.png │ ├── general.png │ ├── help.png │ └── legal.png │ ├── thumbnail--ao-brochure.png │ ├── thumbnail--ao-statistics.png │ ├── thumbnail--audio.png │ ├── thumbnail--candidates.jpg │ ├── thumbnail--captions.png │ ├── thumbnail--citizens-guide-brochure.png │ ├── thumbnail--enforcement-process.png │ ├── thumbnail--feca.jpg │ ├── thumbnail--filing-a-complaint.png │ ├── thumbnail--nonconnected.jpg │ ├── thumbnail--orgs.jpg │ ├── thumbnail--parties.jpg │ ├── thumbnail--pdf-guide.png │ ├── thumbnail--title26.jpg │ ├── thumbnail--title52.jpg │ ├── thumbnail--video.png │ ├── tooltip-point.svg │ ├── us_flag_small.png │ ├── wordmark.png │ └── wordmark.svg ├── static └── swagger-ui │ └── favicon.ico ├── tasks.py ├── tests ├── __init__.py ├── common.py ├── conftest.py ├── factories.py ├── integration │ ├── test_amendment_chain.py │ ├── test_candidate_committee_totals.py │ ├── test_candidates.py │ ├── test_committees.py │ ├── test_filings.py │ ├── test_followers.py │ ├── test_integration.py │ └── test_tsvector_generation.py ├── test_aggregates.py ├── test_api.py ├── test_app.py ├── test_audit.py ├── test_candidates.py ├── test_committees.py ├── test_costs.py ├── test_counts.py ├── test_dates.py ├── test_downloads.py ├── test_elections.py ├── test_filing_resources.py ├── test_filings.py ├── test_filters.py ├── test_inaugural_donations.py ├── test_itemized.py ├── test_large_aggregates.py ├── test_legal │ ├── test_ao_citations.py │ ├── test_ao_endpoint.py │ ├── test_ao_load.py │ ├── test_case_endpoint.py │ ├── test_case_load.py │ ├── test_citation_endpoint.py │ ├── test_legal.py │ ├── test_legal_data.py │ ├── test_legal_doc_endpoint.py │ ├── test_map_citations_murs.py │ ├── test_parse_mur_citations.py │ ├── test_rm_data.py │ ├── test_rm_endpoint.py │ ├── test_rm_load.py │ └── test_statute_endpoint.py ├── test_monitoring.py ├── test_national_party.py ├── test_operations_log.py ├── test_presidential.py ├── test_reports.py ├── test_sched_c.py ├── test_sched_d.py ├── test_sched_e.py ├── test_sched_f.py ├── test_spending_by_others.py ├── test_swagger.py ├── test_totals.py ├── test_utils.py └── unit │ └── __init__.py ├── webpack.config.js ├── webpack.production.config.js └── webservices ├── __init__.py ├── api_setup.py ├── args.py ├── calendar.py ├── common ├── __init__.py ├── counts.py ├── models │ ├── __init__.py │ ├── aggregates.py │ ├── audit.py │ ├── base.py │ ├── candidates.py │ ├── committees.py │ ├── costs.py │ ├── dates.py │ ├── elections.py │ ├── filings.py │ ├── itemized.py │ ├── large_aggregates.py │ ├── links.py │ ├── national_party.py │ ├── operations_log.py │ ├── presidential.py │ ├── rad_analyst.py │ ├── reports.py │ ├── totals.py │ └── unverified_filers.py ├── util.py └── views.py ├── config.py ├── decoders.py ├── docs.py ├── env.py ├── exceptions.py ├── filters.py ├── flow.py ├── legal ├── constants.py ├── legal_docs │ ├── __init__.py │ ├── advisory_opinions.py │ ├── archived_murs.py │ ├── current_cases.py │ ├── reclassify_statutory_citation.py │ ├── responses.py │ ├── show_legal_data.py │ └── statutes.py ├── mappings │ ├── ao_mapping.py │ ├── arch_mur_mapping.py │ ├── case_mapping.py │ └── rm_mapping.py ├── rulemaking_docs │ ├── __init__.py │ ├── responses.py │ └── rulemaking.py ├── utils_es.py └── utils_load.py ├── resources ├── __init__.py ├── aggregates.py ├── audit.py ├── candidate_aggregates.py ├── candidates.py ├── committees.py ├── costs.py ├── dates.py ├── download.py ├── elections.py ├── filings.py ├── form_56.py ├── large_aggregates.py ├── legal.py ├── monitoring.py ├── national_party.py ├── operations_log.py ├── presidential.py ├── rad_analyst.py ├── reports.py ├── rulemaking.py ├── sched_a.py ├── sched_b.py ├── sched_c.py ├── sched_d.py ├── sched_e.py ├── sched_f.py ├── sched_h4.py ├── search.py ├── spending_by_others.py └── totals.py ├── rest.py ├── schemas.py ├── sorting.py ├── spec.py ├── static └── robots.txt ├── tasks ├── __init__.py ├── celery.py ├── download.py ├── error_code.py ├── json_response.py ├── legal_docs.py ├── make_celery.py ├── refresh_db.py ├── response_exception.py ├── service_status_checks.py └── utils.py ├── templates └── swagger-ui.html └── utils.py /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.babelrc -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.cfignore -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.flaskenv -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/run.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/README.md -------------------------------------------------------------------------------- /bin/cf_env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/bin/cf_env_setup.sh -------------------------------------------------------------------------------- /bin/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/bin/post-checkout -------------------------------------------------------------------------------- /bin/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/bin/post-merge -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/bin/run.sh -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/cli.py -------------------------------------------------------------------------------- /data/MV_change_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/MV_change_template.txt -------------------------------------------------------------------------------- /data/crosswalks/README_crosswalks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/README_crosswalks.txt -------------------------------------------------------------------------------- /data/crosswalks/f3_reports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f3_reports.sql -------------------------------------------------------------------------------- /data/crosswalks/f3p_reports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f3p_reports.sql -------------------------------------------------------------------------------- /data/crosswalks/f3x_reports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f3x_reports.sql -------------------------------------------------------------------------------- /data/crosswalks/f5_reports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f5_reports.sql -------------------------------------------------------------------------------- /data/crosswalks/f7_report.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f7_report.sql -------------------------------------------------------------------------------- /data/crosswalks/f9_report.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/crosswalks/f9_report.sql -------------------------------------------------------------------------------- /data/efile_guide_f3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/efile_guide_f3.json -------------------------------------------------------------------------------- /data/efile_guide_f3p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/efile_guide_f3p.json -------------------------------------------------------------------------------- /data/efile_guide_f3x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/efile_guide_f3x.json -------------------------------------------------------------------------------- /data/flyway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/flyway/README.md -------------------------------------------------------------------------------- /data/flyway/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/flyway/build.gradle -------------------------------------------------------------------------------- /data/flyway/manifest_headless_flyway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/flyway/manifest_headless_flyway.yml -------------------------------------------------------------------------------- /data/flyway/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/flyway/run.sh -------------------------------------------------------------------------------- /data/load_base_advisory_opinion_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/load_base_advisory_opinion_data.sql -------------------------------------------------------------------------------- /data/load_base_mur_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/load_base_mur_data.sql -------------------------------------------------------------------------------- /data/migrations/V0000.1__create_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0000.1__create_roles.sql -------------------------------------------------------------------------------- /data/migrations/V0001__schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0001__schemas.sql -------------------------------------------------------------------------------- /data/migrations/V0002__extensions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0002__extensions.sql -------------------------------------------------------------------------------- /data/migrations/V0003__disclosure_schema_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0003__disclosure_schema_functions.sql -------------------------------------------------------------------------------- /data/migrations/V0004__public_schema_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0004__public_schema_functions.sql -------------------------------------------------------------------------------- /data/migrations/V0005__real_efile_schema_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0005__real_efile_schema_functions.sql -------------------------------------------------------------------------------- /data/migrations/V0006__real_pfile_schema_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0006__real_pfile_schema_functions.sql -------------------------------------------------------------------------------- /data/migrations/V0007__aouser_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0007__aouser_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0008__auditsearch_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0008__auditsearch_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0009__disclosure_cand_valid_fec_yr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0009__disclosure_cand_valid_fec_yr.sql -------------------------------------------------------------------------------- /data/migrations/V0010__auditsearch_cand_audit_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0010__auditsearch_cand_audit_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0011__disclosure_cmte_valid_fec_yr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0011__disclosure_cmte_valid_fec_yr.sql -------------------------------------------------------------------------------- /data/migrations/V0012__auditsearch_cmte_audit_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0012__auditsearch_cmte_audit_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0013__disclosure_cand_cmte_linkage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0013__disclosure_cand_cmte_linkage.sql -------------------------------------------------------------------------------- /data/migrations/V0014__public_sequences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0014__public_sequences.sql -------------------------------------------------------------------------------- /data/migrations/V0015__disclosure_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0015__disclosure_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0016__rad_pri_user_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0016__rad_pri_user_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0017__disclosure_rad_active_analyst_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0017__disclosure_rad_active_analyst_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0018__rad_pri_user_rad_assgn_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0018__rad_pri_user_rad_assgn_table.sql -------------------------------------------------------------------------------- /data/migrations/V0019__disclosure_rad_cmte_analyst_search_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0019__disclosure_rad_cmte_analyst_search_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0020__fecapp_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0020__fecapp_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0021__fecmur_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0021__fecmur_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0022__public_checkpointtable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0022__public_checkpointtable.sql -------------------------------------------------------------------------------- /data/migrations/V0023__real_efile_reps_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0023__real_efile_reps_table.sql -------------------------------------------------------------------------------- /data/migrations/V0024__public_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0024__public_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0025__staging_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0025__staging_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0026__more_public_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0026__more_public_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0027.1__public_real_efile_f3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0027.1__public_real_efile_f3.sql -------------------------------------------------------------------------------- /data/migrations/V0027__real_efile_f3_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0027__real_efile_f3_table.sql -------------------------------------------------------------------------------- /data/migrations/V0028.1__public_real_efile_f3p.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0028.1__public_real_efile_f3p.sql -------------------------------------------------------------------------------- /data/migrations/V0028__real_efile_f3p.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0028__real_efile_f3p.sql -------------------------------------------------------------------------------- /data/migrations/V0029.1__more_public_real_efile_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0029.1__more_public_real_efile_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0029__more_real_efile_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0029__more_real_efile_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0030__more_real_efile_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0030__more_real_efile_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0031__real_pfile_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0031__real_pfile_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0032__rohan_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0032__rohan_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0033__more_staging_schema_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0033__more_staging_schema_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0034__indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0034__indexes.sql -------------------------------------------------------------------------------- /data/migrations/V0035__triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0035__triggers.sql -------------------------------------------------------------------------------- /data/migrations/V0036__defaults.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0036__defaults.sql -------------------------------------------------------------------------------- /data/migrations/V0037__constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0037__constraints.sql -------------------------------------------------------------------------------- /data/migrations/V0038__permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0038__permissions.sql -------------------------------------------------------------------------------- /data/migrations/V0039.1__ofec_sched_a_aggregate_state_recipient_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0039.1__ofec_sched_a_aggregate_state_recipient_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0039__states_and_zips_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0039__states_and_zips_data.sql -------------------------------------------------------------------------------- /data/migrations/V0040__omnibus_dates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0040__omnibus_dates.sql -------------------------------------------------------------------------------- /data/migrations/V0041__large_aggregates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0041__large_aggregates.sql -------------------------------------------------------------------------------- /data/migrations/V0043.1__calendar_permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0043.1__calendar_permissions.sql -------------------------------------------------------------------------------- /data/migrations/V0043__fecapp_calendar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0043__fecapp_calendar.sql -------------------------------------------------------------------------------- /data/migrations/V0044__auditsearch_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0044__auditsearch_view.sql -------------------------------------------------------------------------------- /data/migrations/V0045.1__public_auditsearch_grant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0045.1__public_auditsearch_grant.sql -------------------------------------------------------------------------------- /data/migrations/V0045__public_auditsearch_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0045__public_auditsearch_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0046__alter_aggregate_tables_index_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0046__alter_aggregate_tables_index_name.sql -------------------------------------------------------------------------------- /data/migrations/V0047__alter_ofec_sched_a_aggregate_state_recipient_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0047__alter_ofec_sched_a_aggregate_state_recipient_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0048__alter_ofec_sched_a_aggregate_size_merged_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0048__alter_ofec_sched_a_aggregate_size_merged_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0049__replace_elections_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0049__replace_elections_list.sql -------------------------------------------------------------------------------- /data/migrations/V0050__add_ref_zip_to_district.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0050__add_ref_zip_to_district.sql -------------------------------------------------------------------------------- /data/migrations/V0051__alter_ofec_elections_list_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0051__alter_ofec_elections_list_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0052__alter_ofec_elections_list_mv_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0052__alter_ofec_elections_list_mv_2.sql -------------------------------------------------------------------------------- /data/migrations/V0053__add_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0053__add_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0054__copy_ofec_sched_a_aggregate_state_recipient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0054__copy_ofec_sched_a_aggregate_state_recipient.sql -------------------------------------------------------------------------------- /data/migrations/V0055__add_expression_based_index_for_sched_b_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0055__add_expression_based_index_for_sched_b_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0056__public_auditsearch_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0056__public_auditsearch_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0057__drop_old_aggregate_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0057__drop_old_aggregate_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0058__create_fecapp_trc_st_elect_office.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0058__create_fecapp_trc_st_elect_office.sql -------------------------------------------------------------------------------- /data/migrations/V0059.1__public_audit_case_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0059.1__public_audit_case_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0059.2__temp_ofec_candidate_flag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0059.2__temp_ofec_candidate_flag.sql -------------------------------------------------------------------------------- /data/migrations/V0059__rename_ofec_candidate_flag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0059__rename_ofec_candidate_flag.sql -------------------------------------------------------------------------------- /data/migrations/V0060__add_remaining_schedule_b_coalesce_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0060__add_remaining_schedule_b_coalesce_indexes.sql -------------------------------------------------------------------------------- /data/migrations/V0061__refine_audit_case_mv_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0061__refine_audit_case_mv_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0062__change_audit_case_mv_na_cand_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0062__change_audit_case_mv_na_cand_name.sql -------------------------------------------------------------------------------- /data/migrations/V0063__filings_add_request_type_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0063__filings_add_request_type_idx.sql -------------------------------------------------------------------------------- /data/migrations/V0064__schedule_f_add_cycle_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0064__schedule_f_add_cycle_idx.sql -------------------------------------------------------------------------------- /data/migrations/V0065__add_missing_permission.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0065__add_missing_permission.sql -------------------------------------------------------------------------------- /data/migrations/V0067__filter_mur_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0067__filter_mur_view.sql -------------------------------------------------------------------------------- /data/migrations/V0068__add_sched_a_zip_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0068__add_sched_a_zip_indexes.sql -------------------------------------------------------------------------------- /data/migrations/V0069__remove_ofec_candidate_flag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0069__remove_ofec_candidate_flag.sql -------------------------------------------------------------------------------- /data/migrations/V0070__alter_table_fec_fitem_sched_b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0070__alter_table_fec_fitem_sched_b.sql -------------------------------------------------------------------------------- /data/migrations/V0071__update_ofec_totals_candidate_committees_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0071__update_ofec_totals_candidate_committees_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0072__update_ofec_sched_e_related_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0072__update_ofec_sched_e_related_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0073__update_ofec_committee_fulltext_and_candidate_fulltext_mvs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0073__update_ofec_committee_fulltext_and_candidate_fulltext_mvs.sql -------------------------------------------------------------------------------- /data/migrations/V0074__alter_table_fec_fitem_sched_a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0074__alter_table_fec_fitem_sched_a.sql -------------------------------------------------------------------------------- /data/migrations/V0075__add_efile_raw_table_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0075__add_efile_raw_table_indexes.sql -------------------------------------------------------------------------------- /data/migrations/V0076__add_ofec_candidate_totals_with_0s_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0076__add_ofec_candidate_totals_with_0s_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0077__add_cmte_type_audit_case.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0077__add_cmte_type_audit_case.sql -------------------------------------------------------------------------------- /data/migrations/V0078__add_trc_election_result.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0078__add_trc_election_result.sql -------------------------------------------------------------------------------- /data/migrations/V0079__add_indexes_on_fec_fitem_sched_b_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0079__add_indexes_on_fec_fitem_sched_b_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0080__audit_committee_fulltext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0080__audit_committee_fulltext.sql -------------------------------------------------------------------------------- /data/migrations/V0081.1__add_column_to_ofec_report_pac_party_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0081.1__add_column_to_ofec_report_pac_party_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0081__add_ofec_report_pac_party_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0081__add_ofec_report_pac_party_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0082__add_indexes_on_fec_fitem_sched_a_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0082__add_indexes_on_fec_fitem_sched_a_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0083__fix_ofec_sched_a_aggregate_state_recipient_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0083__fix_ofec_sched_a_aggregate_state_recipient_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0084__add_table_entity_chart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0084__add_table_entity_chart.sql -------------------------------------------------------------------------------- /data/migrations/V0085__fix_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0085__fix_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0086__add_future_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0086__add_future_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0091__drop_ofec_sched_b_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0091__drop_ofec_sched_b_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0092__drop_ofec_election_result_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0092__drop_ofec_election_result_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0093__operations_log_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0093__operations_log_view.sql -------------------------------------------------------------------------------- /data/migrations/V0094__add_ofec_agg_coverage_date_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0094__add_ofec_agg_coverage_date_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0095__add_entity_chart_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0095__add_entity_chart_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0096__drop_ofec_sched_a_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0096__drop_ofec_sched_a_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0097__add_ofec_sched_e_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0097__add_ofec_sched_e_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0098__update_ofec_agg_coverage_date_mv_logic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0098__update_ofec_agg_coverage_date_mv_logic.sql -------------------------------------------------------------------------------- /data/migrations/V0099__modify_candidate_committee_totals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0099__modify_candidate_committee_totals.sql -------------------------------------------------------------------------------- /data/migrations/V0100__add_ofec_sched_a_agg_state_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0100__add_ofec_sched_a_agg_state_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0101__add_column_orig_amndt_dt_to_form_9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0101__add_column_orig_amndt_dt_to_form_9.sql -------------------------------------------------------------------------------- /data/migrations/V0102__drop_ofec_rad_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0102__drop_ofec_rad_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0103__fix_ofec_rad_analyst_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0103__fix_ofec_rad_analyst_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0104__update_ofec_sched_e_mv_add_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0104__update_ofec_sched_e_mv_add_columns.sql -------------------------------------------------------------------------------- /data/migrations/V0105__add_adr_af.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0105__add_adr_af.sql -------------------------------------------------------------------------------- /data/migrations/V0106__create_views_for_every_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0106__create_views_for_every_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0107__fix_processed_amendment_chain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0107__fix_processed_amendment_chain.sql -------------------------------------------------------------------------------- /data/migrations/V0108__drop_ofec_entity_chart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0108__drop_ofec_entity_chart.sql -------------------------------------------------------------------------------- /data/migrations/V0109__add_more_form_type_to_rpt_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0109__add_more_form_type_to_rpt_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0110__Include_F13_F4_in_ofec_totals_pacs_parties_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0110__Include_F13_F4_in_ofec_totals_pacs_parties_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0111__add_cmte_tp_to_fec_fitem_sched_a_b_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0111__add_cmte_tp_to_fec_fitem_sched_a_b_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0112__add_amndt_ind_prev_file_num_to_ofec_sched_e_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0112__add_amndt_ind_prev_file_num_to_ofec_sched_e_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0113__remove_ofec_totals_pacs_and_totals_parties_mvs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0113__remove_ofec_totals_pacs_and_totals_parties_mvs.sql -------------------------------------------------------------------------------- /data/migrations/V0114__add_memo_agg_to_sched_b_agg_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0114__add_memo_agg_to_sched_b_agg_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0115__add_form_4_summary_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0115__add_form_4_summary_fields.sql -------------------------------------------------------------------------------- /data/migrations/V0116__add_amndt_number_to_ofec_sched_e_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0116__add_amndt_number_to_ofec_sched_e_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0117__update_ofec_filings_all_mv_rm_redundent_RFAI_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0117__update_ofec_filings_all_mv_rm_redundent_RFAI_data.sql -------------------------------------------------------------------------------- /data/migrations/V0118__drop_original_sb_agg_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0118__drop_original_sb_agg_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0119__update_sched_c_d_e_f_and_related_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0119__update_sched_c_d_e_f_and_related_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0120__update_ofec_sched_e_mv_s_o_ind_handling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0120__update_ofec_sched_e_mv_s_o_ind_handling.sql -------------------------------------------------------------------------------- /data/migrations/V0121__fix_cand_cmte_totals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0121__fix_cand_cmte_totals.sql -------------------------------------------------------------------------------- /data/migrations/V0122__drop_unused_sched_c_e_f_and_related_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0122__drop_unused_sched_c_e_f_and_related_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0123__ofec_totals_combined_mv_update_op_exp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0123__ofec_totals_combined_mv_update_op_exp.sql -------------------------------------------------------------------------------- /data/migrations/V0124__ofec_candidate_history_mv_update_cand_inactive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0124__ofec_candidate_history_mv_update_cand_inactive.sql -------------------------------------------------------------------------------- /data/migrations/V0125__ofec_totals_combined_mv_ttl_fed_disb_null.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0125__ofec_totals_combined_mv_ttl_fed_disb_null.sql -------------------------------------------------------------------------------- /data/migrations/V0126__ofec_candidate_totals_mv_coh.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0126__ofec_candidate_totals_mv_coh.sql -------------------------------------------------------------------------------- /data/migrations/V0127__ofec_committee_totals_per_cycle_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0127__ofec_committee_totals_per_cycle_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0128__cand_totals_add_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0128__cand_totals_add_columns.sql -------------------------------------------------------------------------------- /data/migrations/V0129__add_fec_fitem_sched_ab_2019_2020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0129__add_fec_fitem_sched_ab_2019_2020.sql -------------------------------------------------------------------------------- /data/migrations/V0130__add_published_flg_to_fecmur_case.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0130__add_published_flg_to_fecmur_case.sql -------------------------------------------------------------------------------- /data/migrations/V0131__ofec_cand_cmte_linkage_mv_add_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0131__ofec_cand_cmte_linkage_mv_add_column.sql -------------------------------------------------------------------------------- /data/migrations/V0132__ofec_cand_totals_mv_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0132__ofec_cand_totals_mv_update.sql -------------------------------------------------------------------------------- /data/migrations/V0133__fix_ofec_cand_cmte_linkage_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0133__fix_ofec_cand_cmte_linkage_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0134__ofec_totals_combined_mv_exclude_sl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0134__ofec_totals_combined_mv_exclude_sl.sql -------------------------------------------------------------------------------- /data/migrations/V0135__ofec_candidate_history_mv_update_cand_election_yr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0135__ofec_candidate_history_mv_update_cand_election_yr.sql -------------------------------------------------------------------------------- /data/migrations/V0136__ofec_cand_cmte_linkage_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0136__ofec_cand_cmte_linkage_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0137__ofec_candidate_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0137__ofec_candidate_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0138__ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0138__ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0139__ofec_candidate_details_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0139__ofec_candidate_details_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0140__fix_cand_election.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0140__fix_cand_election.sql -------------------------------------------------------------------------------- /data/migrations/V0141__ofec_candidate_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0141__ofec_candidate_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0142__update_to_tsvector_function_over_all_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0142__update_to_tsvector_function_over_all_columns.sql -------------------------------------------------------------------------------- /data/migrations/V0143__break_dependencies_on_committee_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0143__break_dependencies_on_committee_history.sql -------------------------------------------------------------------------------- /data/migrations/V0144__add_affiliated_committee_to_committee_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0144__add_affiliated_committee_to_committee_history.sql -------------------------------------------------------------------------------- /data/migrations/V0145__real_efile_se_f57_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0145__real_efile_se_f57_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0146__ofec_report_presidential_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0146__ofec_report_presidential_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0147__ofec_report_house_senate_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0147__ofec_report_house_senate_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0148__ofec_report_pac_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0148__ofec_report_pac_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0149__add_extension_unaccent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0149__add_extension_unaccent.sql -------------------------------------------------------------------------------- /data/migrations/V0150__add_org_tp_cmte_dsgn_columns_to_sched_a_b_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0150__add_org_tp_cmte_dsgn_columns_to_sched_a_b_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0151__define_parse_fulltext_for_tsvector_accents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0151__define_parse_fulltext_for_tsvector_accents.sql -------------------------------------------------------------------------------- /data/migrations/V0152__update_parse_fulltext_for_tsvector_function_over_all_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0152__update_parse_fulltext_for_tsvector_function_over_all_columns.sql -------------------------------------------------------------------------------- /data/migrations/V0153__drop_unused_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0153__drop_unused_objects.sql -------------------------------------------------------------------------------- /data/migrations/V0154__add_cand_fulltxt_tsvector_column_real_efile_se_f57_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0154__add_cand_fulltxt_tsvector_column_real_efile_se_f57_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0155__ofec_candidate_history_mv_add_filter_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0155__ofec_candidate_history_mv_add_filter_columns.sql -------------------------------------------------------------------------------- /data/migrations/V0156__ofec_agg_coverage_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0156__ofec_agg_coverage_date.sql -------------------------------------------------------------------------------- /data/migrations/V0157__create_candidate_totals_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0157__create_candidate_totals_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0158__ofec_cand_cmte_linkage_mv_exclude_leadership_PAC.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0158__ofec_cand_cmte_linkage_mv_exclude_leadership_PAC.sql -------------------------------------------------------------------------------- /data/migrations/V0159__ofec_candidate_totals_mv_include_all_F3_F3P_F3X_exclude_non_candidate_cmtes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0159__ofec_candidate_totals_mv_include_all_F3_F3P_F3X_exclude_non_candidate_cmtes.sql -------------------------------------------------------------------------------- /data/migrations/V0160__ofec_totals_house_senate_mv_include_all_F3_F3P_F3X_exclude_non_H_S_candidate_cmtes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0160__ofec_totals_house_senate_mv_include_all_F3_F3P_F3X_exclude_non_H_S_candidate_cmtes.sql -------------------------------------------------------------------------------- /data/migrations/V0161__ofec_communication_cost_mv_replace_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0161__ofec_communication_cost_mv_replace_source.sql -------------------------------------------------------------------------------- /data/migrations/V0162__drop_fec_vsum_sched_vws.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0162__drop_fec_vsum_sched_vws.sql -------------------------------------------------------------------------------- /data/migrations/V0163__ofec_reports_ie_only_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0163__ofec_reports_ie_only_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0164__correct_views_with_column_data_type_unknown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0164__correct_views_with_column_data_type_unknown.sql -------------------------------------------------------------------------------- /data/migrations/V0165__ofec_sched_a_agg_state_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0165__ofec_sched_a_agg_state_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0166__create_ofec_non_financial_amendment_chain_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0166__create_ofec_non_financial_amendment_chain_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0167__ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0167__ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0168__add_filing_type_to_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0168__add_filing_type_to_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0169__add_cycles_has_reports_to_ofec_committee_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0169__add_cycles_has_reports_to_ofec_committee_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0170__ofec_sched_e_mv_add_filing_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0170__ofec_sched_e_mv_add_filing_date.sql -------------------------------------------------------------------------------- /data/migrations/V0171__drop_ofec_totals_candidate_committees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0171__drop_ofec_totals_candidate_committees.sql -------------------------------------------------------------------------------- /data/migrations/V0172__remove_left_join_ofec_candidate_totals_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0172__remove_left_join_ofec_candidate_totals_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0173__add_most_recent_to_ofec_sched_e_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0173__add_most_recent_to_ofec_sched_e_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0174__add_tsvector_trigger_to_sa7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0174__add_tsvector_trigger_to_sa7.sql -------------------------------------------------------------------------------- /data/migrations/V0175__update_real_efile_se_f57_vw_cand_fulltxt_tsvector_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0175__update_real_efile_se_f57_vw_cand_fulltxt_tsvector_column.sql -------------------------------------------------------------------------------- /data/migrations/V0176__remove_null_from_ofec_committee_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0176__remove_null_from_ofec_committee_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0177__add_filing_form_real_efile_se_f57_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0177__add_filing_form_real_efile_se_f57_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0178__add_candid_to_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0178__add_candid_to_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0179__update_ofec_candidate_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0179__update_ofec_candidate_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0180__add_PRES_2016_2020_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0180__add_PRES_2016_2020_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0181__update_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0181__update_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0182__add_ofec_presidential_by_candidate_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0182__add_ofec_presidential_by_candidate_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0183__add_ofec_presidential_by_state_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0183__add_ofec_presidential_by_state_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0184__add_ofec_presidential_summary_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0184__add_ofec_presidential_summary_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0185__add_ofec_presidential_by_size_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0185__add_ofec_presidential_by_size_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0186__add_ofec_presidential_coverage_date_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0186__add_ofec_presidential_coverage_date_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0187__add_F24_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0187__add_F24_version.sql -------------------------------------------------------------------------------- /data/migrations/V0188__ofec_totals_pac_party_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0188__ofec_totals_pac_party_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0189__ofec_candidate_totals_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0189__ofec_candidate_totals_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0190__ofec_totals_pac_party_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0190__ofec_totals_pac_party_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0191__drop_ofec_totals_pacs_parties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0191__drop_ofec_totals_pacs_parties.sql -------------------------------------------------------------------------------- /data/migrations/V0192__add_pg_date_column_to_presidential_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0192__add_pg_date_column_to_presidential_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0193__add_is_active_ofec_committee_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0193__add_is_active_ofec_committee_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0194__ofec_filings_amendments_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0194__ofec_filings_amendments_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0195__include_new_transaction_code_to_individual.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0195__include_new_transaction_code_to_individual.sql -------------------------------------------------------------------------------- /data/migrations/V0196__add_is_active_ofec_committee_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0196__add_is_active_ofec_committee_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0197__add_is_active_ofec_committee_fulltext_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0197__add_is_active_ofec_committee_fulltext_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0198__add_index_sa7_sb4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0198__add_index_sa7_sb4.sql -------------------------------------------------------------------------------- /data/migrations/V0199__add_idx_sched_a_cmte_id_dt_sub_id_desc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0199__add_idx_sched_a_cmte_id_dt_sub_id_desc.sql -------------------------------------------------------------------------------- /data/migrations/V0200__add_index_on_pg_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0200__add_index_on_pg_date.sql -------------------------------------------------------------------------------- /data/migrations/V0201__add_index_on_is_individual_contbr_city_state.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0201__add_index_on_is_individual_contbr_city_state.sql -------------------------------------------------------------------------------- /data/migrations/V0202__rename_column_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0202__rename_column_name.sql -------------------------------------------------------------------------------- /data/migrations/V0203__ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0203__ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0204__ofec_totals_combined_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0204__ofec_totals_combined_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0205__tres_nm_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0205__tres_nm_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0206__add_mur_arch_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0206__add_mur_arch_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0207__drop_ofec_filings_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0207__drop_ofec_filings_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0208__add_sche_b_disb_dt_sub_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0208__add_sche_b_disb_dt_sub_id.sql -------------------------------------------------------------------------------- /data/migrations/V0209__add_sche_b_cmte_id_cmte_id_disb_dt_sub_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0209__add_sche_b_cmte_id_cmte_id_disb_dt_sub_id.sql -------------------------------------------------------------------------------- /data/migrations/V0210__add_mur_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0210__add_mur_name.sql -------------------------------------------------------------------------------- /data/migrations/V0211__ofec_totals_house_senate_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0211__ofec_totals_house_senate_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0212__add_DIM_CMTE_IE_INF_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0212__add_DIM_CMTE_IE_INF_table.sql -------------------------------------------------------------------------------- /data/migrations/V0213__add_leadership_pac_linkage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0213__add_leadership_pac_linkage.sql -------------------------------------------------------------------------------- /data/migrations/V0214__add_ofec_pcc_conversion_exclude.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0214__add_ofec_pcc_conversion_exclude.sql -------------------------------------------------------------------------------- /data/migrations/V0215__add_ofec_pcc_to_non_pcc_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0215__add_ofec_pcc_to_non_pcc_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0216__add_sponsor_id_ofec_committee_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0216__add_sponsor_id_ofec_committee_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0217__add_sponsor_id_ofec_committee_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0217__add_sponsor_id_ofec_committee_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0218__ofec_committee_history_mv_add_pcc_to_pac_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0218__ofec_committee_history_mv_add_pcc_to_pac_info.sql -------------------------------------------------------------------------------- /data/migrations/V0219__update_docquery_https.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0219__update_docquery_https.sql -------------------------------------------------------------------------------- /data/migrations/V0220__add_ofec_committee_bank_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0220__add_ofec_committee_bank_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0221__bank_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0221__bank_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0222__add_index_idx_ofec_totals_combined_mv_cmte_id_cycle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0222__add_index_idx_ofec_totals_combined_mv_cmte_id_cycle.sql -------------------------------------------------------------------------------- /data/migrations/V0223__update_report_pdf_url_or_null.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0223__update_report_pdf_url_or_null.sql -------------------------------------------------------------------------------- /data/migrations/V0224__ofec_filings_all_mv_pdfurl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0224__ofec_filings_all_mv_pdfurl.sql -------------------------------------------------------------------------------- /data/migrations/V0225__add_fec_fitem_sched_ab_2021_2022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0225__add_fec_fitem_sched_ab_2021_2022.sql -------------------------------------------------------------------------------- /data/migrations/V0226__modify_report_pdf_url_or_null.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0226__modify_report_pdf_url_or_null.sql -------------------------------------------------------------------------------- /data/migrations/V0227__modify_report_fec_url.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0227__modify_report_fec_url.sql -------------------------------------------------------------------------------- /data/migrations/V0228__modify_ofec_totals_combined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0228__modify_ofec_totals_combined.sql -------------------------------------------------------------------------------- /data/migrations/V0229__add_ofec_pac_sponsor_candidate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0229__add_ofec_pac_sponsor_candidate.sql -------------------------------------------------------------------------------- /data/migrations/V0230__create_table_af_case_disposition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0230__create_table_af_case_disposition.sql -------------------------------------------------------------------------------- /data/migrations/V0231__create_af_number_rad_civil_pnlty_updt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0231__create_af_number_rad_civil_pnlty_updt.sql -------------------------------------------------------------------------------- /data/migrations/V0232__add_totals_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0232__add_totals_fields.sql -------------------------------------------------------------------------------- /data/migrations/V0233__add_sponsors_and_org_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0233__add_sponsors_and_org_type.sql -------------------------------------------------------------------------------- /data/migrations/V0234__add_ofec_pac_sponsor_candidate_list_per_cycle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0234__add_ofec_pac_sponsor_candidate_list_per_cycle.sql -------------------------------------------------------------------------------- /data/migrations/V0235__first_f1_ofec_committee_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0235__first_f1_ofec_committee_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0236__add_first_f1_date_ofec_total_combined_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0236__add_first_f1_date_ofec_total_combined_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0237__add_first_f1_date_ofec_totals_house_senate_ie_only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0237__add_first_f1_date_ofec_totals_house_senate_ie_only.sql -------------------------------------------------------------------------------- /data/migrations/V0238__add_first_f1_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0238__add_first_f1_index.sql -------------------------------------------------------------------------------- /data/migrations/V0239__ofec_sched_b_aggregate_recipient_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0239__ofec_sched_b_aggregate_recipient_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0240__modify_function_expand_document.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0240__modify_function_expand_document.sql -------------------------------------------------------------------------------- /data/migrations/V0241__idx_ofec_sched_b_aggregate_recipient_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0241__idx_ofec_sched_b_aggregate_recipient_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0242__add_3_columns_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0242__add_3_columns_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0243__fix_columns_name_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0243__fix_columns_name_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0244__modify_committee_type_function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0244__modify_committee_type_function.sql -------------------------------------------------------------------------------- /data/migrations/V0245__add_state_district_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0245__add_state_district_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0246__add_PK_to_dsc_sched_aggregate_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0246__add_PK_to_dsc_sched_aggregate_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0247__modify_expand_committee_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0247__modify_expand_committee_type.sql -------------------------------------------------------------------------------- /data/migrations/V0248__add_columns_to_real_efile_pfile_F1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0248__add_columns_to_real_efile_pfile_F1.sql -------------------------------------------------------------------------------- /data/migrations/V0249__add_function_get_committee_label.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0249__add_function_get_committee_label.sql -------------------------------------------------------------------------------- /data/migrations/V0250__add_committee_label_ofec_committee_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0250__add_committee_label_ofec_committee_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0251__ofec_filings_all_mv_add_filer_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0251__ofec_filings_all_mv_add_filer_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0252__ofec_report_presidential_mv_add_filer_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0252__ofec_report_presidential_mv_add_filer_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0253__ofec_report_house_senate_mv_add_filer_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0253__ofec_report_house_senate_mv_add_filer_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0254__ofec_report_pac_party_mv_add_filer_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0254__ofec_report_pac_party_mv_add_filer_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0255__ofec_sched_e_mv_add_spender_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0255__ofec_sched_e_mv_add_spender_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0256__fix_duplicate_indexes_on_real_efile_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0256__fix_duplicate_indexes_on_real_efile_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0257__ofec_filings_all_mv_add_cmteid_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0257__ofec_filings_all_mv_add_cmteid_text.sql -------------------------------------------------------------------------------- /data/migrations/V0258__ofec_report_presidential_mv_add_cmteid_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0258__ofec_report_presidential_mv_add_cmteid_text.sql -------------------------------------------------------------------------------- /data/migrations/V0259__ofec_report_house_senate_mv_add_cmteid_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0259__ofec_report_house_senate_mv_add_cmteid_text.sql -------------------------------------------------------------------------------- /data/migrations/V0260__ofec_report_pac_party_mv_add_cmteid_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0260__ofec_report_pac_party_mv_add_cmteid_text.sql -------------------------------------------------------------------------------- /data/migrations/V0261__ofec_sched_e_mv_add_spender_id_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0261__ofec_sched_e_mv_add_spender_id_text.sql -------------------------------------------------------------------------------- /data/migrations/V0262__ofec_sched_e_mv_add_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0262__ofec_sched_e_mv_add_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0263__ofec_reports_ie_only_mv_add_filer_name_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0263__ofec_reports_ie_only_mv_add_filer_name_text.sql -------------------------------------------------------------------------------- /data/migrations/V0264__ofec_reports_ie_only_mv_add_committee_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0264__ofec_reports_ie_only_mv_add_committee_name.sql -------------------------------------------------------------------------------- /data/migrations/V0265__add_state_full_ofec_candidate_totals_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0265__add_state_full_ofec_candidate_totals_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0266__add_totals_inaugural_donations_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0266__add_totals_inaugural_donations_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0267__add_presidential_2024_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0267__add_presidential_2024_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0268__update_presidential_views_to_include_2024_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0268__update_presidential_views_to_include_2024_data.sql -------------------------------------------------------------------------------- /data/migrations/V0269__ofec_sched_e_mv_add_exp_purpose.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0269__ofec_sched_e_mv_add_exp_purpose.sql -------------------------------------------------------------------------------- /data/migrations/V0270__add_fec_fitem_sched_ab_2023_2024.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0270__add_fec_fitem_sched_ab_2023_2024.sql -------------------------------------------------------------------------------- /data/migrations/V0271__h4_mv_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0271__h4_mv_create.sql -------------------------------------------------------------------------------- /data/migrations/V0272__add_ofec_schedule_d_report.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0272__add_ofec_schedule_d_report.sql -------------------------------------------------------------------------------- /data/migrations/V0273__ofec_filings_all_mv_add_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0273__ofec_filings_all_mv_add_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0274__ofec_reports_presidential_mv_add_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0274__ofec_reports_presidential_mv_add_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0275__ofec_reports_house_senate_mv_add_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0275__ofec_reports_house_senate_mv_add_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0276__ofec_reports_pac_party_mv_add_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0276__ofec_reports_pac_party_mv_add_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0277__ofec_filings_all_mv_fix_coalesce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0277__ofec_filings_all_mv_fix_coalesce.sql -------------------------------------------------------------------------------- /data/migrations/V0278__add_pdfurl_to_h4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0278__add_pdfurl_to_h4.sql -------------------------------------------------------------------------------- /data/migrations/V0279__add_presidential_2008_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0279__add_presidential_2008_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0280__add_presidential_2012_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0280__add_presidential_2012_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0281__update_presidential_views_to_include_2008_2012_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0281__update_presidential_views_to_include_2008_2012_data.sql -------------------------------------------------------------------------------- /data/migrations/V0282__add_sched_d_line_num_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0282__add_sched_d_line_num_index.sql -------------------------------------------------------------------------------- /data/migrations/V0283__add_sched_d_filters_rm_nulls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0283__add_sched_d_filters_rm_nulls.sql -------------------------------------------------------------------------------- /data/migrations/V0284__increase_size_pres_nml_b_disb_desc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0284__increase_size_pres_nml_b_disb_desc.sql -------------------------------------------------------------------------------- /data/migrations/V0285__fec_vsum_f1_f1z_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0285__fec_vsum_f1_f1z_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0286__rename_column_ofec_pacronyms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0286__rename_column_ofec_pacronyms.sql -------------------------------------------------------------------------------- /data/migrations/V0287__add_candidate_firstlast_name_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0287__add_candidate_firstlast_name_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0288__add_parsed_name_ofec_candidate_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0288__add_parsed_name_ofec_candidate_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0289__last_file_ofec_committee_detail_history_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0289__last_file_ofec_committee_detail_history_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0290__add_ofec_sched_a_nat_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0290__add_ofec_sched_a_nat_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0291__add_ofec_sched_b_nat_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0291__add_ofec_sched_b_nat_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0292__add_ofec_sched_a_aggregate_employer_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0292__add_ofec_sched_a_aggregate_employer_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0293__add_ofec_sched_a_aggregate_occupation_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0293__add_ofec_sched_a_aggregate_occupation_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0294__recpnt_nm_text_ofec_sched_b_aggregate_recipient_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0294__recpnt_nm_text_ofec_sched_b_aggregate_recipient_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0295__refactor_ofec_sched_a_nat_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0295__refactor_ofec_sched_a_nat_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0296__refactor_ofec_sched_b_nat_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0296__refactor_ofec_sched_b_nat_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0297__add_ofec_totals_national_party_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0297__add_ofec_totals_national_party_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0298__remove_line_num_npa_sa_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0298__remove_line_num_npa_sa_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0299__remove_line_num_npa_sb_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0299__remove_line_num_npa_sb_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0300__update_contbr_name_text_npa_sa.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0300__update_contbr_name_text_npa_sa.sql -------------------------------------------------------------------------------- /data/migrations/V0301__update_recipient_name_text_npa_sb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0301__update_recipient_name_text_npa_sb.sql -------------------------------------------------------------------------------- /data/migrations/V0302__add_test_efile_schema_and_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0302__add_test_efile_schema_and_table.sql -------------------------------------------------------------------------------- /data/migrations/V0303__add_disbursement_dt_sched_e.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0303__add_disbursement_dt_sched_e.sql -------------------------------------------------------------------------------- /data/migrations/V0304__add_arch_curent_mur_sorting_vw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0304__add_arch_curent_mur_sorting_vw.sql -------------------------------------------------------------------------------- /data/migrations/V0305__add_ref_case_disposition_category.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0305__add_ref_case_disposition_category.sql -------------------------------------------------------------------------------- /data/migrations/V0306__update_form_category_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0306__update_form_category_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0307__add_fec_fitem_sched_ab_2025_2026.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0307__add_fec_fitem_sched_ab_2025_2026.sql -------------------------------------------------------------------------------- /data/migrations/V0308__add_parsed_name_candidate_detail_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0308__add_parsed_name_candidate_detail_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0309__add_published_flg_to_aouser_ao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0309__add_published_flg_to_aouser_ao.sql -------------------------------------------------------------------------------- /data/migrations/V0310__refactor_file_num_join_ofec_filings_all_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0310__refactor_file_num_join_ofec_filings_all_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0311__add_fosers_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0311__add_fosers_tables.sql -------------------------------------------------------------------------------- /data/migrations/V0312__add_rm_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0312__add_rm_views.sql -------------------------------------------------------------------------------- /data/migrations/V0313__add_contents_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0313__add_contents_column.sql -------------------------------------------------------------------------------- /data/migrations/V0314__create_form_56_mv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0314__create_form_56_mv.sql -------------------------------------------------------------------------------- /data/migrations/V0315__ofec_filings_all_mv_add_f3l.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/migrations/V0315__ofec_filings_all_mv_add_f3l.sql -------------------------------------------------------------------------------- /data/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/notes.md -------------------------------------------------------------------------------- /data/refresh_materialized_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/refresh_materialized_views.sql -------------------------------------------------------------------------------- /data/rename_temporary_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/rename_temporary_views.sql -------------------------------------------------------------------------------- /data/sample_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/sample_db.sql -------------------------------------------------------------------------------- /data/subset-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/data/subset-config.json -------------------------------------------------------------------------------- /endpoints_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/endpoints_walk.py -------------------------------------------------------------------------------- /jdbc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/jdbc_utils.py -------------------------------------------------------------------------------- /locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/locustfile.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manage.py -------------------------------------------------------------------------------- /manifests/manifest_api_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_api_dev.yml -------------------------------------------------------------------------------- /manifests/manifest_api_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_api_feature.yml -------------------------------------------------------------------------------- /manifests/manifest_api_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_api_prod.yml -------------------------------------------------------------------------------- /manifests/manifest_api_stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_api_stage.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_beat_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_beat_dev.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_beat_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_beat_feature.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_beat_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_beat_prod.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_beat_stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_beat_stage.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_worker_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_worker_dev.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_worker_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_worker_feature.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_worker_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_worker_prod.yml -------------------------------------------------------------------------------- /manifests/manifest_celery_worker_stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_celery_worker_stage.yml -------------------------------------------------------------------------------- /manifests/manifest_task_dev.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_task_dev.yml.template -------------------------------------------------------------------------------- /manifests/manifest_task_feature.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_task_feature.yml.template -------------------------------------------------------------------------------- /manifests/manifest_task_prod.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_task_prod.yml.template -------------------------------------------------------------------------------- /manifests/manifest_task_stage.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/manifests/manifest_task_stage.yml.template -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.x 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/index.js -------------------------------------------------------------------------------- /src/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/public/index.html -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/server.js -------------------------------------------------------------------------------- /src/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/css/custom.css -------------------------------------------------------------------------------- /src/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/css/styles.css -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bold.eot -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bold.woff -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bolditalic.eot -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bolditalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bolditalic.woff -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-bolditalic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-italic.eot -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-italic.woff -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-regular.eot -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/gandhiserif-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/gandhiserif-regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/karla-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-bold.eot -------------------------------------------------------------------------------- /src/static/fonts/karla-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/karla-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-bold.woff -------------------------------------------------------------------------------- /src/static/fonts/karla-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/karla-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-regular.eot -------------------------------------------------------------------------------- /src/static/fonts/karla-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/karla-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/karla-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/fonts/karla-regular.woff2 -------------------------------------------------------------------------------- /src/static/img/beta-fec-fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/beta-fec-fb.png -------------------------------------------------------------------------------- /src/static/img/beta-fec-tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/beta-fec-tw.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/static/img/favicon/data/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/data/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /src/static/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /src/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/static/img/favicon/general/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/general/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/static/img/favicon/help/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/help/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/static/img/favicon/legal/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/favicon/legal/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/img/feature--candidate-support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--candidate-support.jpg -------------------------------------------------------------------------------- /src/static/img/feature--compare-candidates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--compare-candidates.jpg -------------------------------------------------------------------------------- /src/static/img/feature--contributions-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--contributions-narrow.jpg -------------------------------------------------------------------------------- /src/static/img/feature--contributions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--contributions.jpg -------------------------------------------------------------------------------- /src/static/img/feature--data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--data.png -------------------------------------------------------------------------------- /src/static/img/feature--dates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--dates.jpg -------------------------------------------------------------------------------- /src/static/img/feature--filing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--filing.jpg -------------------------------------------------------------------------------- /src/static/img/feature--forms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--forms.jpg -------------------------------------------------------------------------------- /src/static/img/feature--legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--legal.png -------------------------------------------------------------------------------- /src/static/img/feature--reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--reporting.png -------------------------------------------------------------------------------- /src/static/img/feature--training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/feature--training.jpg -------------------------------------------------------------------------------- /src/static/img/fec-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/fec-office.jpg -------------------------------------------------------------------------------- /src/static/img/financial-document-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/financial-document-circle.svg -------------------------------------------------------------------------------- /src/static/img/headshot--goodman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--goodman.jpg -------------------------------------------------------------------------------- /src/static/img/headshot--hunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--hunter.jpg -------------------------------------------------------------------------------- /src/static/img/headshot--no-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--no-photo.jpg -------------------------------------------------------------------------------- /src/static/img/headshot--petersen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--petersen.jpg -------------------------------------------------------------------------------- /src/static/img/headshot--walther.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--walther.jpg -------------------------------------------------------------------------------- /src/static/img/headshot--weintraub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/headshot--weintraub.jpg -------------------------------------------------------------------------------- /src/static/img/hero-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-about.jpg -------------------------------------------------------------------------------- /src/static/img/hero-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-data.jpg -------------------------------------------------------------------------------- /src/static/img/hero-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-home.jpg -------------------------------------------------------------------------------- /src/static/img/hero-legal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-legal.jpg -------------------------------------------------------------------------------- /src/static/img/hero-press.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-press.jpg -------------------------------------------------------------------------------- /src/static/img/hero-registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/hero-registration.jpg -------------------------------------------------------------------------------- /src/static/img/i-calendar--secondary-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-calendar--secondary-contrast.svg -------------------------------------------------------------------------------- /src/static/img/i-calendar-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-calendar-circle.svg -------------------------------------------------------------------------------- /src/static/img/i-complex--calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--calendar.png -------------------------------------------------------------------------------- /src/static/img/i-complex--calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--calendar.svg -------------------------------------------------------------------------------- /src/static/img/i-complex--data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--data.png -------------------------------------------------------------------------------- /src/static/img/i-complex--data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--data.svg -------------------------------------------------------------------------------- /src/static/img/i-complex--legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--legal.png -------------------------------------------------------------------------------- /src/static/img/i-complex--legal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--legal.svg -------------------------------------------------------------------------------- /src/static/img/i-complex--regreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--regreport.png -------------------------------------------------------------------------------- /src/static/img/i-complex--regreport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-complex--regreport.svg -------------------------------------------------------------------------------- /src/static/img/i-document--secondary-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-document--secondary-contrast.svg -------------------------------------------------------------------------------- /src/static/img/i-document-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-document-circle.svg -------------------------------------------------------------------------------- /src/static/img/i-elections--neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-elections--neutral.svg -------------------------------------------------------------------------------- /src/static/img/i-elections--primary-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-elections--primary-contrast.svg -------------------------------------------------------------------------------- /src/static/img/i-elections--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-elections--primary.png -------------------------------------------------------------------------------- /src/static/img/i-elections--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-elections--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-email--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-email--inverse.png -------------------------------------------------------------------------------- /src/static/img/i-email--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-email--inverse.svg -------------------------------------------------------------------------------- /src/static/img/i-email--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-email--primary.png -------------------------------------------------------------------------------- /src/static/img/i-email--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-email--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-github--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-github--inverse.png -------------------------------------------------------------------------------- /src/static/img/i-github--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-github--inverse.svg -------------------------------------------------------------------------------- /src/static/img/i-github--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-github--primary.png -------------------------------------------------------------------------------- /src/static/img/i-github--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-github--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-mail--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-mail--primary.png -------------------------------------------------------------------------------- /src/static/img/i-mail--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-mail--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-overviews--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-overviews--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-phone--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-phone--primary.png -------------------------------------------------------------------------------- /src/static/img/i-phone--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-phone--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-table--neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-table--neutral.svg -------------------------------------------------------------------------------- /src/static/img/i-table--primary-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-table--primary-contrast.svg -------------------------------------------------------------------------------- /src/static/img/i-table--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-table--primary.svg -------------------------------------------------------------------------------- /src/static/img/i-twitter--primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-twitter--primary.png -------------------------------------------------------------------------------- /src/static/img/i-twitter--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/i-twitter--primary.svg -------------------------------------------------------------------------------- /src/static/img/loading--primary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/loading--primary.gif -------------------------------------------------------------------------------- /src/static/img/loading-ellipsis-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/loading-ellipsis-gray.gif -------------------------------------------------------------------------------- /src/static/img/loading-ellipsis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/loading-ellipsis.gif -------------------------------------------------------------------------------- /src/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/loading.gif -------------------------------------------------------------------------------- /src/static/img/print-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/print-logo.png -------------------------------------------------------------------------------- /src/static/img/reaction-confusing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/reaction-confusing.svg -------------------------------------------------------------------------------- /src/static/img/reaction-informative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/reaction-informative.svg -------------------------------------------------------------------------------- /src/static/img/reaction-not-interested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/reaction-not-interested.svg -------------------------------------------------------------------------------- /src/static/img/seal--cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal--cropped.png -------------------------------------------------------------------------------- /src/static/img/seal--cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal--cropped.svg -------------------------------------------------------------------------------- /src/static/img/seal--inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal--inverse.png -------------------------------------------------------------------------------- /src/static/img/seal--inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal--inverse.svg -------------------------------------------------------------------------------- /src/static/img/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal.png -------------------------------------------------------------------------------- /src/static/img/seal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/seal.svg -------------------------------------------------------------------------------- /src/static/img/social/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/social/data.png -------------------------------------------------------------------------------- /src/static/img/social/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/social/general.png -------------------------------------------------------------------------------- /src/static/img/social/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/social/help.png -------------------------------------------------------------------------------- /src/static/img/social/legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/social/legal.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--ao-brochure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--ao-brochure.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--ao-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--ao-statistics.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--audio.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--candidates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--candidates.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--captions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--captions.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--citizens-guide-brochure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--citizens-guide-brochure.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--enforcement-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--enforcement-process.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--feca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--feca.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--filing-a-complaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--filing-a-complaint.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--nonconnected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--nonconnected.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--orgs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--orgs.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--parties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--parties.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--pdf-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--pdf-guide.png -------------------------------------------------------------------------------- /src/static/img/thumbnail--title26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--title26.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--title52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--title52.jpg -------------------------------------------------------------------------------- /src/static/img/thumbnail--video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/thumbnail--video.png -------------------------------------------------------------------------------- /src/static/img/tooltip-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/tooltip-point.svg -------------------------------------------------------------------------------- /src/static/img/us_flag_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/us_flag_small.png -------------------------------------------------------------------------------- /src/static/img/wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/wordmark.png -------------------------------------------------------------------------------- /src/static/img/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/src/static/img/wordmark.svg -------------------------------------------------------------------------------- /static/swagger-ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/static/swagger-ui/favicon.ico -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | import nplusone.ext.sqlalchemy # noqa 2 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/integration/test_amendment_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_amendment_chain.py -------------------------------------------------------------------------------- /tests/integration/test_candidate_committee_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_candidate_committee_totals.py -------------------------------------------------------------------------------- /tests/integration/test_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_candidates.py -------------------------------------------------------------------------------- /tests/integration/test_committees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_committees.py -------------------------------------------------------------------------------- /tests/integration/test_filings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_filings.py -------------------------------------------------------------------------------- /tests/integration/test_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_followers.py -------------------------------------------------------------------------------- /tests/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_integration.py -------------------------------------------------------------------------------- /tests/integration/test_tsvector_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/integration/test_tsvector_generation.py -------------------------------------------------------------------------------- /tests/test_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_aggregates.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_audit.py -------------------------------------------------------------------------------- /tests/test_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_candidates.py -------------------------------------------------------------------------------- /tests/test_committees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_committees.py -------------------------------------------------------------------------------- /tests/test_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_costs.py -------------------------------------------------------------------------------- /tests/test_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_counts.py -------------------------------------------------------------------------------- /tests/test_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_dates.py -------------------------------------------------------------------------------- /tests/test_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_downloads.py -------------------------------------------------------------------------------- /tests/test_elections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_elections.py -------------------------------------------------------------------------------- /tests/test_filing_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_filing_resources.py -------------------------------------------------------------------------------- /tests/test_filings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_filings.py -------------------------------------------------------------------------------- /tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_filters.py -------------------------------------------------------------------------------- /tests/test_inaugural_donations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_inaugural_donations.py -------------------------------------------------------------------------------- /tests/test_itemized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_itemized.py -------------------------------------------------------------------------------- /tests/test_large_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_large_aggregates.py -------------------------------------------------------------------------------- /tests/test_legal/test_ao_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_ao_citations.py -------------------------------------------------------------------------------- /tests/test_legal/test_ao_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_ao_endpoint.py -------------------------------------------------------------------------------- /tests/test_legal/test_ao_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_ao_load.py -------------------------------------------------------------------------------- /tests/test_legal/test_case_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_case_endpoint.py -------------------------------------------------------------------------------- /tests/test_legal/test_case_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_case_load.py -------------------------------------------------------------------------------- /tests/test_legal/test_citation_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_citation_endpoint.py -------------------------------------------------------------------------------- /tests/test_legal/test_legal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_legal.py -------------------------------------------------------------------------------- /tests/test_legal/test_legal_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_legal_data.py -------------------------------------------------------------------------------- /tests/test_legal/test_legal_doc_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_legal_doc_endpoint.py -------------------------------------------------------------------------------- /tests/test_legal/test_map_citations_murs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_map_citations_murs.py -------------------------------------------------------------------------------- /tests/test_legal/test_parse_mur_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_parse_mur_citations.py -------------------------------------------------------------------------------- /tests/test_legal/test_rm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_rm_data.py -------------------------------------------------------------------------------- /tests/test_legal/test_rm_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_rm_endpoint.py -------------------------------------------------------------------------------- /tests/test_legal/test_rm_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_rm_load.py -------------------------------------------------------------------------------- /tests/test_legal/test_statute_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_legal/test_statute_endpoint.py -------------------------------------------------------------------------------- /tests/test_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_monitoring.py -------------------------------------------------------------------------------- /tests/test_national_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_national_party.py -------------------------------------------------------------------------------- /tests/test_operations_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_operations_log.py -------------------------------------------------------------------------------- /tests/test_presidential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_presidential.py -------------------------------------------------------------------------------- /tests/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_reports.py -------------------------------------------------------------------------------- /tests/test_sched_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_sched_c.py -------------------------------------------------------------------------------- /tests/test_sched_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_sched_d.py -------------------------------------------------------------------------------- /tests/test_sched_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_sched_e.py -------------------------------------------------------------------------------- /tests/test_sched_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_sched_f.py -------------------------------------------------------------------------------- /tests/test_spending_by_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_spending_by_others.py -------------------------------------------------------------------------------- /tests/test_swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_swagger.py -------------------------------------------------------------------------------- /tests/test_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_totals.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webpack.production.config.js -------------------------------------------------------------------------------- /webservices/__init__.py: -------------------------------------------------------------------------------- 1 | __API_VERSION__ = '1.0' 2 | -------------------------------------------------------------------------------- /webservices/api_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/api_setup.py -------------------------------------------------------------------------------- /webservices/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/args.py -------------------------------------------------------------------------------- /webservices/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/calendar.py -------------------------------------------------------------------------------- /webservices/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webservices/common/counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/counts.py -------------------------------------------------------------------------------- /webservices/common/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/__init__.py -------------------------------------------------------------------------------- /webservices/common/models/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/aggregates.py -------------------------------------------------------------------------------- /webservices/common/models/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/audit.py -------------------------------------------------------------------------------- /webservices/common/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/base.py -------------------------------------------------------------------------------- /webservices/common/models/candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/candidates.py -------------------------------------------------------------------------------- /webservices/common/models/committees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/committees.py -------------------------------------------------------------------------------- /webservices/common/models/costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/costs.py -------------------------------------------------------------------------------- /webservices/common/models/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/dates.py -------------------------------------------------------------------------------- /webservices/common/models/elections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/elections.py -------------------------------------------------------------------------------- /webservices/common/models/filings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/filings.py -------------------------------------------------------------------------------- /webservices/common/models/itemized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/itemized.py -------------------------------------------------------------------------------- /webservices/common/models/large_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/large_aggregates.py -------------------------------------------------------------------------------- /webservices/common/models/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/links.py -------------------------------------------------------------------------------- /webservices/common/models/national_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/national_party.py -------------------------------------------------------------------------------- /webservices/common/models/operations_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/operations_log.py -------------------------------------------------------------------------------- /webservices/common/models/presidential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/presidential.py -------------------------------------------------------------------------------- /webservices/common/models/rad_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/rad_analyst.py -------------------------------------------------------------------------------- /webservices/common/models/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/reports.py -------------------------------------------------------------------------------- /webservices/common/models/totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/totals.py -------------------------------------------------------------------------------- /webservices/common/models/unverified_filers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/models/unverified_filers.py -------------------------------------------------------------------------------- /webservices/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/util.py -------------------------------------------------------------------------------- /webservices/common/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/common/views.py -------------------------------------------------------------------------------- /webservices/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/config.py -------------------------------------------------------------------------------- /webservices/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/decoders.py -------------------------------------------------------------------------------- /webservices/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/docs.py -------------------------------------------------------------------------------- /webservices/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/env.py -------------------------------------------------------------------------------- /webservices/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/exceptions.py -------------------------------------------------------------------------------- /webservices/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/filters.py -------------------------------------------------------------------------------- /webservices/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/flow.py -------------------------------------------------------------------------------- /webservices/legal/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/constants.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/__init__.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/advisory_opinions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/advisory_opinions.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/archived_murs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/archived_murs.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/current_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/current_cases.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/reclassify_statutory_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/reclassify_statutory_citation.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/responses.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/show_legal_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/show_legal_data.py -------------------------------------------------------------------------------- /webservices/legal/legal_docs/statutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/legal_docs/statutes.py -------------------------------------------------------------------------------- /webservices/legal/mappings/ao_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/mappings/ao_mapping.py -------------------------------------------------------------------------------- /webservices/legal/mappings/arch_mur_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/mappings/arch_mur_mapping.py -------------------------------------------------------------------------------- /webservices/legal/mappings/case_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/mappings/case_mapping.py -------------------------------------------------------------------------------- /webservices/legal/mappings/rm_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/mappings/rm_mapping.py -------------------------------------------------------------------------------- /webservices/legal/rulemaking_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/rulemaking_docs/__init__.py -------------------------------------------------------------------------------- /webservices/legal/rulemaking_docs/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/rulemaking_docs/responses.py -------------------------------------------------------------------------------- /webservices/legal/rulemaking_docs/rulemaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/rulemaking_docs/rulemaking.py -------------------------------------------------------------------------------- /webservices/legal/utils_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/utils_es.py -------------------------------------------------------------------------------- /webservices/legal/utils_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/legal/utils_load.py -------------------------------------------------------------------------------- /webservices/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webservices/resources/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/aggregates.py -------------------------------------------------------------------------------- /webservices/resources/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/audit.py -------------------------------------------------------------------------------- /webservices/resources/candidate_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/candidate_aggregates.py -------------------------------------------------------------------------------- /webservices/resources/candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/candidates.py -------------------------------------------------------------------------------- /webservices/resources/committees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/committees.py -------------------------------------------------------------------------------- /webservices/resources/costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/costs.py -------------------------------------------------------------------------------- /webservices/resources/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/dates.py -------------------------------------------------------------------------------- /webservices/resources/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/download.py -------------------------------------------------------------------------------- /webservices/resources/elections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/elections.py -------------------------------------------------------------------------------- /webservices/resources/filings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/filings.py -------------------------------------------------------------------------------- /webservices/resources/form_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/form_56.py -------------------------------------------------------------------------------- /webservices/resources/large_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/large_aggregates.py -------------------------------------------------------------------------------- /webservices/resources/legal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/legal.py -------------------------------------------------------------------------------- /webservices/resources/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/monitoring.py -------------------------------------------------------------------------------- /webservices/resources/national_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/national_party.py -------------------------------------------------------------------------------- /webservices/resources/operations_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/operations_log.py -------------------------------------------------------------------------------- /webservices/resources/presidential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/presidential.py -------------------------------------------------------------------------------- /webservices/resources/rad_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/rad_analyst.py -------------------------------------------------------------------------------- /webservices/resources/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/reports.py -------------------------------------------------------------------------------- /webservices/resources/rulemaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/rulemaking.py -------------------------------------------------------------------------------- /webservices/resources/sched_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_a.py -------------------------------------------------------------------------------- /webservices/resources/sched_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_b.py -------------------------------------------------------------------------------- /webservices/resources/sched_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_c.py -------------------------------------------------------------------------------- /webservices/resources/sched_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_d.py -------------------------------------------------------------------------------- /webservices/resources/sched_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_e.py -------------------------------------------------------------------------------- /webservices/resources/sched_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_f.py -------------------------------------------------------------------------------- /webservices/resources/sched_h4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/sched_h4.py -------------------------------------------------------------------------------- /webservices/resources/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/search.py -------------------------------------------------------------------------------- /webservices/resources/spending_by_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/spending_by_others.py -------------------------------------------------------------------------------- /webservices/resources/totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/resources/totals.py -------------------------------------------------------------------------------- /webservices/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/rest.py -------------------------------------------------------------------------------- /webservices/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/schemas.py -------------------------------------------------------------------------------- /webservices/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/sorting.py -------------------------------------------------------------------------------- /webservices/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/spec.py -------------------------------------------------------------------------------- /webservices/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /v1/* 3 | -------------------------------------------------------------------------------- /webservices/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/__init__.py -------------------------------------------------------------------------------- /webservices/tasks/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/celery.py -------------------------------------------------------------------------------- /webservices/tasks/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/download.py -------------------------------------------------------------------------------- /webservices/tasks/error_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/error_code.py -------------------------------------------------------------------------------- /webservices/tasks/json_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/json_response.py -------------------------------------------------------------------------------- /webservices/tasks/legal_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/legal_docs.py -------------------------------------------------------------------------------- /webservices/tasks/make_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/make_celery.py -------------------------------------------------------------------------------- /webservices/tasks/refresh_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/refresh_db.py -------------------------------------------------------------------------------- /webservices/tasks/response_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/response_exception.py -------------------------------------------------------------------------------- /webservices/tasks/service_status_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/service_status_checks.py -------------------------------------------------------------------------------- /webservices/tasks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/tasks/utils.py -------------------------------------------------------------------------------- /webservices/templates/swagger-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/templates/swagger-ui.html -------------------------------------------------------------------------------- /webservices/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fecgov/openFEC/HEAD/webservices/utils.py --------------------------------------------------------------------------------