fech 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +10 -5
- data/lib/fech/fech_utils.rb +2 -0
- data/lib/fech/map_generator.rb +3 -1
- data/lib/fech/rendered_maps.rb +12 -0
- data/lib/fech/version.rb +1 -1
- data/sources/F1.csv +106 -0
- data/sources/F3.csv +112 -0
- data/spec/data/765310.fec +2 -0
- data/spec/data/82094.fec +144 -0
- data/spec/filing_spec.rb +10 -0
- metadata +8 -4
data/README.rdoc
CHANGED
@@ -4,12 +4,13 @@
|
|
4
4
|
\ \_\ \ \_____\ \ \_____\ \ \_\ \_\
|
5
5
|
\/_/ \/_____/ \/_____/ \/_/\/_/
|
6
6
|
|
7
|
-
Fech makes it easy to parse electronic
|
7
|
+
Fech makes it easy to parse electronic campaign filings[http://query.nictusa.com/pres/], House candidate filings, PAC filings and independent expenditure filings[http://www.fec.gov/finance/disclosure/ie_reports.shtml] from the Federal Election Commission. It lets you access filing attributes the same way regardless of filing version, and works as a framework for cleaning and filing data.
|
8
8
|
|
9
|
-
Fech supports several FEC form types, including all F3P (presidential filings), F5 (independent expenditures), F24 (24/48 hour notices of independent expenditures), F56 (contributions to independent expenditure committees) F57 (expenditures by independent expenditure committees), F3X (filings by unauthorized committees) and F9 (electioneering communications).
|
9
|
+
Fech supports several FEC form types, including all F3 (House candidate filings), F3P (presidential filings), F5 (independent expenditures), F24 (24/48 hour notices of independent expenditures), F56 (contributions to independent expenditure committees) F57 (expenditures by independent expenditure committees), F3X (filings by unauthorized committees) and F9 (electioneering communications).
|
10
10
|
|
11
11
|
== News
|
12
12
|
|
13
|
+
* Feb. 13, 2012: Version 0.8.0 released. Layouts for form 3 added, for parsing House candidate committee filings.
|
13
14
|
* Feb. 11, 2012: Version 0.7.0 released. Layouts for form 9 added, for parsing electioneering communications filings.
|
14
15
|
* Jan. 28, 2012: Version 0.6.0 released. Added support for quoted fields.
|
15
16
|
* Nov. 22, 2011: Version 0.5.0 released. Layouts for form 3X added, for parsing filings from non-candidate committees.
|
@@ -30,7 +31,7 @@ then issue the 'bundle install' command. Fech has been tested under Ruby 1.8.7,
|
|
30
31
|
|
31
32
|
== Getting Started
|
32
33
|
|
33
|
-
Start by creating a Filing object that corresponds to
|
34
|
+
Start by creating a Filing object that corresponds to an electronic filing from the FEC. You'll then have to download the file before parsing it:
|
34
35
|
|
35
36
|
filing = Fech::Filing.new(723604)
|
36
37
|
filing.download
|
@@ -179,6 +180,7 @@ When filings get very large, be careful not to perform operations that attempt t
|
|
179
180
|
== Supported row types and versions
|
180
181
|
|
181
182
|
The following row types are currently supported from filing version 3 through 8.0:
|
183
|
+
* F3
|
182
184
|
* F3P (Summaries)
|
183
185
|
* F3PS
|
184
186
|
* F3S
|
@@ -188,6 +190,7 @@ The following row types are currently supported from filing version 3 through 8.
|
|
188
190
|
* F5 (Report of Independent Expenditures Made and Contributions Received)
|
189
191
|
* F56 (Contributions for Independent Expenditures)
|
190
192
|
* F57 (Independent Expenditures)
|
193
|
+
* F9 (Electioneering Communications, first appeared in filing version 5.0)
|
191
194
|
* SA (Contributions)
|
192
195
|
* SB (Expenditures)
|
193
196
|
* SC (Loans)
|
@@ -205,8 +208,10 @@ Evan Carmi, evan@ecarmi.org
|
|
205
208
|
|
206
209
|
Aaron Bycoffe, bycoffe@huffingtonpost.com
|
207
210
|
|
208
|
-
|
211
|
+
Derek Willis, dwillis@nytimes.com
|
212
|
+
|
213
|
+
Daniel Pritchett, daniel@sharingatwork.com
|
209
214
|
|
210
215
|
== Copyright
|
211
216
|
|
212
|
-
Copyright (c)
|
217
|
+
Copyright (c) 2012 The New York Times Company. See LICENSE for details.
|
data/lib/fech/fech_utils.rb
CHANGED
data/lib/fech/map_generator.rb
CHANGED
@@ -9,13 +9,15 @@ module Fech
|
|
9
9
|
attr_accessor :map
|
10
10
|
FILING_VERSIONS = ["8.0", "7.0", "6.4", "6.3", "6.2", "6.1",
|
11
11
|
"5.3", "5.2", "5.1", "5.0", "3"]
|
12
|
-
BASE_ROW_TYPES = ["HDR", "F24", "F3P", "F3P31", "F3PS", "F3S", "F3X", "F5", "F56", "F57",
|
12
|
+
BASE_ROW_TYPES = ["HDR", "F1", "F24", "F3", "F3P", "F3P31", "F3PS", "F3S", "F3X", "F5", "F56", "F57",
|
13
13
|
"F9", "F91", "F92", "F93", "F94",
|
14
14
|
"SchA", "SchB", "SchC", "SchC1", "SchC2", "SchD", "SchE",
|
15
15
|
"SchF", "TEXT"]
|
16
16
|
ROW_TYPE_MATCHERS = {
|
17
17
|
"HDR" => FechUtils::ROW_TYPES[:hdr],
|
18
|
+
"F1" => FechUtils::ROW_TYPES[:f1],
|
18
19
|
"F24" => FechUtils::ROW_TYPES[:f24],
|
20
|
+
"F3" => FechUtils::ROW_TYPES[:f3],
|
19
21
|
"F3P" => FechUtils::ROW_TYPES[:f3p],
|
20
22
|
"F3S" => FechUtils::ROW_TYPES[:f3s],
|
21
23
|
"F3P31" => FechUtils::ROW_TYPES[:f3p31],
|
data/lib/fech/rendered_maps.rb
CHANGED
@@ -9,12 +9,24 @@ module Fech
|
|
9
9
|
'^[3-5]' => [:record_type, :ef_type, :fec_version, :soft_name, :soft_ver, :name_delim, :report_id, :report_number, :comment],
|
10
10
|
'^[6-8]' => [:record_type, :ef_type, :fec_version, :soft_name, :soft_ver, :report_id, :report_number, :comment],
|
11
11
|
},
|
12
|
+
"^f1" => {
|
13
|
+
'^3.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :effective_date, :change_of_committee_name, :change_of_address, :committee_type, :candidate_id_number, :candidate_name, :candidate_office, :candidate_state, :candidate_district, :party_code, :party_type, :affiliated_committee_id_number, :affiliated_committee_name, :affiliated_street_1, :affiliated_street_2, :affiliated_city, :affiliated_state, :affiliated_zip, :affiliated_relationship_code, :organization_type, :custodian_name, :custodian_street_1, :custodian_street_2, :custodian_city, :custodian_state, :custodian_zip, :custodian_title, :custodian_telephone, :treasurer_name, :treasurer_street_1, :treasurer_street_2, :treasurer_city, :treasurer_state, :treasurer_zip, :treasurer_title, :treasurer_telephone, :agent_name, :agent_street_1, :agent_street_2, :agent_city, :agent_state, :agent_zip, :agent_title, :agent_telephone, :bank_name, :bank_street_1, :bank_street_2, :bank_city, :bank_state, :bank_zip, :signature_name, :date_signed, :committee_email, :committee_url],
|
14
|
+
'^8.0|7.0|6.4' => [:form_type, :filer_committee_id_number, :change_of_committee_name, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :change_of_committee_email, :committee_email, :change_of_committee_url, :committee_url, :effective_date, :signature_last_name, :signature_first_name, :signature_middle_name, :signature_prefix, :signature_suffix, :date_signed, :committee_type, :candidate_id_number, :candidate_last_name, :candidate_first_name, :candidate_middle_name, :candidate_prefix, :candidate_suffix, :candidate_office, :candidate_state, :candidate_district, :party_code, :party_type, :organization_type, :lobbyist_registrant_pac, :lobbyist_registrant_pac_2, :leadership_pac, :affiliated_committee_id_number, :affiliated_committee_name, :affiliated_candidate_id_number, :affiliated_last_name, :affiliated_first_name, :affiliated_middle_name, :affiliated_prefix, :affiliated_suffix, :affiliated_street_1, :affiliated_street_2, :affiliated_city, :affiliated_state, :affiliated_zip, :affiliated_relationship_code, :custodian_last_name, :custodian_first_name, :custodian_middle_name, :custodian_prefix, :custodian_suffix, :custodian_street_1, :custodian_street_2, :custodian_city, :custodian_state, :custodian_zip, :custodian_title, :custodian_telephone, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :treasurer_street_1, :treasurer_street_2, :treasurer_city, :treasurer_state, :treasurer_zip, :treasurer_title, :treasurer_telephone, :agent_last_name, :agent_first_name, :agent_middle_name, :agent_prefix, :agent_suffix, :agent_street_1, :agent_street_2, :agent_city, :agent_state, :agent_zip, :agent_title, :agent_telephone, :bank_name, :bank_street_1, :bank_street_2, :bank_city, :bank_state, :bank_zip, :bank2_name, :bank2_street_1, :bank2_street_2, :bank2_city, :bank2_state, :bank2_zip],
|
15
|
+
'^6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :change_of_committee_name, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :change_of_committee_email, :committee_email, :change_of_committee_url, :committee_url, :effective_date, :signature_last_name, :signature_first_name, :signature_middle_name, :signature_prefix, :signature_suffix, :date_signed, :committee_type, :candidate_id_number, :candidate_last_name, :candidate_first_name, :candidate_middle_name, :candidate_prefix, :candidate_suffix, :candidate_office, :candidate_state, :candidate_district, :party_code, :party_type, :organization_type, :lobbyist_registrant_pac, :lobbyist_registrant_pac_2, :leadership_pac, :affiliated_committee_id_number, :affiliated_committee_name, :affiliated_candidate_id_number, :affiliated_last_name, :affiliated_first_name, :affiliated_middle_name, :affiliated_prefix, :affiliated_suffix, :affiliated_street_1, :affiliated_street_2, :affiliated_city, :affiliated_state, :affiliated_zip, :affiliated_relationship_code, :custodian_last_name, :custodian_first_name, :custodian_middle_name, :custodian_prefix, :custodian_suffix, :custodian_street_1, :custodian_street_2, :custodian_city, :custodian_state, :custodian_zip, :custodian_title, :custodian_telephone, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :treasurer_street_1, :treasurer_street_2, :treasurer_city, :treasurer_state, :treasurer_zip, :treasurer_title, :treasurer_telephone, :agent_last_name, :agent_first_name, :agent_middle_name, :agent_prefix, :agent_suffix, :agent_street_1, :agent_street_2, :agent_city, :agent_state, :agent_zip, :agent_title, :agent_telephone, :bank_name, :bank_street_1, :bank_street_2, :bank_city, :bank_state, :bank_zip, :bank2_name, :bank2_street_1, :bank2_street_2, :bank2_city, :bank2_state, :bank2_zip],
|
16
|
+
'^5.3|5.2|5.1|5.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :effective_date, :change_of_committee_name, :change_of_address, :committee_type, :candidate_id_number, :candidate_name, :candidate_office, :candidate_state, :candidate_district, :party_code, :party_type, :affiliated_committee_id_number, :affiliated_committee_name, :affiliated_street_1, :affiliated_street_2, :affiliated_city, :affiliated_state, :affiliated_zip, :affiliated_relationship_code, :organization_type, :custodian_name, :custodian_street_1, :custodian_street_2, :custodian_city, :custodian_state, :custodian_zip, :custodian_title, :custodian_telephone, :treasurer_name, :treasurer_street_1, :treasurer_street_2, :treasurer_city, :treasurer_state, :treasurer_zip, :treasurer_title, :treasurer_telephone, :agent_name, :agent_street_1, :agent_street_2, :agent_city, :agent_state, :agent_zip, :agent_title, :agent_telephone, :bank_name, :bank_street_1, :bank_street_2, :bank_city, :bank_state, :bank_zip, :signature_name, :date_signed, :committee_email, :committee_url, :committee_fax_number],
|
17
|
+
},
|
12
18
|
"^f24" => {
|
13
19
|
'^7.0|6.4|6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :report_type, :committee_name, :street_1, :street_2, :city, :state, :zip, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed],
|
14
20
|
'^8.0' => [:form_type, :filer_committee_id_number, :report_type, :original_amendment_date, :committee_name, :street_1, :street_2, :city, :state, :zip, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed],
|
15
21
|
'^5.0|5.1|5.2|5.3' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, nil, :date_signed, :report_type],
|
16
22
|
'^3' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, nil, :date_signed],
|
17
23
|
},
|
24
|
+
"(^f3[a|n])" => {
|
25
|
+
'^3.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, nil, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed],
|
26
|
+
'^8.0|7.0|6.4' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :election_date, :election_code, nil, nil, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements],
|
27
|
+
'^6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :election_date, :election_code, nil, nil, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :candidate_id_number, :candidate_last_name, :candidate_first_name, :candidate_middle_name, :candidate_prefix, :candidate_suffix, :report_type, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
|
28
|
+
'^5.3|5.2|5.1|5.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, nil, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed, :candidate_id_number, :candidate_name, :report_type, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
|
29
|
+
},
|
18
30
|
"(^f3p$)|(^f3p[^s|3])" => {
|
19
31
|
'^6.4|6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :activity_primary, :activity_general, :report_code, :election_code, :date_of_election, :state_of_election, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :col_a_cash_on_hand_beginning_period, :col_a_total_receipts, :col_a_subtotal, :col_a_total_disbursements, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_expenditures_subject_to_limits, :col_a_net_contributions, :col_a_net_operating_expenditures, :col_a_federal_funds, :col_a_individual_contribution_total, :col_a_political_party_committees_receipts, :col_a_other_political_committees_pacs, :col_a_the_candidate, :col_a_total_contributions, :col_a_transfers_from_aff_other_party_cmttees, :col_a_received_from_or_guaranteed_by_cand, :col_a_other_loans, :col_a_total_loans, :col_a_operating, :col_a_fundraising, :col_a_legal_and_accounting, :col_a_total_offsets_to_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_other_authorized_committees, :col_a_fundraising_disbursements, :col_a_exempt_legal_accounting_disbursement, :col_a_made_or_guaranteed_by_candidate, :col_a_other_repayments, :col_a_total_loan_repayments_made, :col_a_individuals, :col_a_political_party_committees_refunds, :col_a_other_political_committees, :col_a_total_contributions_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_items_on_hand_to_be_liquidated, :col_a_alabama, :col_a_alaska, :col_a_arizona, :col_a_arkansas, :col_a_california, :col_a_colorado, :col_a_connecticut, :col_a_delaware, :col_a_dist_of_columbia, :col_a_florida, :col_a_georgia, :col_a_hawaii, :col_a_idaho, :col_a_illinois, :col_a_indiana, :col_a_iowa, :col_a_kansas, :col_a_kentucky, :col_a_louisiana, :col_a_maine, :col_a_maryland, :col_a_massachusetts, :col_a_michigan, :col_a_minnesota, :col_a_mississippi, :col_a_missouri, :col_a_montana, :col_a_nebraska, :col_a_nevada, :col_a_new_hampshire, :col_a_new_jersey, :col_a_new_mexico, :col_a_new_york, :col_a_north_carolina, :col_a_north_dakota, :col_a_ohio, :col_a_oklahoma, :col_a_oregon, :col_a_pennsylvania, :col_a_rhode_island, :col_a_south_carolina, :col_a_south_dakota, :col_a_tennessee, :col_a_texas, :col_a_utah, :col_a_vermont, :col_a_virginia, :col_a_washington, :col_a_west_virginia, :col_a_wisconsin, :col_a_wyoming, :col_a_puerto_rico, :col_a_guam, :col_a_virgin_islands, :col_a_totals, :col_b_federal_funds, :col_b_individual_contribution_total, :col_b_political_party_committees_receipts, :col_b_other_political_committees_pacs, :col_b_the_candidate, :col_b_total_contributions_other_than_loans, :col_b_transfers_from_aff_other_party_cmttees, :col_b_received_from_or_guaranteed_by_cand, :col_b_other_loans, :col_b_total_loans, :col_b_operating, :col_b_fundraising, :col_b_legal_and_accounting, :col_b_total_offsets_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_other_authorized_committees, :col_b_fundraising_disbursements, :col_b_exempt_legal_accounting_disbursement, :col_b_made_or_guaranteed_by_the_candidate, :col_b_other_repayments, :col_b_total_loan_repayments_made, :col_b_individuals, :col_b_political_party_committees_refunds, :col_b_other_political_committees, :col_b_total_contributions_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :col_b_alabama, :col_b_alaska, :col_b_arizona, :col_b_arkansas, :col_b_california, :col_b_colorado, :col_b_connecticut, :col_b_delaware, :col_b_dist_of_columbia, :col_b_florida, :col_b_georgia, :col_b_hawaii, :col_b_idaho, :col_b_illinois, :col_b_indiana, :col_b_iowa, :col_b_kansas, :col_b_kentucky, :col_b_louisiana, :col_b_maine, :col_b_maryland, :col_b_massachusetts, :col_b_michigan, :col_b_minnesota, :col_b_mississippi, :col_b_missouri, :col_b_montana, :col_b_nebraska, :col_b_nevada, :col_b_new_hampshire, :col_b_new_jersey, :col_b_new_mexico, :col_b_new_york, :col_b_north_carolina, :col_b_north_dakota, :col_b_ohio, :col_b_oklahoma, :col_b_oregon, :col_b_pennsylvania, :col_b_rhode_island, :col_b_south_carolina, :col_b_south_dakota, :col_b_tennessee, :col_b_texas, :col_b_utah, :col_b_vermont, :col_b_virginia, :col_b_washington, :col_b_west_virginia, :col_b_wisconsin, :col_b_wyoming, :col_b_puerto_rico, :col_b_guam, :col_b_virgin_islands, :col_b_totals],
|
20
32
|
'^5.1|5.0|3' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :activity_primary, :activity_general, :report_code, :election_code, :date_of_election, :state_of_election, :coverage_from_date, :coverage_through_date, :col_a_cash_on_hand_beginning_period, :col_a_total_receipts, :col_a_subtotal, :col_a_total_disbursements, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_expenditures_subject_to_limits, :col_a_net_contributions, :col_a_net_operating_expenditures, :col_a_federal_funds, :col_a_individual_contribution_total, :col_a_political_party_committees_receipts, :col_a_other_political_committees_pacs, :col_a_the_candidate, :col_a_total_contributions, :col_a_transfers_from_aff_other_party_cmttees, :col_a_received_from_or_guaranteed_by_cand, :col_a_other_loans, :col_a_total_loans, :col_a_operating, :col_a_fundraising, :col_a_legal_and_accounting, :col_a_total_offsets_to_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_other_authorized_committees, :col_a_fundraising_disbursements, :col_a_exempt_legal_accounting_disbursement, :col_a_made_or_guaranteed_by_candidate, :col_a_other_repayments, :col_a_total_loan_repayments_made, :col_a_individuals, :col_a_political_party_committees_refunds, :col_a_other_political_committees, :col_a_total_contributions_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_items_on_hand_to_be_liquidated, :col_a_alabama, :col_a_alaska, :col_a_arizona, :col_a_arkansas, :col_a_california, :col_a_colorado, :col_a_connecticut, :col_a_delaware, :col_a_dist_of_columbia, :col_a_florida, :col_a_georgia, :col_a_hawaii, :col_a_idaho, :col_a_illinois, :col_a_indiana, :col_a_iowa, :col_a_kansas, :col_a_kentucky, :col_a_louisiana, :col_a_maine, :col_a_maryland, :col_a_massachusetts, :col_a_michigan, :col_a_minnesota, :col_a_mississippi, :col_a_missouri, :col_a_montana, :col_a_nebraska, :col_a_nevada, :col_a_new_hampshire, :col_a_new_jersey, :col_a_new_mexico, :col_a_new_york, :col_a_north_carolina, :col_a_north_dakota, :col_a_ohio, :col_a_oklahoma, :col_a_oregon, :col_a_pennsylvania, :col_a_rhode_island, :col_a_south_carolina, :col_a_south_dakota, :col_a_tennessee, :col_a_texas, :col_a_utah, :col_a_vermont, :col_a_virginia, :col_a_washington, :col_a_west_virginia, :col_a_wisconsin, :col_a_wyoming, :col_a_puerto_rico, :col_a_guam, :col_a_virgin_islands, :col_a_totals, :col_b_federal_funds, :col_b_individual_contribution_total, :col_b_political_party_committees_receipts, :col_b_other_political_committees_pacs, :col_b_the_candidate, :col_b_total_contributions_other_than_loans, :col_b_transfers_from_aff_other_party_cmttees, :col_b_received_from_or_guaranteed_by_cand, :col_b_other_loans, :col_b_total_loans, :col_b_operating, :col_b_fundraising, :col_b_legal_and_accounting, :col_b_total_offsets_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_other_authorized_committees, :col_b_fundraising_disbursements, :col_b_exempt_legal_accounting_disbursement, :col_b_made_or_guaranteed_by_the_candidate, :col_b_other_repayments, :col_b_total_loan_repayments_made, :col_b_individuals, :col_b_political_party_committees_refunds, :col_b_other_political_committees, :col_b_total_contributions_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :col_b_alabama, :col_b_alaska, :col_b_arizona, :col_b_arkansas, :col_b_california, :col_b_colorado, :col_b_connecticut, :col_b_delaware, :col_b_dist_of_columbia, :col_b_florida, :col_b_georgia, :col_b_hawaii, :col_b_idaho, :col_b_illinois, :col_b_indiana, :col_b_iowa, :col_b_kansas, :col_b_kentucky, :col_b_louisiana, :col_b_maine, :col_b_maryland, :col_b_massachusetts, :col_b_michigan, :col_b_minnesota, :col_b_mississippi, :col_b_missouri, :col_b_montana, :col_b_nebraska, :col_b_nevada, :col_b_new_hampshire, :col_b_new_jersey, :col_b_new_mexico, :col_b_new_york, :col_b_north_carolina, :col_b_north_dakota, :col_b_ohio, :col_b_oklahoma, :col_b_oregon, :col_b_pennsylvania, :col_b_rhode_island, :col_b_south_carolina, :col_b_south_dakota, :col_b_tennessee, :col_b_texas, :col_b_utah, :col_b_vermont, :col_b_virginia, :col_b_washington, :col_b_west_virginia, :col_b_wisconsin, :col_b_wyoming, :col_b_puerto_rico, :col_b_guam, :col_b_virgin_islands, :col_b_totals, :treasurer_name, :date_signed],
|
data/lib/fech/version.rb
CHANGED
data/sources/F1.csv
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
canonical,^8.0|7.0|6.4,,^6.3|6.2|6.1,,^5.3|5.2|5.1|5.0,,^3.0,
|
2
|
+
form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
|
3
|
+
filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID ,2,FILER FEC CMTE ID
|
4
|
+
change_of_committee_name,3,CHANGE OF COMMITTEE NAME,3,CHANGE OF COMMITTEE NAME,10,CHG OF COMMITTEE NAME,10,CHG OF COMMITTEE NAME
|
5
|
+
committee_name,4,COMMITTEE NAME,4,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME
|
6
|
+
change_of_address,5,CHANGE OF ADDRESS,5,CHANGE OF ADDRESS,11,CHG OF ADDRESS,11,CHG OF ADDRESS
|
7
|
+
street_1,6,STREET 1,6,STREET 1,4,STREET 1,4,STREET 1
|
8
|
+
street_2,7,STREET 2,7,STREET 2,5,STREET 2,5,STREET 2
|
9
|
+
city,8,CITY,8,CITY,6,CITY,6,CITY
|
10
|
+
state,9,STATE,9,STATE,7,STATE,7,STATE
|
11
|
+
zip,10,ZIP,10,ZIP,8,ZIP,8,ZIP
|
12
|
+
change_of_committee_email,11,CHANGE OF COMMITTEE EMAIL,11,CHANGE OF COMMITTEE EMAIL,,,,
|
13
|
+
committee_email,12,COMMITTEE EMAIL,12,COMMITTEE EMAIL,61,COMMITTEE EMAIL,61,COMMITTEE EMAIL
|
14
|
+
change_of_committee_url,13,CHANGE OF COMMITTEE WEB URL,13,CHANGE OF COMMITTEE WEB URL,,,,
|
15
|
+
committee_url,14,COMMITTEE WEB URL,14,COMMITTEE WEB URL,62,COMMITTEE WEB URL,62,COMMITTEE WEB URL
|
16
|
+
committee_fax_number,,,,,63,COMMITTEE FAX NUMBER,,
|
17
|
+
effective_date,15,EFFECTIVE DATE,15,SUBMISSION DATE,9,DATE (Submitted),9,DATE (Submitted)
|
18
|
+
signature_name,,,,,59,NAME/TREASURER (as signed),59,NAME/TREASURER (as signed)
|
19
|
+
signature_last_name,16,SIGNATURE LAST NAME,16,SIGNATURE LAST NAME,,,,
|
20
|
+
signature_first_name,17,SIGNATURE FIRST NAME,17,SIGNATURE FIRST NAME,,,,
|
21
|
+
signature_middle_name,18,SIGNATURE MIDDLE NAME,18,SIGNATURE MIDDLE NAME,,,,
|
22
|
+
signature_prefix,19,SIGNATURE PREFIX,19,SIGNATURE PREFIX,,,,
|
23
|
+
signature_suffix,20,SIGNATURE SUFFIX,20,SIGNATURE SUFFIX,,,,
|
24
|
+
date_signed,21,DATE SIGNED,21,DATE SIGNED,60,DATE (Signed),60,DATE (Signed)
|
25
|
+
committee_type,22,5. COMMITTEE TYPE,22,5. COMMITTEE TYPE,12,5. COMMITTEE TYPE,12,5. COMMITTEE TYPE
|
26
|
+
candidate_id_number,23,5. CANDIDATE ID NUMBER,23,5. CANDIDATE ID NUMBER,13,5. FEC CANDIDATE ID NUMBER,13,5. FEC CANDIDATE ID NUMBER
|
27
|
+
candidate_name,,,,,14,5. CANDIDATE NAME,14,5. CANDIDATE NAME
|
28
|
+
candidate_last_name,24,5. CANDIDATE LAST NAME,24,5. CANDIDATE LAST NAME,,,,
|
29
|
+
candidate_first_name,25,5. CANDIDATE FIRST NAME,25,5. CANDIDATE FIRST NAME,,,,
|
30
|
+
candidate_middle_name,26,5. CANDIDATE MIDDLE NAME,26,5. CANDIDATE MIDDLE NAME,,,,
|
31
|
+
candidate_prefix,27,5. CANDIDATE PREFIX,27,5. CANDIDATE PREFIX,,,,
|
32
|
+
candidate_suffix,28,5. CANDIDATE SUFFIX,28,5. CANDIDATE SUFFIX,,,,
|
33
|
+
candidate_office,29,5. CANDIDATE OFFICE ,29,5. CANDIDATE OFFICE ,15,5. CAN/OFFICE ,15,5. CAN/OFFICE
|
34
|
+
candidate_state,30,5. CANDIDATE STATE,30,5. CANDIDATE STATE,16,5. CAN/STATE,16,5. CAN/STATE
|
35
|
+
candidate_district,31,5. CANDIDATE DISTRICT,31,5. CANDIDATE DISTRICT,17,5. CAN/DIST,17,5. CAN/DIST
|
36
|
+
party_code,32,5. PARTY CODE,32,5. PARTY CODE,18,5. PARTY CODE,18,5. PARTY CODE
|
37
|
+
party_type,33,5. PARTY TYPE,33,5. PARTY TYPE,19,5. PARTY TYPE,19,5. PARTY TYPE
|
38
|
+
organization_type,34,5 (e). ORGANIZATION TYPE,34,5 (e). ORGANIZATION TYPE,28,6. ORGANIZATION TYPE,28,6. ORGANIZATION TYPE
|
39
|
+
lobbyist_registrant_pac,35,5 (e). LOBBYIST/REGISTRANT PAC ,35,5 (e). LOBBYIST/REGISTRANT PAC ,,,,
|
40
|
+
lobbyist_registrant_pac_2,36,5 (f). LOBBYIST/REGISTRANT PAC ,36,5 (f). LOBBYIST/REGISTRANT PAC ,,,,
|
41
|
+
leadership_pac,37,5 (f). LEADERSHIP PAC,37,5 (f). LEADERSHIP PAC,,,,
|
42
|
+
affiliated_committee_id_number,38,6. AFFILIATED CMTTE ID NUM,38,6. AFFILIATED CMTTE ID NUM,20,6. FEC COMMITTEE ID NUMBER,20,6. FEC COMMITTEE ID NUMBER
|
43
|
+
affiliated_committee_name,39,6. AFFILIATED CMTTE NAME,39,6. AFFILIATED CMTTE NAME,21,6. COMMITTEE NAME (Affiliated),21,6. COMMITTEE NAME (Affiliated)
|
44
|
+
affiliated_candidate_id_number,40,6. AFFILIATED CANDIDATE ID NUM,40,6. AFFILIATED CANDIDATE ID NUM,,,,
|
45
|
+
affiliated_last_name,41,6. AFFILIATED LAST NAME,41,6. AFFILIATED LAST NAME,,,,
|
46
|
+
affiliated_first_name,42,6. AFFILIATED FIRST NAME,42,6. AFFILIATED FIRST NAME,,,,
|
47
|
+
affiliated_middle_name,43,6. AFFILIATED MIDDLE NAME,43,6. AFFILIATED MIDDLE NAME,,,,
|
48
|
+
affiliated_prefix,44,6. AFFILIATED PREFIX,44,6. AFFILIATED PREFIX,,,,
|
49
|
+
affiliated_suffix,45,6. AFFILIATED SUFFIX,45,6. AFFILIATED SUFFIX,,,,
|
50
|
+
affiliated_street_1,46,6. AFFILIATED STREET 1,46,6. AFFILIATED STREET 1,22,6. STREET 1,22,6. STREET 1
|
51
|
+
affiliated_street_2,47,6. AFFILIATED STREET 2,47,6. AFFILIATED STREET 2,23,6. STREET 2,23,6. STREET 2
|
52
|
+
affiliated_city,48,6. AFFILIATED CITY,48,6. AFFILIATED CITY,24,6. CITY,24,6. CITY
|
53
|
+
affiliated_state,49,6. AFFILIATED STATE,49,6. AFFILIATED STATE,25,6. STATE,25,6. STATE
|
54
|
+
affiliated_zip,50,6. AFFILIATED ZIP,50,6. AFFILIATED ZIP,26,6. ZIP,26,6. ZIP
|
55
|
+
affiliated_relationship_code,51,"6. AFFILIATED RELATIONSHIP CODE",51,6. AFFILIATED RELATIONSHIP CODE,27,6. RELATIONSHIP (w/ Above Cmte),27,6. RELATIONSHIP (w/ Above Cmte)
|
56
|
+
custodian_name,,,,,29,7. IND/NAME (Custodian Name),29,7. IND/NAME (Custodian Name)
|
57
|
+
custodian_last_name,52,7. CUSTODIAN LAST NAME,52,7. CUSTODIAN LAST NAME,,,,
|
58
|
+
custodian_first_name,53,7. CUSTODIAN FIRST NAME,53,7. CUSTODIAN FIRST NAME,,,,
|
59
|
+
custodian_middle_name,54,7. CUSTODIAN MIDDLE NAME,54,7. CUSTODIAN MIDDLE NAME,,,,
|
60
|
+
custodian_prefix,55,7. CUSTODIAN PREFIX,55,7. CUSTODIAN PREFIX,,,,
|
61
|
+
custodian_suffix,56,7. CUSTODIAN SUFFIX,56,7. CUSTODIAN SUFFIX,,,,
|
62
|
+
custodian_street_1,57,7. CUSTODIAN STREET 1,57,7. CUSTODIAN STREET 1,30,7. STREET 1,30,7. STREET 1
|
63
|
+
custodian_street_2,58,7. CUSTODIAN STREET 2,58,7. CUSTODIAN STREET 2,31,7. STREET 2,31,7. STREET 2
|
64
|
+
custodian_city,59,7. CUSTODIAN CITY,59,7. CUSTODIAN CITY,32,7. CITY,32,7. CITY
|
65
|
+
custodian_state,60,7. CUSTODIAN STATE,60,7. CUSTODIAN STATE,33,7. STATE,33,7. STATE
|
66
|
+
custodian_zip,61,7. CUSTODIAN ZIP,61,7. CUSTODIAN ZIP,34,7. ZIP,34,7. ZIP
|
67
|
+
custodian_title,62,7. CUSTODIAN TITLE,62,7. CUSTODIAN TITLE,35,7. TITLE,35,7. TITLE
|
68
|
+
custodian_telephone,63,7. CUSTODIAN TELEPHONE,63,7. CUSTODIAN TELEPHONE,36,7. TELEPHONE,36,7. TELEPHONE
|
69
|
+
treasurer_name,,,,,37,8. IND/NAME (Treasurer),37,8. IND/NAME (Treasurer)
|
70
|
+
treasurer_last_name,64,8. TREASURER LAST NAME,64,8. TREASURER LAST NAME,,,,
|
71
|
+
treasurer_first_name,65,8. TREASURER FIRST NAME,65,8. TREASURER FIRST NAME,,,,
|
72
|
+
treasurer_middle_name,66,8. TREASURER MIDDLE NAME,66,8. TREASURER MIDDLE NAME,,,,
|
73
|
+
treasurer_prefix,67,8. TREASURER PREFIX,67,8. TREASURER PREFIX,,,,
|
74
|
+
treasurer_suffix,68,8. TREASURER SUFFIX,68,8. TREASURER SUFFIX,,,,
|
75
|
+
treasurer_street_1,69,8. TREASURER STREET 1,69,8. TREASURER STREET 1,38,8. STREET 1,38,8. STREET 1
|
76
|
+
treasurer_street_2,70,8. TREASURER STREET 2,70,8. TREASURER STREET 2,39,8. STREET 2,39,8. STREET 2
|
77
|
+
treasurer_city,71,8. TREASURER CITY,71,8. TREASURER CITY,40,8. CITY,40,8. CITY
|
78
|
+
treasurer_state,72,8. TREASURER STATE,72,8. TREASURER STATE,41,8. STATE,41,8. STATE
|
79
|
+
treasurer_zip,73,8. TREASURER ZIP,73,8. TREASURER ZIP,42,8. ZIP,42,8. ZIP
|
80
|
+
treasurer_title,74,8. TREASURER TITLE,74,8. TREASURER TITLE,43,8. TITLE,43,8. TITLE
|
81
|
+
treasurer_telephone,75,8. TREASURER TELEPHONE,75,8. TREASURER TELEPHONE,44,8. TELEPHONE,44,8. TELEPHONE
|
82
|
+
agent_name,,,,,45,8. IND/NAME (Designated Agent),45,8. IND/NAME (Designated Agent)
|
83
|
+
agent_last_name,76,8. AGENT LAST NAME,76,8. AGENT LAST NAME,,,,
|
84
|
+
agent_first_name,77,8. AGENT FIRST NAME,77,8. AGENT FIRST NAME,,,,
|
85
|
+
agent_middle_name,78,8. AGENT MIDDLE NAME,78,8. AGENT MIDDLE NAME,,,,
|
86
|
+
agent_prefix,79,8. AGENT PREFIX,79,8. AGENT PREFIX,,,,
|
87
|
+
agent_suffix,80,8. AGENT SUFFIX,80,8. AGENT SUFFIX,,,,
|
88
|
+
agent_street_1,81,8. AGENT STREET 1,81,8. AGENT STREET 1,46,8. STREET 1,46,8. STREET 1
|
89
|
+
agent_street_2,82,8. AGENT STREET 2,82,8. AGENT STREET 2,47,8. STREET 2,47,8. STREET 2
|
90
|
+
agent_city,83,8. AGENT CITY,83,8. AGENT CITY,48,8. CITY,48,8. CITY
|
91
|
+
agent_state,84,8. AGENT STATE,84,8. AGENT STATE,49,8. STATE,49,8. STATE
|
92
|
+
agent_zip,85,8. AGENT ZIP,85,8. AGENT ZIP,50,8. ZIP,50,8. ZIP
|
93
|
+
agent_title,86,8. AGENT TITLE,86,8. AGENT TITLE,51,8. TITLE,51,8. TITLE
|
94
|
+
agent_telephone,87,8. AGENT TELEPHONE,87,8. AGENT TELEPHONE,52,8. TELEPHONE,52,8. TELEPHONE
|
95
|
+
bank_name,88,9. a) BANK NAME,88,9. a) BANK NAME,53,9. IND/NAME (Bank/Depository),53,9. IND/NAME (Bank/Depository)
|
96
|
+
bank_street_1,89,9. a) BANK STREET 1,89,9. a) BANK STREET 1,54,9. STREET 1,54,9. STREET 1
|
97
|
+
bank_street_2,90,9. a) BANK STREET 2,90,9. a) BANK STREET 2,55,9. STREET 2,55,9. STREET 2
|
98
|
+
bank_city,91,9. a) BANK CITY,91,9. a) BANK CITY,56,9. CITY,56,9. CITY
|
99
|
+
bank_state,92,9. a) BANK STATE,92,9. a) BANK STATE,57,9. STATE,57,9. STATE
|
100
|
+
bank_zip,93,9. a) BANK ZIP,93,9. a) BANK ZIP,58,9. ZIP,58,9. ZIP
|
101
|
+
bank2_name,94,9. b) BANK NAME,94,9. b) BANK NAME,,,,
|
102
|
+
bank2_street_1,95,9. b) BANK STREET 1,95,9. b) BANK STREET 1,,,,
|
103
|
+
bank2_street_2,96,9. b) BANK STREET 2,96,9. b) BANK STREET 2,,,,
|
104
|
+
bank2_city,97,9. b) BANK CITY,97,9. b) BANK CITY,,,,
|
105
|
+
bank2_state,98,9. b) BANK STATE,98,9. b) BANK STATE,,,,
|
106
|
+
bank2_zip,99,9. b) BANK ZIP,99,9. b) BANK ZIP,,,,
|
data/sources/F3.csv
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
canonical,^8.0|7.0|6.4,,^6.3|6.2|6.1,,^5.3|5.2|5.1|5.0,,^3.0,
|
2
|
+
form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
|
3
|
+
filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER
|
4
|
+
committee_name,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME
|
5
|
+
change_of_address,4,CHANGE OF ADDRESS,4,CHANGE OF ADDRESS,9,CHG OF ADDRESS,9,CHG OF ADDRESS
|
6
|
+
street_1,5,STREET 1,5,STREET 1,4,STREET 1,4,STREET 1
|
7
|
+
street_2,6,STREET 2,6,STREET 2,5,STREET 2,5,STREET 2
|
8
|
+
city,7,CITY,7,CITY,6,CITY,6,CITY
|
9
|
+
state,8,STATE,8,STATE,7,STATE,7,STATE
|
10
|
+
zip,9,ZIP,9,ZIP,8,ZIP,8,ZIP
|
11
|
+
report_code,12,REPORT CODE,12,REPORT CODE,12,RPTCODE,12,RPTCODE
|
12
|
+
election_code,13,ELECTION CODE {was RPTPGI},13,ELECTION CODE {was RPTPGI},13,RPTPGI,13,RPTPGI
|
13
|
+
election_date,12,DATE OF ELECTION,12,DATE OF ELECTION,14,DATE (Of Election),14,DATE (Of Election)
|
14
|
+
election_state,10,ELECTION STATE,10,ELECTION STATE,10,ELECTION STATE,10,ELECTION STATE
|
15
|
+
election_district,11,ELECTION DISTRICT,11,ELECTION DISTRICT,11,ELECTION DISTRICT,11,ELECTION DISTRICT
|
16
|
+
coverage_from_date,16,COVERAGE FROM DATE,16,COVERAGE FROM DATE,20,DATE (Coverage From),20,DATE (Coverage From)
|
17
|
+
coverage_through_date,17,COVERAGE THROUGH DATE,17,COVERAGE THROUGH DATE,21,DATE (Coverage To),21,DATE (Coverage To)
|
18
|
+
primary_election,,,,,16,PRIMARY ELECTION ,16,PRIMARY ELECTION
|
19
|
+
general_election,,,,,17,GENERAL ELECTION,17,GENERAL ELECTION
|
20
|
+
special_election,,,,,18,SPECIAL ELECTION ,18,SPECIAL ELECTION
|
21
|
+
runoff_election,,,,,19,RUNOFF ELECTION ,19,RUNOFF ELECTION
|
22
|
+
treasurer_name,,,,,92,NAME/TREASURER (as signed),92,NAME/TREASURER (as signed)
|
23
|
+
treasurer_last_name,18,TREASURER LAST NAME,18,TREASURER LAST NAME,,,,
|
24
|
+
treasurer_first_name,19,TREASURER FIRST NAME,19,TREASURER FIRST NAME,,,,
|
25
|
+
treasurer_middle_name,20,TREASURER MIDDLE NAME,20,TREASURER MIDDLE NAME,,,,
|
26
|
+
treasurer_prefix,21,TREASURER PREFIX,21,TREASURER PREFIX,,,,
|
27
|
+
treasurer_suffix,22,TREASURER SUFFIX,22,TREASURER SUFFIX,,,,
|
28
|
+
date_signed,23,DATE SIGNED,23,DATE SIGNED,93,DATE (Signed),93,DATE (Signed)
|
29
|
+
candidate_id_number,,,24,CANDIDATE ID NUMBER,94,FEC CANDIDATE ID NUMBER,,
|
30
|
+
candidate_name,,,,,95,CANDIDATE NAME,,
|
31
|
+
candidate_last_name,,,25,CANDIDATE LAST NAME,,,,
|
32
|
+
candidate_first_name,,,26,CANDIDATE FIRST NAME,,,,
|
33
|
+
candidate_middle_name,,,27,CANDIDATE MIDDLE NAME,,,,
|
34
|
+
candidate_prefix,,,28,CANDIDATE PREFIX,,,,
|
35
|
+
candidate_suffix,,,29,CANDIDATE SUFFIX,,,,
|
36
|
+
report_type,,,30,F3Z-1 REPORT TYPE ,96,F3Z-1 REPORT TYPE (F3Z-1 RPTCODE),,
|
37
|
+
col_a_total_contributions_no_loans,24,(6a) Total Contributions (NO Loans),31,(6a) Total Contributions (NO Loans),22,(6a) Total Contributions (NO Loans),22,(6a) Total Contributions (NO Loans)
|
38
|
+
col_a_total_contributions_refunds,25,(6b) Total Contribution Refunds,32,(6b) Total Contribution Refunds,23,(6b) Total Contribution Refunds,23,(6b) Total Contribution Refunds
|
39
|
+
col_a_net_contributions,26,(6c) Net Contributions,33,(6c) Net Contributions,24,(6c) Net Contributions,24,(6c) Net Contributions
|
40
|
+
col_a_total_operating_expenditures,27,(7a) Total Operating Expenditures,34,(7a) Total Operating Expenditures,25,(7a) Total Operating Expenditures,25,(7a) Total Operating Expenditures
|
41
|
+
col_a_total_offset_to_operating_expenditures,28,(7b) Total Offset to Operating Expenditures,35,(7b) Total Offset to Operating Expenditures,26,(7b) Total Offset to Operating Expenditures,26,(7b) Total Offset to Operating Expenditures
|
42
|
+
col_a_net_operating_expenditures,29,(7c) NET Operating Expenditures.,36,(7c) NET Operating Expenditures.,27,(7c) NET Operating Expenditures.,27,(7c) NET Operating Expenditures.
|
43
|
+
col_a_cash_on_hand_close_of_period,30,8. CASH ON HAND AT CLOSE ...,37,8. CASH ON HAND AT CLOSE ...,28,8. CASH ON HAND AT CLOSE ...,28,8. CASH ON HAND AT CLOSE ...
|
44
|
+
col_a_debts_to,31,9. DEBTS TO ( Totals from SCH C and/or D),38,9. DEBTS TO ( Totals from SCH C and/or D),29,9. DEBTS TO ( Totals from SCH C and/or D),29,9. DEBTS TO ( Totals from SCH C and/or D)
|
45
|
+
col_a_debts_by,32,10. DEBTS BY (Totals from SCH C and/or D),39,10. DEBTS BY (Totals from SCH C and/or D),30,10. DEBTS BY (Totals from SCH C and/or D),30,10. DEBTS BY (Totals from SCH C and/or D)
|
46
|
+
col_a_individual_contributions_itemized,33,11(a i.) Individuals Itemized,40,11(a i.) Individuals Itemized,31,11(a i.) Individuals Itemized,31,11(a i.) Individuals Itemized
|
47
|
+
col_a_individual_contributions_unitemized,34,11(a.ii) Individuals Unitemized,41,11(a.ii) Individuals Unitemized,32,11(a.ii) Individuals Unitemized,32,11(a.ii) Individuals Unitemized
|
48
|
+
col_a_total_individual_contributions,35,11(a.iii) Individual Contribution Total,42,11(a.iii) Individual Contribution Total,33,11(a.iii) Individual Contribution Total,33,11(a.iii) Individual Contribution Total
|
49
|
+
col_a_political_party_contributions,36,11(b) Political Party Committees,43,11(b) Political Party Committees,34,11(b) Political Party Committees,34,11(b) Political Party Committees
|
50
|
+
col_a_pac_contributions,37,11(c) Other Political Committees,44,11(c) Other Political Committees,35,11(c) Other Political Committees,35,11(c) Other Political Committees
|
51
|
+
col_a_candidate_contributions,38,11(d) The Candidate,45,11(d) The Candidate,36,11(d) The Candidate,36,11(d) The Candidate
|
52
|
+
col_a_total_contributions,39,11(e) Total Contributions,46,11(e) Total Contributions,37,11(e) Total Contributions,37,11(e) Total Contributions
|
53
|
+
col_a_transfers_from_authorized,40,12. Transfers From Other Authorized Cmttes,47,12. Transfers From Other Authorized Cmttes,38,12. Transfers From Other Authorized Cmttes,38,12. Transfers From Other Authorized Cmttes
|
54
|
+
col_a_candidate_loans,41,13(a) Loans made or guarn. by the Candidate,48,13(a) Loans made or guarn. by the Candidate,39,13(a) Loans made or guarn. by the Candidate,39,13(a) Loans made or guarn. by the Candidate
|
55
|
+
col_a_other_loans,42,13(b) All Other Loans,49,13(b) All Other Loans,40,13(b) All Other Loans,40,13(b) All Other Loans
|
56
|
+
col_a_total_loans,43,13(c) Total Loans,50,13(c) Total Loans,41,13(c) Total Loans,41,13(c) Total Loans
|
57
|
+
col_a_offset_to_operating_expenditures,44,14. Offsets to Operating Expenditures,51,14. Offsets to Operating Expenditures,42,14. Offsets to Operating Expenditures,42,14. Offsets to Operating Expenditures
|
58
|
+
col_a_other_receipts,45,15. Other Receipts,52,15. Other Receipts,43,15. Other Receipts,43,15. Other Receipts
|
59
|
+
col_a_total_receipts,46,16. Total Receipts,53,16. Total Receipts,44,16. Total Receipts,44,16. Total Receipts
|
60
|
+
col_a_operating_expenditures,47,17. Operating Expenditures,54,17. Operating Expenditures,45,17. Operating Expenditures,45,17. Operating Expenditures
|
61
|
+
col_a_transfers_to_authorized,48,18. Transfers to Other Authorized Committees,55,18. Transfers to Other Authorized Committees,46,18. Transfers to Other Authorized Committees,46,18. Transfers to Other Authorized Committees
|
62
|
+
col_a_candidate_loan_repayments,49,19(a) Of Loans made or guar. by the Cand.,56,19(a) Of Loans made or guar. by the Cand.,47,19(a) Of Loans made or guar. by the Cand.,47,19(a) Of Loans made or guar. by the Cand.
|
63
|
+
col_a_other_loan_repayments,50,"19(b) Loan Repayments, All Other Loans",57,"19(b) Loan Repayments, All Other Loans",48,"19(b) Loan Repayments, All Other Loans",48,"19(b) Loan Repayments, All Other Loans"
|
64
|
+
col_a_total_loan_repayments,51,19(c) Total Loan Repayments,58,19(c) Total Loan Repayments,49,19(c) Total Loan Repayments,49,19(c) Total Loan Repayments
|
65
|
+
col_a_refunds_to_individuals,52,20(a) Refund/Individuals Other than Pol. Cmtes,59,20(a) Refund/Individuals Other than Pol. Cmtes,50,20(a) Refund/Individuals Other than Pol. Cmtes,50,20(a) Refund/Individuals Other than Pol. Cmtes
|
66
|
+
col_a_refunds_to_party_committees,53,20(b) Refund/Political Party Committees,60,20(b) Refund/Political Party Committees,51,20(b) Refund/Political Party Committees,51,20(b) Refund/Political Party Committees
|
67
|
+
col_a_refunds_to_other_committees,54,20(c) Refund/Other Political Committees,61,20(c) Refund/Other Political Committees,52,20(c) Refund/Other Political Committees,52,20(c) Refund/Other Political Committees
|
68
|
+
col_a_total_refunds,55,20(d) Total Contribution Refunds,62,20(d) Total Contribution Refunds,53,20(d) Total Contribution Refunds,53,20(d) Total Contribution Refunds
|
69
|
+
col_a_other_disbursements,56,21. Other Disbursements,63,21. Other Disbursements,54,21. Other Disbursements,54,21. Other Disbursements
|
70
|
+
col_a_total_disbursements,57,22. Total Disbursements,64,22. Total Disbursements,55,22. Total Disbursements,55,22. Total Disbursements
|
71
|
+
col_a_cash_beginning_reporting_period,58,23. Cash Beginning Reporting Period,65,23. Cash Beginning Reporting Period,56,23. Cash Beginning Reporting Period,56,23. Cash Beginning Reporting Period
|
72
|
+
col_a_refunds_to_party_committees,59,24. Total Receipts this Period,66,24. Total Receipts this Period,57,24. Total Receipts this Period,57,24. Total Receipts this Period
|
73
|
+
col_a_refunds_to_other_committees,60,25. Subtotals,67,25. Subtotals,58,25. SubTotal,58,25. SubTotal
|
74
|
+
col_a_total_receipts_period,61,26. Total Disbursements this Period,68,26. Total Disbursements this Period,59,26. Total Disbursements this Period,59,26. Total Disbursements this Period
|
75
|
+
col_a_cash_on_hand_close,62,27. Cash on hand at Close Period,69,27. Cash on hand at Close Period,60,27. Cash on hand at Close Period,60,27. Cash on hand at Close Period
|
76
|
+
col_b_total_contributions_no_loans,63,(6a) Total Contributions (No Loans),70,(6a) Total Contributions (No Loans),61,(6a) Total Contributions (No Loans),61,(6a) Total Contributions (No Loans)
|
77
|
+
col_b_total_contributions_refunds,64,(6b) Total Contribution Refunds,71,(6b) Total Contribution Refunds,62,(6b) Total Contribution Refunds,62,(6b) Total Contribution Refunds
|
78
|
+
col_b_net_contributions,65,(6c) Net Contributions,72,(6c) Net Contributions,63,(6c) Net Contributions,63,(6c) Net Contributions
|
79
|
+
col_b_total_operating_expenditures,66,(7a) Total Operating Expenditures,73,(7a) Total Operating Expenditures,64,(7a) Total Operating Expenditures,64,(7a) Total Operating Expenditures
|
80
|
+
col_b_total_offset_to_operating_expenditures,67,(7b) Total Offsets to Operating Expenditures,74,(7b) Total Offsets to Operating Expenditures,65,(7b) Total Offsets to Operating Expenditures,65,(7b) Total Offsets to Operating Expenditures
|
81
|
+
col_b_net_operating_expenditures,68,(7c) NET Operating Expenditures.,75,(7c) NET Operating Expenditures.,66,(7c) NET Operating Expenditures.,66,(7c) NET Operating Expenditures.
|
82
|
+
col_b_individual_contributions_itemized,69,11(a i.) Individuals Itemized,76,11(a i.) Individuals Itemized,67,11(a.i) Individuals Itemized,67,11(a.i) Individuals Itemized
|
83
|
+
col_b_individual_contributions_unitemized,70,11(a.ii) Individuals Unitemized,77,11(a.ii) Individuals Unitemized,68,11(a.ii) Individuals Unitemized,68,11(a.ii) Individuals Unitemized
|
84
|
+
col_b_total_individual_contributions,71,11(a.iii) Individuals Total,78,11(a.iii) Individuals Total,69,11(a.iii) Individuals Total,69,11(a.iii) Individuals Total
|
85
|
+
col_b_political_party_contributions,72,11(b) Political Party Committees,79,11(b) Political Party Committees,70,11(b) Political Party Committees,70,11(b) Political Party Committees
|
86
|
+
col_b_pac_contributions,73,11(c) All Other Political Committees (PACS),80,11(c) All Other Political Committees (PACS),71,11(c) All Other Political Committees (PACS),71,11(c) All Other Political Committees (PACS)
|
87
|
+
col_b_candidate_contributions,74,11(d) The Candidate,81,11(d) The Candidate,72,11(d) The Candidate,72,11(d) The Candidate
|
88
|
+
col_b_total_contributions,75,11(e) Total Contributions,82,11(e) Total Contributions,73,11(e) Total Contributions,73,11(e) Total Contributions
|
89
|
+
col_b_transfers_from_authorized,76,12. Transfers From Other AUTH Committees,83,12. Transfers From Other AUTH Committees,74,12. Transfers From Other AUTH Committees,74,12. Transfers From Other AUTH Committees
|
90
|
+
col_b_candidate_loans,77,13(a) Loans made or guarn. by the Candidate,84,13(a) Loans made or guarn. by the Candidate,75,13(a) Loans made or guarn. by the Candidate,75,13(a) Loans made or guarn. by the Candidate
|
91
|
+
col_b_other_loans,78,13(b) All Other Loans,85,13(b) All Other Loans,76,13(b) All Other Loans,76,13(b) All Other Loans
|
92
|
+
col_b_total_loans,79,13(c) Total Loans,86,13(c) Total Loans,77,13(c) Total Loans,77,13(c) Total Loans
|
93
|
+
col_b_offset_to_operating_expenditures,80,14. Offsets to Operating Expenditures,87,14. Offsets to Operating Expenditures,78,14. Offsets to Operating Expenditures,78,14. Offsets to Operating Expenditures
|
94
|
+
col_b_other_receipts,81,15. Other Receipts,88,15. Other Receipts,79,15. Other Receipts,79,15. Other Receipts
|
95
|
+
col_b_total_receipts,82,16. Total Receipts,89,16. Total Receipts,80,16. Total Receipts,80,16. Total Receipts
|
96
|
+
col_b_operating_expenditures,83,17 Operating Expenditures,90,17 Operating Expenditures,81,17 Operating Expenditures,81,17 Operating Expenditures
|
97
|
+
col_b_transfers_to_authorized,84,18. Transfers To Other AUTH Committees,91,18. Transfers To Other AUTH Committees,82,18. Transfers To Other AUTH Committees,82,18. Transfers To Other AUTH Committees
|
98
|
+
col_b_candidate_loan_repayments,85,19(a) Loan Repayment By Candidate,92,19(a) Loan Repayment By Candidate,83,19(a) Loan Repayment By Candidate,83,19(a) Loan Repayment By Candidate
|
99
|
+
col_b_other_loan_repayments,86,"19(b) Loan Repayments, ALL Other Loans",93,"19(b) Loan Repayments, ALL Other Loans",84,"19(b) Loan Repayments, ALL Other Loans",84,"19(b) Loan Repayments, ALL Other Loans"
|
100
|
+
col_b_total_loan_repayments,87,19(c) Total Loan Repayments,94,19(c) Total Loan Repayments,85,19(c) Total Loan Repayments,85,19(c) Total Loan Repayments
|
101
|
+
col_b_refunds_to_individuals,88,20(a) Refund/Individuals Other than Pol. Cmtes,95,20(a) Refund/Individuals Other than Pol. Cmtes,86,20(a) Refund/Individuals Other than Pol. Cmtes,86,20(a) Refund/Individuals Other than Pol. Cmtes
|
102
|
+
col_b_refunds_to_party_committees,89,"20(b) Refund, Political Party Committees",96,"20(b) Refund, Political Party Committees",87,"20(b) Refund, Political Party Committees",87,"20(b) Refund, Political Party Committees"
|
103
|
+
col_b_refunds_to_other_committees,90,"20(c) Refund, Other Political Committees",97,"20(c) Refund, Other Political Committees",88,"20(c) Refund, Other Political Committees",88,"20(c) Refund, Other Political Committees"
|
104
|
+
col_b_total_refunds,91,20(d) Total Contributions Refunds,98,20(d) Total Contributions Refunds,89,20(d) Total Contributions Refunds,89,20(d) Total Contributions Refunds
|
105
|
+
col_b_other_disbursements,92,21. Other Disbursements,99,21. Other Disbursements,90,21. Other Disbursements,90,21. Other Disbursements
|
106
|
+
col_b_total_disbursements,93,22. Total Disbursements,100,22. Total Disbursements,91,22. Total Disbursements,91,22. Total Disbursements
|
107
|
+
col_b_gross_receipts_authorized_primary,,,101,Gross Receipts of Authorized Committees (primary),97,1. GROSS RECEIPTS OF AUTHORIZED COMMITTEES (PRIMARY),,
|
108
|
+
col_b_aggregate_personal_funds_primary,,,102,Aggregate Amount from Personal Funds (primary),98,2. AGGREGATE AMT OF CONTRIBUTIONS FROM PERSONAL FUNDS (PRIMARY),,
|
109
|
+
col_b_gross_receipts_minus_personal_funds_primary,,,103,Gross Receipts Minus Personal from Candidate (primary),99,3. GROSS RECEIPTS - MINUS PERSONAL CONTRIBUTIONS FROM CANDIDATE (PRIMARY),,
|
110
|
+
col_b_gross_receipts_authorized_general,,,104,Gross Receipts of Authorized Committees (general),100,1. GROSS RECEIPTS OF AUTHORIZED COMMITTEES (GENERAL),,
|
111
|
+
col_b_aggregate_personal_funds_general,,,105,Aggregate Amount from Personal Funds (general),101,2. AGGREGATE AMT OF CONTRIBUTIONS FROM PERSONAL FUNDS (GENERAL),,
|
112
|
+
col_b_gross_receipts_minus_personal_funds_general,,,106,Gross Receipts Minus Personal from Candidate (general),102,3. GROSS RECEIPTS - MINUS PERSONAL CONTRIBUTIONS FROM CANDIDATE (GENERAL),,
|
@@ -0,0 +1,2 @@
|
|
1
|
+
HDRFEC8.0StatecraftvCraftB4.2.98RunTime: 02/10/2012 03:26:03 PM
|
2
|
+
F1NC00013128Congressman Waxman Campaign Committee6380 Wilshire Blvd., #1612Los AngelesCA90048Xjane20@pacbell.net20120210PadillaMary Ellen20120210AH6CA24048WaxmanHenryAHCA33DEMLA PAC6380 Wilshire Blvd # 1612Los AngelesCA90048LPSPadillaMary Ellen6380 Wilshire Blvd. Suite 1612Los AngelesCA90048Assistant Treasurer3236554065PadillaMary Ellen6380 Wilshire Blvd. Suite 1612Los AngelesCA90048Treasurer3236554065LeidermanJane6380 Wilshire Blvd. Suite 1612Los AngelesCA90048Assistant Treasurer3236554065CA Bank & Trust550 S Hope StLos AngelesCA90071
|
data/spec/data/82094.fec
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
"HDR","FEC","5.00","Aristotle International CM4 PM4","Version 4.2.1","^","",""
|
2
|
+
"F3N","C00320457","Team Emerson for Jo Ann Emerson","P.O. Box 822","","Cape Girardeau","MO","63702 "," ","MO",08,"Q1","G ", ,"","","X","","",20030101,20030331,12558.35,20.00,12538.35,55673.34,0.00,55673.34,185818.68,0.00,0.00,2500.00,140.00,2640.00,418.35,9500.00,0.00,12558.35,0.00,0.00,0.00,0.00,0.00,652.97,13211.32,55673.34,0.00,0.00,0.00,0.00,20.00,0.00,0.00,20.00,12855.00,68548.34,241155.70,13211.32,254367.02,68548.34,185818.68,17233.35,20.00,17213.35,132748.71,0.00,132748.71,,,5815.00,418.35,11000.00,0.00,17233.35,0.00,0.00,0.00,0.00,0.00,1170.26,18403.61,132748.71,0.00,0.00,0.00,0.00,20.00,0.00,0.00,20.00,12855.00,145623.71,"David S. Limbaugh",20030415
|
3
|
+
"TEXT","F3N","",""
|
4
|
+
"SA11C","C00320457","PAC","HOLCIM, Inc. PAC","6211 Ann Arbor Road","","Dundee","MI","48131 ","P ","","","",1500.00,20030331,1500.00,"18K","Receipt","","","","","",,"","","","","","","","","","0414200339C29117","","","",""
|
5
|
+
"SA11C","C00320457","PAC","PASS PAC - Professional Airways","Systems Specialists","1150 - 17th Street, NW ","Washington","DC","20036 ","P ","","","Administrative Director",1500.00,20030331,1500.00,"18K","Receipt","C00286807","","","","",,"","","","","","","","","","0409200320C29109","","","",""
|
6
|
+
"SA11C","C00320457","PAC","NRLCA Political Action Committee","National Rural Letter Carriers As","1630 Duke Street, 4th Floor ","Alexandria","VA","223143465","P ","","","",1500.00,20030331,1500.00,"18K","Receipt","","","","","",,"","","","","","","","","","0409200320C29110","","","",""
|
7
|
+
"SA11C","C00320457","PAC","AFLAC Incorporated PAC","1932 Wynnton Road","","Columbus","GA","31999 ","P ","","","",1500.00,20030331,1500.00,"18K","Receipt","","","","","",,"","","","","","","","","","0409200320C29107","","","",""
|
8
|
+
"SA11A1","C00320457","IND","Franco^Alan","809 Jefferson Highway","","New Orleans","LA","70121 ","P ","","Magnolia Marketing Company","Vice President",2000.00,20030331,2000.00,"15","Receipt","","","","","",,"","","","","","","","","","0414200339C29116","","","",""
|
9
|
+
"SA11C","C00320457","PAC","Boeing PAC","1200 Wilson Boulevard","","Arlington","VA","22209 ","P ","","","PAC Manager",1500.00,20030331,1500.00,"18K","Receipt","","","","","",,"","","","","","","","","","0414200339C29118","","","",""
|
10
|
+
"SA11B","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","P ","","","",201.32,20030107,201.32,"15Z","In-Kind","","","","","",,"","","","","","","","","","0415200332C29119","","","",""
|
11
|
+
"SA11B","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","P ","","","",219.71,20030128,18.39,"15Z","In-Kind","","","","","",,"","","","","","","","","","0415200332C29120","","","",""
|
12
|
+
"SA11B","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","P ","","","",418.35,20030320,198.64,"15Z","In-Kind","","","","","",,"","","","","","","","","","0415200332C29121","","","",""
|
13
|
+
"SA11A1","C00320457","IND","Pinckley^Guy","402 Palo Verde","","Malden","MO","63863 ","P ","","","Retired",500.00,20030206,500.00,"15","Receipt","","","","","",,"","","","","","","","","","0409200320C29104","","","",""
|
14
|
+
"SA11C","C00320457","PAC","Pork PAC","National Pork Producers","122 C Street, N.W. ","Washington","DC","20001 ","P ","","","",1000.00,20030305,1000.00,"18K","Receipt","","","","","",,"","","","","","","","","","0409200320C29105","","","",""
|
15
|
+
"SA11C","C00320457","PAC","ADM PAC","PO Box 1470","","Decatur","IL","62525 ","P ","","","Attorney",1000.00,20030331,1000.00,"18K","Receipt","","","","","",,"","","","","","","","","","0409200320C29108","","","",""
|
16
|
+
"SA15","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","P ","","","",726.99,20030131,209.70,"17R","Other Receipt","","","","","","","","","","","","","","","","0414200339C29113","","",""
|
17
|
+
"SA15","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","P ","","","",910.53,20030228,183.54,"17R","Other Receipt","","","","","","","","","","","","","","","","0414200339C29114","","",""
|
18
|
+
"SA15","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","P ","","","",1085.96,20030331,175.43,"17R","Other Receipt","","","","","","","","","","","","","","","","0414200339C29115","","",""
|
19
|
+
"SA15","C00320457","","American Economy Insurance","First National Insurance Agency","PO Box 589 ","Sikeston","MO","63801 ","P ","","","",49.73,20030204,49.73,"17R","Other Receipt","","","","","","","","","","","","","","","","0409200320C29103","","",""
|
20
|
+
"SA15","C00320457","","Southwestern Bell Communications","PO Box 940012","","Dallas","TX","753940012","P ","","","",34.57,20030204,34.57,"17R","Other Receipt","","","","","","","","","","","","","","","","0411200316C29111","","",""
|
21
|
+
"SB17","C00320457","","AAA Mini Storage","1815 Cape La Croix Road","","Cape Girardeau","MO","63701 ","","STORAGE EXPENSE","","",20030207,170.00,"C00320457","","","","",,"","","","","","","","STORAGE EXPENSE","","0409200320E7524","","","","",""
|
22
|
+
"SB17","C00320457","","AAA Mini Storage","1815 Cape La Croix Road","","Cape Girardeau","MO","63701 ","","STORAGE EXPENSE","","",20030225,85.00,"C00320457","","","","",,"","","","","","","","STORAGE EXPENSE","","0411200316E7554","","","","",""
|
23
|
+
"SB17","C00320457","","Ameren Union Electric","PO Box 66529","","Saint Louis","MO","63166 ","","UTILITIES EXPENSE","","",20030116,185.00,"C00320457","","","","",,"","","","","","","","UTILITIES EXPENSE","","0130200329E7466","","","","",""
|
24
|
+
"SB17","C00320457","","Ameren Union Electric","PO Box 66529","","Saint Louis","MO","63166 ","","UTILITIES EXPENSE","","",20030203,262.45,"C00320457","","","","",,"","","","","","","","UTILITIES EXPENSE","","0409200320E7513","","","","",""
|
25
|
+
"SB17","C00320457","","Ameren Union Electric","PO Box 66529","","Saint Louis","MO","63166 ","","UTILITIES EXPENSE","","",20030305,260.50,"C00320457","","","","",,"","","","","","","","UTILITIES EXPENSE","","0411200316E7566","","","","",""
|
26
|
+
"SB17","C00320457","","American Express","Suite 0001","","Chicago","IL","606790001","","MISC. MEALS & TRAVEL AND SEE BELOW","","",20030113,7133.50,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL AND SEE BELOW","","0414200339E7597","","","","",""
|
27
|
+
"SB17","C00320457","","American Airlines","PO Box 619612","MD 2400 ","Dallas","TX","752619612","","TRAVEL EXPENSE","","",20030113,306.00,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7602","","","","",""
|
28
|
+
"SB17","C00320457","","American Airlines","PO Box 619612","MD 2400 ","Dallas","TX","752619612","","TRAVEL EXPENSE","","",20030113,250.00,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7598","","","","",""
|
29
|
+
"SB17","C00320457","","American Airlines","PO Box 619612","MD 2400 ","Dallas","TX","752619612","","TRAVEL EXPENSE","","",20030113,228.00,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7603","","","","",""
|
30
|
+
"SB17","C00320457","","Coach","7100 S. Croatan Hwy #219","","Nags Head","NC","27959 ","","POLITICAL GIFTS","","",20030113,252.41,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL GIFTS","","0414200339E7604","","","","",""
|
31
|
+
"SB17","C00320457","","Emerils Restaurant","800 Tchoupitoulas","","New Orleans","LA","70130 ","","POLITICAL MEAL","","",20030113,2449.98,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL MEAL","","0414200339E7599","","","","",""
|
32
|
+
"SB17","C00320457","","Food Giant","1445 Chain Bridge Road","","Mc Lean","VA","22101 ","","POLITICAL MEALS","","",20030113,392.33,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL MEALS","","0414200339E7601","","","","",""
|
33
|
+
"SB17","C00320457","","US Airways","PO Box 5","","Winston Salem","NC","27102 ","","TRAVEL EXPENSE","","",20030113,240.00,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7606","","","","",""
|
34
|
+
"SB17","C00320457","","White House Historical Assoc.","Museum Shop","1450 Pennsylvania Ave., NW ","Washington","DC","20230 ","","POLITICAL GIFTS","","",20030113,971.00,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL GIFTS","","0414200339E7605","","","","",""
|
35
|
+
"SB17","C00320457","","Wyndham Hotels","610 Poydras St.","","New Orleans","LA","70130 ","","POLITICAL LODGING","","",20030113,531.45,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL LODGING","","0414200339E7600","","","","",""
|
36
|
+
"SB17","C00320457","","American Express","Suite 0001","","Chicago","IL","606790001","","MISC. MEALS & TRAVEL UNDER $200","","",20030130,452.37,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL UNDER $200","","0409200320E7511","","","","",""
|
37
|
+
"SB17","C00320457","","American Express","Suite 0001","","Chicago","IL","606790001","","MISC. MEALS & TRAVEL AND SEE BELOW","","",20030207,1394.72,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL AND SEE BELOW","","0414200339E7608","","","","",""
|
38
|
+
"SB17","C00320457","","Colvin Run Tavern","8045 Leesburg Pike","","Vienna","VA","22182 ","","POLITICAL FUNDRAISING","","",20030207,622.89,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL FUNDRAISING","","0414200339E7607","","","","",""
|
39
|
+
"SB17","C00320457","","American Express","Suite 0001","","Chicago","IL","606790001","","MISC. MEALS & TRAVEL AND SEE BELOW","","",20030313,3412.06,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL AND SEE BELOW","","0414200339E7616","","","","",""
|
40
|
+
"SB17","C00320457","","American Airlines","PO Box 619612","MD 2400 ","Dallas","TX","752619612","","TRAVEL EXPENSE","","",20030313,209.00,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7620","","","","",""
|
41
|
+
"SB17","C00320457","","Capital City Steakhouse","127 East High St.","","Jefferson City","MO","65101 ","","POLITICAL MEAL","","",20030313,775.00,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL MEAL","","0414200339E7619","","","","",""
|
42
|
+
"SB17","C00320457","","Southwest Airlines","St. Louis Lambert Airport","","Bridgeton","MO","63044 ","","TRAVEL EXPENSE","","",20030313,204.50,"C00320457","","","","",,"","","","","","","X","MEMO: TRAVEL EXPENSE","","0414200339E7618","","","","",""
|
43
|
+
"SB17","C00320457","","The Greenbrier","300 West Main St.","","White Sulphur Spgs","WV","24986 ","","POLITICAL LODGING","","",20030313,475.42,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL LODGING","","0414200339E7617","","","","",""
|
44
|
+
"SB17","C00320457","","Aristotle Publishing, Inc.","205 Pennsylvania Avenue, S.E.","","Washington","DC","200031164","","SOFTWARE MAINTENANCE","","",20030225,2750.00,"C00320457","","","","",,"","","","","","","","SOFTWARE MAINTENANCE","","0411200316E7558","","","","",""
|
45
|
+
"SB17","C00320457","","AT&T","PO Box 27-680","","Kansas City","MO","641800680","","TELEPHONE EXPENSE","","",20030116,141.22,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0130200329E7478","","","","",""
|
46
|
+
"SB17","C00320457","","AT&T","PO Box 27-680","","Kansas City","MO","641800680","","TELEPHONE EXPENSE","","",20030207,208.33,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0409200320E7526","","","","",""
|
47
|
+
"SB17","C00320457","","AT&T","PO Box 27-680","","Kansas City","MO","641800680","","TELEPHONE EXPENSE","","",20030314,189.46,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0411200316E7575","","","","",""
|
48
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030102,1742.06,"C00320457","","","","",,"","","","","","","","PAYROLL","","0130200328E7457","","","","",""
|
49
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030115,972.47,"C00320457","","","","",,"","","","","","","","PAYROLL","","0130200329E7465","","","","",""
|
50
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PROFESSIONAL SERVICES","","",20030116,100.00,"C00320457","","","","",,"","","","","","","","PROFESSIONAL SERVICES","","0130200329E7479","","","","",""
|
51
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030130,972.47,"C00320457","","","","",,"","","","","","","","PAYROLL","","0409200320E7509","","","","",""
|
52
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030213,971.79,"C00320457","","","","",,"","","","","","","","PAYROLL","","0409200320E7539","","","","",""
|
53
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PROFESSIONAL SERVICES","","",20030225,275.00,"C00320457","","","","",,"","","","","","","","PROFESSIONAL SERVICES","","0411200316E7559","","","","",""
|
54
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030228,971.79,"C00320457","","","","",,"","","","","","","","PAYROLL","","0411200316E7565","","","","",""
|
55
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030315,611.04,"C00320457","","","","",,"","","","","","","","PAYROLL","","0411200316E7581","","","","",""
|
56
|
+
"SB17","C00320457","","Begley, Janssen, Young and Birk","2103 Themis","","Cape Girardeau","MO","63701 ","","PAYROLL","","",20030331,611.04,"C00320457","","","","",,"","","","","","","","PAYROLL","","0411200316E7591","","","","",""
|
57
|
+
"SB17","C00320457","IND","Bernhardt^Iris","7 King Drive","","Rolla","MO","65401 ","","MISCELLANEOUS EXPENSE","","",20030211,25.00,"C00320457","","","","",,"","","","","","","","MISCELLANEOUS EXPENSE","","0409200320E7537","","","","",""
|
58
|
+
"SB17","C00320457","IND","Bernhardt^Iris","7 King Drive","","Rolla","MO","65401 ","","MISC. MEALS & TRAVEL","","",20030225,200.89,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0411200316E7553","","","","",""
|
59
|
+
"SB17","C00320457","","Concord","430 Broadway","","Cape Girardeau","MO","63701 ","","CHRISTMAS CARD EXPENSE","","",20030116,2003.86,"C00320457","","","","",,"","","","","","","","CHRISTMAS CARD EXPENSE","","0130200329E7470","","","","",""
|
60
|
+
"SB17","C00320457","","Concord","430 Broadway","","Cape Girardeau","MO","63701 ","","PRINTING EXPENSE","","",20030207,53.10,"C00320457","","","","",,"","","","","","","","PRINTING EXPENSE","","0409200320E7518","","","","",""
|
61
|
+
"SB17","C00320457","","Congressional Institute","401 Wythe St.","Suite 103 ","Alexandria","VA","22314 ","","REGISTRATION FEE","","",20030114,1214.00,"C00320457","","","","",,"","","","","","","","REGISTRATION FEE","","0130200329E7500","","","","",""
|
62
|
+
"SB17","C00320457","","Congressional Institute","401 Wythe St.","Suite 103 ","Alexandria","VA","22314 ","","REGISTRATION FEE","","",20030204,98.00,"C00320457","","","","",,"","","","","","","","REGISTRATION FEE","","0409200320E7515","","","","",""
|
63
|
+
"SB17","C00320457","","Ekern & Company","1212 New York Avenue, NW","Ste. 350 ","Washington","DC","20007 ","","FUNDRAISING EXPENSE","","",20030116,3007.52,"C00320457","","","","",,"","","","","","","","FUNDRAISING EXPENSE","","0130200329E7473","","","","",""
|
64
|
+
"SB17","C00320457","","Ekern & Company","1212 New York Avenue, NW","Ste. 350 ","Washington","DC","20007 ","","FUNDRAISING EXPENSE","","",20030225,3005.75,"C00320457","","","","",,"","","","","","","","FUNDRAISING EXPENSE","","0411200316E7556","","","","",""
|
65
|
+
"SB17","C00320457","","Element 74","2845 Independence","","Cape Girardeau","MO","63701 ","","WEBSITE HOST & COMPUTER EXPENSE","","",20030207,275.00,"C00320457","","","","",,"","","","","","","","WEBSITE HOST & COMPUTER EXPENSE","","0409200320E7520","","","","",""
|
66
|
+
"SB17","C00320457","","Element 74","2845 Independence","","Cape Girardeau","MO","63701 ","","COMPUTER EXPENSE","","",20030225,3343.58,"C00320457","","","","",,"","","","","","","","COMPUTER EXPENSE","","0411200316E7557","","","","",""
|
67
|
+
"SB17","C00320457","","Element 74","2845 Independence","","Cape Girardeau","MO","63701 ","","COMPUTER & LABOR EXPENSE","","",20030314,999.11,"C00320457","","","","",,"","","","","","","","COMPUTER & LABOR EXPENSE","","0414200339E7621","","","","",""
|
68
|
+
"SB17","C00320457","CAN","Jo Ann Emerson","1637 Themis","","Cape Girardeau","MO","63701 ","","MISC. MEALS & TRAVEL UNDER $200","","",20030314,341.82,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL UNDER $200","","0411200316E7582","","","","",""
|
69
|
+
"SB17","C00320457","CAN","Jo Ann Emerson","1637 Themis","","Cape Girardeau","MO","63701 ","","MISC. MEALS & TRAVEL UNDER $200","","",20030321,351.51,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL UNDER $200","","0414200339E7623","","","","",""
|
70
|
+
"SB17","C00320457","","Enterprise Rent-A-Car","PO Box 16030","","St. Louis","MO","631050730","","CAR RENTAL","","",20030116,314.96,"C00320457","","","","",,"","","","","","","","CAR RENTAL","","0130200329E7477","","","","",""
|
71
|
+
"SB17","C00320457","","Enterprise Rent-A-Car","PO Box 16030","","St. Louis","MO","631050730","","CAR RENTAL","","",20030207,218.49,"C00320457","","","","",,"","","","","","","","CAR RENTAL","","0409200320E7519","","","","",""
|
72
|
+
"SB17","C00320457","","Enterprise Rent-A-Car","PO Box 16030","","St. Louis","MO","631050730","","CAR RENTAL","","",20030314,1029.93,"C00320457","","","","",,"","","","","","","","CAR RENTAL","","0411200316E7574","","","","",""
|
73
|
+
"SB17","C00320457","","Federal Express","PO Box 1140","","Memphis","TN","381011140","","SHIPPING EXPENSE","","",20030116,542.43,"C00320457","","","","",,"","","","","","","","SHIPPING EXPENSE","","0130200329E7475","","","","",""
|
74
|
+
"SB17","C00320457","","Federal Express","PO Box 1140","","Memphis","TN","381011140","","SHIPPING EXPENSE","","",20030225,200.20,"C00320457","","","","",,"","","","","","","","SHIPPING EXPENSE","","0411200316E7560","","","","",""
|
75
|
+
"SB17","C00320457","","Federal Express","PO Box 1140","","Memphis","TN","381011140","","SHIPPING EXPENSE","","",20030313,113.91,"C00320457","","","","",,"","","","","","","","SHIPPING EXPENSE","","0411200316E7571","","","","",""
|
76
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","BANK CHARGE","","",20030101,39.50,"C00320457","","","","",,"","","","","","","","BANK CHARGE","","0130200329E7501","","","","",""
|
77
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","FEDERAL TAX DEPOSIT","","",20030107,1467.85,"C00320457","","","","",,"","","","","","","","FEDERAL TAX DEPOSIT","","0130200328E7460","","","","",""
|
78
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","BANK CHARGE","","",20030201,39.50,"C00320457","","","","",,"","","","","","","","BANK CHARGE","","0409200320E7514","","","","",""
|
79
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","FEDERAL TAX DEPOSIT","","",20030204,662.30,"C00320457","","","","",,"","","","","","","","FEDERAL TAX DEPOSIT","","0409200320E7516","","","","",""
|
80
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","RETURN CHECK CHARGE","","",20030218,2.00,"C00320457","","","","",,"","","","","","","","RETURN CHECK CHARGE","","0414200339E7611","","","","",""
|
81
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","BANK SERVICE CHARGE","","",20030227,7.91,"C00320457","","","","",,"","","","","","","","BANK SERVICE CHARGE","","0414200339E7615","","","","",""
|
82
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","FEDERAL TAX DEPOSIT","","",20030305,661.66,"C00320457","","","","",,"","","","","","","","FEDERAL TAX DEPOSIT","","0411200316E7567","","","","",""
|
83
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","BANK CHARGE","","",20030305,39.50,"C00320457","","","","",,"","","","","","","","BANK CHARGE","","0414200339E7622","","","","",""
|
84
|
+
"SB17","C00320457","","First National Bank","2027 Broadway","","Cape Girardeau","MO","63701 ","","FEDERAL TAX DEPOSIT","","",20030317,541.00,"C00320457","","","","",,"","","","","","","","FEDERAL TAX DEPOSIT","","0411200316E7583","","","","",""
|
85
|
+
"SB17","C00320457","","Knaup Floral","838 William Street","","Cape Girardeau","MO","63701 ","","FUNERAL FLOWERS","","",20030116,37.35,"C00320457","","","","",,"","","","","","","","FUNERAL FLOWERS","","0130200329E7476","","","","",""
|
86
|
+
"SB17","C00320457","","Knaup Floral","838 William Street","","Cape Girardeau","MO","63701 ","","POLITICAL FLOWERS","","",20030207,42.30,"C00320457","","","","",,"","","","","","","","POLITICAL FLOWERS","","0409200320E7527","","","","",""
|
87
|
+
"SB17","C00320457","","Knaup Floral","838 William Street","","Cape Girardeau","MO","63701 ","","POLITICAL/FUNERAL FLOWERS","","",20030314,81.71,"C00320457","","","","",,"","","","","","","","POLITICAL/FUNERAL FLOWERS","","0411200316E7578","","","","",""
|
88
|
+
"SB17","C00320457","","KREI","PO Box 461","","Farmington","MO","63640 ","","POLITICAL ADVERTISING","","",20030116,200.00,"C00320457","","","","",,"","","","","","","","POLITICAL ADVERTISING","","0130200329E7471","","","","",""
|
89
|
+
"SB17","C00320457","","KTJJ","PO Box 461","","Farmington","MO","63640 ","","POLITICAL ADVERTISING","","",20030116,250.00,"C00320457","","","","",,"","","","","","","","POLITICAL ADVERTISING","","0130200329E7472","","","","",""
|
90
|
+
"SB17","C00320457","PTY","Missouri Association of Republicans","c/o Pat & Tom Lehman","2903 SW Scherer Rd. ","Lees Summit","MO","640821304","","REGISTRATION/POLITICAL MEALS","","",20030117,282.00,"C00320457","","","","",,"","","","","","","","REGISTRATION/POLITICAL MEALS","","0130200329E7503","","","","",""
|
91
|
+
"SB17","C00320457","PTY","Missouri Association of Republicans","c/o Pat & Tom Lehman","2903 SW Scherer Rd. ","Lees Summit","MO","640821304","","REGISTRATION/POLITICAL MEALS","","",20030214,92.00,"C00320457","","","","",,"","","","","","","","REGISTRATION/POLITICAL MEALS","","0414200339E7610","","","","",""
|
92
|
+
"SB17","C00320457","PTY","Missouri Association of Republicans","c/o Pat & Tom Lehman","2903 SW Scherer Rd. ","Lees Summit","MO","640821304","","REGISTRATION/POLITICAL MEALS","","",20030214,107.00,"C00320457","","","","",,"","","","","","","","REGISTRATION/POLITICAL MEALS","","0414200339E7609","","","","",""
|
93
|
+
"SB17","C00320457","","Mastercard","PO Box 15098","","Wilmington","DE","198865098","","MISC. MEALS & TRAVEL","","",20030130,124.46,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0409200320E7512","","","","",""
|
94
|
+
"SB17","C00320457","","Mastercard","PO Box 15098","","Wilmington","DE","198865098","","POLITICAL MEALS AND SEE BELOW","","",20030219,735.82,"C00320457","","","","",,"","","","","","","","POLITICAL MEALS AND SEE BELOW","","0414200339E7613","","","","",""
|
95
|
+
"SB17","C00320457","","Pizzeria Paradiso","3282 M Street, NW","","Washington","DC","20007 ","","POLITICAL MEAL","","",20030219,685.82,"C00320457","","","","",,"","","","","","","X","MEMO: POLITICAL MEAL","","0414200339E7614","","","","",""
|
96
|
+
"SB17","C00320457","","Mastercard","PO Box 15098","","Wilmington","DE","198865098","","MISC. MEALS & TRAVEL","","",20030319,104.65,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0411200316E7588","","","","",""
|
97
|
+
"SB17","C00320457","","Mastercard","PO Box 15098","","Wilmington","DE","198865098","","MISC. TRAVEL EXPENSE","","",20030320,127.58,"C00320457","","","","",,"","","","","","","","MISC. TRAVEL EXPENSE","","0411200316E7589","","","","",""
|
98
|
+
"SB17","C00320457","","Mail Boxes, Etc.","209 S. Broadview","","Cape Girardeau","MO","63701 ","","SHIPPING EXPENSE","","",20030116,134.11,"C00320457","","","","",,"","","","","","","","SHIPPING EXPENSE","","0130200329E7468","","","","",""
|
99
|
+
"SB17","C00320457","","McClanahan Real Estate Co.","PO Box 1115","","Cape Girardeau","MO","637021115","","JANUARY RENT","","",20030103,500.00,"C00320457","","","","",,"","","","","","","","JANUARY RENT","","0130200328E7458","","","","",""
|
100
|
+
"SB17","C00320457","","MO Department of Revenue","PO Box 999","","Jefferson City","MO","651080999","","EMPLOYERS WITHHOLDING","","",20030107,388.00,"C00320457","","","","",,"","","","","","","","EMPLOYERS WITHHOLDING","","0130200328E7459","","","","",""
|
101
|
+
"SB17","C00320457","","MO Department of Revenue","PO Box 999","","Jefferson City","MO","651080999","","EMPLOYERS WITHHOLDING","","",20030317,222.00,"C00320457","","","","",,"","","","","","","","EMPLOYERS WITHHOLDING","","0411200316E7584","","","","",""
|
102
|
+
"SB17","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","","SATELLITE FEED","","",20030107,201.32,"C00320457","","","","",,"","","","","","","","IN KIND: SATELLITE FEED","","0415200332C29119IK","","","","",""
|
103
|
+
"SB17","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","","SATELLITE FEED","","",20030128,18.39,"C00320457","","","","",,"","","","","","","","IN KIND: SATELLITE FEED","","0415200332C29120IK","","","","",""
|
104
|
+
"SB17","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","","MEDIA PRODUCTION","","",20030314,44.94,"C00320457","","","","",,"","","","","","","","MEDIA PRODUCTION","","0411200316E7576","","","","",""
|
105
|
+
"SB17","C00320457","PTY","NRCC","Natl Republican Congressional Com","320 First Street, S.E. ","Washington","DC","20003 ","","SATELLITE FEED","","",20030320,198.64,"C00320457","","","","",,"","","","","","","","IN KIND: SATELLITE FEED","","0415200332C29121IK","","","","",""
|
106
|
+
"SB17","C00320457","","Postmaster","320 N. Frederick","","Cape Girardeau","MO","63701 ","","POSTAGE","","",20030108,74.00,"C00320457","","","","",,"","","","","","","","POSTAGE","","0130200328E7461","","","","",""
|
107
|
+
"SB17","C00320457","","Postmaster","320 N. Frederick","","Cape Girardeau","MO","63701 ","","PO BOX RENTAL FEE","","",20030114,44.00,"C00320457","","","","",,"","","","","","","","PO BOX RENTAL FEE","","0130200329E7464","","","","",""
|
108
|
+
"SB17","C00320457","","Postmaster","320 N. Frederick","","Cape Girardeau","MO","63701 ","","POSTAGE","","",20030207,111.00,"C00320457","","","","",,"","","","","","","","POSTAGE","","0409200320E7534","","","","",""
|
109
|
+
"SB17","C00320457","","Rental Land","1922 Independence","","Cape Girardeau","MO","63701 ","","EQUIPMENT RENTAL","","",20030207,41.34,"C00320457","","","","",,"","","","","","","","EQUIPMENT RENTAL","","0409200320E7522","","","","",""
|
110
|
+
"SB17","C00320457","","Rust Investment Properties","2502 Tanner Drive","","Cape Girardeau","MO","637035700","","FEBRUARY RENT","","",20030205,500.00,"C00320457","","","","",,"","","","","","","","FEBRUARY RENT","","0409200320E7517","","","","",""
|
111
|
+
"SB17","C00320457","","Rust Investment Properties","2502 Tanner Drive","","Cape Girardeau","MO","637035700","","MARCH RENT","","",20030225,500.00,"C00320457","","","","",,"","","","","","","","MARCH RENT","","0411200316E7551","","","","",""
|
112
|
+
"SB17","C00320457","","Rust Investment Properties","2502 Tanner Drive","","Cape Girardeau","MO","637035700","","APRIL RENT","","",20030313,500.00,"C00320457","","","","",,"","","","","","","","APRIL RENT","","0411200316E7570","","","","",""
|
113
|
+
"SB17","C00320457","","Sams Club","Siemers Drive","","Cape Girardeau","MO","63701 ","","OFFICE SUPPLIES","","",20030124,47.90,"C00320457","","","","",,"","","","","","","","OFFICE SUPPLIES","","0130200328E7462","","","","",""
|
114
|
+
"SB17","C00320457","","Sams Club","Siemers Drive","","Cape Girardeau","MO","63701 ","","MEMBERSHIP RENEWAL","","",20030317,30.00,"C00320457","","","","",,"","","","","","","","MEMBERSHIP RENEWAL","","0411200316E7585","","","","",""
|
115
|
+
"SB17","C00320457","","Southwestern Bell Communications","PO Box 940012","","Dallas","TX","753940012","","TELEPHONE EXPENSE","","",20030207,116.80,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0409200320E7532","","","","",""
|
116
|
+
"SB17","C00320457","","Southwestern Bell Communications","PO Box 940012","","Dallas","TX","753940012","","TELEPHONE EXPENSE","","",20030314,217.70,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0411200316E7572","","","","",""
|
117
|
+
"SB17","C00320457","","SBC","32255 Northwestern Highway","Suite 143 ","Farmington","MI","483341573","","PAGER EXPENSE","","",20030207,45.85,"C00320457","","","","",,"","","","","","","","PAGER EXPENSE","","0409200320E7523","","","","",""
|
118
|
+
"SB17","C00320457","","SBC","32255 Northwestern Highway","Suite 143 ","Farmington","MI","483341573","","PAGER EXPENSE","","",20030225,45.85,"C00320457","","","","",,"","","","","","","","PAGER EXPENSE","","0411200316E7552","","","","",""
|
119
|
+
"SB17","C00320457","IND","Smith^Lloyd","1204 Sikes","","Sikeston","MO","63801 ","","MISC. MEALS & TRAVEL","","",20030312,243.32,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0411200316E7569","","","","",""
|
120
|
+
"SB17","C00320457","","Staples","Dept. 82","PO Box 30292 ","Salt Lake City","UT","841030292","","OFFICE SUPPLIES","","",20030116,141.05,"C00320457","","","","",,"","","","","","","","OFFICE SUPPLIES","","0130200329E7480","","","","",""
|
121
|
+
"SB17","C00320457","","Staples","Dept. 82","PO Box 30292 ","Salt Lake City","UT","841030292","","OFFICE SUPPLIES","","",20030314,9.74,"C00320457","","","","",,"","","","","","","","OFFICE SUPPLIES","","0411200316E7573","","","","",""
|
122
|
+
"SB17","C00320457","IND","Stoker^April","2613 Perryville Road","Apt. 14 ","Cape Girardeau","MO","63701 ","","MISC. MEALS & TRAVEL","","",20030130,94.14,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0409200320E7510","","","","",""
|
123
|
+
"SB17","C00320457","IND","Stoker^April","2613 Perryville Road","Apt. 14 ","Cape Girardeau","MO","63701 ","","MISC. MEALS & TRAVEL","","",20030211,107.24,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0409200320E7536","","","","",""
|
124
|
+
"SB17","C00320457","IND","Stoker^April","2613 Perryville Road","Apt. 14 ","Cape Girardeau","MO","63701 ","","MISC. MEALS & TRAVEL","","",20030307,75.81,"C00320457","","","","",,"","","","","","","","MISC. MEALS & TRAVEL","","0411200316E7568","","","","",""
|
125
|
+
"SB17","C00320457","","The National Theatre","1321 Pennsylvania Avenue, NW","","Washington","DC","20004 ","","FUNDRAISING EXPENSE","","",20030225,1375.00,"C00320457","","","","",,"","","","","","","","FUNDRAISING EXPENSE","","0411200316E7555","","","","",""
|
126
|
+
"SB17","C00320457","","The Royan NOrleans","300 Broadway","","Cape Girardeau","MO","63701 ","","POLITICAL MEAL","","",20030116,1305.57,"C00320457","","","","",,"","","","","","","","POLITICAL MEAL","","0130200329E7502","","","","",""
|
127
|
+
"SB17","C00320457","","Verizon Wireless","PO Box 6170","","Carol Stream","IL","60197 ","","TELEPHONE EXPENSE","","",20030116,69.64,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0130200329E7469","","","","",""
|
128
|
+
"SB17","C00320457","","Verizon Wireless","PO Box 6170","","Carol Stream","IL","60197 ","","TELEPHONE EXPENSE","","",20030227,153.12,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0411200316E7562","","","","",""
|
129
|
+
"SB17","C00320457","","Verizon Wireless","PO Box 6170","","Carol Stream","IL","60197 ","","TELEPHONE EXPENSE","","",20030314,71.04,"C00320457","","","","",,"","","","","","","","TELEPHONE EXPENSE","","0411200316E7580","","","","",""
|
130
|
+
"SB21","C00320457","","American Cancer Society","937 Broadway, Suite 2","","Cape Girardeau","MO","63701 ","","SPONSORSHIP","P ","",20030317,500.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7586","","","","",""
|
131
|
+
"SB21","C00320457","PTY","Bob Beauprez for Congress","14142 Denver W. Pkwy","Suite 270 ","Golden","CO","80401 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7540","","","","",""
|
132
|
+
"SB21","C00320457","PTY","Missourians for Matt Blunt","147 N. Meramec","Suite 100 ","Saint Louis","MO","63105 ","","POLITICAL DONATION","P ","",20030331,1175.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7592","","","","",""
|
133
|
+
"SB21","C00320457","PTY","Brown-Waite for Congress","204 Ponce De Leon Boulevard","","Brooksville","FL","34601 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7541","","","","",""
|
134
|
+
"SB21","C00320457","PTY","Burns for Congress","121 N. Main St. #2","","Sylvania","GA","30467 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7542","","","","",""
|
135
|
+
"SB21","C00320457","PTY","Cape Girardeau County Republican Women","c/o Mrs. Carolyn King","2531 Jonquil Lane ","Cape Girardeau","MO","63701 ","","TICKETS","P ","",20030228,90.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7564","","","","",""
|
136
|
+
"SB21","C00320457","PTY","Cape Girardeau County Republican Women","c/o Mrs. Carolyn King","2531 Jonquil Lane ","Cape Girardeau","MO","63701 ","","POLITICAL DONATION","P ","",20030207,500.00,"C00320457","","","","",,"","","","","","","","","","0409200320E7535","","","","",""
|
137
|
+
"SB21","C00320457","PTY","Chris Chocola for Congress, Inc.","PO Box 6728","","South Bend","IN","46660 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7543","","","","",""
|
138
|
+
"SB21","C00320457","","Ducks Unlimited","PO Box 387","","Jackson","MO","63755 ","","POLITICAL DONATION","P ","",20030129,250.00,"C00320457","","","","",,"","","","","","","","","","0409200320E7508","","","","",""
|
139
|
+
"SB21","C00320457","PTY","Jim Gerlach for Congress Committee","911 Wolsh Ayres Way","","Malvern","PA","19355 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7544","","","","",""
|
140
|
+
"SB21","C00320457","PTY","Gingrey for Congress","PO Box U","","Marietta","GA","30060 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7545","","","","",""
|
141
|
+
"SB21","C00320457","PTY","Pearce for Congress","PO Box 2696","","Hobbs","NM","88241 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7546","","","","",""
|
142
|
+
"SB21","C00320457","PTY","Porter for Congress","PO Box 26087","","Las Vegas","NV","89126 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7547","","","","",""
|
143
|
+
"SB21","C00320457","PTY","Renzi for Congress","PO Box 219","","Flagstaff","AZ","86002 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7548","","","","",""
|
144
|
+
"SB21","C00320457","PTY","Mike Rogers for Congress","126 E. 13th Street","","Anniston","AL","36201 ","","POLITICAL DONATION","P ","",20030219,1000.00,"C00320457","","","","",,"","","","","","","","","","0411200316E7549","","","","",""
|
data/spec/filing_spec.rb
CHANGED
@@ -13,6 +13,10 @@ describe Fech::Filing do
|
|
13
13
|
@filing_pac.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '753533.fec'))
|
14
14
|
@filing_ec = Fech::Filing.new(764901)
|
15
15
|
@filing_ec.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '764901.fec'))
|
16
|
+
@filing_f1 = Fech::Filing.new(765310)
|
17
|
+
@filing_f1.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '765310.fec'))
|
18
|
+
@filing_f3 = Fech::Filing.new(82094)
|
19
|
+
@filing_f3.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '82094.fec'))
|
16
20
|
end
|
17
21
|
|
18
22
|
describe "#filing_version" do
|
@@ -22,6 +26,7 @@ describe Fech::Filing do
|
|
22
26
|
@filing8.send(:filing_version).should == "8.0"
|
23
27
|
@filing_ie.send(:filing_version).should == "8.0"
|
24
28
|
@filing_pac.send(:filing_version).should == "8.0"
|
29
|
+
@filing_f3.send(:filing_version).should == "5.00"
|
25
30
|
end
|
26
31
|
|
27
32
|
it "should parse the file only once" do
|
@@ -55,6 +60,10 @@ describe Fech::Filing do
|
|
55
60
|
sum_pac[:form_type].should == "F3XN"
|
56
61
|
sum_ec = @filing_ec.summary
|
57
62
|
sum_ec[:form_type].should == 'F9N'
|
63
|
+
sum_f1 = @filing_f1.summary
|
64
|
+
sum_f1[:form_type].should == "F1N"
|
65
|
+
sum_f3 = @filing_f3.summary
|
66
|
+
sum_f3[:form_type].should == "F3N"
|
58
67
|
end
|
59
68
|
end
|
60
69
|
|
@@ -84,6 +93,7 @@ describe Fech::Filing do
|
|
84
93
|
@filing_pac.rows_like(/^sb/).size.should == 1
|
85
94
|
@filing_pac.rows_like(/^sd/).size.should == 1
|
86
95
|
@filing_ec.rows_like(/^f91/).size.should == 1
|
96
|
+
@filing_f3.rows_like(/^sa/).size.should == 17
|
87
97
|
end
|
88
98
|
|
89
99
|
it "should return an array if no block is given" do
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fech
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 63
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 8
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.8.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Strickland
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2012-02-
|
20
|
+
date: 2012-02-13 00:00:00 -05:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
@@ -177,7 +177,9 @@ files:
|
|
177
177
|
- lib/fech/rendered_maps.rb
|
178
178
|
- lib/fech/translator.rb
|
179
179
|
- lib/fech/version.rb
|
180
|
+
- sources/F1.csv
|
180
181
|
- sources/F24.csv
|
182
|
+
- sources/F3.csv
|
181
183
|
- sources/F3P.csv
|
182
184
|
- sources/F3P31.csv
|
183
185
|
- sources/F3PS.csv
|
@@ -218,6 +220,8 @@ files:
|
|
218
220
|
- spec/data/752356.fec
|
219
221
|
- spec/data/753533.fec
|
220
222
|
- spec/data/764901.fec
|
223
|
+
- spec/data/765310.fec
|
224
|
+
- spec/data/82094.fec
|
221
225
|
- spec/data/97405.fec
|
222
226
|
- spec/default_translations_spec.rb
|
223
227
|
- spec/fech_utils_spec.rb
|