rbedi 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/edi +897 -0
- data/lib/rbedi/codes/aaa.rb +437 -0
- data/lib/rbedi/codes/ak1.rb +278 -0
- data/lib/rbedi/codes/ak2.rb +336 -0
- data/lib/rbedi/codes/ak9.rb +55 -0
- data/lib/rbedi/codes/bht.rb +706 -0
- data/lib/rbedi/codes/codeset.rb +27 -0
- data/lib/rbedi/codes/dmg.rb +1583 -0
- data/lib/rbedi/codes/dtp.rb +1342 -0
- data/lib/rbedi/codes/eb.rb +1511 -0
- data/lib/rbedi/codes/eq.rb +286 -0
- data/lib/rbedi/codes/ge.rb +14 -0
- data/lib/rbedi/codes/gs.rb +287 -0
- data/lib/rbedi/codes/hl.rb +273 -0
- data/lib/rbedi/codes/iea.rb +14 -0
- data/lib/rbedi/codes/ik3.rb +32 -0
- data/lib/rbedi/codes/ik4.rb +37 -0
- data/lib/rbedi/codes/ik5.rb +56 -0
- data/lib/rbedi/codes/isa.rb +137 -0
- data/lib/rbedi/codes/le.rb +13 -0
- data/lib/rbedi/codes/ls.rb +13 -0
- data/lib/rbedi/codes/msg.rb +25 -0
- data/lib/rbedi/codes/n3.rb +14 -0
- data/lib/rbedi/codes/n4.rb +706 -0
- data/lib/rbedi/codes/nm1.rb +1916 -0
- data/lib/rbedi/codes/per.rb +308 -0
- data/lib/rbedi/codes/ref.rb +1749 -0
- data/lib/rbedi/codes/se.rb +14 -0
- data/lib/rbedi/codes/segment_names.rb +44 -0
- data/lib/rbedi/codes/st.rb +336 -0
- data/lib/rbedi/codes/trn.rb +22 -0
- data/lib/rbedi/codes.rb +8 -0
- data/lib/rbedi/edi_date_time.rb +69 -0
- data/lib/rbedi/functional_group.rb +52 -0
- data/lib/rbedi/non_existent_element_error.rb +4 -0
- data/lib/rbedi/parser.rb +102 -0
- data/lib/rbedi/segment.rb +114 -0
- data/lib/rbedi/transaction_envelope.rb +77 -0
- data/lib/rbedi/transaction_set.rb +40 -0
- data/lib/rbedi.rb +20 -4
- metadata +79 -10
@@ -0,0 +1,1511 @@
|
|
1
|
+
module RBEDI
|
2
|
+
module Codes
|
3
|
+
module EB
|
4
|
+
extend CodeSet
|
5
|
+
|
6
|
+
SEGMENT_POSITIONS = {
|
7
|
+
1 => :eligibility_or_benefit_information,
|
8
|
+
2 => :coverage_level_code,
|
9
|
+
3 => :service_type_code,
|
10
|
+
4 => :insurance_type_code,
|
11
|
+
5 => :plan_coverage_description,
|
12
|
+
6 => :time_period_qualifier,
|
13
|
+
7 => :monetary_amount,
|
14
|
+
8 => :percentage_as_decimal,
|
15
|
+
9 => :quantity_qualifier,
|
16
|
+
10 => :quantity,
|
17
|
+
11 => :authorization_or_certification_required,
|
18
|
+
12 => :benefits_in_plan_network,
|
19
|
+
}
|
20
|
+
|
21
|
+
CODES = {
|
22
|
+
1 => {
|
23
|
+
"1" => :active_coverage,
|
24
|
+
"2" => :active__full_risk_capitation,
|
25
|
+
"3" => :active__services_capitated,
|
26
|
+
"4" => :active__services_capitated_to_primary_care_physician,
|
27
|
+
"5" => :active__pending_investigation,
|
28
|
+
"6" => :inactive,
|
29
|
+
"7" => :inactive__pending_eligibility_update,
|
30
|
+
"8" => :inactive__pending_investigation,
|
31
|
+
"a" => :coinsurance,
|
32
|
+
"aa" => :patient_reimbursement,
|
33
|
+
"ab" => :copayment_maximum,
|
34
|
+
"ac" => :coinsurance_maximum,
|
35
|
+
"b" => :copayment,
|
36
|
+
"c" => :deductible,
|
37
|
+
"cb" => :coverage_basis,
|
38
|
+
"d" => :benefit_description,
|
39
|
+
"e" => :exclusions,
|
40
|
+
"f" => :limitations,
|
41
|
+
"g" => :out_of_pocket_stop_loss,
|
42
|
+
"h" => :unlimited,
|
43
|
+
"i" => :noncovered,
|
44
|
+
"j" => :cost_containment,
|
45
|
+
"k" => :reserve,
|
46
|
+
"l" => :primary_care_provider,
|
47
|
+
"m" => :preexisting_condition,
|
48
|
+
"mc" => :managed_care_coordinator,
|
49
|
+
"n" => :services_restricted_to_following_provider,
|
50
|
+
"o" => :not_deemed_a_medical_necessity,
|
51
|
+
"p" => :benefit_disclaimer,
|
52
|
+
"q" => :second_surgical_opinion_required,
|
53
|
+
"r" => :other_or_additional_payor,
|
54
|
+
"s" => :prior_years_history,
|
55
|
+
"t" => :cards_reported_loststolen,
|
56
|
+
"u" => :contact_following_entity_for_eligibility_or_benefit_information,
|
57
|
+
"v" => :cannot_process,
|
58
|
+
"w" => :other_source_of_data,
|
59
|
+
"wv" => :waiver,
|
60
|
+
"x" => :health_care_facility,
|
61
|
+
"y" => :spend_down,
|
62
|
+
},
|
63
|
+
2 => {
|
64
|
+
"chd" => :children_only,
|
65
|
+
"dep" => :dependents_only,
|
66
|
+
"e1d" => :employee_and_one_dependent,
|
67
|
+
"e2d" => :employee_and_two_dependents,
|
68
|
+
"e3d" => :employee_and_three_dependents,
|
69
|
+
"e5d" => :employee_and_one_or_more_dependents,
|
70
|
+
"e6d" => :employee_and_two_or_more_dependents,
|
71
|
+
"e7d" => :employee_and_three_or_more_dependents,
|
72
|
+
"e8d" => :employee_and_four_or_more_dependents,
|
73
|
+
"e9d" => :employee_and_five_or_more_dependents,
|
74
|
+
"ech" => :employee_and_children,
|
75
|
+
"emp" => :employee_only,
|
76
|
+
"esp" => :employee_and_spouse,
|
77
|
+
"fam" => :family,
|
78
|
+
"ind" => :individual,
|
79
|
+
"s1c" => :subscriber_and_1_child,
|
80
|
+
"s5c" => :subscriber_and_1_or_more_children,
|
81
|
+
"s6c" => :subscriber_and_2_or_more_children,
|
82
|
+
"spc" => :spouse_and_children,
|
83
|
+
"spo" => :spouse_only,
|
84
|
+
"ss1" => :subscriber_spouse_and_1_child,
|
85
|
+
"ss5" => :subscriber_spouse_and_1_or_more_children,
|
86
|
+
"ss6" => :subscriber_spouse_and_2_or_more_children,
|
87
|
+
"ssp" => :subscriber_and_spouse,
|
88
|
+
"two" => :two_party,
|
89
|
+
},
|
90
|
+
3 => {
|
91
|
+
"1" => :medical_care,
|
92
|
+
"2" => :surgical,
|
93
|
+
"3" => :consultation,
|
94
|
+
"4" => :diagnostic_xray,
|
95
|
+
"5" => :diagnostic_lab,
|
96
|
+
"6" => :radiation_therapy,
|
97
|
+
"7" => :anesthesia,
|
98
|
+
"8" => :surgical_assistance,
|
99
|
+
"9" => :other_medical,
|
100
|
+
"10" => :blood_charges,
|
101
|
+
"11" => :used_durable_medical_equipment,
|
102
|
+
"12" => :durable_medical_equipment_purchase,
|
103
|
+
"13" => :ambulatory_service_center_facility,
|
104
|
+
"14" => :renal_supplies_in_the_home,
|
105
|
+
"15" => :alternate_method_dialysis,
|
106
|
+
"16" => :chronic_renal_disease_crd_equipment,
|
107
|
+
"17" => :preadmission_testing,
|
108
|
+
"18" => :durable_medical_equipment_rental,
|
109
|
+
"19" => :pneumonia_vaccine,
|
110
|
+
"20" => :second_surgical_opinion,
|
111
|
+
"21" => :third_surgical_opinion,
|
112
|
+
"22" => :social_work,
|
113
|
+
"23" => :diagnostic_dental,
|
114
|
+
"24" => :periodontics,
|
115
|
+
"25" => :restorative,
|
116
|
+
"26" => :endodontics,
|
117
|
+
"27" => :maxillofacial_prosthetics,
|
118
|
+
"28" => :adjunctive_dental_services,
|
119
|
+
"30" => :health_benefit_plan_coverage,
|
120
|
+
"31" => :benefit_disclaimer,
|
121
|
+
"32" => :plan_waiting_period,
|
122
|
+
"33" => :chiropractic,
|
123
|
+
"34" => :chiropractic_office_visits,
|
124
|
+
"35" => :dental_care,
|
125
|
+
"36" => :dental_crowns,
|
126
|
+
"37" => :dental_accident,
|
127
|
+
"38" => :orthodontics,
|
128
|
+
"39" => :prosthodontics,
|
129
|
+
"40" => :oral_surgery,
|
130
|
+
"41" => :routine_preventive_dental,
|
131
|
+
"42" => :home_health_care,
|
132
|
+
"43" => :home_health_prescriptions,
|
133
|
+
"44" => :home_health_visits,
|
134
|
+
"45" => :hospice,
|
135
|
+
"46" => :respite_care,
|
136
|
+
"47" => :hospital,
|
137
|
+
"48" => :hospital__inpatient,
|
138
|
+
"49" => :hospital__room_and_board,
|
139
|
+
"50" => :hospital__outpatient,
|
140
|
+
"51" => :hospital__emergency_accident,
|
141
|
+
"52" => :hospital__emergency_medical,
|
142
|
+
"53" => :hospital__ambulatory_surgical,
|
143
|
+
"54" => :long_term_care,
|
144
|
+
"55" => :major_medical,
|
145
|
+
"56" => :medically_related_transportation,
|
146
|
+
"57" => :air_transportation,
|
147
|
+
"58" => :cabulance,
|
148
|
+
"59" => :licensed_ambulance,
|
149
|
+
"60" => :general_benefits,
|
150
|
+
"61" => :invitro_fertilization,
|
151
|
+
"62" => :mricat_scan,
|
152
|
+
"63" => :donor_procedures,
|
153
|
+
"64" => :acupuncture,
|
154
|
+
"65" => :newborn_care,
|
155
|
+
"66" => :pathology,
|
156
|
+
"67" => :smoking_cessation,
|
157
|
+
"68" => :well_baby_care,
|
158
|
+
"69" => :maternity,
|
159
|
+
"70" => :transplants,
|
160
|
+
"71" => :audiology_exam,
|
161
|
+
"72" => :inhalation_therapy,
|
162
|
+
"73" => :diagnostic_medical,
|
163
|
+
"74" => :private_duty_nursing,
|
164
|
+
"75" => :prosthetic_device,
|
165
|
+
"76" => :dialysis,
|
166
|
+
"77" => :otological_exam,
|
167
|
+
"78" => :chemotherapy,
|
168
|
+
"79" => :allergy_testing,
|
169
|
+
"80" => :immunizations,
|
170
|
+
"81" => :routine_physical,
|
171
|
+
"82" => :family_planning,
|
172
|
+
"83" => :infertility,
|
173
|
+
"84" => :abortion,
|
174
|
+
"85" => :aids,
|
175
|
+
"86" => :emergency_services,
|
176
|
+
"87" => :cancer,
|
177
|
+
"88" => :pharmacy,
|
178
|
+
"89" => :free_standing_prescription_drug,
|
179
|
+
"90" => :mail_order_prescription_drug,
|
180
|
+
"91" => :brand_name_prescription_drug,
|
181
|
+
"92" => :generic_prescription_drug,
|
182
|
+
"93" => :podiatry,
|
183
|
+
"94" => :podiatry__office_visits,
|
184
|
+
"95" => :podiatry__nursing_home_visits,
|
185
|
+
"96" => :professional_physician,
|
186
|
+
"97" => :anesthesiologist,
|
187
|
+
"98" => :professional_physician_visit__office,
|
188
|
+
"99" => :professional_physician_visit__inpatient,
|
189
|
+
"a0" => :professional_physician_visit__outpatient,
|
190
|
+
"a1" => :professional_physician_visit__nursing_home,
|
191
|
+
"a2" => :professional_physician_visit__skilled_nursing_facility,
|
192
|
+
"a3" => :professional_physician_visit__home,
|
193
|
+
"a4" => :psychiatric,
|
194
|
+
"a5" => :psychiatric__room_and_board,
|
195
|
+
"a6" => :psychotherapy,
|
196
|
+
"a7" => :psychiatric__inpatient,
|
197
|
+
"a8" => :psychiatric__outpatient,
|
198
|
+
"a9" => :rehabilitation,
|
199
|
+
"aa" => :rehabilitation__room_and_board,
|
200
|
+
"ab" => :rehabilitation__inpatient,
|
201
|
+
"ac" => :rehabilitation__outpatient,
|
202
|
+
"ad" => :occupational_therapy,
|
203
|
+
"ae" => :physical_medicine,
|
204
|
+
"af" => :speech_therapy,
|
205
|
+
"ag" => :skilled_nursing_care,
|
206
|
+
"ah" => :skilled_nursing_care__room_and_board,
|
207
|
+
"ai" => :substance_abuse,
|
208
|
+
"aj" => :alcoholism,
|
209
|
+
"ak" => :drug_addiction,
|
210
|
+
"al" => :vision_optometry,
|
211
|
+
"am" => :frames,
|
212
|
+
"an" => :routine_exam,
|
213
|
+
"ao" => :lenses,
|
214
|
+
"aq" => :nonmedically_necessary_physicalthese_physicals_are_required_by_other_entities_eg_insurance_application_pilot_license_employment_or_school,
|
215
|
+
"ar" => :experimental_drug_therapy,
|
216
|
+
"b" => :nonescrow_or_nonimpound_service,
|
217
|
+
"b1" => :burn_care,
|
218
|
+
"b2" => :brand_name_prescription_drug__formulary,
|
219
|
+
"b3" => :brand_name_prescription_drug__nonformulary,
|
220
|
+
"ba" => :independent_medical_evaluation,
|
221
|
+
"bb" => :partial_hospitalization_psychiatric,
|
222
|
+
"bc" => :day_care_psychiatric,
|
223
|
+
"bd" => :cognitive_therapy,
|
224
|
+
"be" => :massage_therapy,
|
225
|
+
"bf" => :pulmonary_rehabilitation,
|
226
|
+
"bg" => :cardiac_rehabilitation,
|
227
|
+
"bh" => :pediatric,
|
228
|
+
"bi" => :nursery,
|
229
|
+
"bj" => :skin,
|
230
|
+
"bk" => :orthopedic,
|
231
|
+
"bl" => :cardiac,
|
232
|
+
"bm" => :lymphatic,
|
233
|
+
"bn" => :gastrointestinal,
|
234
|
+
"bp" => :endocrine,
|
235
|
+
"bq" => :neurology,
|
236
|
+
"br" => :eye,
|
237
|
+
"bs" => :invasive_procedures,
|
238
|
+
"bt" => :gynecological,
|
239
|
+
"bu" => :obstetrical,
|
240
|
+
"bv" => :obstetricalgynecological,
|
241
|
+
"bw" => :mail_order_prescription_drug_brand_name,
|
242
|
+
"bx" => :mail_order_prescription_drug_generic,
|
243
|
+
"by" => :physician_visit__office_sick,
|
244
|
+
"bz" => :physician_visit__office_well,
|
245
|
+
"c" => :escrow_or_impound_service,
|
246
|
+
"c1" => :coronary_care,
|
247
|
+
"ca" => :private_duty_nursing__inpatient,
|
248
|
+
"cb" => :private_duty_nursing__home,
|
249
|
+
"cc" => :surgical_benefits__professional_physician,
|
250
|
+
"cd" => :surgical_benefits__facility,
|
251
|
+
"ce" => :mental_health_provider__inpatient,
|
252
|
+
"cf" => :mental_health_provider__outpatient,
|
253
|
+
"cg" => :mental_health_facility__inpatient,
|
254
|
+
"ch" => :mental_health_facility__outpatient,
|
255
|
+
"ci" => :substance_abuse_facility__inpatient,
|
256
|
+
"cj" => :substance_abuse_facility__outpatient,
|
257
|
+
"ck" => :screening_xray,
|
258
|
+
"cl" => :screening_laboratory,
|
259
|
+
"cm" => :mammogram_high_risk_patient,
|
260
|
+
"cn" => :mammogram_low_risk_patient,
|
261
|
+
"co" => :flu_vaccination,
|
262
|
+
"cp" => :eyewear_and_eyewear_accessories,
|
263
|
+
"cq" => :case_management,
|
264
|
+
"dg" => :dermatology,
|
265
|
+
"dm" => :durable_medical_equipment,
|
266
|
+
"ds" => :diabetic_supplies,
|
267
|
+
"gf" => :generic_prescription_drug__formulary,
|
268
|
+
"gn" => :generic_prescription_drug__nonformulary,
|
269
|
+
"gy" => :allergy,
|
270
|
+
"ic" => :intensive_care,
|
271
|
+
"mh" => :mental_health,
|
272
|
+
"ni" => :neonatal_intensive_care,
|
273
|
+
"on" => :oncology,
|
274
|
+
"pt" => :physical_therapy,
|
275
|
+
"pu" => :pulmonary,
|
276
|
+
"rn" => :renal,
|
277
|
+
"rt" => :residential_psychiatric_treatment,
|
278
|
+
"tc" => :transitional_care,
|
279
|
+
"tn" => :transitional_nursery_care,
|
280
|
+
"uc" => :urgent_care,
|
281
|
+
},
|
282
|
+
4 => {
|
283
|
+
"12" => :medicare_secondary_working_aged_beneficiary_or_spouse_with_employer_group_health_plan,
|
284
|
+
"13" => :medicare_secondary_endstage_renal_disease_beneficiary_in_the_mandated_coordination_period_with_an_employers_group_health_plan,
|
285
|
+
"14" => :medicare_secondary_nofault_insurance_including_auto_is_primary,
|
286
|
+
"15" => :medicare_secondary_workers_compensation,
|
287
|
+
"16" => :medicare_secondary_public_health_service_phsor_other_federal_agency,
|
288
|
+
"41" => :medicare_secondary_black_lung,
|
289
|
+
"42" => :medicare_secondary_veterans_administration,
|
290
|
+
"43" => :medicare_secondary_disabled_beneficiary_under_age_65_with_large_group_health_plan_lghp,
|
291
|
+
"47" => :medicare_secondary_other_liability_insurance_is_primary,
|
292
|
+
"ap" => :auto_insurance_policy,
|
293
|
+
"c1" => :commercial,
|
294
|
+
"co" => :consolidated_omnibus_budget_reconciliation_act_cobra,
|
295
|
+
"cp" => :medicare_conditionally_primary,
|
296
|
+
"d" => :disabilityprovides_periodic_payments_to_replace_income_when_an_insured_person_is_unable_to_work_as_a_result_of_illness_injury_or_disease,
|
297
|
+
"db" => :disability_benefits,
|
298
|
+
"e" => :medicare__point_of_service_pos,
|
299
|
+
"ep" => :exclusive_provider_organizationgives_subscriber_a_choice_of_providers_from_an_approvedcontracted_payer_list_there_are_fixed_dollar_copayments_for_most_covered_services_in_return_for_using_plan_providers,
|
300
|
+
"ff" => :family_or_friends,
|
301
|
+
"gp" => :group_policytwo_or_more_people_who_are_part_of_complete_unit_who_enter_into_an_insurance_contract_with_an_insurance_company,
|
302
|
+
"hm" => :health_maintenance_organization_hmo,
|
303
|
+
"hn" => :health_maintenance_organization_hmo__medicare_risk,
|
304
|
+
"hs" => :special_low_income_medicare_beneficiaryan_individual_eligible_for_medicare_for_whom_medicaid_pays_only_medicare_premiums,
|
305
|
+
"in" => :indemnitygives_a_subscriber_the_choice_to_select_any_provider_payment_is_fixed_percentage_of_the_cost_for_covered_care_after_satisfying_an_annual_deductible,
|
306
|
+
"ip" => :individual_policy,
|
307
|
+
"lc" => :long_term_carecoverage_designed_to_help_pay_for_some_or_all_long_term_care_costs_reducing_the_risk_that_a_policyholder_would_need_to_deplete_all_of_his_or_her_assets_to_pay_for_long_term_care,
|
308
|
+
"ld" => :long_term_policy,
|
309
|
+
"li" => :life_insurance,
|
310
|
+
"lt" => :litigation,
|
311
|
+
"ma" => :medicare_part_a,
|
312
|
+
"mb" => :medicare_part_b,
|
313
|
+
"mc" => :medicaidprogram_of_health_care_services_made_available_to_medically_indigent_and_other_needy_persons_regardless_of_age_under_terms_of_a_1965_amendment_to_the_us_social_security_act,
|
314
|
+
"mh" => :medigap_part_ahealth_insurance_policy_intended_to_cover_the_noncovered_portion_of_expenses_eligible_for_medicare_part_a_reimbursement_which_must_be_paid_by_a_medicare_beneficiary_for_health_care_services_andor_supplies_received,
|
315
|
+
"mi" => :medigap_part_bhealth_insurance_policy_intended_to_cover_the_noncovered_portion_of_expenses_eligible_for_medicare_part_b_reimbursement_which_must_be_paid_by_a_medicare_beneficiary_for_health_care_services_andor_supplies_received,
|
316
|
+
"mp" => :medicare_primarymedicare_has_the_primary_responsibility_to_pay_for_health_care_services_andor_supplies_received_by_a_covered_beneficiary_a_person_entitled_to_medicare_benefits,
|
317
|
+
"ot" => :other,
|
318
|
+
"pe" => :property_insurance__personal,
|
319
|
+
"pl" => :personal,
|
320
|
+
"pp" => :personal_payment_cash__no_insurance,
|
321
|
+
"pr" => :preferred_provider_organization_ppo,
|
322
|
+
"ps" => :point_of_service_pos,
|
323
|
+
"qm" => :qualified_medicare_beneficiarycoverage_for_a_medicare_eligible_individual_for_whom_medicaid_pays_only_for_medicare_premiums_coinsurance_and_deductibles,
|
324
|
+
"rp" => :property_insurance__real,
|
325
|
+
"sp" => :supplemental_policyan_insurance_policy_intended_to_cover_noncovered_charges_of_another_insurance_policy,
|
326
|
+
"tf" => :tax_equity_fiscal_responsibility_act_tefra,
|
327
|
+
"u" => :multiple_options_health_plan,
|
328
|
+
"wc" => :workers_compensationcoverage_provides_medical_treatment_rehabilitation_lost_wages_and_related_expenses_arising_from_a_job_related_injury_or_disease,
|
329
|
+
"wu" => :wrap_up_policya_workers_compensation_policy_written_for_a_specific_job_site_which_will_include_or_cover_more_than_one_insured,
|
330
|
+
},
|
331
|
+
6 => {
|
332
|
+
"1" => :chargeable_periods,
|
333
|
+
"2" => :periods_held,
|
334
|
+
"3" => :free_periods,
|
335
|
+
"4" => :saturdays_sundays_and_holidays,
|
336
|
+
"5" => :other_allowance_periods,
|
337
|
+
"6" => :hour,
|
338
|
+
"7" => :day,
|
339
|
+
"8" => :not_applicable,
|
340
|
+
"9" => :initial_visit,
|
341
|
+
"10" => :six_hours,
|
342
|
+
"11" => :twelve_hours,
|
343
|
+
"12" => :eighteen_hours,
|
344
|
+
"13" => :twentyfour_hours,
|
345
|
+
"14" => :debit_days,
|
346
|
+
"15" => :credit_days,
|
347
|
+
"16" => :excess_days,
|
348
|
+
"17" => :hazardous_days,
|
349
|
+
"18" => :holidays,
|
350
|
+
"19" => :saturdays_and_sundays,
|
351
|
+
"20" => :sundays_and_holidays,
|
352
|
+
"21" => :years,
|
353
|
+
"22" => :service_year,
|
354
|
+
"23" => :calendar_year,
|
355
|
+
"24" => :year_to_date,
|
356
|
+
"25" => :contract,
|
357
|
+
"26" => :episode,
|
358
|
+
"27" => :visit,
|
359
|
+
"28" => :outlier,
|
360
|
+
"29" => :remaining,
|
361
|
+
"30" => :exceeded,
|
362
|
+
"31" => :not_exceeded,
|
363
|
+
"32" => :lifetime,
|
364
|
+
"33" => :lifetime_remaining,
|
365
|
+
"34" => :month,
|
366
|
+
"35" => :week,
|
367
|
+
"36" => :admission,
|
368
|
+
"37" => :three_months,
|
369
|
+
"z" => :mutually_defined,
|
370
|
+
},
|
371
|
+
9 => {
|
372
|
+
"00" => :hospitalhomebound_individualsa_type_of_disability_defined_by_the_federal_individuals_with_disabilities_education_act_idea,
|
373
|
+
"0a" => :number_of_hours_per_day,
|
374
|
+
"0b" => :number_of_hours_per_week,
|
375
|
+
"0c" => :number_of_months_per_year,
|
376
|
+
"0d" => :number_of_periods_per_week,
|
377
|
+
"0f" => :number_of_hours_per_year,
|
378
|
+
"0g" => :prekindergarten_students,
|
379
|
+
"0h" => :first_grade_students,
|
380
|
+
"0i" => :second_grade_students,
|
381
|
+
"0j" => :third_grade_students,
|
382
|
+
"0k" => :fourth_grade_students,
|
383
|
+
"0l" => :fifth_grade_students,
|
384
|
+
"0m" => :sixth_grade_students,
|
385
|
+
"0n" => :seventh_grade_students,
|
386
|
+
"0o" => :eighth_grade_students,
|
387
|
+
"0p" => :ninth_grade_students,
|
388
|
+
"0q" => :carnegie_unitsone_years_study_time_at_least_120_hours_of_any_one_subject_in_secondary_school_as_defined_by_the_carnegie_foundation_for_the_advancement_of_teaching_to_help_clarify_college_entrance_requirements_a_standard_of_measurement_that_represents_one_credit_for_the_completion_of_a_oneyear_course_16_to_30_carnegie_units_completed_in_a_fouryear_period_is_the_typical_requirement_for_a_standard_high_school_diploma_in_the_us,
|
389
|
+
"0r" => :number_of_disability_types,
|
390
|
+
"0s" => :number_of_males,
|
391
|
+
"0t" => :number_of_females,
|
392
|
+
"0u" => :individuals_with_multiple_disabilities,
|
393
|
+
"0v" => :individuals_with_serious_emotional_disturbance,
|
394
|
+
"0w" => :individuals_with_speech_or_language_impairment,
|
395
|
+
"0x" => :individuals_with_traumatic_brain_injury,
|
396
|
+
"0y" => :blind_individuals,
|
397
|
+
"0z" => :deaf_individuals,
|
398
|
+
"01" => :discrete_quantity,
|
399
|
+
"1a" => :original_duration_in_calendar_unitsthe_initial_planned_amount_of_time_needed_to_complete_a_task_or_activity,
|
400
|
+
"1b" => :current_duration_in_calendar_unitsthe_current_amount_of_time_needed_to_complete_a_task_or_activity,
|
401
|
+
"1c" => :remaining_duration_in_calendar_unitsthe_remaining_amount_of_time_needed_to_complete_a_task_or_activity,
|
402
|
+
"1d" => :total_float_in_calendar_unitsthe_amount_of_time_a_task_or_activity_can_be_delayed_or_expanded_before_it_impacts_the_project_end_date,
|
403
|
+
"1e" => :free_float_in_calendar_unitsthe_amount_of_time_a_task_or_activity_can_be_delayed_or_expanded_without_impacting_on_a_subsequent_task_or_activity,
|
404
|
+
"1f" => :lag_as_in_lag_time__in_calendar_unitsthe_amount_of_time_delay,
|
405
|
+
"1g" => :lead_time_in_calendar_unitsthe_amount_of_initial_lead_time,
|
406
|
+
"1h" => :startedthe_amount_started,
|
407
|
+
"1i" => :completedthe_amount_finished,
|
408
|
+
"1j" => :duethe_amount_due_to_the_customer,
|
409
|
+
"1k" => :time_unitsthe_number_of_time_units_such_as_8_hours,
|
410
|
+
"1l" => :shiftsthe_number_of_shifts_for_a_calendar_such_as_3_per_day,
|
411
|
+
"1m" => :time_units_per_shiftthe_number_of_time_units_per_shift__such_as_8_hours,
|
412
|
+
"1n" => :scrap_allowedamount_of_scrap_allowed_during_production,
|
413
|
+
"1o" => :calendar_unitsthe_number_of_calendar_units_such_as_1_per_day_or_1_per_week,
|
414
|
+
"1p" => :resource_quantity_availableresource_amount_such_as_labor_hours_or_material_dollars_available_for_a_task_or_activity,
|
415
|
+
"1q" => :total_resource_quantitytotal_amount_of_the_resources_available_for_the_total_duration_of_the_task_or_activity,
|
416
|
+
"1r" => :level_resource_quantitythe_amount_of_resources_available_for_each_time_unit_for_the_duration_of_the_task_or_activity,
|
417
|
+
"1s" => :latethe_amount_that_is_late,
|
418
|
+
"1t" => :number_of_delinquent_installments,
|
419
|
+
"1u" => :number_of_loans,
|
420
|
+
"1v" => :total_number_of_mortgagees,
|
421
|
+
"1w" => :total_number_of_loan_detail_records,
|
422
|
+
"1x" => :prescription_effective_periodlength_of_time_that_the_prescription_is_effective,
|
423
|
+
"1y" => :rate_per_day_rpd,
|
424
|
+
"1z" => :end_of_month_inventory_prior_to_ship,
|
425
|
+
"02" => :cumulative_quantity,
|
426
|
+
"2a" => :commitment_period,
|
427
|
+
"2b" => :number_of_borrowers,
|
428
|
+
"2c" => :number_of_adjustment_periods,
|
429
|
+
"2d" => :age_nearest,
|
430
|
+
"2e" => :total_other_properties_owned_and_financed,
|
431
|
+
"2f" => :age_next,
|
432
|
+
"2g" => :reconsideration_period,
|
433
|
+
"2h" => :flat_extra_premium,
|
434
|
+
"2i" => :co2_injection_volume,
|
435
|
+
"2j" => :accounts_placed_for_collection,
|
436
|
+
"2k" => :changes,
|
437
|
+
"2l" => :companies_in_same_activity_for_a_period,
|
438
|
+
"2m" => :comparison_period,
|
439
|
+
"2n" => :departments,
|
440
|
+
"2o" => :employees_shared,
|
441
|
+
"2p" => :estimated_accounts,
|
442
|
+
"2q" => :installed_capacity,
|
443
|
+
"2r" => :levels_occupied,
|
444
|
+
"2s" => :registered_brands_distributed,
|
445
|
+
"2t" => :electronic_signatures,
|
446
|
+
"2u" => :bytes,
|
447
|
+
"2v" => :employed_at_this_location,
|
448
|
+
"2w" => :segments,
|
449
|
+
"2x" => :registered_brands_manufactured,
|
450
|
+
"2y" => :functional_groups,
|
451
|
+
"2z" => :transaction_sets,
|
452
|
+
"03" => :discreet_quantity__rejected_material,
|
453
|
+
"3a" => :total_credits_accepted,
|
454
|
+
"3b" => :total_credits_rejected,
|
455
|
+
"3c" => :total_debits_accepted,
|
456
|
+
"3d" => :total_debits_rejected,
|
457
|
+
"3e" => :total_payments_rejected,
|
458
|
+
"3f" => :total_preadvices_accepted,
|
459
|
+
"3g" => :total_preadvices_rejected,
|
460
|
+
"3h" => :total_prenotes_accepted,
|
461
|
+
"3i" => :total_prenotes_rejected,
|
462
|
+
"3j" => :total_postadvices_accepted,
|
463
|
+
"3k" => :total_postadvices_rejected,
|
464
|
+
"3l" => :total_unidentified_transactions_rejected,
|
465
|
+
"3m" => :total_credits_received,
|
466
|
+
"3n" => :total_debits_received,
|
467
|
+
"3o" => :individuals_with_noncategorical_preschool_disability,
|
468
|
+
"3p" => :total_preadvices_received,
|
469
|
+
"3q" => :total_prenotes_received,
|
470
|
+
"3r" => :total_postadvices_received,
|
471
|
+
"3s" => :total_debits,
|
472
|
+
"3t" => :total_credits,
|
473
|
+
"3v" => :minimum_transfer,
|
474
|
+
"3w" => :maximum_transfer,
|
475
|
+
"3x" => :speed_capacity,
|
476
|
+
"3y" => :subcontractors,
|
477
|
+
"3z" => :students,
|
478
|
+
"04" => :discrete_quantity__rejected_material_disposition_replacement,
|
479
|
+
"4a" => :accounts,
|
480
|
+
"4b" => :agents,
|
481
|
+
"4c" => :authorized_shares,
|
482
|
+
"4d" => :clerks,
|
483
|
+
"4e" => :design_employees,
|
484
|
+
"4f" => :foreign_related_entities,
|
485
|
+
"4g" => :group_employeesindividuals_employed_by_the_group_of_companies_to_which_the_business_belongs,
|
486
|
+
"4h" => :issued_shares,
|
487
|
+
"4i" => :laborers,
|
488
|
+
"4j" => :other_employee_type,
|
489
|
+
"4k" => :part_time_employees,
|
490
|
+
"4l" => :related_entities,
|
491
|
+
"4m" => :relatives_employed,
|
492
|
+
"4n" => :salespersons,
|
493
|
+
"4o" => :space_occupied,
|
494
|
+
"4p" => :special_partners,
|
495
|
+
"4q" => :suppliers_credit,
|
496
|
+
"4r" => :technicians,
|
497
|
+
"4s" => :trainees,
|
498
|
+
"4t" => :warehouse_employees,
|
499
|
+
"4u" => :shareholders,
|
500
|
+
"4v" => :available_units,
|
501
|
+
"4w" => :total_unduplicated_headcount,
|
502
|
+
"4x" => :meals_per_week,
|
503
|
+
"4y" => :programs_offered,
|
504
|
+
"4z" => :typical_credit_hours_taken_per_graduate_student_full_time,
|
505
|
+
"05" => :discrete_quantity__rejected_material_disposition_credit,
|
506
|
+
"5a" => :aggregate_benefit_period,
|
507
|
+
"5b" => :anticipated_length_of_service,
|
508
|
+
"5c" => :approvaloffer_duration,
|
509
|
+
"5d" => :benefit_amount,
|
510
|
+
"5e" => :benefit_period,
|
511
|
+
"5f" => :brothers_deceased,
|
512
|
+
"5g" => :brothers_living,
|
513
|
+
"5h" => :children,
|
514
|
+
"5i" => :citations,
|
515
|
+
"5j" => :claim_period,
|
516
|
+
"5k" => :coverage,
|
517
|
+
"5l" => :elimination_period,
|
518
|
+
"5m" => :elimination_period__accident,
|
519
|
+
"5n" => :elimination_period__sickness,
|
520
|
+
"5o" => :employees__nonowner,
|
521
|
+
"5p" => :employees__owner,
|
522
|
+
"5q" => :employees__part_time,
|
523
|
+
"5r" => :employees__same_duties,
|
524
|
+
"5s" => :employees__same_occupation,
|
525
|
+
"5t" => :expense,
|
526
|
+
"5u" => :frequency,
|
527
|
+
"5v" => :general_elimination_period,
|
528
|
+
"5w" => :guarantee_period,
|
529
|
+
"5x" => :height,
|
530
|
+
"5y" => :hours_flown__aircraft_typelife,
|
531
|
+
"5z" => :hours_flown__aircraft_typeperiod,
|
532
|
+
"06" => :discrete_quantity__rejected_material_disposition_pending,
|
533
|
+
"6a" => :hours_flown__aircrafttype_flying,
|
534
|
+
"6b" => :hours_flown__lifetime,
|
535
|
+
"6c" => :hours_flown__type_flying,
|
536
|
+
"6d" => :impairment_duration,
|
537
|
+
"6e" => :impairment_frequency,
|
538
|
+
"6f" => :installment_frequency,
|
539
|
+
"6g" => :installments,
|
540
|
+
"6h" => :intended_change_time_period,
|
541
|
+
"6i" => :interim_term_period,
|
542
|
+
"6j" => :involvement_period,
|
543
|
+
"6k" => :loan_rate,
|
544
|
+
"6l" => :maximum_age,
|
545
|
+
"6m" => :maximum_benefit_period__accident,
|
546
|
+
"6n" => :maximum_benefit_period__sickness,
|
547
|
+
"6o" => :maximum_benefit_period,
|
548
|
+
"6p" => :medication_duration,
|
549
|
+
"6q" => :minimum_age,
|
550
|
+
"6r" => :own_occupation_qualification_period,
|
551
|
+
"6s" => :owners_equity,
|
552
|
+
"6t" => :ownership_change_age,
|
553
|
+
"6u" => :ownership_duration,
|
554
|
+
"6v" => :ownership_percentage,
|
555
|
+
"6w" => :payment_frequency,
|
556
|
+
"6x" => :payments_number,
|
557
|
+
"6y" => :arrests,
|
558
|
+
"6z" => :placement_period_expiration,
|
559
|
+
"07" => :cumulative_quantity__rejected_material,
|
560
|
+
"7a" => :previous_benefits,
|
561
|
+
"7b" => :qualification_period,
|
562
|
+
"7c" => :range_average,
|
563
|
+
"7d" => :range_maximum,
|
564
|
+
"7e" => :range_minimum,
|
565
|
+
"7f" => :relationship_duration,
|
566
|
+
"7g" => :replaced_amount,
|
567
|
+
"7h" => :residence_duration,
|
568
|
+
"7i" => :sisters_deceased,
|
569
|
+
"7j" => :sisters_living,
|
570
|
+
"7k" => :time_frame,
|
571
|
+
"7l" => :time_in_country,
|
572
|
+
"7m" => :time_since_hospitalization,
|
573
|
+
"7n" => :time_since_last_application,
|
574
|
+
"7o" => :time_since_last_civilian_flight,
|
575
|
+
"7p" => :time_since_last_insurance_medical,
|
576
|
+
"7q" => :time_since_last_military_flight,
|
577
|
+
"7r" => :time_since_medical_consult,
|
578
|
+
"7s" => :time_since_medication_end,
|
579
|
+
"7t" => :time_since_medication_start,
|
580
|
+
"7u" => :time_since_onset,
|
581
|
+
"7v" => :time_since_surgery,
|
582
|
+
"7w" => :time_since_trip,
|
583
|
+
"7x" => :travel_frequency,
|
584
|
+
"7y" => :travel_period,
|
585
|
+
"7z" => :trip_duration,
|
586
|
+
"08" => :cumulative_quantity__rejected_material_disposition_replacement,
|
587
|
+
"8a" => :visitation_frequency,
|
588
|
+
"8b" => :weight,
|
589
|
+
"8c" => :weight_change_period,
|
590
|
+
"8d" => :work_period,
|
591
|
+
"8e" => :existence_limit_period,
|
592
|
+
"8f" => :shares,
|
593
|
+
"8g" => :directors,
|
594
|
+
"8h" => :minimum,
|
595
|
+
"8i" => :voting_shares_held,
|
596
|
+
"8j" => :outstanding_shares,
|
597
|
+
"8k" => :shares_held_as_treasury_stock,
|
598
|
+
"8l" => :shares_subscribed_but_not_issued,
|
599
|
+
"8m" => :total_shares_of_stock,
|
600
|
+
"8n" => :shares_owned_by_instate_residents,
|
601
|
+
"8o" => :shares_owned_by_outofstate_residents,
|
602
|
+
"8p" => :partners,
|
603
|
+
"8q" => :land_holding,
|
604
|
+
"8r" => :nondomestic_stockholders,
|
605
|
+
"8s" => :shares_subscribed,
|
606
|
+
"8t" => :maximum_number_free_miles,
|
607
|
+
"8u" => :typical_credit_hours_taken_per_undergraduate_student_full_time,
|
608
|
+
"8v" => :typical_credit_hours_taken_per_firstprofessional_student_full_time,
|
609
|
+
"8w" => :fulltime_equivalents,
|
610
|
+
"8x" => :total_credit_hours,
|
611
|
+
"8y" => :total_noncredit_hours,
|
612
|
+
"8z" => :total_contact_hours,
|
613
|
+
"09" => :cumulative_quantity__rejected_material_disposition_credit,
|
614
|
+
"9a" => :time_expended,
|
615
|
+
"9c" => :primary_meter_reading_value,
|
616
|
+
"9d" => :engineered_standard,
|
617
|
+
"9e" => :active_maintenance_time,
|
618
|
+
"9f" => :actual_duration,
|
619
|
+
"9h" => :estimated_duration,
|
620
|
+
"9j" => :gross_estimate,
|
621
|
+
"9k" => :finish_offset,
|
622
|
+
"9l" => :start_offset,
|
623
|
+
"9m" => :picture_count,
|
624
|
+
"9n" => :component_meter_reading_count,
|
625
|
+
"9p" => :total_clock_hours,
|
626
|
+
"9r" => :enrollees,
|
627
|
+
"9s" => :total_days_submitted,
|
628
|
+
"9v" => :total_days_approved,
|
629
|
+
"10" => :cumulative_quantity__rejected_material_disposition_pending,
|
630
|
+
"11" => :split_quantity,
|
631
|
+
"12" => :ship_notice_quantity,
|
632
|
+
"13" => :collateral_requirements,
|
633
|
+
"14" => :quantity_in_float,
|
634
|
+
"15" => :quantity_in_hold_out,
|
635
|
+
"16" => :line_thread_quantity,
|
636
|
+
"17" => :quantity_on_hand,
|
637
|
+
"18" => :previous_week_quantity,
|
638
|
+
"19" => :unverified_receipts,
|
639
|
+
"20" => :unusable_quantity,
|
640
|
+
"21" => :cumulative_quantity_shipped_short__disposition_pending,
|
641
|
+
"22" => :cumulative_quantity_shipped_short__disposition_challenged,
|
642
|
+
"23" => :cumulative_quantity_shipped_long__disposition_pending,
|
643
|
+
"24" => :cumulative_quantity_shipped_long__disposition_challenged,
|
644
|
+
"25" => :oem_inventory,
|
645
|
+
"26" => :total_inventory,
|
646
|
+
"27" => :committed_quantity,
|
647
|
+
"28" => :quantity_available_for_return,
|
648
|
+
"29" => :projected_available_inventory,
|
649
|
+
"30" => :quote_quantity_on_inventory,
|
650
|
+
"31" => :additional_demand_quantity,
|
651
|
+
"32" => :quantity_sold,
|
652
|
+
"33" => :quantity_available_for_sale_stock_quantity,
|
653
|
+
"34" => :noncommitted_inventory_on_shelf,
|
654
|
+
"35" => :inventory_on_shelf__work_in_progress,
|
655
|
+
"36" => :distributor_inventory,
|
656
|
+
"37" => :work_in_process,
|
657
|
+
"38" => :original_quantity,
|
658
|
+
"39" => :shipped_quantity,
|
659
|
+
"40" => :remaining_quantity,
|
660
|
+
"41" => :number_of_batches,
|
661
|
+
"42" => :number_of_checks,
|
662
|
+
"43" => :talk_pathsthe_total_number_of_talk_paths_associated_with_the_ordered_ports,
|
663
|
+
"44" => :number_of_patient_admissions,
|
664
|
+
"45" => :cumulative_quantity_on_order,
|
665
|
+
"46" => :total_transactions,
|
666
|
+
"47" => :primary_net_quantity,
|
667
|
+
"48" => :secondary_net_quantity,
|
668
|
+
"49" => :number_of_signed_bills_of_lading,
|
669
|
+
"50" => :number_of_copies_of_bill_of_lading,
|
670
|
+
"51" => :number_of_unsigned_bills_of_lading,
|
671
|
+
"52" => :number_of_originals,
|
672
|
+
"53" => :original_payment_item_count,
|
673
|
+
"54" => :bank_reject_item_count,
|
674
|
+
"55" => :net_to_pay_item_count,
|
675
|
+
"56" => :minimum_contract_quantity,
|
676
|
+
"57" => :minimum_order_quantity,
|
677
|
+
"58" => :payment_cancellation_item_count,
|
678
|
+
"59" => :individuals_with_developmental_delay,
|
679
|
+
"60" => :total_authorized_quantity,
|
680
|
+
"61" => :remaining_authorized_quantity,
|
681
|
+
"62" => :number_of_days_covered_by_inventory,
|
682
|
+
"63" => :on_order_quantity,
|
683
|
+
"64" => :past_due_quantity,
|
684
|
+
"65" => :previous_months_usage,
|
685
|
+
"66" => :minimum_fabrication_quantity,
|
686
|
+
"67" => :minimum_ship_quantity,
|
687
|
+
"68" => :maximum_number_of_shipments_allowed,
|
688
|
+
"69" => :incremental_order_quantity,
|
689
|
+
"70" => :maximum_order_quantity,
|
690
|
+
"71" => :educable_mentally_retarded_individuals,
|
691
|
+
"72" => :minimum_stock_level,
|
692
|
+
"73" => :maximum_stock_level,
|
693
|
+
"74" => :damaged_goods,
|
694
|
+
"75" => :receipts,
|
695
|
+
"76" => :returns,
|
696
|
+
"77" => :stock_transfers_in,
|
697
|
+
"78" => :stock_transfers_out,
|
698
|
+
"79" => :billing_units_per_pricing_unit,
|
699
|
+
"80" => :pricing_units_per_billing_unit,
|
700
|
+
"81" => :prepaid_quantity_shipped,
|
701
|
+
"82" => :prepaid_quantity_not_shipped,
|
702
|
+
"83" => :submitted_quantity_sold,
|
703
|
+
"84" => :submitted_quantity_returned,
|
704
|
+
"85" => :lot_size,
|
705
|
+
"86" => :nonconformance_quantity,
|
706
|
+
"87" => :quantity_received,
|
707
|
+
"88" => :beds,
|
708
|
+
"89" => :operating_beds,
|
709
|
+
"90" => :acknowledged_quantitynetwork_recognition_for_message_receipt,
|
710
|
+
"91" => :additional_usage_quantitythe_amount_of_usage_incurred_above_the_allotted_or_allowable_use_for_a_service,
|
711
|
+
"92" => :allotted_usage_quantitythe_amount_of_allowable_usage_related_to_a_service,
|
712
|
+
"93" => :attendanthandled_quantitymanual_recognition_for_message_receipt,
|
713
|
+
"94" => :billable_quantitynumber_of_billable_units_used,
|
714
|
+
"95" => :data_storage_quantitynumber_of_storage_units_used,
|
715
|
+
"96" => :nonbillable_quantitynumber_of_nonbillable_units,
|
716
|
+
"97" => :nonurgent_delivery_quantitynumber_of_units_delivered_in_nonurgent_status,
|
717
|
+
"98" => :overflow_quantitynumber_of_overflow_messages_busy_condition_count_for_800_service,
|
718
|
+
"99" => :quantity_usedquantity_of_units_used,
|
719
|
+
"a0" => :severely_mentally_retarded_individuals,
|
720
|
+
"a1" => :acceptable_unserviceable_quantityindicates_what_portion_of_the_total_requested_quantity_may_be_accepted_in_an_unserviceable_condition,
|
721
|
+
"a2" => :optimistic_durationbest_case_amount_of_the_time_needed_to_complete_a_task_or_activity,
|
722
|
+
"a3" => :most_likely_durationmost_likely_amount_of_time_needed_to_complete_a_task_or_activity,
|
723
|
+
"a4" => :pessimistic_durationworst_case_amount_of_time_needed_to_complete_a_task_or_activity,
|
724
|
+
"a5" => :adjusted_quantity,
|
725
|
+
"a6" => :accidents,
|
726
|
+
"a7" => :years_in_school,
|
727
|
+
"a8" => :number_of_dependents,
|
728
|
+
"a9" => :years_on_job,
|
729
|
+
"aa" => :unacknowledged_quantitymessage_received_without_network_or_attendant_recognition,
|
730
|
+
"ab" => :urgent_delivery_quantitynumber_of_units_delivered_in_urgent_status,
|
731
|
+
"ac" => :voice_storage_quantitynumber_of_voice_storage_units_used,
|
732
|
+
"ad" => :maintenance_unitsnumber_of_units_of_maintenance_provided,
|
733
|
+
"ae" => :minimum_average_time_requirement_matr_unitsnumber_of_units_calculated_at_a_minimum_usage_rating_basis_such_as_x_minutes_per_message,
|
734
|
+
"af" => :wide_area_telephone_service_wats800_service_unitsnumber_of_units_of_usage_for_wats_or_800_service,
|
735
|
+
"ag" => :number_of_end_usersnumber_of_participating_users,
|
736
|
+
"ah" => :number_of_message_recipientsnumber_of_recipients,
|
737
|
+
"ai" => :number_of_operator_creditsnumber_of_operator_credits_given,
|
738
|
+
"aj" => :daily_adjustments,
|
739
|
+
"ak" => :years_in_this_line_of_workprofession,
|
740
|
+
"al" => :area_per_units,
|
741
|
+
"am" => :trainable_mentally_retarded_individuals,
|
742
|
+
"an" => :age_at_death,
|
743
|
+
"ao" => :verified_receipts,
|
744
|
+
"ap" => :order_quantity_multipleproduct_must_be_ordered_in_multiples_of_a_number,
|
745
|
+
"aq" => :contribution_total,
|
746
|
+
"ar" => :loan_repayment_total,
|
747
|
+
"as" => :participant_total,
|
748
|
+
"at" => :actual,
|
749
|
+
"au" => :cumulative_actual,
|
750
|
+
"av" => :budget,
|
751
|
+
"aw" => :cumulative_budget,
|
752
|
+
"ax" => :number_of_insured_lives,
|
753
|
+
"ay" => :forecast,
|
754
|
+
"az" => :forecast_at_complete,
|
755
|
+
"b1" => :number_of_mortgagors,
|
756
|
+
"b2" => :mortgage_pool_count,
|
757
|
+
"b3" => :requested_amount,
|
758
|
+
"b4" => :approved_amount,
|
759
|
+
"b5" => :additional_amount,
|
760
|
+
"b6" => :preop_days,
|
761
|
+
"b7" => :postop_days,
|
762
|
+
"b8" => :average,
|
763
|
+
"b9" => :period_beginning_imbalance_quantity,
|
764
|
+
"ba" => :dueinan_anticipated_receipt_quantity,
|
765
|
+
"bb" => :contractor_cumulative_to_date,
|
766
|
+
"bc" => :budget_at_complete,
|
767
|
+
"bd" => :contractor_at_complete,
|
768
|
+
"be" => :subcontractor_cumulative_to_date,
|
769
|
+
"bf" => :age_modifying_unitsanesthesia_modifying_units_requested_for_anesthesia_complicated_by_extreme_age_of_patient_under_one_year_or_over_seventy_years,
|
770
|
+
"bg" => :subcontractor_at_complete,
|
771
|
+
"bh" => :book_order_quantity,
|
772
|
+
"bi" => :book_inventory,
|
773
|
+
"bj" => :bedroom_count,
|
774
|
+
"bk" => :bathroom_count,
|
775
|
+
"bl" => :betterment_hours,
|
776
|
+
"bm" => :depreciation_hours,
|
777
|
+
"bn" => :system_adjusted_hours,
|
778
|
+
"bo" => :user_adjusted_hours,
|
779
|
+
"bp" => :period_ending_imbalance_quantity,
|
780
|
+
"bq" => :backorder_quantity,
|
781
|
+
"br" => :blood_record,
|
782
|
+
"bs" => :cumulative_beginning_imbalance_quantity,
|
783
|
+
"bt" => :cumulative_current_period_imbalance_quantity,
|
784
|
+
"bu" => :cumulative_prior_period_adjustment,
|
785
|
+
"bv" => :cumulative_ending_imbalance_quantity,
|
786
|
+
"bw" => :birth_weight,
|
787
|
+
"bx" => :current_period_imbalance_quantity,
|
788
|
+
"by" => :production_delivery_quantitythe_production_quantity_delivered_to_a_location,
|
789
|
+
"bz" => :entitlement_quantitythe_quantity_to_which_each_party_is_entitled,
|
790
|
+
"c0" => :creditors,
|
791
|
+
"c1" => :payment_experiences_in_last_12_months,
|
792
|
+
"c2" => :payment_experiences_in_last_3_months,
|
793
|
+
"c3" => :area_damaged,
|
794
|
+
"c4" => :other_unlisted_stockholders,
|
795
|
+
"c5" => :other_unlisted_participants,
|
796
|
+
"ca" => :covered__actualdays_covered_on_this_service,
|
797
|
+
"cb" => :closing_statement_balance,
|
798
|
+
"cc" => :current_days_on_market,
|
799
|
+
"cd" => :coinsured__actual,
|
800
|
+
"ce" => :covered__estimatedestimated_days_covered_on_this_service,
|
801
|
+
"cf" => :coinsured__estimated,
|
802
|
+
"cg" => :cumulative_gas_volumeoil_and_gas_production_volume_from_well_completion_to_current_reporting_period,
|
803
|
+
"ch" => :cumulative_effect_of_prior_period_adjustment,
|
804
|
+
"ci" => :cumulative_gas_injection_volumeamount_of_gas_injected_into_an_oil_well_since_well_completion_to_displace_liquid_volumes_in_the_reservoir_and_stimulate_production,
|
805
|
+
"cl" => :cumulative_liquid_injection_volumeamount_of_liquid_injected_into_a_gas_well_since_well_completion_to_displace_gas_volumes_in_the_reservoir_and_stimulate_production,
|
806
|
+
"cn" => :continuance_duration,
|
807
|
+
"co" => :cumulative_oilcondensate_volumevolume_of_crude_oil_and_natural_gas_condensate_produced_from_a_well_or_property_since_well_completion,
|
808
|
+
"cp" => :current_period_imbalance,
|
809
|
+
"cr" => :certified_registered_nurse_anesthetist_crna_number_of_concurrent_procedures,
|
810
|
+
"cs" => :current_service_life,
|
811
|
+
"cw" => :cumulative_water_volumevolumes_of_water_and_brine_produced_from_a_well_or_property_since_well_completion,
|
812
|
+
"cy" => :convictions_sent,
|
813
|
+
"cz" => :total_number_of_convictions,
|
814
|
+
"d0" => :engineers,
|
815
|
+
"d1" => :billed,
|
816
|
+
"d2" => :executives,
|
817
|
+
"d3" => :number_of_coinsurance_days,
|
818
|
+
"d4" => :field_workers,
|
819
|
+
"d5" => :installers,
|
820
|
+
"d6" => :members_in_group,
|
821
|
+
"d7" => :nonconsolidated_totaldomestic_subsidiaries,
|
822
|
+
"d8" => :nonconsolidated_totalforeign_subsidiaries,
|
823
|
+
"d9" => :nonunion_employees,
|
824
|
+
"da" => :dependents_age,
|
825
|
+
"db" => :deductible_blood_unitsamount_of_blood_units_not_reimbursed_due_to_plan_deductible_limits,
|
826
|
+
"dc" => :dependent_count,
|
827
|
+
"dd" => :distributed,
|
828
|
+
"de" => :debited,
|
829
|
+
"df" => :deleted,
|
830
|
+
"dg" => :gas_used_for_drilling,
|
831
|
+
"dh" => :maximum_benefit_period_accident_to_age,
|
832
|
+
"di" => :disposed,
|
833
|
+
"dj" => :maximum_benefit_period_sickness_to_age,
|
834
|
+
"dk" => :airline_attendants,
|
835
|
+
"dl" => :companies_included_in_consolidation,
|
836
|
+
"dm" => :total_consolidated_domestic_subsidiaries,
|
837
|
+
"dn" => :default_notification_response_period,
|
838
|
+
"do" => :days_operatednumber_of_days_a_well_or_well_equipment_is_in_use,
|
839
|
+
"dp" => :days_producednumber_of_days_a_well_actively_produced_oil_or_gas_since_well_completion_or_during_a_specific_month,
|
840
|
+
"dq" => :total_consolidated_foreign_subsidiaries,
|
841
|
+
"dr" => :direct_workers,
|
842
|
+
"ds" => :dose,
|
843
|
+
"dt" => :dependent_total,
|
844
|
+
"du" => :counter_clerks,
|
845
|
+
"dw" => :domestic_affiliated_companies,
|
846
|
+
"dx" => :drivers,
|
847
|
+
"dy" => :days,
|
848
|
+
"dz" => :employed_at_location,
|
849
|
+
"e1" => :course_segmentsthe_number_of_crs_segments_in_the_original_transaction_set_being_referenced,
|
850
|
+
"e2" => :degree_segmentsthe_number_of_deg_segments_in_the_original_transaction_set_being_referenced,
|
851
|
+
"e3" => :employed_on_this_job,
|
852
|
+
"e4" => :employed_in_this_profession,
|
853
|
+
"e5" => :employed_by_this_company,
|
854
|
+
"e8" => :number_of_entitled_exemptions,
|
855
|
+
"e9" => :number_of_withholding_exemptions,
|
856
|
+
"ea" => :exclusive_uses,
|
857
|
+
"eb" => :nonexclusive_uses,
|
858
|
+
"ec" => :use_of_extracorporeal_circulationanesthesia_modifying_unit_requested_for_anesthesia_complicated_by_extracorporeal_circulation_heart_pump_oxygenator_bypass_or_pump_assist_which_is_not_a_usual_part_of_the_surgical_procedure,
|
859
|
+
"ed" => :domestic_uses,
|
860
|
+
"ee" => :small_business_uses,
|
861
|
+
"ef" => :nurses,
|
862
|
+
"eg" => :office_workers,
|
863
|
+
"eh" => :paid_in_common_shares,
|
864
|
+
"ei" => :paid_in_preferred_shares,
|
865
|
+
"ej" => :pilots,
|
866
|
+
"ek" => :plant_workers,
|
867
|
+
"el" => :principals_included_as_employees,
|
868
|
+
"em" => :emergency_modifying_unitsanesthesia_modifying_units_requested_for_anesthesia_complicated_by_emergency_conditions_an_emergency_is_defined_as_existing_when_delay_in_treatment_of_the_patient_would_lead_to_a_significant_threat_to_life_or_body_part,
|
869
|
+
"en" => :suppliers,
|
870
|
+
"eo" => :teachers,
|
871
|
+
"ep" => :product_exchange_amount,
|
872
|
+
"eq" => :equity_security_holder,
|
873
|
+
"er" => :estimated_remaining_economic_life,
|
874
|
+
"es" => :ending_stock,
|
875
|
+
"et" => :employee_total,
|
876
|
+
"eu" => :total_consolidated_subsidiaries,
|
877
|
+
"ev" => :total_nonconsolidated_subsidiaries,
|
878
|
+
"ew" => :evaporated_water,
|
879
|
+
"ex" => :union_employees,
|
880
|
+
"ey" => :ported_telephone_linesthe_quantity_of_telephone_lines_for_which_local_telephone_service_is_provided_by_a_different_local_service_provider,
|
881
|
+
"ez" => :service_resalethe_quantity_of_lines_circuits_trunks_etc_involved_in_this_order,
|
882
|
+
"f0" => :total_claims_with_skin_diseases_or_disorders,
|
883
|
+
"f1" => :off_lease_fuel,
|
884
|
+
"f3" => :total_deaths_as_a_result_of_injury,
|
885
|
+
"f4" => :total_deaths_as_a_result_of_illness,
|
886
|
+
"f5" => :total_injury_claims_with_days_away_from_work_or_restricted_work_activity,
|
887
|
+
"f6" => :total_injury_claims_with_days_away_from_work,
|
888
|
+
"f7" => :total_injury_claims_without_lost_work_days,
|
889
|
+
"f8" => :total_days_away_from_work_due_to_injury,
|
890
|
+
"f9" => :total_days_with_restricted_work_activity_due_to_injury,
|
891
|
+
"fa" => :full_baths,
|
892
|
+
"fb" => :furnished_blood_units,
|
893
|
+
"fc" => :fuel_consumed_or_burned_amount,
|
894
|
+
"fd" => :vehicular_radios,
|
895
|
+
"fe" => :portable_radios,
|
896
|
+
"ff" => :flare_or_flash,
|
897
|
+
"fg" => :marine_radios,
|
898
|
+
"fh" => :pagers,
|
899
|
+
"fi" => :conventional_mobiles,
|
900
|
+
"fj" => :trunked_channels,
|
901
|
+
"fk" => :mobile_loading_allocation,
|
902
|
+
"fl" => :units,
|
903
|
+
"fm" => :aircraft_radios,
|
904
|
+
"fn" => :total_claims_with_dust_diseases_of_the_lungs,
|
905
|
+
"fo" => :total_claims_with_respiratory_conditions_due_to_toxic_agents,
|
906
|
+
"fp" => :total_claims_with_poisoning_illnesses,
|
907
|
+
"fq" => :total_claims_with_disorders_due_to_physical_agents,
|
908
|
+
"fs" => :gas_used_for_fuel_system,
|
909
|
+
"ft" => :forecast_to_complete,
|
910
|
+
"fu" => :total_claims_associated_with_repeated_trauma,
|
911
|
+
"fv" => :total_illness_claims_with_occupational_illnesses_not_otherwise_classified,
|
912
|
+
"fw" => :total_days_away_from_work_due_to_illness,
|
913
|
+
"fx" => :total_days_of_restricted_work_activity_due_to_illness,
|
914
|
+
"fy" => :total_illness_with_lost_work_days_or_restricted_work_activity,
|
915
|
+
"fz" => :total_illness_claims_with_days_away_from_work,
|
916
|
+
"g0" => :discharge_quantity,
|
917
|
+
"g1" => :estimated_discharge_quantity,
|
918
|
+
"g2" => :estimated_transfer_quantity,
|
919
|
+
"g3" => :excursions,
|
920
|
+
"g4" => :nonproduction_quantity,
|
921
|
+
"g5" => :number_of_deaths,
|
922
|
+
"g6" => :number_of_hospitalizations,
|
923
|
+
"g7" => :number_of_injuries,
|
924
|
+
"g8" => :number_of_injuries_requiring_medical_treatment,
|
925
|
+
"g9" => :number_of_people_evacuated,
|
926
|
+
"ga" => :gross_building_area,
|
927
|
+
"gb" => :gross_annual_income_multiplier,
|
928
|
+
"gc" => :gross_living_area,
|
929
|
+
"gd" => :total_illness_claims_without_lost_work_days,
|
930
|
+
"ge" => :original_term_in_years,
|
931
|
+
"gf" => :years_remaining,
|
932
|
+
"gg" => :average_number_of_employees,
|
933
|
+
"gh" => :total_worked_by_all_employees,
|
934
|
+
"gi" => :gas_injection_volumevolume_of_gas_injected_into_an_oil_well_to_displace_liquid_volumes_in_the_reservoir_and_stimulate_production_on_a_monthly_basis,
|
935
|
+
"gl" => :gas_lift_volumevolume_of_excess_gas_produced_from_the_well_and_reinjected_to_lift_liquids_such_as_oil_and_condensate_from_the_well_bore,
|
936
|
+
"gp" => :gross_production,
|
937
|
+
"gq" => :government_reporting_quantity,
|
938
|
+
"gr" => :gas_receipt_volume,
|
939
|
+
"gs" => :gas_sold,
|
940
|
+
"gt" => :grade_transfer_amount,
|
941
|
+
"gu" => :employee_total_first_month_of_quarter,
|
942
|
+
"gv" => :gas_volumereported_volume_of_natural_gas,
|
943
|
+
"gw" => :employee_total_second_month_of_quarter,
|
944
|
+
"gx" => :employee_total_third_month_of_quarter,
|
945
|
+
"gz" => :active_listings,
|
946
|
+
"h0" => :number_of_people_shelteredinplace,
|
947
|
+
"h1" => :quantity_recovered,
|
948
|
+
"h2" => :quantity_recycled,
|
949
|
+
"h3" => :quantity_released,
|
950
|
+
"h4" => :quantity_treated,
|
951
|
+
"h5" => :total_hazardous_waste_generated,
|
952
|
+
"h6" => :operational_quantity,
|
953
|
+
"h7" => :penalty_variance_quantity,
|
954
|
+
"h8" => :allocated_quantity,
|
955
|
+
"h9" => :scheduled_quantity,
|
956
|
+
"ha" => :market_price_changeexpressed_in_time_ie_months_or_years,
|
957
|
+
"hb" => :unpaid,
|
958
|
+
"hc" => :branches,
|
959
|
+
"hd" => :subsidiaries,
|
960
|
+
"he" => :age_of_financial_information,
|
961
|
+
"hf" => :invoices,
|
962
|
+
"hg" => :financial_coverage_period,
|
963
|
+
"hh" => :maximum_number_of_employees_at_location,
|
964
|
+
"hi" => :previous_number_of_accounts,
|
965
|
+
"hj" => :collection_period,
|
966
|
+
"hk" => :disbursement_period,
|
967
|
+
"hl" => :seats,
|
968
|
+
"hm" => :use_of_hypothermiaanesthesia_modifying_units_requested_for_anesthesia_complicated_by_total_body_hypothermia,
|
969
|
+
"hn" => :previous_number_of_employees,
|
970
|
+
"ho" => :use_of_hypotensionanesthesia_modifying_units_requested_for_anesthesia_complicated_by_utilization_of_controlled_hypotension,
|
971
|
+
"hp" => :use_of_hyperbaric_pressurizationanesthesia_modifying_units_requested_for_anesthesia_complicated_by_use_of_hyperbaric_pressure,
|
972
|
+
"hq" => :kindergarten_students,
|
973
|
+
"hr" => :use_of_hypertension,
|
974
|
+
"hs" => :hours,
|
975
|
+
"ht" => :employees_age,
|
976
|
+
"hu" => :employees_number_of_days_away_from_work_due_to_injury,
|
977
|
+
"hv" => :employees_number_of_days_of_restricted_work_activity_due_to_injury,
|
978
|
+
"hw" => :employees_total_number_of_days_away_from_work_due_to_illness,
|
979
|
+
"hy" => :total_death_claims,
|
980
|
+
"hz" => :total_claims_with_days_away_from_work,
|
981
|
+
"i0" => :tenth_grade_students,
|
982
|
+
"i1" => :eleventh_grade_students,
|
983
|
+
"i2" => :twelfth_grade_students,
|
984
|
+
"i3" => :prior_teaching_experience,
|
985
|
+
"i4" => :prior_fulltime_teaching_experience,
|
986
|
+
"i5" => :prior_parttime_teaching_experience,
|
987
|
+
"i6" => :prior_experience_in_education,
|
988
|
+
"i7" => :prior_fulltime_experience_in_education,
|
989
|
+
"i8" => :prior_parttime_experience_in_education,
|
990
|
+
"i9" => :prior_experience_related_to_job,
|
991
|
+
"ia" => :local_country_employees,
|
992
|
+
"ib" => :foreign_employees,
|
993
|
+
"ic" => :prior_fulltime_experience_related_to_job,
|
994
|
+
"id" => :prior_parttime_experience_related_to_job,
|
995
|
+
"ie" => :total_prior_experience,
|
996
|
+
"if" => :total_fulltime_prior_experience,
|
997
|
+
"ig" => :total_parttime_prior_experience,
|
998
|
+
"ih" => :total_years_of_educational_service,
|
999
|
+
"ii" => :number_of_irregular_interest_payments,
|
1000
|
+
"ij" => :total_years_of_educational_service_in_this_district,
|
1001
|
+
"ik" => :years_of_experience_as_school_principal,
|
1002
|
+
"il" => :years_of_experience_as_classroom_teacher,
|
1003
|
+
"im" => :years_worked_for_this_system,
|
1004
|
+
"in" => :indirect_workers,
|
1005
|
+
"ip" => :number_of_interest_payments,
|
1006
|
+
"iq" => :intransit_quantity,
|
1007
|
+
"is" => :information_provider_standardized_motor_vehicle_penalty_points,
|
1008
|
+
"it" => :intertank_transfer_amount,
|
1009
|
+
"j0" => :ending_storage_balancethe_gas_quantity_in_storage_for_the_contract_as_of_the_ending_flow_date_and_time,
|
1010
|
+
"j1" => :location_ending_storage_balancethe_gas_quantity_in_storage_for_the_contract_and_location_as_of_the_ending_flow_date_and_time,
|
1011
|
+
"j2" => :location_ending_storage_balance__firmthe_firm_gas_quantity_in_storage_for_the_contract_and_location_as_of_the_ending_flow_date_and_time,
|
1012
|
+
"j3" => :location_ending_storage_balance__interruptiblethe_interruptible_gas_quantity_in_storage_for_the_contract_and_location_as_of_the_ending_flow_date_and_time,
|
1013
|
+
"j4" => :maximum_available_daily_injection_quantitythe_maximum_daily_quantity_of_gas_available_for_injection_as_of_the_ending_flow_date_and_time,
|
1014
|
+
"j5" => :maximum_available_daily_withdrawal_quantitythe_maximum_daily_quantity_of_gas_available_for_withdrawal_as_of_the_ending_flow_date_and_time,
|
1015
|
+
"j6" => :minimum_required_daily_injection_quantitythe_minimum_daily_quantity_of_gas_required_to_be_injected_as_of_the_ending_flow_date_and_time,
|
1016
|
+
"j7" => :minimum_required_daily_withdrawal_quantitythe_minimum_daily_quantity_of_gas_required_to_be_withdrawn_as_of_the_ending_flow_date_and_time,
|
1017
|
+
"ja" => :activity_codesnumber_of_activity_codes_assigned_to_companys_activities,
|
1018
|
+
"jb" => :associates,
|
1019
|
+
"jc" => :average_employeesaverage_number_of_employees_over_a_period_of_time,
|
1020
|
+
"jd" => :cooperative_shares,
|
1021
|
+
"je" => :estimated_employees_at_location,
|
1022
|
+
"jf" => :estimated_total_employeesapproximate_number_of_total_employees_of_a_company_at_current_time,
|
1023
|
+
"jg" => :financial_institutions,
|
1024
|
+
"jh" => :judgments,
|
1025
|
+
"ji" => :land_size,
|
1026
|
+
"jj" => :liens,
|
1027
|
+
"jk" => :minimum_employees_at_location,
|
1028
|
+
"jl" => :office_size,
|
1029
|
+
"jm" => :owner,
|
1030
|
+
"jn" => :plant_size,
|
1031
|
+
"jo" => :previous_number_of_branches,
|
1032
|
+
"jp" => :protested_bills,
|
1033
|
+
"jq" => :suits,
|
1034
|
+
"jr" => :uniform_commercial_code_ucc_filings,
|
1035
|
+
"js" => :judicial_stay_duration,
|
1036
|
+
"jt" => :warehouse_size,
|
1037
|
+
"ju" => :total_days_away_from_work,
|
1038
|
+
"jv" => :total_days_of_restricted_work_activity,
|
1039
|
+
"jw" => :total_claims_without_days_away_from_work_and_without_restricted_work_activity,
|
1040
|
+
"jx" => :secretaries,
|
1041
|
+
"jy" => :mechanics,
|
1042
|
+
"jz" => :auditors,
|
1043
|
+
"k1" => :messengers,
|
1044
|
+
"k2" => :primary_managers,
|
1045
|
+
"k3" => :participation_sharesterm_in_latin_america_and_europe_to_quantify_the_number_of_shares_held_by_a_partner_in_a_limited_partnership,
|
1046
|
+
"k4" => :detrimental_legal_filings,
|
1047
|
+
"k5" => :petitions_filed,
|
1048
|
+
"k6" => :drafts,
|
1049
|
+
"k7" => :business_failure_national_average_incidencenumber_of_firms_in_country_that_discontinued_operations_with_loss_to_creditors,
|
1050
|
+
"k8" => :business_failure_industry_incidencenumber_of_firms_in_a_specific_industry_that_discontinued_operations_with_loss_to_creditors,
|
1051
|
+
"k9" => :business_failure_class_incidencenumber_of_firms_in_a_specific_class_that_discontinued_operations_with_loss_to_creditors,
|
1052
|
+
"ka" => :estimatedthe_quantity_shown_is_an_estimated_quantity,
|
1053
|
+
"kb" => :net_quantity_increasethe_resultant_quantity_represents_a_net_increase_to_a_previously_transmitted_quantity_after_adjustments_have_been_made,
|
1054
|
+
"kc" => :net_quantity_decreasethe_resultant_quantity_represents_a_net_decrease_to_a_previously_transmitted_quantity_after_adjustments_have_been_made,
|
1055
|
+
"kd" => :expenditure_quantity,
|
1056
|
+
"ke" => :originals,
|
1057
|
+
"kf" => :duplicates,
|
1058
|
+
"kg" => :completed_line_items,
|
1059
|
+
"kh" => :completed_contracts,
|
1060
|
+
"ki" => :active_contracts_delinquentbuying_party_caused,
|
1061
|
+
"kj" => :active_contracts_delinquent,
|
1062
|
+
"kk" => :active_contracts_delinquentcontractor_caused,
|
1063
|
+
"kl" => :active_contracts_delinquentunknown_causes,
|
1064
|
+
"km" => :active_line_items_delinquent,
|
1065
|
+
"kn" => :active_line_items_delinquentbuying_party_caused,
|
1066
|
+
"ko" => :active_line_items_delinquentcontractor_caused,
|
1067
|
+
"kp" => :active_line_items_delinquentunknown_causes,
|
1068
|
+
"kq" => :contracts_completed_delinquentbuying_party_caused,
|
1069
|
+
"kr" => :contract_completed_delinquentcontractor_caused,
|
1070
|
+
"ks" => :contracts_completed_delinquentunknown_causes,
|
1071
|
+
"ku" => :reported_deficiencies,
|
1072
|
+
"kv" => :line_items_completed_delinquentbuying_party_caused,
|
1073
|
+
"kw" => :line_items_completed_delinquentcontractor_caused,
|
1074
|
+
"kx" => :line_items_completed_delinquentunknown_causes,
|
1075
|
+
"ky" => :corrective_action_requestsverbal,
|
1076
|
+
"kz" => :corrective_action_requestswritten,
|
1077
|
+
"l2" => :guarantee_fee_buyup_maximum,
|
1078
|
+
"l3" => :contract_buyup,
|
1079
|
+
"l4" => :contract_buydown,
|
1080
|
+
"l5" => :guarantee_fee_rate_after_alternate_payment_method,
|
1081
|
+
"l6" => :guarantee_fee_rate_after_buyup_or_buydown,
|
1082
|
+
"l7" => :buyup_or_buydown_rate_per_basis_point,
|
1083
|
+
"l9" => :subject_to_loss_or_elimination,
|
1084
|
+
"la" => :lifetime_reserve__actualmedicare_hospital_insurance_includes_extra_hospital_days_to_be_used_if_the_patient_has_a_long_illness_and_is_required_to_stay_in_the_hospital_over_a_specified_number_of_days_this_is_the_actual_number_of_days_in_reserve,
|
1085
|
+
"lb" => :loss_allowance,
|
1086
|
+
"lc" => :late_payment_period,
|
1087
|
+
"le" => :lifetime_reserve__estimatedmedicare_hospital_insurance_includes_extra_hospital_days_to_be_used_if_the_patient_has_a_long_illness_and_is_required_to_stay_in_the_hospital_over_a_specified_number_of_days_this_is_an_estimate_of_the_number_of_days_in_reserve,
|
1088
|
+
"lg" => :loss_or_gain,
|
1089
|
+
"lh" => :lost_gas,
|
1090
|
+
"li" => :liquid_injection_volumevolume_of_liquids_injected_into_a_gas_well_to_displace_gas_volumes_in_the_reservoir_and_stimulate_production_on_a_monthly_basis,
|
1091
|
+
"lk" => :corrective_action_requestsmethod_c,
|
1092
|
+
"ll" => :corrective_action_requestsmethod_d,
|
1093
|
+
"lm" => :corrective_action_requestsmethod_e,
|
1094
|
+
"ln" => :aged_active_line_items_delinquentcontractor_caused,
|
1095
|
+
"lo" => :lost_oil,
|
1096
|
+
"lp" => :lease_periods,
|
1097
|
+
"lq" => :aged_line_items_delinquent,
|
1098
|
+
"lr" => :aged_line_items_completedcontractor_caused,
|
1099
|
+
"ls" => :oil_condensate_sold,
|
1100
|
+
"lt" => :tariff_loss_allowance,
|
1101
|
+
"lu" => :lifetime_reserve_days__applied_to_this_claimmedicare_hospital_insurance_includes_extra_hospital_days_to_be_used_if_the_patient_has_a_long_illness_and_is_required_to_stay_in_the_hospital_more_than_a_specified_number_of_days_this_is_the_actual_number_of_days_used_for_this_claim,
|
1102
|
+
"lv" => :oilcondensate_volumevolumes_of_crude_oil_and_natural_gas_condensate_produced_from_a_well_or_property_for_a_specific_month,
|
1103
|
+
"lw" => :lost_work_time_actual,
|
1104
|
+
"lx" => :lost_work_time_estimated,
|
1105
|
+
"ly" => :length_of_residency,
|
1106
|
+
"lz" => :lanes,
|
1107
|
+
"m1" => :matching_equipment,
|
1108
|
+
"m2" => :maximum,
|
1109
|
+
"m3" => :total_federal_pointspoints_assigned_for_the_expected_number_of_federal_offices_on_an_election_ballot_which_are_used_to_determine_the_allocation_of_shared_expenses_between_campaigns_for_federal_and_nonfederal_elected_offices,
|
1110
|
+
"m4" => :contributions,
|
1111
|
+
"m5" => :contributors,
|
1112
|
+
"m6" => :endorsers,
|
1113
|
+
"m7" => :functions,
|
1114
|
+
"m8" => :guarantors,
|
1115
|
+
"m9" => :points,
|
1116
|
+
"ma" => :miscellaneous_allowance,
|
1117
|
+
"mb" => :number_of_public_officials,
|
1118
|
+
"mc" => :total_nonfederal_pointspoints_assigned_for_the_expected_number_of_nonfederal_offices_on_an_election_ballot_which_are_used_to_determine_the_allocation_of_shared_expenses_between_campaigns_for_federal_and_nonfederal_elected_offices,
|
1119
|
+
"md" => :million_dollar_roundtable_credits,
|
1120
|
+
"me" => :minimum_number_of_employees,
|
1121
|
+
"mf" => :manufactured,
|
1122
|
+
"mg" => :pledges,
|
1123
|
+
"mh" => :total_points,
|
1124
|
+
"mi" => :miles,
|
1125
|
+
"mj" => :attendees,
|
1126
|
+
"mk" => :tickets_sold,
|
1127
|
+
"mm" => :maximum_maturity_extension,
|
1128
|
+
"mn" => :month,
|
1129
|
+
"mo" => :minimum_order_package_level,
|
1130
|
+
"mq" => :maximum_ship_quantity,
|
1131
|
+
"ms" => :measured_quantity,
|
1132
|
+
"mx" => :maximum_number_of_employees,
|
1133
|
+
"n1" => :number_of_attacks_or_occurrences,
|
1134
|
+
"n2" => :number_of_dead,
|
1135
|
+
"n3" => :number_of_living,
|
1136
|
+
"n4" => :number_of_times,
|
1137
|
+
"n5" => :minimum_forecast_quantity,
|
1138
|
+
"n6" => :maximum_forecast_quantity,
|
1139
|
+
"na" => :number_of_noncovered_days,
|
1140
|
+
"nb" => :number_of_units_housing,
|
1141
|
+
"nc" => :number_of_claimants,
|
1142
|
+
"nd" => :number_of_late_charges,
|
1143
|
+
"ne" => :noncovered__estimated,
|
1144
|
+
"nf" => :number_of_fulltime_employees,
|
1145
|
+
"ng" => :number_of_nonsufficient_fund_items,
|
1146
|
+
"nh" => :noncovered__actual,
|
1147
|
+
"nl" => :number_of_levels,
|
1148
|
+
"nn" => :number_of_hospitals,
|
1149
|
+
"no" => :number_of_physicians,
|
1150
|
+
"np" => :number_of_members,
|
1151
|
+
"nq" => :number_of_franchisees,
|
1152
|
+
"nr" => :not_replaced_blood_units,
|
1153
|
+
"ns" => :number_of_stationsnumber_of_stations_or_terminating_points_which_are_in_use_deleted_added_etc_for_service_delivery_ports_or_lines_on_a_computer_for_example,
|
1154
|
+
"nt" => :reports,
|
1155
|
+
"nu" => :since_last_travel,
|
1156
|
+
"nv" => :net,
|
1157
|
+
"nw" => :until_next_travel,
|
1158
|
+
"o1" => :scheduled_receipt,
|
1159
|
+
"o2" => :scheduled_delivery,
|
1160
|
+
"o3" => :operational_receipt,
|
1161
|
+
"o4" => :operational_delivery,
|
1162
|
+
"o5" => :allocated_receipt,
|
1163
|
+
"o6" => :allocated_delivery,
|
1164
|
+
"o7" => :distributed_confirmed_receipt,
|
1165
|
+
"o8" => :distributed_confirmed_delivery,
|
1166
|
+
"o9" => :scheduling_tolerance_receipt,
|
1167
|
+
"oa" => :scheduling_tolerance_delivery,
|
1168
|
+
"ob" => :energy,
|
1169
|
+
"oc" => :order_count,
|
1170
|
+
"od" => :other_miscellaneous_disposition,
|
1171
|
+
"oe" => :number_of_weeks_per_year,
|
1172
|
+
"of" => :off_premise_sales_quantity,
|
1173
|
+
"og" => :other_gas_disposition,
|
1174
|
+
"oh" => :other_injection_volume,
|
1175
|
+
"oi" => :opening_statement_balance,
|
1176
|
+
"ol" => :original_loan_term,
|
1177
|
+
"on" => :on_premise_sales_quantity,
|
1178
|
+
"oo" => :other_oil_condensate_disposition,
|
1179
|
+
"oq" => :optimum_order_quantity,
|
1180
|
+
"or" => :original,
|
1181
|
+
"ot" => :number_of_operating_periods_at_failurea_measurement_of_the_elapsed_time_or_usage_before_equipment_failure_occurred,
|
1182
|
+
"ou" => :outlier_days,
|
1183
|
+
"ov" => :overage,
|
1184
|
+
"ow" => :other_water_disposition,
|
1185
|
+
"p1" => :project_phases,
|
1186
|
+
"p3" => :physical_status_iiianesthesia_modifying_units_requested_for_physical_status_iii_patient_as_defined_by_the_american_society_of_anesthesiologists,
|
1187
|
+
"p4" => :physical_status_ivanesthesia_modifying_units_requested_for_physical_status_iv_patient_as_defined_by_the_american_society_of_anesthesiologists,
|
1188
|
+
"p5" => :physical_status_vanesthesia_modifying_units_requested_for_physical_status_v_as_defined_by_the_american_society_of_anesthesiologists,
|
1189
|
+
"p6" => :number_of_services_or_procedures,
|
1190
|
+
"p7" => :prescription_dosage,
|
1191
|
+
"p8" => :prescription_frequency,
|
1192
|
+
"p9" => :number_of_people_living_at_residence,
|
1193
|
+
"pa" => :pipeline_adjustment_or_allowance,
|
1194
|
+
"pb" => :pressure_base,
|
1195
|
+
"pc" => :prior_cumulative_imbalance,
|
1196
|
+
"pd" => :payment_duration_weeks,
|
1197
|
+
"pe" => :period_of_employment,
|
1198
|
+
"pf" => :gas_used_for_plant_fuel,
|
1199
|
+
"pg" => :persistency,
|
1200
|
+
"ph" => :promotional,
|
1201
|
+
"pk" => :parking_spaces,
|
1202
|
+
"pl" => :partial_baths,
|
1203
|
+
"po" => :percentage_of_ordered_quantityowners_of_fabric_that_have_third_parties_finish_their_fabric_must_have_a_way_to_convey_on_the_purchase_order_the_quantities_of_various_levels_of_quality_acceptable_ie_80_first_10_second_8_off_quality_2_unmerchantable,
|
1204
|
+
"pp" => :purchase_of_product,
|
1205
|
+
"pq" => :cumulative_quantity_required_prior_to_the_first_scheduled_period,
|
1206
|
+
"pr" => :requirement_quantity_that_was_previously_released,
|
1207
|
+
"ps" => :prescription,
|
1208
|
+
"pt" => :patients,
|
1209
|
+
"pw" => :pitted_water,
|
1210
|
+
"px" => :prior_units_accepted,
|
1211
|
+
"py" => :paid,
|
1212
|
+
"q1" => :minimum_quantity_to_which_tax_rate_applies,
|
1213
|
+
"q2" => :maximum_quantity_to_which_tax_rate_applies,
|
1214
|
+
"q3" => :quantity_earned,
|
1215
|
+
"q4" => :quantity_carried_forward,
|
1216
|
+
"q5" => :number_of_3_to_4_year_olds,
|
1217
|
+
"q6" => :autistic_individuals,
|
1218
|
+
"q7" => :deafblind_individuals,
|
1219
|
+
"q8" => :hearing_impaired_individuals,
|
1220
|
+
"q9" => :mentally_retarded_individuals,
|
1221
|
+
"qa" => :quantity_approvedquantity_allowed_by_the_company_processing_the_claim,
|
1222
|
+
"qb" => :quantity_dispensednumber_of_refills_given,
|
1223
|
+
"qc" => :quantity_disapproved,
|
1224
|
+
"qd" => :quantity_delivered,
|
1225
|
+
"qe" => :quantity_deferredquantity_required_for_orders_but_not_reserved,
|
1226
|
+
"qf" => :high_fabrication_authorization_quantitythe_highest_quantity_of_material_authorized_for_production,
|
1227
|
+
"qh" => :quantity_on_holdproduct_which_cannot_be_shipped_at_the_present_time_for_any_reason_exclusive_of_damaged_quantity,
|
1228
|
+
"qi" => :community_service_duration,
|
1229
|
+
"qj" => :number_of_times_deported,
|
1230
|
+
"ql" => :jail_sentence_duration,
|
1231
|
+
"qm" => :probation_duration,
|
1232
|
+
"qn" => :restriction_duration,
|
1233
|
+
"qo" => :operating_quantity,
|
1234
|
+
"qp" => :quantity_by_position,
|
1235
|
+
"qq" => :suspended_duration,
|
1236
|
+
"qr" => :high_raw_material_authorization_quantitythe_highest_quantity_of_raw_material_or_purchased_components_in_their_original_state_authorized_to_be_secured_for_production,
|
1237
|
+
"qs" => :quantity_per_skid,
|
1238
|
+
"qt" => :plant_thermal_reduction,
|
1239
|
+
"qu" => :quantity_serviced,
|
1240
|
+
"qv" => :quantity_cancelled,
|
1241
|
+
"qw" => :quantity_withdrawn,
|
1242
|
+
"qx" => :qualifying_weeks,
|
1243
|
+
"qy" => :repayment_plan_term,
|
1244
|
+
"r1" => :replenishment_fill,
|
1245
|
+
"r2" => :individuals_with_orthopedic_impairment,
|
1246
|
+
"r3" => :estimated_remaining_physical_life,
|
1247
|
+
"r4" => :individuals_with_specific_learning_disability,
|
1248
|
+
"r5" => :axles,
|
1249
|
+
"r6" => :platform_count,
|
1250
|
+
"r7" => :individuals_with_visual_impairment,
|
1251
|
+
"r8" => :individuals_with_other_health_impairment,
|
1252
|
+
"r9" => :fuel,
|
1253
|
+
"ra" => :refills_authorizednumber_of_times_a_drug_prescription_my_be_refilled,
|
1254
|
+
"rb" => :replaced_blood_units,
|
1255
|
+
"rc" => :number_of_items_authorized_at_store,
|
1256
|
+
"rd" => :number_of_items_authorized_at_warehouse,
|
1257
|
+
"re" => :gas_returned_to_earth,
|
1258
|
+
"rf" => :number_of_items_in_stock,
|
1259
|
+
"rg" => :gas_used_for_repressuring_or_pressure_maintenance,
|
1260
|
+
"rh" => :number_of_shelf_tags,
|
1261
|
+
"rj" => :quantity_available_on_shelf,
|
1262
|
+
"rl" => :gas_returned_to_property_for_fuel,
|
1263
|
+
"rm" => :room_count,
|
1264
|
+
"rn" => :units_rented,
|
1265
|
+
"rq" => :royalty,
|
1266
|
+
"rs" => :number_of_shelf_facings,
|
1267
|
+
"rt" => :retail_sales_quantity,
|
1268
|
+
"rw" => :water_reinjected_on_property,
|
1269
|
+
"ry" => :requirement_quantity,
|
1270
|
+
"s1" => :planned_unit_development_pud_units,
|
1271
|
+
"s2" => :rooms_finished_area_above_grade,
|
1272
|
+
"s3" => :dwelling_area,
|
1273
|
+
"s4" => :garage_or_carport_area,
|
1274
|
+
"s5" => :units_for_sale,
|
1275
|
+
"s6" => :gross_rent_multiplier,
|
1276
|
+
"s7" => :age_high_value,
|
1277
|
+
"s8" => :age_low_value,
|
1278
|
+
"s9" => :bedrooms_finished_area_above_grade,
|
1279
|
+
"sa" => :shipments,
|
1280
|
+
"sb" => :solicited,
|
1281
|
+
"sc" => :bathrooms_finished_area_above_grade,
|
1282
|
+
"sd" => :criminal_sentence_duration,
|
1283
|
+
"se" => :gross_living_finished_area_above_grade,
|
1284
|
+
"sf" => :site,
|
1285
|
+
"sg" => :swanganzanesthesia_modifying_units_requested_for_the_insertion_of_a_swanganz_catheter_attendant_to_the_administration_of_anesthesia,
|
1286
|
+
"sh" => :shortage,
|
1287
|
+
"si" => :rooms,
|
1288
|
+
"sj" => :area_of_level,
|
1289
|
+
"sk" => :gas_shrinkage,
|
1290
|
+
"sl" => :predominate_age,
|
1291
|
+
"sm" => :minimum_criminal_sentence_duration,
|
1292
|
+
"sn" => :age,
|
1293
|
+
"so" => :oil_sedimentation,
|
1294
|
+
"sp" => :days_supplyestimate_of_the_number_of_days_the_supply_will_last,
|
1295
|
+
"sq" => :product_sales_amount,
|
1296
|
+
"sr" => :effective_age,
|
1297
|
+
"ss" => :shares_of_preferred_stock,
|
1298
|
+
"st" => :standard,
|
1299
|
+
"su" => :forecasted_scanned_quantity,
|
1300
|
+
"sv" => :shares_of_common_stock,
|
1301
|
+
"sw" => :sample_amount,
|
1302
|
+
"sx" => :maximum_criminal_sentence_duration,
|
1303
|
+
"sy" => :state_or_province_motor_vehicle_penalty_points,
|
1304
|
+
"sz" => :seasonal,
|
1305
|
+
"t1" => :time_units_known,
|
1306
|
+
"t2" => :time_units_spent_on_duty,
|
1307
|
+
"t3" => :total_days_on_market,
|
1308
|
+
"t4" => :total_rooms,
|
1309
|
+
"t5" => :total_number_of_units,
|
1310
|
+
"t6" => :total_number_of_units_for_sale,
|
1311
|
+
"t7" => :tires,
|
1312
|
+
"ta" => :tank_allowance,
|
1313
|
+
"tb" => :oil_theft,
|
1314
|
+
"tc" => :total_at_complete,
|
1315
|
+
"td" => :total_to_date,
|
1316
|
+
"te" => :number_of_theatres,
|
1317
|
+
"tg" => :total_gas_injection_volume,
|
1318
|
+
"th" => :theoretical_quantity,
|
1319
|
+
"ti" => :total_oil_andor_condensate_injection_volume,
|
1320
|
+
"tj" => :duration_in_current_job,
|
1321
|
+
"tk" => :total_oil_andor_condensate_disposition,
|
1322
|
+
"tm" => :total_water_disposition,
|
1323
|
+
"tn" => :total_beginning_inventory,
|
1324
|
+
"to" => :total,
|
1325
|
+
"tp" => :time_in_position,
|
1326
|
+
"tr" => :tripsnumber_of_trips_in_the_ambulance,
|
1327
|
+
"ts" => :total_number_of_parking_spaces,
|
1328
|
+
"tt" => :total_production_volume,
|
1329
|
+
"tu" => :total_adjustments_volume,
|
1330
|
+
"tv" => :total_gas_disposition,
|
1331
|
+
"tw" => :total_water_injection_volume,
|
1332
|
+
"tx" => :total_ending_inventory,
|
1333
|
+
"ty" => :total_sales_volume,
|
1334
|
+
"u1" => :freelance_collectors,
|
1335
|
+
"u2" => :branch_locations_owned,
|
1336
|
+
"u3" => :branch_locations_leased,
|
1337
|
+
"ua" => :units_completed,
|
1338
|
+
"ub" => :poultry,
|
1339
|
+
"uc" => :livestock,
|
1340
|
+
"ud" => :passengers,
|
1341
|
+
"ue" => :trainers,
|
1342
|
+
"uf" => :operators,
|
1343
|
+
"ug" => :gas_used_on_property,
|
1344
|
+
"uh" => :inspectors,
|
1345
|
+
"ui" => :collectors,
|
1346
|
+
"uj" => :professionals,
|
1347
|
+
"uk" => :supervisors,
|
1348
|
+
"ul" => :approximate_number_of_units_for_sale_projected,
|
1349
|
+
"um" => :administrators,
|
1350
|
+
"un" => :promoters,
|
1351
|
+
"uo" => :oil_condensate_used_on_property,
|
1352
|
+
"up" => :divisions,
|
1353
|
+
"uq" => :tables,
|
1354
|
+
"ur" => :fuel_pumps,
|
1355
|
+
"us" => :inuse,
|
1356
|
+
"ut" => :machines,
|
1357
|
+
"uu" => :used,
|
1358
|
+
"uv" => :trademarks_used,
|
1359
|
+
"uw" => :available_for_cultivation,
|
1360
|
+
"ux" => :foremen,
|
1361
|
+
"uy" => :travelling_employees,
|
1362
|
+
"uz" => :freelance_salespersons,
|
1363
|
+
"v1" => :retention_quantity,
|
1364
|
+
"v2" => :available_quantity,
|
1365
|
+
"v3" => :transfer_quantity,
|
1366
|
+
"v4" => :surveys_in_average_rating,
|
1367
|
+
"v5" => :vacancies,
|
1368
|
+
"va" => :volume_shrinkage_adjustment_or_allowance,
|
1369
|
+
"vb" => :blank_votes,
|
1370
|
+
"vc" => :cumulative_earned_valuethe_cumulative_sum_of_the_value_of_completed_work_or_completed_portions_of_work_effort_expressed_in_quantity_units_typically_hours,
|
1371
|
+
"vd" => :scattered_voteswritein_votes_that_receive_less_than_a_jurisdictionally_specified_proportion_of_the_total_vote,
|
1372
|
+
"ve" => :earned_valuethe_value_of_completed_work_or_completed_portions_of_work_effort_expressed_in_quantity_units_typically_hours,
|
1373
|
+
"vf" => :federal_votesballots_cast_pursuant_to_42_united_states_code_usc_1973_paragraph_ff6,
|
1374
|
+
"vg" => :gas_vented,
|
1375
|
+
"vh" => :schedule_variancethe_difference_between_the_budget_planned_for_a_task_and_the_earned_value_work_accomplished_for_the_task_typically_represented_in_hours,
|
1376
|
+
"vi" => :cumulative_schedule_variancethe_cumulative_sum_of_the_difference_between_the_budget_planned_for_a_task_and_the_earned_value_work_accomplished_for_a_task_typically_represented_in_hours,
|
1377
|
+
"vj" => :cumulative_variancethe_difference_between_the_actual_numbers_for_a_task_and_the_earned_value_work_accomplished_for_the_task_typically_represented_in_hours,
|
1378
|
+
"vk" => :estimate_at_completeestimate_of_the_effort_required_to_complete_a_task_or_project_typically_represented_in_hours,
|
1379
|
+
"vl" => :at_complete_variancedifference_between_the_budget_at_complete_and_the_estimate_at_complete_typically_represented_in_hours,
|
1380
|
+
"vm" => :variance_adjustmentadjustment_made_to_a_variance_to_reflect_other_factors_in_measuring_completed_work_or_estimate_of_effort_needed_to_complete_work_typically_represented_in_hours,
|
1381
|
+
"vn" => :no_votes,
|
1382
|
+
"vp" => :presidential_votesballots_cast_pursuant_to_42_united_states_code_usc_1973_paragraph_aa1,
|
1383
|
+
"vr" => :variance,
|
1384
|
+
"vs" => :visits,
|
1385
|
+
"vt" => :votes,
|
1386
|
+
"vv" => :void_votes,
|
1387
|
+
"vy" => :yes_votes,
|
1388
|
+
"w0" => :bankruptcy_petitions,
|
1389
|
+
"w1" => :buyers,
|
1390
|
+
"w2" => :debentures,
|
1391
|
+
"w3" => :debentures_filed_against_directors,
|
1392
|
+
"w4" => :detrimental_legal_filings_against_directors,
|
1393
|
+
"w5" => :failed_businesses_of_directors,
|
1394
|
+
"w6" => :professors,
|
1395
|
+
"w7" => :sellers,
|
1396
|
+
"w8" => :skilled_workers,
|
1397
|
+
"w9" => :trademarks_represented,
|
1398
|
+
"wa" => :total_number_of_workers_compensation_first_reports,
|
1399
|
+
"wb" => :total_number_of_workers_compensation_subsequent_reports,
|
1400
|
+
"wc" => :total_number_of_workers_compensation_combined_reports,
|
1401
|
+
"wd" => :units_worked_per_day,
|
1402
|
+
"we" => :limited_quantitycode_of_federal_regulations_limited_quantity_for_transportation_of_hazardous_materials,
|
1403
|
+
"wg" => :weight_gain,
|
1404
|
+
"wl" => :weight_loss,
|
1405
|
+
"wo" => :operators_working_interest,
|
1406
|
+
"wp" => :number_of_producing_wells_remaining_on_property_or_facility,
|
1407
|
+
"wr" => :number_of_producing_wells_remaining_on_royalty_account,
|
1408
|
+
"wt" => :total_working_interest,
|
1409
|
+
"wv" => :water_volumevolume_of_water_produced_with_the_oil_or_gas,
|
1410
|
+
"ww" => :weeks_worked,
|
1411
|
+
"wx" => :license_withdrawal_duration,
|
1412
|
+
"wy" => :license_withdrawals_sent,
|
1413
|
+
"x1" => :producing_wells,
|
1414
|
+
"x6" => :assessment_hours,
|
1415
|
+
"x7" => :duty_days,
|
1416
|
+
"x8" => :contract_days,
|
1417
|
+
"x9" => :number_of_days_employed,
|
1418
|
+
"xa" => :total_of_issuable_assets,
|
1419
|
+
"xb" => :total_system_backorder_quantity_high_priority,
|
1420
|
+
"xc" => :total_service_backorder_quantity_high_priority,
|
1421
|
+
"xd" => :total_system_backorder_quantity_low_priority,
|
1422
|
+
"xe" => :total_service_backorder_quantity_low_priority,
|
1423
|
+
"xg" => :on_hand_and_dueinthe_total_quantity_on_hand_and_on_order,
|
1424
|
+
"xi" => :installment_payments,
|
1425
|
+
"xj" => :other_war_reserve_material_requirements_protectable_owrmrp_quantitytotal_of_all_war_reserve_material_to_be_protected,
|
1426
|
+
"xl" => :approximate_number_of_units_projected,
|
1427
|
+
"xn" => :approximate_number_of_holders,
|
1428
|
+
"xo" => :circulating_oil,
|
1429
|
+
"xt" => :protected_quantity,
|
1430
|
+
"xu" => :reserved,
|
1431
|
+
"xv" => :requisitioning_objective,
|
1432
|
+
"xx" => :authorized_retention_level,
|
1433
|
+
"xy" => :safety_level,
|
1434
|
+
"xz" => :backorder_linestotal_number_of_transactions_held_in_backorder_status,
|
1435
|
+
"y1" => :number_of_lost_cards,
|
1436
|
+
"y2" => :number_of_stolen_cards,
|
1437
|
+
"y3" => :number_of_cards_not_received,
|
1438
|
+
"y4" => :number_of_active_accounts_this_cycle,
|
1439
|
+
"y5" => :number_of_open_accounts,
|
1440
|
+
"y6" => :number_of_accounts_past_due,
|
1441
|
+
"y7" => :number_of_cards_outstanding,
|
1442
|
+
"ya" => :total_demand_quantitysum_total_of_all_demands,
|
1443
|
+
"yb" => :total_demand_orderstotal_number_of_demand_transactions_reflected_in_total_demand_quantity,
|
1444
|
+
"yc" => :first_quarter_recurring_demandtotal_quantity_of_recurring_demands_received_in_first_past_quarter,
|
1445
|
+
"yd" => :first_quarter_recurring_orderstotal_number_of_recurring_demand_transactions_received_in_first_past_quarter,
|
1446
|
+
"ye" => :first_quarter_nonrecurring_demandtotal_quantity_of_nonrecurring_demands_received_in_first_past_quarter,
|
1447
|
+
"yf" => :first_quarter_nonrecurring_orderstotal_number_of_nonrecurring_demand_transactions_received_in_first_past_quarter,
|
1448
|
+
"yg" => :second_quarter_recurring_demandtotal_quantity_of_recurring_demands_received_in_second_past_quarter,
|
1449
|
+
"yh" => :second_quarter_recurring_orderstotal_number_of_recurring_demand_transactions_received_in_second_past_quarter,
|
1450
|
+
"yj" => :second_quarter_nonrecurring_demandtotal_quantity_of_nonrecurring_demands_received_in_second_past_quarter,
|
1451
|
+
"yk" => :second_quarter_nonrecurring_orderstotal_number_of_nonrecurring_demand_transactions_received_in_second_past_quarter,
|
1452
|
+
"yl" => :third_quarter_recurring_demandtotal_quantity_of_recurring_demands_received_in_third_past_quarter,
|
1453
|
+
"ym" => :third_quarter_recurring_orderstotal_number_of_recurring_demand_transactions_received_in_third_past_quarter,
|
1454
|
+
"yn" => :third_quarter_nonrecurring_demandtotal_quantity_of_nonrecurring_demands_received_in_third_past_quarter,
|
1455
|
+
"yp" => :third_quarter_nonrecurring_orderstotal_number_of_nonrecurring_demand_transactions_received_in_third_past_quarter,
|
1456
|
+
"yq" => :fourth_quarter_recurring_demandtotal_quantity_of_recurring_demands_received_in_fourth_past_quarter,
|
1457
|
+
"yr" => :fourth_quarter_recurring_orderstotal_number_of_recurring_demand_transactions_received_in_fourth_past_quarter,
|
1458
|
+
"ys" => :fourth_quarter_nonrecurring_demandtotal_quantity_of_nonrecurring_demands_received_in_fourth_past_quarter,
|
1459
|
+
"yt" => :fourth_quarter_nonrecurring_orderstotal_number_of_nonrecurring_demand_transactions_received_in_fourth_past_quarter,
|
1460
|
+
"yu" => :trailers,
|
1461
|
+
"yw" => :reorder_point_quantityquantity_at_which_a_reorder_should_take_place,
|
1462
|
+
"yx" => :contract_line_item_quantitythe_quantity_of_material_cited_under_a_specific_contract_line_item,
|
1463
|
+
"yy" => :years,
|
1464
|
+
"z1" => :units_worked_last_day,
|
1465
|
+
"z2" => :units_worked_per_week,
|
1466
|
+
"z3" => :units_worked_per_quarter,
|
1467
|
+
"z4" => :number_weeks_paid,
|
1468
|
+
"z6" => :unused_accumulated_sick_days,
|
1469
|
+
"za" => :federal_medicare_or_medicaid_claim_mandate__category_1,
|
1470
|
+
"zb" => :federal_medicare_or_medicaid_claim_mandate__category_2,
|
1471
|
+
"zc" => :federal_medicare_or_medicaid_claim_mandate__category_3,
|
1472
|
+
"zd" => :federal_medicare_or_medicaid_claim_mandate__category_4,
|
1473
|
+
"ze" => :federal_medicare_or_medicaid_claim_mandate__category_5,
|
1474
|
+
"zf" => :federal_pension_mandate__category_1,
|
1475
|
+
"zg" => :federal_pension_mandate__category_2,
|
1476
|
+
"zh" => :federal_pension_mandate__category_3,
|
1477
|
+
"zi" => :holding_periodthe_length_of_time_material_can_be_held_while_awaiting_processing,
|
1478
|
+
"zj" => :federal_pension_mandate__category_5,
|
1479
|
+
"zk" => :federal_medicare_or_medicaid_payment_mandate__category_1,
|
1480
|
+
"zl" => :federal_medicare_or_medicaid_payment_mandate__category_2,
|
1481
|
+
"zm" => :federal_medicare_or_medicaid_payment_mandate__category_3,
|
1482
|
+
"zn" => :federal_medicare_or_medicaid_payment_mandate__category_4,
|
1483
|
+
"zo" => :federal_medicare_or_medicaid_payment_mandate__category_5,
|
1484
|
+
"zp" => :federal_pension_mandate__category_4,
|
1485
|
+
"zq" => :shares_added,
|
1486
|
+
"zr" => :extended_term,
|
1487
|
+
"zs" => :amortization_term,
|
1488
|
+
"zt" => :beginning_shares,
|
1489
|
+
"zu" => :shares_deleted,
|
1490
|
+
"zv" => :quantity_of_dealer_license_plates,
|
1491
|
+
"zw" => :current_share_balance,
|
1492
|
+
"zx" => :size_of_household,
|
1493
|
+
"zy" => :project_units_sold,
|
1494
|
+
"zz" => :mutually_defined,
|
1495
|
+
},
|
1496
|
+
11 => {
|
1497
|
+
"n" => :no,
|
1498
|
+
"u" => :unknown,
|
1499
|
+
"w" => :not_applicable,
|
1500
|
+
"y" => :yes,
|
1501
|
+
},
|
1502
|
+
12 => {
|
1503
|
+
"n" => :no,
|
1504
|
+
"u" => :unknown,
|
1505
|
+
"w" => :not_applicable,
|
1506
|
+
"y" => :yes,
|
1507
|
+
}
|
1508
|
+
}
|
1509
|
+
end
|
1510
|
+
end
|
1511
|
+
end
|