eddy 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -4
- data/CHANGELOG.md +49 -0
- data/Gemfile.lock +8 -8
- data/README.md +2 -5
- data/data/code-lists/333.tsv +8 -0
- data/data/segments/amt.segment.yml +7 -0
- data/data/segments/bia.segment.yml +10 -0
- data/data/segments/cur.segment.yml +8 -0
- data/data/segments/dtm.segment.yml +1 -0
- data/data/segments/fob.segment.yml +8 -0
- data/data/segments/itd.segment.yml +13 -0
- data/data/segments/mtx.segment.yml +7 -0
- data/data/segments/n9.segment.yml +7 -0
- data/data/segments/per.segment.yml +13 -0
- data/data/segments/po1.segment.yml +6 -0
- data/data/segments/po3.segment.yml +13 -0
- data/data/segments/qty.segment.yml +10 -0
- data/data/segments/ref.segment.yml +1 -0
- data/data/segments/sac.segment.yml +4 -0
- data/data/segments/sch.segment.yml +7 -0
- data/data/segments/sdq.segment.yml +8 -0
- data/data/segments/txi.segment.yml +9 -0
- data/data/transaction_sets/810.edi.yml +93 -0
- data/data/transaction_sets/846.edi.yml +57 -0
- data/data/transaction_sets/850.edi.yml +73 -0
- data/data/transaction_sets/855.edi.yml +74 -0
- data/data/transaction_sets/856.edi.yml +54 -0
- data/eddy.gemspec +1 -1
- data/exe/eddy +1 -0
- data/lib/definitions/elements/generated/100.currency_code.rb +200 -0
- data/lib/definitions/elements/generated/146.shipment_method_of_payment.rb +65 -0
- data/lib/definitions/elements/generated/1551.message_text.rb +29 -0
- data/lib/definitions/elements/generated/280.exchange_rate.rb +29 -0
- data/lib/definitions/elements/generated/309.location_qualifier.rb +209 -0
- data/lib/definitions/elements/generated/310.location_identifier.rb +29 -0
- data/lib/definitions/elements/generated/311.shipment_type_code.rb +42 -0
- data/lib/definitions/elements/generated/322.load_empty_status_code.rb +40 -0
- data/lib/definitions/elements/generated/325.tax_identification_number.rb +29 -0
- data/lib/definitions/elements/generated/333.terms_basis_date_code.rb +44 -0
- data/lib/definitions/elements/generated/336.terms_type_code.rb +102 -0
- data/lib/definitions/elements/generated/338.terms_discount_percent.rb +29 -0
- data/lib/definitions/elements/generated/351.terms_discount_days_due.rb +30 -0
- data/lib/definitions/elements/generated/363.note_reference_code.rb +278 -0
- data/lib/definitions/elements/generated/364.communication_number.rb +29 -0
- data/lib/definitions/elements/generated/365.communication_number_qualifier.rb +77 -0
- data/lib/definitions/elements/generated/366.contact_function_code.rb +267 -0
- data/lib/definitions/elements/generated/369.free_form_description.rb +29 -0
- data/lib/definitions/elements/generated/370.terms_discount_due_date.rb +29 -0
- data/lib/definitions/elements/generated/371.change_reason_code.rb +67 -0
- data/lib/definitions/elements/generated/378.allowance_charge_percent_qualifier.rb +48 -0
- data/lib/definitions/elements/generated/386.terms_net_days.rb +30 -0
- data/lib/definitions/elements/generated/446.terms_net_due_date.rb +29 -0
- data/lib/definitions/elements/generated/522.amount_qualifier_code.rb +1510 -0
- data/lib/definitions/elements/generated/673.quantity_qualifier.rb +869 -0
- data/lib/definitions/elements/generated/755.report_type_code.rb +559 -0
- data/lib/definitions/elements/generated/954.percent.rb +29 -0
- data/lib/definitions/elements/generated/963.tax_type_code.rb +111 -0
- data/lib/definitions/segments/generated/amt.rb +56 -0
- data/lib/definitions/segments/generated/bia.rb +107 -0
- data/lib/definitions/segments/generated/cur.rb +73 -0
- data/lib/definitions/segments/generated/dtm.rb +17 -0
- data/lib/definitions/segments/generated/fob.rb +73 -0
- data/lib/definitions/segments/generated/hl.rb +90 -0
- data/lib/definitions/segments/generated/itd.rb +158 -0
- data/lib/definitions/segments/generated/mtx.rb +56 -0
- data/lib/definitions/segments/generated/n2.rb +56 -0
- data/lib/definitions/segments/generated/n9.rb +56 -0
- data/lib/definitions/segments/generated/per.rb +158 -0
- data/lib/definitions/segments/generated/po1.rb +102 -0
- data/lib/definitions/segments/generated/po3.rb +158 -0
- data/lib/definitions/segments/generated/qty.rb +73 -0
- data/lib/definitions/segments/generated/ref.rb +17 -0
- data/lib/definitions/segments/generated/sac.rb +68 -0
- data/lib/definitions/segments/generated/sch.rb +56 -0
- data/lib/definitions/segments/generated/sdq.rb +73 -0
- data/lib/definitions/segments/generated/txi.rb +90 -0
- data/lib/definitions/transaction_sets/manual/846/846.rb +122 -0
- data/lib/definitions/transaction_sets/manual/846/loops/lin.rb +155 -0
- data/lib/definitions/transaction_sets/manual/846/loops/n1.rb +107 -0
- data/lib/definitions/transaction_sets/manual/846/loops/qty.rb +75 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sch.rb +59 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sln.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/850.rb +108 -1
- data/lib/definitions/transaction_sets/manual/850/loops/ctp.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/n1.rb +31 -10
- data/lib/definitions/transaction_sets/manual/850/loops/n9.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/loops/pid.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/po1.rb +78 -10
- data/lib/definitions/transaction_sets/manual/850/loops/sac.rb +47 -0
- data/lib/eddy.rb +49 -3
- data/lib/eddy/build/transaction_set_builder.rb +1 -1
- data/lib/eddy/config.rb +0 -21
- data/lib/eddy/data.rb +0 -40
- data/lib/eddy/data/persistence/base.rb +5 -11
- data/lib/eddy/data/persistence/memory.rb +14 -22
- data/lib/eddy/data/store.rb +0 -18
- data/lib/eddy/errors.rb +13 -9
- data/lib/eddy/models/element/composite.rb +2 -0
- data/lib/eddy/models/element/id.rb +1 -1
- data/lib/eddy/models/element/r.rb +5 -3
- data/lib/eddy/models/functional_group.rb +10 -5
- data/lib/eddy/models/interchange.rb +12 -5
- data/lib/eddy/models/transaction_set.rb +19 -7
- data/lib/eddy/parse.rb +4 -56
- data/lib/eddy/parse/interchange.rb +58 -0
- data/lib/eddy/summary/loop.rb +1 -1
- data/lib/eddy/summary/segment.rb +2 -1
- data/lib/eddy/version.rb +1 -1
- metadata +78 -5
@@ -0,0 +1,48 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 378
|
6
|
+
# - Name: Allowance/Charge Percent Qualifier
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 1/1
|
9
|
+
# - Description: Code indicating on what basis allowance or charge percent is calculated
|
10
|
+
class E378 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "378"
|
18
|
+
@name = "Allowance/Charge Percent Qualifier"
|
19
|
+
@description = "Code indicating on what basis allowance or charge percent is calculated"
|
20
|
+
super(
|
21
|
+
min: 1,
|
22
|
+
max: 1,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"1", # Item List Cost
|
33
|
+
"2", # Item Net Cost
|
34
|
+
"3", # Discount/Gross
|
35
|
+
"4", # Discount/Net
|
36
|
+
"5", # Base Price per Unit
|
37
|
+
"6", # Base Price Amount
|
38
|
+
"7", # Base Price Amount Less Previous Discount
|
39
|
+
"8", # Net Monthly On All Invoices Past Due
|
40
|
+
"9", # Late Payment Charge Base Amount
|
41
|
+
"A", # Fuel Rate
|
42
|
+
"Z", # Mutually Defined
|
43
|
+
]
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 386
|
6
|
+
# - Name: Terms Net Days
|
7
|
+
# - Type: N0
|
8
|
+
# - Min/Max: 1/3
|
9
|
+
# - Description: Number of days until total invoice amount is due (discount not applicable)
|
10
|
+
class E386 < Eddy::Models::Element::N
|
11
|
+
# @param val [Integer]
|
12
|
+
# @param req [String]
|
13
|
+
# @param ref [String]
|
14
|
+
# @return [void]
|
15
|
+
def initialize(val: nil, req: nil, ref: nil)
|
16
|
+
@id = "386"
|
17
|
+
@name = "Terms Net Days"
|
18
|
+
@description = "Number of days until total invoice amount is due (discount not applicable)"
|
19
|
+
super(
|
20
|
+
min: 1,
|
21
|
+
max: 3,
|
22
|
+
req: req,
|
23
|
+
ref: ref,
|
24
|
+
val: val,
|
25
|
+
decimals: 0,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 446
|
6
|
+
# - Name: Terms Net Due Date
|
7
|
+
# - Type: DT
|
8
|
+
# - Min/Max: 8/8
|
9
|
+
# - Description: Date when total invoice amount becomes due expressed in format CCYYMMDD
|
10
|
+
class E446 < Eddy::Models::Element::DT
|
11
|
+
# @param val [Time]
|
12
|
+
# @param req [String]
|
13
|
+
# @param ref [String]
|
14
|
+
# @return [void]
|
15
|
+
def initialize(val: nil, req: nil, ref: nil)
|
16
|
+
@id = "446"
|
17
|
+
@name = "Terms Net Due Date"
|
18
|
+
@description = "Date when total invoice amount becomes due expressed in format CCYYMMDD"
|
19
|
+
super(
|
20
|
+
min: 8,
|
21
|
+
max: 8,
|
22
|
+
req: req,
|
23
|
+
ref: ref,
|
24
|
+
val: val,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,1510 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 522
|
6
|
+
# - Name: Amount Qualifier Code
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 1/3
|
9
|
+
# - Description: Code to qualify amount
|
10
|
+
class E522 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "522"
|
18
|
+
@name = "Amount Qualifier Code"
|
19
|
+
@description = "Code to qualify amount"
|
20
|
+
super(
|
21
|
+
min: 1,
|
22
|
+
max: 3,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"1", # Line Item Total
|
33
|
+
"2", # Batch Total
|
34
|
+
"3", # Deposit Total
|
35
|
+
"4", # Lock Box Total
|
36
|
+
"5", # Total Invoice Amount
|
37
|
+
"6", # Amount Subject to Total Monetary Discount
|
38
|
+
"7", # Discount Amount Due
|
39
|
+
"8", # Total Monetary Discount Amount
|
40
|
+
"9", # Total Operational Statement Amount
|
41
|
+
"A", # Adjusted Chargeback Claim Amount
|
42
|
+
"B", # Estimated
|
43
|
+
"C", # City
|
44
|
+
"D", # Payor Amount Paid
|
45
|
+
"E", # Estimated Credit
|
46
|
+
"F", # Annual Limit
|
47
|
+
"G", # Collateral
|
48
|
+
"H", # Bid Amount
|
49
|
+
"I", # Interest
|
50
|
+
"J", # Trustee Fees
|
51
|
+
"K", # Attorney and Trustee Fees
|
52
|
+
"L", # Local
|
53
|
+
"M", # Amount Due from Buyer at Appraisal Notice Date
|
54
|
+
"N", # Net
|
55
|
+
"O", # Court Cost
|
56
|
+
"P", # Penalty
|
57
|
+
"Q", # Amount Owed to Buyer at Appraisal Notice Date
|
58
|
+
"R", # Spend Down
|
59
|
+
"S", # Submitted Chargeback Claim Amount
|
60
|
+
"T", # Tax
|
61
|
+
"U", # Underpayment
|
62
|
+
"V", # Cost of Deficiency
|
63
|
+
"W", # Deficiency Judgment Fees
|
64
|
+
"X", # Deficiency Judgment Expenses and Fees
|
65
|
+
"Y", # Current List Price
|
66
|
+
"Z", # List Price When Sold
|
67
|
+
"01", # Fixed Installment Control Accounting Error
|
68
|
+
"02", # Graduated Payment Mortgage Adjustment
|
69
|
+
"03", # Growing Equity Mortgage Adjustment
|
70
|
+
"04", # Adjustable Rate Mortgage Change
|
71
|
+
"05", # Fixed Installment Control Substitution Adjustment
|
72
|
+
"06", # Interest Adjustment
|
73
|
+
"07", # Deferred Graduated Payment Mortgage Interest Paid
|
74
|
+
"08", # Interest Accounting Error
|
75
|
+
"09", # Principal Accounting Error
|
76
|
+
"0A", # Interest Substitution Adjustment
|
77
|
+
"0B", # Principal Substitution Adjustment
|
78
|
+
"0C", # Prepaid Interest
|
79
|
+
"0D", # Prepaid Principal
|
80
|
+
"0E", # Delinquent Interest
|
81
|
+
"0F", # Delinquent Principal
|
82
|
+
"0G", # Curtailment Adjustment
|
83
|
+
"0H", # Serial Note Principal Available for Distribution
|
84
|
+
"0I", # Servicing Fee
|
85
|
+
"0J", # Guarantee Fee Adjustment
|
86
|
+
"0K", # Amount Under-collateralized
|
87
|
+
"0L", # Amount Over-collateralized
|
88
|
+
"0M", # Trial Balance Adjustment
|
89
|
+
"0N", # Custodial Bank Account Adjustment
|
90
|
+
"0P", # Item
|
91
|
+
"0Q", # Schedule
|
92
|
+
"0R", # Regular Plan
|
93
|
+
"0S", # Previously Billed
|
94
|
+
"0T", # Currently Due
|
95
|
+
"0U", # Coverage Premium
|
96
|
+
"10", # Shipment Value in U.S. Dollars
|
97
|
+
"11", # Liabilities at Bankruptcy
|
98
|
+
"12", # Account Average Balance Account
|
99
|
+
"13", # Outstanding Balance at Foreclosure
|
100
|
+
"14", # Legal Obligation Debt Amount
|
101
|
+
"15", # Estimated Closing Cost Amount
|
102
|
+
"16", # Discount Fees Paid by Borrower Amount
|
103
|
+
"17", # Closing Costs or Concessions Paid by Seller
|
104
|
+
"18", # Prepaid Items Amount
|
105
|
+
"19", # Federal Housing Administration, Mortgage Insurance Premium Funding Fee Financed Amount
|
106
|
+
"1A", # Variance
|
107
|
+
"1B", # Variance Adjustment Cost
|
108
|
+
"1C", # Variance Adjustment Schedule
|
109
|
+
"1D", # Escalation
|
110
|
+
"1E", # Fixed Price
|
111
|
+
"1F", # Lodging
|
112
|
+
"1G", # Meals
|
113
|
+
"1H", # Travel Expense
|
114
|
+
"1J", # Insurance Expense
|
115
|
+
"1K", # Union Dues
|
116
|
+
"1L", # Regular Income
|
117
|
+
"1M", # Income on Real Property
|
118
|
+
"1N", # Income from Social Security and/or other Government Assistance
|
119
|
+
"1P", # Total Monthly Income
|
120
|
+
"1Q", # Electric and/or Fuel Payment
|
121
|
+
"1R", # Water and/or Sewer Payment
|
122
|
+
"1S", # Telephone Payment
|
123
|
+
"1T", # Maintenance Expense
|
124
|
+
"1U", # Food Expense
|
125
|
+
"1V", # Clothing Expense
|
126
|
+
"1W", # Laundry Expense
|
127
|
+
"1X", # Medical and/or Dental Expense
|
128
|
+
"1Y", # Recreation Expenses
|
129
|
+
"1Z", # Charitable Contributions
|
130
|
+
"20", # Federal Housing Administration, Mortgage Insurance Premium or Veteran's Administration Funding Fee Amount
|
131
|
+
"21", # Original Cost of Property Amount
|
132
|
+
"22", # Owner's Estimate of Value Amount
|
133
|
+
"23", # Appraised Value Amount
|
134
|
+
"24", # Gross Monthly Income Amount
|
135
|
+
"25", # Assets at Bankruptcy
|
136
|
+
"26", # Negotiated Cost
|
137
|
+
"27", # Authorized Unpriced Work
|
138
|
+
"28", # Target Price
|
139
|
+
"29", # Estimated Price
|
140
|
+
"2A", # Home Insurance Expense
|
141
|
+
"2B", # Life Insurance Expense
|
142
|
+
"2C", # Health Insurance Expense
|
143
|
+
"2D", # Automobile Insurance Expense
|
144
|
+
"2E", # Value of Property Claimed as Exempt
|
145
|
+
"2F", # Automobile Payment
|
146
|
+
"2G", # Other Type of Installment Payment
|
147
|
+
"2H", # Operating Expenses
|
148
|
+
"2I", # Total Projected Monthly Income
|
149
|
+
"2J", # Total Projected Monthly Expenses
|
150
|
+
"2K", # Excess Income
|
151
|
+
"2L", # Value of Personal Property
|
152
|
+
"2M", # Monthly Overtime
|
153
|
+
"2N", # Total All Repairs
|
154
|
+
"2P", # Total Recommended Repairs
|
155
|
+
"2Q", # State Quarterly Total Gross Wages
|
156
|
+
"2R", # State Quarterly Unemployment Insurance (UI) Total Wages
|
157
|
+
"2S", # State Quarterly Unemployment Insurance (UI) Excess Wages
|
158
|
+
"2T", # State Quarterly Unemployment Insurance (UI) Taxable Wages
|
159
|
+
"2U", # State Quarterly Disability Insurance Taxable Wages
|
160
|
+
"2V", # State Quarterly Tip Wages
|
161
|
+
"2W", # Asset-Long Term
|
162
|
+
"2X", # Asset-Short Term
|
163
|
+
"2Y", # Base Coverage
|
164
|
+
"2Z", # Commission Retained
|
165
|
+
"30", # Contract Ceiling
|
166
|
+
"31", # Estimated Contract Ceiling
|
167
|
+
"32", # Target Fee or Profit Amount
|
168
|
+
"33", # Original Contract Target Cost
|
169
|
+
"34", # Negotiated Contract Changes
|
170
|
+
"35", # Current Target Cost
|
171
|
+
"36", # Contract Budget Base (CBB)
|
172
|
+
"37", # Current Budgeted Cost for Work Scheduled (BCWS)
|
173
|
+
"38", # Current Budgeted Cost for Work Performed (BCWP)
|
174
|
+
"39", # Current Actual Cost of Work Performed (ACWP)
|
175
|
+
"3A", # Accounting
|
176
|
+
"3B", # Accounts Payable
|
177
|
+
"3C", # Accounts Receivable
|
178
|
+
"3D", # Advanced Dividends
|
179
|
+
"3E", # Advertising Expenses
|
180
|
+
"3F", # Amortization
|
181
|
+
"3G", # Amortization Costs
|
182
|
+
"3H", # Amount of Decree
|
183
|
+
"3I", # Asset Investment
|
184
|
+
"3J", # Authorized Capital
|
185
|
+
"3K", # Available Reserves
|
186
|
+
"3L", # Bad Debt Allowance
|
187
|
+
"3M", # Bad Debts
|
188
|
+
"3N", # Bank Account(s)
|
189
|
+
"3O", # Long Term Assets
|
190
|
+
"3P", # Long Term Liabilities
|
191
|
+
"3Q", # Long Term Tangible Assets
|
192
|
+
"3R", # Losses on Capital
|
193
|
+
"3S", # Machines and Tools
|
194
|
+
"3T", # Member Risk Capital
|
195
|
+
"3U", # Miscellaneous After Tax Exempt
|
196
|
+
"3V", # Mortgage
|
197
|
+
"3W", # Nominal Capital
|
198
|
+
"3X", # Nominal Damages
|
199
|
+
"3Y", # Non-operational Fixed Assets
|
200
|
+
"3Z", # Excess Amount Requested
|
201
|
+
"40", # Current Schedule Variance (SV)
|
202
|
+
"41", # Current Cost Variance (CV)
|
203
|
+
"42", # Cumulative Budgeted Cost for Work Scheduled (BCWS)
|
204
|
+
"43", # Cumulative Budgeted Cost for Work Performed (BCWP)
|
205
|
+
"44", # Cumulative Actual Cost of Work Performed (ACWP)
|
206
|
+
"45", # Cumulative Schedule Variance (SV)
|
207
|
+
"46", # Cumulative Cost Variance (CV)
|
208
|
+
"47", # Reprogram Cost Variance
|
209
|
+
"48", # Reprogram Budget
|
210
|
+
"49", # At Complete Budget (BAC)
|
211
|
+
"4A", # Nonissued Capital
|
212
|
+
"4B", # Notes Payable
|
213
|
+
"4C", # Notes Receivable
|
214
|
+
"4D", # Bank Debentures
|
215
|
+
"4E", # Bank Obligations
|
216
|
+
"4F", # Buildings
|
217
|
+
"4G", # Buildings Under Construction
|
218
|
+
"4H", # Capital
|
219
|
+
"4I", # Capital Associated with Principal
|
220
|
+
"4J", # Capital of Other Subsidiaries
|
221
|
+
"4K", # Capital Stock
|
222
|
+
"4L", # Cash
|
223
|
+
"4M", # Capital Subsidies Received
|
224
|
+
"4N", # Commercial Debt
|
225
|
+
"4O", # Commercial Expenses
|
226
|
+
"4P", # Common Stock
|
227
|
+
"4Q", # Consequential Damages
|
228
|
+
"4R", # Compensatory Damages
|
229
|
+
"4S", # Convertible Debentures
|
230
|
+
"4T", # Cost of Goods Sold
|
231
|
+
"4U", # Cost of Sales
|
232
|
+
"4V", # Cost(s)
|
233
|
+
"4W", # Current Assets
|
234
|
+
"4X", # Current Liabilities
|
235
|
+
"4Y", # Damages
|
236
|
+
"4Z", # Deferred Cost
|
237
|
+
"50", # At Complete Latest Revised Estimate (LRE)
|
238
|
+
"51", # At Complete Variance
|
239
|
+
"52", # Total Allocated Budget
|
240
|
+
"53", # Difference (Contract Budget Base - Total Allocated Budget)
|
241
|
+
"54", # Forecast
|
242
|
+
"55", # At Complete Forecast
|
243
|
+
"56", # Current Cost Performance Index (CPIe) - Efficiency (BCWP/ACWP)
|
244
|
+
"57", # Current Cost Performance Index (CPIp) - Planned (ACWP/BCWP)
|
245
|
+
"58", # Current Schedule Performance Index (SPI)
|
246
|
+
"59", # Cumulative Cost Performance Index (CPIe) - Efficiency (BCWP/ACWP)
|
247
|
+
"5A", # Deferred Credit or Income
|
248
|
+
"5B", # Deferred Taxation
|
249
|
+
"5C", # Deposits
|
250
|
+
"5D", # Depreciation
|
251
|
+
"5E", # Depreciation of Fixed Assets
|
252
|
+
"5F", # Depreciation of Revaluation of Fixed Assets
|
253
|
+
"5G", # Director's Remuneration
|
254
|
+
"5H", # Dividends
|
255
|
+
"5I", # Doubtful Receivables
|
256
|
+
"5J", # Equipment
|
257
|
+
"5K", # Equipment Subsidies
|
258
|
+
"5L", # Equities, Stocks
|
259
|
+
"5M", # Equity
|
260
|
+
"5N", # Exceptional Item
|
261
|
+
"5O", # Exports
|
262
|
+
"5P", # External Charge
|
263
|
+
"5Q", # Extraordinary Charge
|
264
|
+
"5R", # Extraordinary Current Asset Write Downs
|
265
|
+
"5S", # Extraordinary Result
|
266
|
+
"5T", # Financial Assets
|
267
|
+
"5U", # Financial Charges
|
268
|
+
"5V", # Financial Debt
|
269
|
+
"5W", # Financial Expenses
|
270
|
+
"5X", # Financial Income
|
271
|
+
"5Y", # Finished Goods
|
272
|
+
"5Z", # Fixed Asset Debts
|
273
|
+
"60", # Cumulative Cost Performance Index (CPIp) - Planned (ACWP/BCWP)
|
274
|
+
"61", # Cumulative Schedule Performance Index (SPI)
|
275
|
+
"62", # To Complete Performance Index (TCPI) for Budget at Complete (BAC)
|
276
|
+
"63", # To Complete Performance Index (TCPI) for Estimate At Complete (EAC)
|
277
|
+
"64", # Initial Contract Price Target
|
278
|
+
"65", # Initial Contract Price Ceiling
|
279
|
+
"66", # Adjusted Contract Price Target
|
280
|
+
"67", # Adjusted Contract Price Ceiling
|
281
|
+
"68", # Funds Authorized to Date
|
282
|
+
"69", # Accrued Expenditures
|
283
|
+
"6A", # Fixed Assets
|
284
|
+
"6B", # Fixed Assets for Sale
|
285
|
+
"6C", # Fixtures
|
286
|
+
"6D", # Fixtures and Equipment
|
287
|
+
"6E", # Franchise
|
288
|
+
"6F", # Franchise Tax Balance
|
289
|
+
"6G", # Franchise Tax Paid
|
290
|
+
"6H", # Free Reserves
|
291
|
+
"6I", # Furniture
|
292
|
+
"6J", # Future Loan
|
293
|
+
"6K", # General Accounts
|
294
|
+
"6L", # General Expenses
|
295
|
+
"6M", # Goodwill
|
296
|
+
"6N", # Grants for Operating Costs
|
297
|
+
"6O", # Group Related Financial Income
|
298
|
+
"6P", # Income Stated in Advance
|
299
|
+
"6Q", # Income Tax
|
300
|
+
"6R", # Income Tax, Corporate
|
301
|
+
"6S", # Income Tax, Noncorporate
|
302
|
+
"6T", # Injunction
|
303
|
+
"6U", # Intangible Depreciation
|
304
|
+
"6V", # Intangibles
|
305
|
+
"6W", # Interest of Third Party
|
306
|
+
"6X", # Interest on Loans
|
307
|
+
"6Y", # Operating Income (Loss)
|
308
|
+
"6Z", # Optional Reserves
|
309
|
+
"70", # Open Commitments
|
310
|
+
"71", # Forecast of Billings
|
311
|
+
"72", # Estimated Termination Costs
|
312
|
+
"73", # Accrued Expenditures plus Open Commitments
|
313
|
+
"74", # Contract Work Authorized - Definitized
|
314
|
+
"75", # Contract Work Authorized - Not Definitized
|
315
|
+
"76", # Contract Work Authorized - Total
|
316
|
+
"77", # Forecast of Work - Not Yet Authorized
|
317
|
+
"78", # Forecast of Work - All Other
|
318
|
+
"79", # Forecast of Work - Total
|
319
|
+
"7A", # Organizational Expenses
|
320
|
+
"7B", # Outside Share in Profit or Loss
|
321
|
+
"7C", # Outstanding Debts against Board of Directors/Managers
|
322
|
+
"7D", # Owing
|
323
|
+
"7E", # Owing from Affiliates
|
324
|
+
"7F", # Owing from Participants
|
325
|
+
"7G", # Owing to Affiliates
|
326
|
+
"7H", # Owing to Fiscal Office
|
327
|
+
"7I", # Owing to National Social Security Office
|
328
|
+
"7J", # Owing to Participants
|
329
|
+
"7K", # Own Work Capitalized
|
330
|
+
"7L", # Paid in Capital
|
331
|
+
"7M", # Par Value
|
332
|
+
"7N", # Participating Interest
|
333
|
+
"7O", # Patents
|
334
|
+
"7P", # Pension Debts
|
335
|
+
"7Q", # Pensions Provision
|
336
|
+
"7R", # Preferred Stock
|
337
|
+
"7S", # Prepaid Orders in Progress
|
338
|
+
"7T", # Prior Results Carried Forward
|
339
|
+
"7U", # Profit or Loss
|
340
|
+
"7V", # Profit or Loss after Taxes
|
341
|
+
"7W", # Profit or Loss before Taxes
|
342
|
+
"7X", # Profit or Loss on Ordinary Activities after Tax
|
343
|
+
"7Y", # Progress Payments
|
344
|
+
"7Z", # Proposed Dividend
|
345
|
+
"80", # Funding - Total Requirements
|
346
|
+
"81", # Funds Carryover
|
347
|
+
"82", # Net Funds Required
|
348
|
+
"83", # Contract Work Authorized (with fee/profit) Actual or Projected
|
349
|
+
"84", # Contract Work Authorized (with fee/profit) Actual or Projected - At Complete
|
350
|
+
"85", # Best Case Estimate
|
351
|
+
"86", # Worst Case Estimate
|
352
|
+
"87", # Most Likely Estimate
|
353
|
+
"88", # "As Is" Appraisal Amount
|
354
|
+
"89", # "Subject To" Appraisal Amount
|
355
|
+
"8A", # Provision for Depreciation of Stock or Inventory
|
356
|
+
"8B", # Provision for Future Purchases
|
357
|
+
"8C", # Provision for Risks
|
358
|
+
"8D", # Punitive Damages
|
359
|
+
"8E", # Purchase Price
|
360
|
+
"8F", # Purchases
|
361
|
+
"8G", # Raw Materials
|
362
|
+
"8H", # Real Estate
|
363
|
+
"8I", # Receivables
|
364
|
+
"8J", # Regularization Account
|
365
|
+
"8K", # Research and Development
|
366
|
+
"8L", # Restructuring Costs
|
367
|
+
"8M", # Result
|
368
|
+
"8N", # Retained Earnings
|
369
|
+
"8O", # Revenues
|
370
|
+
"8P", # Sales
|
371
|
+
"8Q", # Sales and Use Tax
|
372
|
+
"8R", # Savings
|
373
|
+
"8S", # Secured Liability
|
374
|
+
"8T", # Secured Loans
|
375
|
+
"8U", # Selling Expenses
|
376
|
+
"8V", # Services
|
377
|
+
"8W", # Share Capital
|
378
|
+
"8X", # Share in Profit or Loss of Minority Interest
|
379
|
+
"8Y", # Share Premium Capital
|
380
|
+
"8Z", # Shares in Affiliated Companies
|
381
|
+
"90", # "Completion Per Plans" Appraisal Amount
|
382
|
+
"91", # Site Value Amount
|
383
|
+
"92", # Compensation
|
384
|
+
"93", # Contribution
|
385
|
+
"94", # Death Benefit
|
386
|
+
"95", # Death Benefit Decrement
|
387
|
+
"96", # Employee Account Balance
|
388
|
+
"97", # Loan Repayment
|
389
|
+
"98", # Prior W2
|
390
|
+
"99", # Single Premium
|
391
|
+
"9A", # Social Charges
|
392
|
+
"9B", # Social Security (FICA)
|
393
|
+
"9C", # Special Reserves
|
394
|
+
"9D", # Specially Secured Creditors
|
395
|
+
"9E", # Specific Performance
|
396
|
+
"9F", # Starting Capital
|
397
|
+
"9G", # Statutory Reserves
|
398
|
+
"9H", # Subscribed Capital
|
399
|
+
"9I", # Suit Amount
|
400
|
+
"9J", # Supplies
|
401
|
+
"9K", # Surplus of Revaluation
|
402
|
+
"9L", # Tangible Net Worth
|
403
|
+
"9M", # Tax Adjustments
|
404
|
+
"9N", # Tax Balance
|
405
|
+
"9O", # Tax Capital Amount
|
406
|
+
"9P", # Tax on Extraordinary Items
|
407
|
+
"9Q", # Tax Recoverable
|
408
|
+
"9R", # Taxed Reserves
|
409
|
+
"9S", # Trade Creditors
|
410
|
+
"9T", # Inventory (Stock)
|
411
|
+
"9U", # Inventory (Stock) Depreciation
|
412
|
+
"9V", # Inventory (Stock) Purchases
|
413
|
+
"9W", # Investment in Own Shares
|
414
|
+
"9X", # Investments
|
415
|
+
"9Y", # Issued Capital
|
416
|
+
"9Z", # Labor Costs
|
417
|
+
"A0", # Assistantship from Admitting Educational Institution
|
418
|
+
"A1", # Average Negative Ledger Balance
|
419
|
+
"A2", # Average Positive Collected Balance
|
420
|
+
"A3", # Average Negative Collected Balance
|
421
|
+
"A4", # Average Positive Ledger Balance
|
422
|
+
"A5", # Disallowed - Estimated
|
423
|
+
"A6", # Disallowed - Actual
|
424
|
+
"A7", # Noncovered Charges - Estimated
|
425
|
+
"A8", # Noncovered Charges - Actual
|
426
|
+
"A9", # Allowed - Estimated
|
427
|
+
"AA", # Allocated
|
428
|
+
"AB", # Adjusted Collected Balance
|
429
|
+
"AC", # Average Collected Balance
|
430
|
+
"AD", # Adjusted Total
|
431
|
+
"AE", # Arrearage
|
432
|
+
"AF", # Average Float
|
433
|
+
"AG", # Adjusted Gross Income
|
434
|
+
"AH", # Loan Balance Difference
|
435
|
+
"AI", # Sale Amount
|
436
|
+
"AJ", # Funds Held by Mortgagee
|
437
|
+
"AK", # Attorney Fees
|
438
|
+
"AL", # Average Ledger Balance
|
439
|
+
"AM", # Amount Financed
|
440
|
+
"AN", # Bankruptcy Fee
|
441
|
+
"AO", # Amount Override
|
442
|
+
"AP", # Amount Prior to Fractionalization
|
443
|
+
"AQ", # Average Price Per Call
|
444
|
+
"AR", # Fees to Public Officials for Foreclosure
|
445
|
+
"AS", # Average Price Per Minute
|
446
|
+
"AT", # Total Received
|
447
|
+
"AU", # Coverage Amount
|
448
|
+
"AV", # Actual Cash Value
|
449
|
+
"AW", # Replacement Cost
|
450
|
+
"AX", # Previous Price
|
451
|
+
"AY", # Title Cost
|
452
|
+
"AZ", # Other Foreclosure and Acquisition Expenses
|
453
|
+
"B0", # Bond
|
454
|
+
"B1", # Benefit Amount
|
455
|
+
"B2", # Bonuses and Commissions Divided Over 12 Months
|
456
|
+
"B3", # Bonuses Divided Over 12 Months
|
457
|
+
"B4", # Bonuses and Commissions
|
458
|
+
"B5", # Budgeted
|
459
|
+
"B6", # Allowed - Actual
|
460
|
+
"B7", # Deductible - Estimated
|
461
|
+
"B8", # Co-insurance - Estimated
|
462
|
+
"B9", # Co-insurance - Actual
|
463
|
+
"BA", # Bargain
|
464
|
+
"BB", # Mortgage Insurance Premiums
|
465
|
+
"BC", # Billing Cycle Net Fee Position (Excess/Deficit)
|
466
|
+
"BD", # Balance Due
|
467
|
+
"BE", # Disbursements for Authorized Repair
|
468
|
+
"BF", # Hazard Insurance Premium
|
469
|
+
"BG", # Eviction Attorney Fees
|
470
|
+
"BH", # Eviction Expenses
|
471
|
+
"BI", # Property Taxes
|
472
|
+
"BJ", # Disbursements Not Shown Elsewhere
|
473
|
+
"BK", # Disbursements for Protection and Preservation
|
474
|
+
"BL", # Disbursements for Inspections and Boarding
|
475
|
+
"BM", # Adjustments
|
476
|
+
"BN", # Rental Income
|
477
|
+
"BO", # Rental Expense
|
478
|
+
"BP", # Average Net Collected Balance
|
479
|
+
"BQ", # Bail
|
480
|
+
"BR", # Adjusted Insured Loss Amount
|
481
|
+
"BS", # Mortgage Note Interest
|
482
|
+
"BT", # Bank Reject Total
|
483
|
+
"BU", # Overhead Costs
|
484
|
+
"BV", # Uncollected Interest
|
485
|
+
"BW", # Amount Due from Buyer at Closing
|
486
|
+
"BX", # Amount Owed to Buyer at Closing
|
487
|
+
"BY", # Additional Closing Expenses
|
488
|
+
"BZ", # Deficiency Judgment Expenses
|
489
|
+
"C0", # Current Expenditures
|
490
|
+
"C1", # Co-Payment Amount
|
491
|
+
"C2", # Child Rider Coverage
|
492
|
+
"C3", # Prior Payment - Estimated
|
493
|
+
"C4", # Prior Payment - Actual
|
494
|
+
"C5", # Claim Amount Due - Estimated
|
495
|
+
"C6", # Claim Amount Due - Actual
|
496
|
+
"C7", # Payor Responsibility - Estimated
|
497
|
+
"C8", # Payor Responsibility - Actual
|
498
|
+
"C9", # Disallowed Cost Containment - Actual
|
499
|
+
"CA", # Contractor Cumulative to Date
|
500
|
+
"CB", # Collected Balance Required
|
501
|
+
"CC", # Chargeback Claim Amount
|
502
|
+
"CD", # Overpaid Section 235 Subsidy
|
503
|
+
"CE", # Summary Amount
|
504
|
+
"CF", # Appraisal Fees
|
505
|
+
"CG", # Commission Fees Deducted
|
506
|
+
"CH", # Change Amount
|
507
|
+
"CI", # Funds Held for Insured
|
508
|
+
"CJ", # Other Deductions
|
509
|
+
"CK", # Back End Load
|
510
|
+
"CL", # Outstanding Balance Current Lender
|
511
|
+
"CM", # Claimant Requested Total
|
512
|
+
"CN", # Special Assessments
|
513
|
+
"CO", # Taxes on Deed
|
514
|
+
"CP", # Statutory Disbursements
|
515
|
+
"CQ", # Net Claim Amount
|
516
|
+
"CR", # Contractor at Complete
|
517
|
+
"CS", # Commission Sales
|
518
|
+
"CT", # Contract
|
519
|
+
"CU", # Subcontractor Cumulative to Date
|
520
|
+
"CV", # Subcontractor at Complete
|
521
|
+
"CW", # Earned Value
|
522
|
+
"CX", # Actual
|
523
|
+
"CY", # Cumulative Budget
|
524
|
+
"CZ", # Cumulative Earned Value
|
525
|
+
"D0", # Administration and Management Costs
|
526
|
+
"D1", # Deferred Compensation Commissions
|
527
|
+
"D2", # Deductible Amount
|
528
|
+
"D3", # Deferred Compensation Commissions and Bonuses
|
529
|
+
"D4", # Deferred Compensation
|
530
|
+
"D5", # Dependent Care Contribution
|
531
|
+
"D6", # Disallowed Cost Containment - Estimated
|
532
|
+
"D7", # Dispensing Fee
|
533
|
+
"D8", # Discount Amount
|
534
|
+
"D9", # Cumulative Actual
|
535
|
+
"DA", # Original Mortgage
|
536
|
+
"DB", # Unapplied Section 235 Funds
|
537
|
+
"DC", # Unapplied Buydown Fund
|
538
|
+
"DD", # Direct Deposit
|
539
|
+
"DE", # Estimate of Damage
|
540
|
+
"DF", # Authorized Bid
|
541
|
+
"DG", # Escrow Balance
|
542
|
+
"DH", # Total Disbursements
|
543
|
+
"DI", # Charge Off
|
544
|
+
"DJ", # Liens Amount Original
|
545
|
+
"DK", # Release of Lien
|
546
|
+
"DL", # Debit
|
547
|
+
"DM", # Asset
|
548
|
+
"DN", # Liability
|
549
|
+
"DO", # Satisfaction
|
550
|
+
"DP", # Exemption
|
551
|
+
"DQ", # Settlement
|
552
|
+
"DR", # Alimony Expense
|
553
|
+
"DS", # Alimony Income
|
554
|
+
"DT", # Child Support Expense
|
555
|
+
"DU", # Child Support Income
|
556
|
+
"DV", # Separate Maintenance Expense
|
557
|
+
"DW", # Separate Maintenance Income
|
558
|
+
"DX", # Deductible Waived
|
559
|
+
"DY", # Per Day Limit
|
560
|
+
"DZ", # Job-related Expense
|
561
|
+
"E0", # Administration and Management Indemnity Charge
|
562
|
+
"E1", # Employer Year to Date Contribution
|
563
|
+
"E2", # Employee Annual Pledge Amount
|
564
|
+
"E3", # Employee Current Contribution
|
565
|
+
"E4", # Employer Pledge Amount
|
566
|
+
"E5", # Employer Current Contribution
|
567
|
+
"E6", # Eligible Wage Amount
|
568
|
+
"E7", # Employee Year to Date Contribution
|
569
|
+
"E8", # Education Contribution
|
570
|
+
"E9", # Initial Fee
|
571
|
+
"EA", # Earnings Allowance
|
572
|
+
"EB", # Collected Balance (Excess/Deficit)
|
573
|
+
"EC", # Allowance (Excess/Deficit)
|
574
|
+
"ED", # Estimated Cost of Attendance
|
575
|
+
"EE", # Other Expense
|
576
|
+
"EF", # Estimated Financial Aid
|
577
|
+
"EG", # Other Income
|
578
|
+
"EH", # Amount of Mortgages and Liens
|
579
|
+
"EI", # Mortgage Payment(s)
|
580
|
+
"EJ", # Insurance, Maintenance, Taxes and Miscellaneous
|
581
|
+
"EK", # Net Rental Income
|
582
|
+
"EL", # Present Market Value
|
583
|
+
"EM", # Gross Rental Income
|
584
|
+
"EN", # Cancellation Fee
|
585
|
+
"EO", # Capital Reserves
|
586
|
+
"EP", # Employer Annual Pledge Amount
|
587
|
+
"EQ", # Condominium Association Fees
|
588
|
+
"ER", # Homeowner Association Fees
|
589
|
+
"ES", # Mortgage Insurance Proceeds
|
590
|
+
"ET", # Net Proceeds from Sale of Real Estate Property
|
591
|
+
"EU", # Insurance Proceeds (Primary Settlement)
|
592
|
+
"EV", # Presale Proceeds
|
593
|
+
"EW", # Pledged Savings
|
594
|
+
"EX", # As Is Broker's Opinion
|
595
|
+
"EY", # Subject To Broker's Opinion
|
596
|
+
"EZ", # Uniform Commercial Code Filing Office Fee
|
597
|
+
"F0", # Commercial Staff Labor Costs
|
598
|
+
"F1", # Maximum Allowable Cost (MAC) Penalty Copay
|
599
|
+
"F2", # Patient Responsibility - Actual
|
600
|
+
"F3", # Patient Responsibility - Estimated
|
601
|
+
"F4", # Postage Claimed
|
602
|
+
"F5", # Patient Amount Paid
|
603
|
+
"F6", # Provider Reserves
|
604
|
+
"F7", # Sales Tax
|
605
|
+
"F8", # Usual and Customary Charge - Estimated
|
606
|
+
"F9", # Usual and Customary - Actual
|
607
|
+
"FA", # Coordination Fee
|
608
|
+
"FB", # Calculation Fee
|
609
|
+
"FC", # Expected Family Contribution
|
610
|
+
"FD", # Direct Deposit Flipped to Check
|
611
|
+
"FE", # Fee
|
612
|
+
"FF", # Application Fee
|
613
|
+
"FG", # Licensing Fee
|
614
|
+
"FH", # Regulatory Fee
|
615
|
+
"FI", # First Interest Payment Amount
|
616
|
+
"FJ", # Waiver Fee
|
617
|
+
"FK", # Other Unlisted Amount
|
618
|
+
"FL", # Float
|
619
|
+
"FM", # Fair Market Value
|
620
|
+
"FN", # Fine
|
621
|
+
"FO", # Fees Paid
|
622
|
+
"FP", # Fees Paid Year to Date
|
623
|
+
"FQ", # Firm Contractor Share
|
624
|
+
"FR", # Estimated Government Share
|
625
|
+
"FS", # Expense
|
626
|
+
"FT", # Endorsement Premium Amount
|
627
|
+
"FU", # Commercial Staff Indemnity Charge
|
628
|
+
"FV", # Flat Fee Paid to Date
|
629
|
+
"FW", # Flat Fee Paid Current Month
|
630
|
+
"FX", # Endorsement
|
631
|
+
"FY", # First Payment
|
632
|
+
"FZ", # Earned Income
|
633
|
+
"G0", # Initial Adjustment Total
|
634
|
+
"G1", # Indicated Value by Sales Comparison Approach
|
635
|
+
"G2", # Indicated Value by Income Approach
|
636
|
+
"G3", # Price per Unit Area
|
637
|
+
"G4", # Reconciliation of Final Value Estimate
|
638
|
+
"G5", # Estimated Monthly Market Rent
|
639
|
+
"G6", # Adjusted Sales Price
|
640
|
+
"G7", # Sales or Financing Concessions
|
641
|
+
"G8", # Indicated Value by Cost Approach
|
642
|
+
"G9", # As-is Value of Site Improvements
|
643
|
+
"GA", # Depreciated Value of Improvements
|
644
|
+
"GB", # Price, High Value
|
645
|
+
"GC", # Price, Low Value
|
646
|
+
"GD", # Physical Depreciation
|
647
|
+
"GE", # Functional Depreciation
|
648
|
+
"GF", # External Depreciation
|
649
|
+
"GG", # Adjusted Sales Price of Comparable Sales
|
650
|
+
"GH", # Predominate Value
|
651
|
+
"GI", # Average Customer Income
|
652
|
+
"GJ", # Average Neighborhood Income
|
653
|
+
"GK", # Average Customer Purchase
|
654
|
+
"GL", # Weekly Dollar Sales
|
655
|
+
"GM", # Average Case Sales
|
656
|
+
"GN", # Buy-down
|
657
|
+
"GO", # Credit Line
|
658
|
+
"GP", # Appraisal Repair Amount
|
659
|
+
"GQ", # Brokers Opinion Repair Amount
|
660
|
+
"GR", # Credit Line Available
|
661
|
+
"GS", # Subsequent Adjustments Total
|
662
|
+
"GT", # Goods and Services Tax
|
663
|
+
"GU", # Taxes Paid
|
664
|
+
"GV", # Gross Value
|
665
|
+
"GW", # Total Charge
|
666
|
+
"GX", # Total Credit
|
667
|
+
"GY", # Total Debit
|
668
|
+
"GZ", # Total Finance Charge
|
669
|
+
"H0", # Host Government (government of the institution) Financing for Education
|
670
|
+
"H1", # Legal Reserves
|
671
|
+
"H2", # Cancellation
|
672
|
+
"H3", # Deposit Inception to Date
|
673
|
+
"H4", # Deposit Year to Date
|
674
|
+
"H5", # Dump in Remittance
|
675
|
+
"H6", # Earnings
|
676
|
+
"H7", # Life Insurance Cash Value
|
677
|
+
"H8", # Structure Value
|
678
|
+
"H9", # Original List Price
|
679
|
+
"HA", # Coin
|
680
|
+
"HB", # Currency
|
681
|
+
"HC", # U.S. Treasury Checks
|
682
|
+
"HD", # Postal Money Orders
|
683
|
+
"HE", # City Checks
|
684
|
+
"HF", # Other Checks
|
685
|
+
"HG", # Home Government Financing for Education
|
686
|
+
"HH", # Annual Social Security Wages
|
687
|
+
"HI", # Annual Social Security Tips
|
688
|
+
"HJ", # Annual Wages, Tips, and Other Compensation
|
689
|
+
"HK", # Social Security Employee Tax Withheld
|
690
|
+
"HL", # Federal Income Tax Withheld
|
691
|
+
"HM", # Advance Earned Income Credit
|
692
|
+
"HN", # Commission
|
693
|
+
"HO", # Vacation Pay
|
694
|
+
"HP", # Gross Pay Submitted
|
695
|
+
"HQ", # Intersell Commission Sales
|
696
|
+
"HR", # Total Payroll Approved
|
697
|
+
"HS", # Holiday Pay
|
698
|
+
"HT", # Overtime Pay
|
699
|
+
"HU", # Regular Pay
|
700
|
+
"HV", # Sick Pay
|
701
|
+
"HW", # Special Pay
|
702
|
+
"HX", # Contract Price
|
703
|
+
"HY", # Commercial Space Income
|
704
|
+
"HZ", # Utilities Paid by Owner
|
705
|
+
"I0", # Life Insurance Coverage
|
706
|
+
"I1", # Investment Income
|
707
|
+
"I2", # Income
|
708
|
+
"I3", # Price, Gross Living Area
|
709
|
+
"I4", # Total Estimated Rent
|
710
|
+
"I5", # Gross Annual Income
|
711
|
+
"I6", # Custodian's Salary
|
712
|
+
"I7", # Engineer's Salary
|
713
|
+
"I8", # Elevator Operator's Salary
|
714
|
+
"I9", # Indicated Value by Market Approach Estimate of Market Value
|
715
|
+
"IA", # Adjusted Monthly Rent
|
716
|
+
"IB", # Investable Balance
|
717
|
+
"IC", # Accrued Unpaid Interest To Be Capitalized
|
718
|
+
"ID", # Import Duty Amount
|
719
|
+
"IE", # Excise Tax Amount
|
720
|
+
"IF", # Inspection Fee
|
721
|
+
"IG", # Adjustment for Gross Living Area
|
722
|
+
"IH", # Predominant Price High
|
723
|
+
"II", # Irregular Interest Payment Amount
|
724
|
+
"IJ", # Net Adjusted Monthly Rent
|
725
|
+
"IK", # Indicated Monthly Market Rent
|
726
|
+
"IL", # Predominant Price Low
|
727
|
+
"IM", # Adjustment for Rooms
|
728
|
+
"IN", # Installment
|
729
|
+
"IO", # Adjustment for Bedrooms
|
730
|
+
"IP", # Interest Payable During Repayment Period
|
731
|
+
"IQ", # Contingent Debt
|
732
|
+
"IR", # Insurance Recovery
|
733
|
+
"IS", # Independent Scholarship
|
734
|
+
"IT", # Incentive Fee
|
735
|
+
"IU", # Accrued Unpaid Interest Not To Be Capitalized
|
736
|
+
"IV", # Utilities Allowance
|
737
|
+
"IW", # Furniture Allowance
|
738
|
+
"IX", # Indicated Value by Cost Approach
|
739
|
+
"IY", # Debentures
|
740
|
+
"IZ", # Account High Balance
|
741
|
+
"J0", # Limited Partnership Capital
|
742
|
+
"J1", # Current Face Amount
|
743
|
+
"J2", # Original Face Amount
|
744
|
+
"J3", # Fixed Default Note Holder's Amount
|
745
|
+
"J4", # Initial Monthly Payment
|
746
|
+
"J5", # Original Principal and Interest Payment
|
747
|
+
"J6", # Final Principal and Interest Payment
|
748
|
+
"J7", # Conversion Fee
|
749
|
+
"J8", # Ending Balance
|
750
|
+
"J9", # Beginning Balance
|
751
|
+
"JA", # Assessment
|
752
|
+
"JB", # Equity Claimed as Exempt
|
753
|
+
"JC", # Counter Claim
|
754
|
+
"JD", # Weekly Benefit
|
755
|
+
"JE", # Lease
|
756
|
+
"JF", # Administrative Load
|
757
|
+
"JG", # Asset Cost Applicable to Entire Contract
|
758
|
+
"JH", # Asset Cost Applicable to Portion of Contract
|
759
|
+
"JI", # Annual Fee
|
760
|
+
"JJ", # Cost Basis
|
761
|
+
"JK", # Disability Premium
|
762
|
+
"JL", # Employee Additional Contribution
|
763
|
+
"JM", # Employee Match Contribution
|
764
|
+
"JN", # Employer Contribution
|
765
|
+
"JO", # Free Look Value
|
766
|
+
"JP", # Free Withdrawal Value
|
767
|
+
"JQ", # Front End Load
|
768
|
+
"JR", # Guaranteed Minimum Death Benefit
|
769
|
+
"JS", # Interim Value
|
770
|
+
"JT", # Monthly Rent
|
771
|
+
"JU", # Judgment
|
772
|
+
"JV", # Loan Value
|
773
|
+
"JW", # Market Value
|
774
|
+
"JX", # Market Value Adjusted Value
|
775
|
+
"JY", # Market Value Adjustment
|
776
|
+
"JZ", # Net Contract Value
|
777
|
+
"K0", # Discounted Bills not Due
|
778
|
+
"K1", # Unpaid Security Balance
|
779
|
+
"K2", # Total Unpaid Security Balance
|
780
|
+
"K3", # Veterans Affairs Funding Fee
|
781
|
+
"K4", # Initial Target Fee
|
782
|
+
"K5", # Minimum Fee
|
783
|
+
"K6", # Maximum Fee
|
784
|
+
"K7", # Price
|
785
|
+
"K8", # Special Accounting Classification Reference Number (ACRN)Amount
|
786
|
+
"K9", # New Price
|
787
|
+
"KA", # Estimated Contract
|
788
|
+
"KB", # Estimated Net Adjustment
|
789
|
+
"KC", # Obligated
|
790
|
+
"KD", # Undefinitized
|
791
|
+
"KE", # Annual Revenue
|
792
|
+
"KF", # Net Paid Amount
|
793
|
+
"KG", # Net Collected Amount
|
794
|
+
"KH", # Deduction Amount
|
795
|
+
"KI", # Net Variance Amount
|
796
|
+
"KJ", # Minimum Contract Amount
|
797
|
+
"KK", # Item Gross Amount
|
798
|
+
"KL", # Collected Amount
|
799
|
+
"KM", # Disbursed Amount
|
800
|
+
"KN", # Gross Amount of Payment
|
801
|
+
"KO", # Committed Amount
|
802
|
+
"KP", # Principal and Interest
|
803
|
+
"KQ", # Incremental Order Amount
|
804
|
+
"KR", # Liability-Long Term
|
805
|
+
"KS", # Taxes and Insurance
|
806
|
+
"KT", # Default Principal
|
807
|
+
"KU", # Default Interest
|
808
|
+
"KV", # Liability-Short Term
|
809
|
+
"KW", # Default Taxes and Insurance
|
810
|
+
"KX", # Miscellaneous Fee Collections
|
811
|
+
"KY", # Not-To-Exceed Price
|
812
|
+
"KZ", # Mortgagor's Monthly Obligations
|
813
|
+
"L0", # Liquid Assets
|
814
|
+
"L1", # Legal Contribution
|
815
|
+
"L2", # Leasehold Insurance Amount
|
816
|
+
"L3", # Total Unidentified Payments Rejected
|
817
|
+
"L4", # Total Credits Received
|
818
|
+
"L5", # Total Debits Received
|
819
|
+
"L6", # Total Pre-advices Received
|
820
|
+
"L7", # Total Prenotes Received
|
821
|
+
"L8", # Total Post-advices Received
|
822
|
+
"L9", # Total Debit for Settlement
|
823
|
+
"LA", # Definitized
|
824
|
+
"LB", # Definitized Total
|
825
|
+
"LC", # Lessor's Cost
|
826
|
+
"LD", # Incremental
|
827
|
+
"LE", # Loan Eligibility Amount
|
828
|
+
"LF", # Loan Remittance or Repayment
|
829
|
+
"LG", # Laundry Income
|
830
|
+
"LH", # Baseline
|
831
|
+
"LI", # Line Item Unit Price
|
832
|
+
"LJ", # Legal and Audit
|
833
|
+
"LK", # Loan Amount Requested
|
834
|
+
"LL", # Lump Sum
|
835
|
+
"LM", # Limit
|
836
|
+
"LN", # Lien Payoff
|
837
|
+
"LO", # Money Purchase
|
838
|
+
"LP", # List Price
|
839
|
+
"LQ", # Maximum Potential Liability
|
840
|
+
"LR", # Total Credit for Settlement
|
841
|
+
"LS", # Net Settlement
|
842
|
+
"LT", # Total Award
|
843
|
+
"LU", # Option Amount
|
844
|
+
"LV", # Planned Periodic Payment
|
845
|
+
"LW", # Tax and Insurance Escrow Fund Balance
|
846
|
+
"LX", # Loan Expense
|
847
|
+
"LY", # Total Remaining Principal Balance for the Issuer
|
848
|
+
"LZ", # Delinquent Payment
|
849
|
+
"M0", # Loans from Officers
|
850
|
+
"M1", # Maximum Out of Pocket Amount
|
851
|
+
"M2", # Medical Contribution
|
852
|
+
"M3", # Tax rate expressed as a flat fee
|
853
|
+
"M4", # Minimum amount of tax to be paid
|
854
|
+
"M5", # Minimum amount to which tax rate is applied
|
855
|
+
"M6", # Maximum amount of tax to be paid
|
856
|
+
"M7", # Maximum amount to which tax rate is applied
|
857
|
+
"M8", # Markup Amount
|
858
|
+
"M9", # Net of Surrender Withdrawal
|
859
|
+
"MA", # Maximum Amount
|
860
|
+
"MB", # Undistributed Budget
|
861
|
+
"MC", # Cost of Money
|
862
|
+
"MD", # Minimum Due
|
863
|
+
"ME", # Minimum Default Note Holder's Cost
|
864
|
+
"MF", # Administrative Fees
|
865
|
+
"MG", # Maximum Late Charge
|
866
|
+
"MH", # Minimum Late Charge
|
867
|
+
"MI", # Minimum Incentive Fee
|
868
|
+
"MJ", # Maximum Default Note Holder's Cost
|
869
|
+
"MK", # Gross to Pay
|
870
|
+
"ML", # Prior Net Invoice Total
|
871
|
+
"MM", # Payout
|
872
|
+
"MN", # Monthly Limit
|
873
|
+
"MO", # Minimum Order Value
|
874
|
+
"MP", # Monthly Payment Amount
|
875
|
+
"MQ", # Post Tax Equity and Fiscal Responsibility Act (TEFRA) Cost Basis
|
876
|
+
"MR", # Management Reserve
|
877
|
+
"MS", # Past-Due Taxes and Assessment Remaining Unpaid
|
878
|
+
"MT", # Pre Tax Equity and Fiscal Responsibility Act (TEFRA) Cost Basis
|
879
|
+
"MU", # Premium Tax Paid on Surrender
|
880
|
+
"MV", # Premium Tax Paid up Front
|
881
|
+
"MW", # Sales Loads
|
882
|
+
"MX", # Maximum Incentive Fee
|
883
|
+
"MY", # Surrender Value
|
884
|
+
"MZ", # Valuation Price
|
885
|
+
"N0", # Loans or Financial Borrowings
|
886
|
+
"N1", # Net Worth
|
887
|
+
"N2", # Individual Income Taxes and Other
|
888
|
+
"N3", # Corporate Income and Excess Profits Tax
|
889
|
+
"N4", # Excise Taxes
|
890
|
+
"N5", # Estate and Gift Taxes
|
891
|
+
"N6", # Carrier Tax Act Taxes
|
892
|
+
"N7", # Federal Unemployment Tax Act Taxes
|
893
|
+
"N8", # Miscellaneous Taxes
|
894
|
+
"N9", # Withheld and Federal Insurance Contribution Act (FICA) Taxes
|
895
|
+
"NA", # Net Adjustment
|
896
|
+
"NB", # Net Compensation Position
|
897
|
+
"NC", # Negative Collected Balance
|
898
|
+
"ND", # Per Person Monthly Limit
|
899
|
+
"NE", # Net Billed
|
900
|
+
"NF", # Monthly Net Fee Position (Excess/Deficit)
|
901
|
+
"NG", # Medicare Copayment
|
902
|
+
"NH", # Medicare Deductible
|
903
|
+
"NI", # Medicare Paid
|
904
|
+
"NJ", # Other Insurance Paid Amount
|
905
|
+
"NK", # Total in Force and Applied Coverage
|
906
|
+
"NL", # Negative Ledger Balance
|
907
|
+
"NM", # Non-collateralized Amount
|
908
|
+
"NN", # Transaction Fee
|
909
|
+
"NO", # Non Commission Sales
|
910
|
+
"NP", # Net to Pay Total
|
911
|
+
"NQ", # Adjusted Nonrecurring
|
912
|
+
"NR", # Nonrecurring
|
913
|
+
"NS", # Net Savings Amount
|
914
|
+
"NT", # Unit Value
|
915
|
+
"NU", # Reinsurance Amount
|
916
|
+
"NV", # Renewal Amount
|
917
|
+
"NW", # Retention Per Life
|
918
|
+
"NX", # Retention Per Policy
|
919
|
+
"NY", # Net Year to Date (Excess/Deficit)
|
920
|
+
"NZ", # Equalization Account
|
921
|
+
"O0", # Extraordinary Income
|
922
|
+
"O1", # Amount of First Mortgage Being Refinanced
|
923
|
+
"O2", # Other Family Financing for Education
|
924
|
+
"O3", # Intangible Assets Written Off
|
925
|
+
"O4", # Interest Payable
|
926
|
+
"O5", # Interest Receivable
|
927
|
+
"O6", # Joint Venture Results
|
928
|
+
"O7", # Long Term Debt
|
929
|
+
"O8", # Long Term Provisions
|
930
|
+
"O9", # Loss
|
931
|
+
"OA", # Principal Balance Amount
|
932
|
+
"OB", # Outstanding Loan Balance
|
933
|
+
"OC", # Opening Bank Charges
|
934
|
+
"OD", # Draft Amount
|
935
|
+
"OE", # Miscellaneous Charges
|
936
|
+
"OF", # Contractor's Offer
|
937
|
+
"OG", # Cable Charge
|
938
|
+
"OH", # Handling Charges
|
939
|
+
"OI", # Non-commission Charges
|
940
|
+
"OJ", # Merchandise
|
941
|
+
"OK", # Letter of Credit Amount
|
942
|
+
"OL", # Outstanding Balance Other Lender
|
943
|
+
"OM", # Other Monthly Income
|
944
|
+
"ON", # Negotiating Bank Charges
|
945
|
+
"OO", # Overdrafts
|
946
|
+
"OP", # Original Payment Total
|
947
|
+
"OQ", # Payroll Costs
|
948
|
+
"OR", # Letter of Credit Remaining Amount
|
949
|
+
"OS", # Other Salaries
|
950
|
+
"OT", # Commission Amendment Charges
|
951
|
+
"OU", # Profit
|
952
|
+
"OV", # Profit and Loss Deficit
|
953
|
+
"OW", # Profit after Extraordinary Items and before Tax
|
954
|
+
"OX", # Profit after Tax and Before Extraordinary Items
|
955
|
+
"OY", # Payment Commission
|
956
|
+
"OZ", # Profit Distributed to Employees
|
957
|
+
"P0", # Parental Financing for Education
|
958
|
+
"P1", # Partner's Calendar Year Salary
|
959
|
+
"P2", # Prior Plan Year Gross Salary
|
960
|
+
"P3", # Premium Amount
|
961
|
+
"P4", # Prior Year's Wage
|
962
|
+
"P5", # Partner's Tax Year Salary
|
963
|
+
"P6", # Premium Due
|
964
|
+
"P7", # Partner's K1 Tax Year Amount
|
965
|
+
"P8", # Partner's K1 Calendar Year Amount
|
966
|
+
"P9", # Current Mortgage Principal Balance
|
967
|
+
"PA", # Payment Cancellation Total
|
968
|
+
"PB", # Billed Amount
|
969
|
+
"PC", # Positive Collected Balance
|
970
|
+
"PD", # Credit
|
971
|
+
"PE", # Plan Period Election
|
972
|
+
"PF", # Principal
|
973
|
+
"PG", # Payoff
|
974
|
+
"PH", # Per Occurrence Deductible
|
975
|
+
"PI", # Per Occurrence Monthly Limit
|
976
|
+
"PJ", # Past Due
|
977
|
+
"PK", # Photograph Fee
|
978
|
+
"PL", # Positive Ledger Balance
|
979
|
+
"PM", # Last Premium Amount
|
980
|
+
"PN", # Prior Gross Invoice Total
|
981
|
+
"PO", # Percent Override
|
982
|
+
"PP", # Payment Prior to Advance
|
983
|
+
"PQ", # Advance Amount
|
984
|
+
"PR", # Per Occurrence Limit
|
985
|
+
"PS", # Per Occurrence per Day Limit
|
986
|
+
"PT", # Per Occurrence Aggregate Limit
|
987
|
+
"PU", # Unsecured Priority Claim
|
988
|
+
"PV", # Prepetition Charges
|
989
|
+
"PW", # Per Occurrence Maximum per Week Limit
|
990
|
+
"PX", # Per Person Maximum per Week Limit
|
991
|
+
"PY", # Per Person per Day Limit
|
992
|
+
"PZ", # Original Principal Balance
|
993
|
+
"Q0", # Loans to Affiliated Companies
|
994
|
+
"Q1", # Proposed
|
995
|
+
"Q2", # 1035 Exchange
|
996
|
+
"Q3", # 401K Transfer
|
997
|
+
"Q4", # Total Prenotes Accepted
|
998
|
+
"Q5", # Total Prenotes Rejected
|
999
|
+
"Q6", # Automatic Premium Deduction
|
1000
|
+
"Q7", # Total Post-advices Accepted
|
1001
|
+
"Q8", # Total Post-advices Rejected
|
1002
|
+
"Q9", # Cash With Application
|
1003
|
+
"QA", # Combined
|
1004
|
+
"QB", # Credit Card
|
1005
|
+
"QC", # Deposit Fund
|
1006
|
+
"QD", # Direct Billing
|
1007
|
+
"QE", # Disc Premium
|
1008
|
+
"QF", # Electronic Funds Transfer (EFT)
|
1009
|
+
"QG", # Government Allotment
|
1010
|
+
"QH", # Initial Premium
|
1011
|
+
"QI", # Individual Retirement Account 60 Day Rollover
|
1012
|
+
"QJ", # Individual Retirement Account Direct Transfer
|
1013
|
+
"QK", # Individual Retirement Account Regular Contribution
|
1014
|
+
"QL", # Keogh/HR 10
|
1015
|
+
"QM", # Keogh/HR 10 Transfer
|
1016
|
+
"QN", # Quarterly Net Fee Position (Excess/Deficit)
|
1017
|
+
"QO", # List Billing
|
1018
|
+
"QP", # Modal Premium
|
1019
|
+
"QQ", # Payroll Taxes
|
1020
|
+
"QR", # Parking Income
|
1021
|
+
"QS", # Non-Qualified (1035 Exchange)
|
1022
|
+
"QT", # PAC - Pre-Authorized Check
|
1023
|
+
"QU", # Payroll Deduction
|
1024
|
+
"QV", # Pension
|
1025
|
+
"QW", # Premium Received With Application
|
1026
|
+
"QX", # Profit Sharing Trust
|
1027
|
+
"QY", # Qualified
|
1028
|
+
"QZ", # Payment Amount
|
1029
|
+
"R0", # Loans to Participants
|
1030
|
+
"R1", # Fixed, Liquidated Secured Debt
|
1031
|
+
"R2", # Contingent Secured Debt
|
1032
|
+
"R3", # Disputed Secured Debt
|
1033
|
+
"R4", # Unliquidated Secured Debt
|
1034
|
+
"R5", # Fixed, Liquidated Unsecured Debt
|
1035
|
+
"R6", # Contingent Unsecured Debt
|
1036
|
+
"R7", # Disputed Unsecured Debt
|
1037
|
+
"R8", # Unliquidated Unsecured Debt
|
1038
|
+
"R9", # At Time of Filing
|
1039
|
+
"RA", # Accelerated Royalty
|
1040
|
+
"RB", # Per Person Deductible
|
1041
|
+
"RC", # Refund Check
|
1042
|
+
"RD", # Per Person Limit
|
1043
|
+
"RE", # Royalty Due
|
1044
|
+
"RF", # Restitution
|
1045
|
+
"RG", # Budgeted Redemption
|
1046
|
+
"RH", # Per Person Aggregate Limit
|
1047
|
+
"RI", # Residual Value
|
1048
|
+
"RJ", # Rate Amount
|
1049
|
+
"RK", # Provision for Long Term Depreciation
|
1050
|
+
"RL", # Regular Remittance
|
1051
|
+
"RM", # Remittance Refund
|
1052
|
+
"RN", # Resident Manager's Salary
|
1053
|
+
"RO", # Provisions
|
1054
|
+
"RP", # Repair
|
1055
|
+
"RQ", # Recommended Amount
|
1056
|
+
"RR", # Reserve Requirement Amount
|
1057
|
+
"RS", # Reserves
|
1058
|
+
"RT", # Last Payment
|
1059
|
+
"RU", # Total Debits Rejected
|
1060
|
+
"RV", # Total Payments Rejected
|
1061
|
+
"RW", # Total Delinquency
|
1062
|
+
"RX", # Total Pre-advices Accepted
|
1063
|
+
"RY", # Total Pre-advices Rejected
|
1064
|
+
"RZ", # Lender's Total Delinquency
|
1065
|
+
"S0", # Self-Financing for Education
|
1066
|
+
"S1", # Salary Amount
|
1067
|
+
"S2", # Salary with Bonuses
|
1068
|
+
"S3", # Salary with Commissions
|
1069
|
+
"S4", # Salary with Subchapter S Corporation Income
|
1070
|
+
"S5", # Salary with Partner's Bonuses
|
1071
|
+
"S6", # Subchapter S Corporation
|
1072
|
+
"S7", # Sole Proprietorship
|
1073
|
+
"S8", # Period Rental
|
1074
|
+
"S9", # Secured Claim Allowed
|
1075
|
+
"SA", # Campaign Summary Amount
|
1076
|
+
"SB", # Stated Amount
|
1077
|
+
"SC", # Total Service Charge
|
1078
|
+
"SD", # Sales Charge
|
1079
|
+
"SE", # Service Charges Which Cannot Be Compensated by Balances
|
1080
|
+
"SF", # Scholarship from Admitting Educational Institution
|
1081
|
+
"SG", # Sponsor-Financing for Education
|
1082
|
+
"SH", # Surrender Charge
|
1083
|
+
"SI", # Subsequent Interest Payment Amount
|
1084
|
+
"SJ", # Surrender Full
|
1085
|
+
"SK", # Surrender Partial
|
1086
|
+
"SL", # Security Personnel's Salary
|
1087
|
+
"SM", # Supplemental
|
1088
|
+
"SN", # Sales Administration Expense
|
1089
|
+
"SO", # Special Creditors Amount
|
1090
|
+
"SP", # Sales Price
|
1091
|
+
"SQ", # Special Debtors Amount
|
1092
|
+
"SR", # Secured Claim
|
1093
|
+
"SS", # Campaign Summary Amount to be Shared
|
1094
|
+
"ST", # State
|
1095
|
+
"SU", # Surcharge
|
1096
|
+
"SV", # Fixed Monthly Principal Payment
|
1097
|
+
"SW", # Base Award Fee
|
1098
|
+
"SX", # Severance Tax
|
1099
|
+
"SY", # Initial Buydown Balance
|
1100
|
+
"SZ", # Certification Fee
|
1101
|
+
"T0", # Third-Party Government-Financing for Education
|
1102
|
+
"T1", # Teacher
|
1103
|
+
"T2", # Total Claim Before Taxes
|
1104
|
+
"T3", # Total Submitted Charges
|
1105
|
+
"T4", # Total Current Balance
|
1106
|
+
"T5", # Total Claims
|
1107
|
+
"T6", # Claim
|
1108
|
+
"T7", # Total Credits Accepted
|
1109
|
+
"T8", # Total Credits Rejected
|
1110
|
+
"T9", # Total Debits Accepted
|
1111
|
+
"TA", # Total Annual Sales
|
1112
|
+
"TB", # Total Annual Sales to Customer
|
1113
|
+
"TC", # Proposed Cost
|
1114
|
+
"TD", # Proposed Profit
|
1115
|
+
"TE", # Proposed Fee
|
1116
|
+
"TF", # Total Proposed Price
|
1117
|
+
"TG", # Alternate Proposed Price
|
1118
|
+
"TH", # Total Claim Allowed
|
1119
|
+
"TI", # Title Insurance Amount on Loan
|
1120
|
+
"TJ", # Time and Expense Paid to Date
|
1121
|
+
"TK", # Total Amount of Contract
|
1122
|
+
"TL", # Total Prior Loan Amount Owed
|
1123
|
+
"TM", # Time and Expense Paid Current Month
|
1124
|
+
"TN", # Tax Sheltered Annuity (403B Transfer)
|
1125
|
+
"TO", # Telephone Operator's Salary
|
1126
|
+
"TP", # Total payment amount
|
1127
|
+
"TQ", # Subsidies for Operating Costs
|
1128
|
+
"TR", # Target Cost
|
1129
|
+
"TS", # Total Sales
|
1130
|
+
"TT", # Total Transaction Amount
|
1131
|
+
"TU", # Transportation Cost per Unit of Measure
|
1132
|
+
"TW", # Technicians Indemnity Provision
|
1133
|
+
"TX", # Total to Date
|
1134
|
+
"TY", # Total at Complete
|
1135
|
+
"TZ", # Transportation Cost Total
|
1136
|
+
"U0", # U.S. Government-Financing for Education
|
1137
|
+
"U1", # Unsecured, Priority Claim Allowed
|
1138
|
+
"U2", # Ingredient Cost Claimed
|
1139
|
+
"U3", # Miscellaneous Expenses
|
1140
|
+
"U4", # Present Value of Lot
|
1141
|
+
"U5", # Cost of Improvements
|
1142
|
+
"U6", # Alterations, Improvements, Repairs
|
1143
|
+
"U7", # Land
|
1144
|
+
"U8", # Refinance
|
1145
|
+
"U9", # Estimated Prepaid Items
|
1146
|
+
"UA", # Unliquidated Amount
|
1147
|
+
"UB", # Unpaid Principal Balance
|
1148
|
+
"UC", # Unspecified Aggregate Limit
|
1149
|
+
"UD", # Unsecured, Nonpriority Claim Allowed
|
1150
|
+
"UE", # Mortgage Insurance
|
1151
|
+
"UF", # Discount (If Borrower Paid)
|
1152
|
+
"UG", # Total Unpaid Principal Balance for Stafford Loans
|
1153
|
+
"UH", # Subordinate Financing
|
1154
|
+
"UI", # Total Costs
|
1155
|
+
"UJ", # Other Credits
|
1156
|
+
"UK", # Base Loan Amount (w/o financed Mortgage Insurance)
|
1157
|
+
"UL", # Mortgage Insurance Financed
|
1158
|
+
"UM", # Total Loan Amount
|
1159
|
+
"UN", # Unsecured, Nonpriority Claim
|
1160
|
+
"UO", # Cash from or to Borrower
|
1161
|
+
"UP", # Total Unpaid Principal Balance for Parental Loans for Students
|
1162
|
+
"UQ", # Monthly Income
|
1163
|
+
"UR", # Unearned Income
|
1164
|
+
"US", # Total Unpaid Principal Balance for Supplemental Loans for Students
|
1165
|
+
"UT", # Value Added Sales
|
1166
|
+
"UU", # Clearing House Settlement
|
1167
|
+
"UV", # Drawback
|
1168
|
+
"UW", # Total Monthly Liabilities
|
1169
|
+
"UX", # Utilities, Furniture, and Amenities Included in Rent
|
1170
|
+
"UY", # Total Assets
|
1171
|
+
"UZ", # Total Liquid Assets
|
1172
|
+
"V0", # Value Added
|
1173
|
+
"V1", # Tax and Insurance Escrow Fund
|
1174
|
+
"V2", # Interest Due to Investor
|
1175
|
+
"V3", # Total Principal Due to the Investor
|
1176
|
+
"V4", # Total Interest Due to the Investor
|
1177
|
+
"V5", # Total Curtailment Due to the Investor
|
1178
|
+
"V6", # Total Principal Payoff and Repurchase Due to the Investor
|
1179
|
+
"V7", # Total Interest Payoff and Repurchase Due to the Investor
|
1180
|
+
"V8", # Actual Outstanding Principal Balance
|
1181
|
+
"V9", # Face Amount
|
1182
|
+
"VA", # Total Current Rent or Mortgage Payment (Issue)
|
1183
|
+
"VB", # Total Non-liquid Assets
|
1184
|
+
"VC", # Authorized
|
1185
|
+
"VD", # Actual Person Day Rate
|
1186
|
+
"VE", # Estimated Person Day Rate
|
1187
|
+
"VF", # Total Monthly Expenses
|
1188
|
+
"VG", # Current Monthly Principal and Interest
|
1189
|
+
"VH", # Levy Amount
|
1190
|
+
"VI", # Current Support
|
1191
|
+
"VJ", # Past Due Support
|
1192
|
+
"VK", # Medical Support
|
1193
|
+
"VL", # Net Negative Amortization Amount
|
1194
|
+
"VM", # Withhold From Wages
|
1195
|
+
"VN", # Commission Basis
|
1196
|
+
"VO", # Commission Earned
|
1197
|
+
"VP", # Current Monthly Payment
|
1198
|
+
"VQ", # Commission Netted
|
1199
|
+
"VR", # Total Monthly Debt
|
1200
|
+
"VS", # Other Financing Payment
|
1201
|
+
"VT", # Current Value
|
1202
|
+
"VU", # Closing Cost
|
1203
|
+
"VV", # Capitalized Mortgage Amount
|
1204
|
+
"VW", # First Mortgage Monthly Principal and Interest
|
1205
|
+
"VX", # Interest Amount Paid to Date
|
1206
|
+
"VY", # Minimum Transfer
|
1207
|
+
"VZ", # Maximum Transfer
|
1208
|
+
"W0", # Trade Debtors
|
1209
|
+
"W1", # W-2
|
1210
|
+
"W2", # W-2 with Bonuses
|
1211
|
+
"W3", # W-2 with Deferred Compensation
|
1212
|
+
"W4", # W-2 without Bonuses
|
1213
|
+
"W5", # Deposit Sub Total
|
1214
|
+
"W6", # Direct Rollover
|
1215
|
+
"W7", # Direct Transfer
|
1216
|
+
"W8", # Discounted
|
1217
|
+
"W9", # Secondary Finance
|
1218
|
+
"WA", # Minimum Deposit
|
1219
|
+
"WB", # Sub-Agency Compensation
|
1220
|
+
"WC", # Buyers Agency Compensation
|
1221
|
+
"WD", # Variable Rate Compensation
|
1222
|
+
"WE", # Compensation Bonus on Sale of Property
|
1223
|
+
"WF", # Veterans Affairs Loan Guarantee
|
1224
|
+
"WG", # Security Trade Amount
|
1225
|
+
"WH", # Balance Owing All Other Liens, Subject Property
|
1226
|
+
"WI", # Other Financing
|
1227
|
+
"WJ", # Dual Agency Compensation
|
1228
|
+
"WK", # Per Week Limit
|
1229
|
+
"WL", # Lender's Opinion of Value
|
1230
|
+
"WM", # Total Original Principal Balance
|
1231
|
+
"WN", # Other Agent Compensation
|
1232
|
+
"WO", # Dock Usage Fee
|
1233
|
+
"WP", # Pool Usage Fee
|
1234
|
+
"WQ", # Clubhouse Fee
|
1235
|
+
"WR", # Optional Service Fee
|
1236
|
+
"WS", # Other Association Fees
|
1237
|
+
"WT", # Principal, Interest, Taxes
|
1238
|
+
"WU", # Principal, Interest, Taxes and Insurance
|
1239
|
+
"WV", # Total Points Paid at Closing
|
1240
|
+
"WW", # Amount that Would Have Been Paid in the Absence of Capitation
|
1241
|
+
"WX", # Points Paid by Seller
|
1242
|
+
"WY", # Loan Withdrawal
|
1243
|
+
"WZ", # Severance Pay
|
1244
|
+
"X0", # Treble Damages
|
1245
|
+
"X1", # Transfer to Untaxed Reserves
|
1246
|
+
"X2", # Reissued
|
1247
|
+
"X3", # Rollover Amount
|
1248
|
+
"X4", # Annual Rental
|
1249
|
+
"X5", # Gross Monthly Rent
|
1250
|
+
"X6", # SEP - Self Employee Pension
|
1251
|
+
"X7", # Single Premium
|
1252
|
+
"X8", # Funding Amount
|
1253
|
+
"X9", # Tax Sheltered Annuity (403B Transfer)
|
1254
|
+
"XA", # Maximum Award Fee
|
1255
|
+
"XB", # Maturity Value
|
1256
|
+
"XC", # Earned Wages
|
1257
|
+
"XD", # Base Period Wage
|
1258
|
+
"XE", # Withdrawal
|
1259
|
+
"XF", # Withdrawal Inception to Date
|
1260
|
+
"XG", # Withdrawal Less Market Value Adjustment
|
1261
|
+
"XH", # Withdrawal Less Surrender
|
1262
|
+
"XI", # Withdrawal Less Taxes
|
1263
|
+
"XJ", # Withdrawal Year to Date
|
1264
|
+
"XK", # Unavailable Reserves
|
1265
|
+
"XL", # Uncalled Capital
|
1266
|
+
"XM", # Unemployment Contribution
|
1267
|
+
"XN", # Unlimited Capital, Minimum Fixed
|
1268
|
+
"XO", # Unpaid Capital
|
1269
|
+
"XP", # Unsecured Liabilities
|
1270
|
+
"XQ", # Value Added Tax
|
1271
|
+
"XR", # Value of Shares
|
1272
|
+
"XS", # Vehicles
|
1273
|
+
"XT", # Voluntary Reserves
|
1274
|
+
"XU", # Wages
|
1275
|
+
"XV", # Withholding
|
1276
|
+
"XW", # Original Value
|
1277
|
+
"XX", # Working Capital
|
1278
|
+
"XY", # Sales Price Per Dwelling Unit
|
1279
|
+
"XZ", # Sales Price Per Room
|
1280
|
+
"Y1", # Year to Date Eligible Salary
|
1281
|
+
"Y2", # Total Real Estate Owned
|
1282
|
+
"Y3", # Total Liabilities
|
1283
|
+
"Y4", # Total Liability Monthly Payments
|
1284
|
+
"Y5", # Total Real Estate Owned Market Value
|
1285
|
+
"Y6", # Total Real Estate Owned Gross Rental Income
|
1286
|
+
"Y7", # Total Real Estate Owned Mortgages and Liens
|
1287
|
+
"Y8", # Total Real Estate Owned Mortgage Payments
|
1288
|
+
"Y9", # Total Real Estate Owned Miscellaneous Expenses
|
1289
|
+
"YA", # Total Real Estate Owned Net Rental Income
|
1290
|
+
"YB", # Actual Unpaid Principal Balance
|
1291
|
+
"YC", # Scheduled Unpaid Principal Balance
|
1292
|
+
"YD", # Principal Due to Investor
|
1293
|
+
"YE", # Constant Principal and Interest
|
1294
|
+
"YF", # Other Fee Collection
|
1295
|
+
"YG", # Beginning Scheduled Unpaid Principal Balance
|
1296
|
+
"YH", # Tax and Insurance Principal Balance
|
1297
|
+
"YI", # New Principal and Interest
|
1298
|
+
"YJ", # Curtailment
|
1299
|
+
"YK", # Prepayment Penalty
|
1300
|
+
"YL", # Partial Annuitization
|
1301
|
+
"YM", # Partial Withdrawal
|
1302
|
+
"YN", # Post Tax Equity and Fiscal Responsibility Act (TEFRA) Gain
|
1303
|
+
"YO", # Pre Tax Equity and Fiscal Responsibility Act (TEFRA) Gain
|
1304
|
+
"YQ", # Payments in Advance
|
1305
|
+
"YR", # Payments in Arrears
|
1306
|
+
"YS", # Cancelled
|
1307
|
+
"YT", # Denied
|
1308
|
+
"YU", # In Process
|
1309
|
+
"YV", # Requested
|
1310
|
+
"YW", # Paid
|
1311
|
+
"YX", # Paid for This Facility
|
1312
|
+
"YY", # Returned
|
1313
|
+
"YZ", # Total Aggregate Limit
|
1314
|
+
"Z0", # Insertion Cost
|
1315
|
+
"Z1", # Repackaging Labor Cost
|
1316
|
+
"Z2", # Repackaging Material Cost
|
1317
|
+
"Z3", # Unit Cost of Discrepant Material
|
1318
|
+
"Z4", # Liquidation Principal
|
1319
|
+
"Z5", # Remaining Pool Balance
|
1320
|
+
"Z6", # Remaining Security Balance
|
1321
|
+
"Z7", # Program Cost
|
1322
|
+
"Z8", # Override to Handling Fee
|
1323
|
+
"Z9", # Production Cost
|
1324
|
+
"ZA", # Federal Medicare or Medicaid Claim Mandate - Category 1
|
1325
|
+
"ZB", # Federal Medicare or Medicaid Claim Mandate - Category 2
|
1326
|
+
"ZC", # Federal Medicare or Medicaid Claim Mandate - Category 3
|
1327
|
+
"ZD", # Federal Medicare or Medicaid Claim Mandate - Category 4
|
1328
|
+
"ZE", # Federal Medicare or Medicaid Claim Mandate - Category 5
|
1329
|
+
"ZF", # Federal Pension Mandate - Category 1
|
1330
|
+
"ZG", # Federal Pension Mandate - Category 2
|
1331
|
+
"ZH", # Federal Pension Mandate - Category 3
|
1332
|
+
"ZI", # Federal Pension Mandate - Category 4
|
1333
|
+
"ZJ", # Federal Pension Mandate - Category 5
|
1334
|
+
"ZK", # Federal Medicare or Medicaid Payment Mandate - Category 1
|
1335
|
+
"ZL", # Federal Medicare or Medicaid Payment Mandate - Category 2
|
1336
|
+
"ZM", # Federal Medicare or Medicaid Payment Mandate - Category 3
|
1337
|
+
"ZN", # Federal Medicare or Medicaid Payment Mandate - Category 4
|
1338
|
+
"ZO", # Federal Medicare or Medicaid Payment Mandate - Category 5
|
1339
|
+
"ZP", # Coupon Face Value
|
1340
|
+
"ZQ", # Initial Target Cost
|
1341
|
+
"ZR", # Increase
|
1342
|
+
"ZS", # Decrease
|
1343
|
+
"ZT", # Prorated Amount
|
1344
|
+
"ZU", # Loan Charge
|
1345
|
+
"ZV", # Mortgage Recording Fee
|
1346
|
+
"ZW", # Deed Recording Fee
|
1347
|
+
"ZX", # Release Recording Fee
|
1348
|
+
"ZY", # Assumption
|
1349
|
+
"ZZ", # Mutually Defined
|
1350
|
+
"AAA", # Temporary Term Coverage
|
1351
|
+
"AAB", # Conditional Receipt Coverage
|
1352
|
+
"AAC", # Binding Interim Coverage
|
1353
|
+
"AAD", # Application Amount
|
1354
|
+
"AAE", # Approved Amount
|
1355
|
+
"AAF", # Ultimate Face Amount
|
1356
|
+
"AAG", # Requested Amount from All Reinsurers
|
1357
|
+
"AAH", # Replacement Amount
|
1358
|
+
"AAI", # Scheduled Contribution
|
1359
|
+
"AAJ", # Scheduled Disbursement
|
1360
|
+
"AAK", # Short Term Investment
|
1361
|
+
"AAL", # Subsequent Contribution
|
1362
|
+
"AAM", # Subsequent Distribution
|
1363
|
+
"AAN", # Tax-Federal
|
1364
|
+
"AAO", # Tax-Local
|
1365
|
+
"AAP", # Tax-State
|
1366
|
+
"AAQ", # Trust Fund
|
1367
|
+
"AAR", # Capital Leases
|
1368
|
+
"AAS", # Surplus
|
1369
|
+
"AAT", # Restated Assets
|
1370
|
+
"AAU", # Owing to Clients
|
1371
|
+
"AAV", # Shareholder Loans
|
1372
|
+
"AAW", # Accumulated Deficit
|
1373
|
+
"AAX", # Loan from Parent Company
|
1374
|
+
"AAY", # Contribution Not Subject to Repayment
|
1375
|
+
"AAZ", # Income Before Depreciation
|
1376
|
+
"ABA", # Income After Depreciation
|
1377
|
+
"ABB", # Profit (Loss) Before Financial Items
|
1378
|
+
"ABC", # Interest Expenses
|
1379
|
+
"ABD", # Profit (Loss) Before Extraordinary Items
|
1380
|
+
"ABE", # Profit (Loss) After Financial Items
|
1381
|
+
"ABF", # Income Before Allocations
|
1382
|
+
"ABG", # Income from Sale of Fixed Assets
|
1383
|
+
"ABH", # Contribution to Group
|
1384
|
+
"ABI", # Deferred Tax Assets
|
1385
|
+
"ABJ", # Blocked Accounts
|
1386
|
+
"ABK", # Non-taxed Reserves
|
1387
|
+
"ABL", # Pledged Assets
|
1388
|
+
"ABM", # Restricted Equity
|
1389
|
+
"ABN", # Non-restricted Equity
|
1390
|
+
"ABO", # Depreciable Assets
|
1391
|
+
"ABP", # Taxable Assets
|
1392
|
+
"ABQ", # Income from Business
|
1393
|
+
"ABR", # Income Subject to Taxes
|
1394
|
+
"ABS", # Taxable Amount of Real Estate
|
1395
|
+
"ABT", # Ending Principal Balance
|
1396
|
+
"ABU", # Average Daily Principal Balance
|
1397
|
+
"ABV", # Interest Amount
|
1398
|
+
"ABW", # Adjustments for Difference in Average Daily Principal Balance
|
1399
|
+
"ABX", # Beginning Principal Balance
|
1400
|
+
"ABY", # Loan Principal Disbursements
|
1401
|
+
"ABZ", # Principal Increases
|
1402
|
+
"ACA", # Principal of Loans Purchased
|
1403
|
+
"ACB", # Principal Cured
|
1404
|
+
"ACC", # Principal Sold
|
1405
|
+
"ACD", # Principal Insurance Claims
|
1406
|
+
"ACE", # Principal Guarantee Voided
|
1407
|
+
"ACF", # Principal Paid by Borrowers
|
1408
|
+
"ACG", # Loans in School and Grace
|
1409
|
+
"ACH", # Loans in Authorized Deferment
|
1410
|
+
"ACI", # Loans Repay or Forebearance - Current or Less than 31 Days
|
1411
|
+
"ACJ", # Loans Repay or Forebearance - 31 to 60 Days Past Due
|
1412
|
+
"ACK", # Loans Repay or Forebearance - 61 to 90 Days Past Due
|
1413
|
+
"ACL", # Loans Repay or Forebearance - 91 to 120 Days Past Due
|
1414
|
+
"ACM", # Loans Repay or Forebearance - 121 to 180 Days Past Due
|
1415
|
+
"ACN", # Loans Repay or Forebearance - 181 to 270 Days Past Due
|
1416
|
+
"ACO", # Loans Repay or Forebearance - 271 or More Days Past Due
|
1417
|
+
"ACP", # Loans Repay or Forebearance - Claims Filed, Not Yet Paid
|
1418
|
+
"ACQ", # Agent Sales
|
1419
|
+
"ACR", # Amount Involved
|
1420
|
+
"ACS", # Assigned Capital
|
1421
|
+
"ACT", # Credit Line Utilized
|
1422
|
+
"ACU", # Direct Sales
|
1423
|
+
"ACV", # Earnings per Share
|
1424
|
+
"ACW", # Inheritance
|
1425
|
+
"ACX", # Inverted Capital
|
1426
|
+
"ACY", # Loan from Family Members
|
1427
|
+
"ACZ", # Non Depreciable Assets
|
1428
|
+
"ADA", # Partially Paid Amount per Share
|
1429
|
+
"ADB", # Pending Orders
|
1430
|
+
"ADC", # Personal Loan
|
1431
|
+
"ADD", # Plant and Machinery
|
1432
|
+
"ADE", # Pre-Tax Loss
|
1433
|
+
"ADF", # Pre-Tax Profit
|
1434
|
+
"ADG", # Registered Capital
|
1435
|
+
"ADH", # Revaluation Reserves
|
1436
|
+
"ADI", # Social Capital
|
1437
|
+
"ADJ", # Statutory Profit
|
1438
|
+
"ADK", # Training Pay
|
1439
|
+
"ADL", # Retroactive Pay
|
1440
|
+
"ADM", # Expected Reimbursement Amount
|
1441
|
+
"ADN", # Permit Cost
|
1442
|
+
"ADO", # Minimum
|
1443
|
+
"ADP", # Additional Amount to Meet Minimum
|
1444
|
+
"ADQ", # Labor Per Hour
|
1445
|
+
"ADR", # Non-recoverable Depreciation
|
1446
|
+
"ADS", # Recoverable Depreciation
|
1447
|
+
"ADT", # Overhead
|
1448
|
+
"ADW", # Replacement Cost of Repairs
|
1449
|
+
"ADX", # Actual Cash Value of Repairs
|
1450
|
+
"ADY", # Recoverable Depreciation of Repairs
|
1451
|
+
"ADZ", # Non-recoverable Depreciation of Repairs
|
1452
|
+
"AEB", # Actual Cash Value of Building
|
1453
|
+
"AEC", # Government Share
|
1454
|
+
"AED", # Contractor Share
|
1455
|
+
"AEE", # Award Fee
|
1456
|
+
"AEF", # Base Fee
|
1457
|
+
"AEG", # Target Profit Floor
|
1458
|
+
"AEH", # Target Profit Ceiling
|
1459
|
+
"AEI", # Labor Per Day
|
1460
|
+
"AEJ", # Difference in Interest Due
|
1461
|
+
"AEK", # Difference in Prepayment Penalty
|
1462
|
+
"AEL", # Difference in Principal Due
|
1463
|
+
"AVE", # Average
|
1464
|
+
"BAA", # Net Taxable Income
|
1465
|
+
"BAB", # Original Amount of Instrument
|
1466
|
+
"BAC", # Addition to Tax
|
1467
|
+
"BAD", # Reinstatement Fee
|
1468
|
+
"BAE", # Permit Fee Due
|
1469
|
+
"BAF", # Permit Fee with Extension
|
1470
|
+
"BAG", # Net Annual Permit Fee Due
|
1471
|
+
"BAH", # Permit Fee Penalty Due
|
1472
|
+
"BAI", # Permit Fee Interest Due
|
1473
|
+
"BAJ", # Total Permit Fee Due
|
1474
|
+
"BAK", # Franchise Tax
|
1475
|
+
"BAL", # Unclaimed Franchise Tax Credit
|
1476
|
+
"BAM", # Net Franchise Tax Due
|
1477
|
+
"BAN", # Franchise Tax Penalty Due
|
1478
|
+
"BAO", # Total Franchise Tax Due
|
1479
|
+
"BAP", # Total Amount Due
|
1480
|
+
"BAQ", # Overpayment
|
1481
|
+
"BAR", # Amount to be Refunded
|
1482
|
+
"BAS", # Gross In-State Receipts
|
1483
|
+
"BAT", # Gross Receipts
|
1484
|
+
"BAU", # Occupation Fee
|
1485
|
+
"BAV", # Total Assessed Value
|
1486
|
+
"BAW", # Total Value of All Property
|
1487
|
+
"BAX", # Value of In-State Property
|
1488
|
+
"BAY", # Total Value of Out-of-State Property
|
1489
|
+
"BAZ", # Total Par Value
|
1490
|
+
"BBA", # Total Assessable Capital Stock
|
1491
|
+
"BBB", # Apportioned Value
|
1492
|
+
"BBC", # Estimated In-State Real Property Value
|
1493
|
+
"BBD", # Par Value of In-State Assets
|
1494
|
+
"BBE", # In-State Business Revenue
|
1495
|
+
"BBF", # Subscription Price
|
1496
|
+
"BBG", # Value of Authorized Shares
|
1497
|
+
"FBA", # Final Balance
|
1498
|
+
"LOW", # Lower Fund
|
1499
|
+
"PCC", # Prior Contract Cost Basis
|
1500
|
+
"PCS", # Prior Contract Surrender Charge
|
1501
|
+
"PCV", # Prior Contract Value
|
1502
|
+
"SOF", # Setoff
|
1503
|
+
"UPF", # Upper Fund
|
1504
|
+
"VES", # Vested/Earned Upper Fund
|
1505
|
+
]
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
end
|
1509
|
+
end
|
1510
|
+
end
|