aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S1153.hs
blob: 09514a1296ce4e71ec8ccc4b90d9c0823101b1ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
{-# LANGUAGE OverloadedStrings #-}

---- Machine generated code.
---- Output of edi-parser-scaffolder

module Text.Edifact.D01B.Simples.S1153
  ( simple1153
  ) where

import           Text.Edifact.Parsing
import           Text.Edifact.Types   (Value)

-- | Derived from this specification:
--
-- > *    1153  Reference code qualifier                                [C]
-- >
-- >      Desc: Code qualifying a reference.
-- >
-- >      Repr: an..3
-- >
-- >      AAA   Acknowledgement of order number
-- >               [1018] Reference number assigned by the seller to his
-- >               acknowledgement of an order.
-- >
-- >      AAB   Proforma invoice number
-- >               [1088] Reference number assigned by the seller to a
-- >               Proforma Invoice.
-- >
-- >      AAC   Documentary credit number
-- >               [1172] Reference number assigned by issuing bank to a
-- >               Documentary credit.
-- >
-- >      AAD   Contract addendum number
-- >               [1318] Reference number assigned by the issuer to a
-- >               Contract Addendum.
-- >
-- >      AAE   Goods declaration number
-- >               Reference number assigned to a goods declaration.
-- >
-- >      AAF   Debit card number
-- >               A reference number identifying a debit card.
-- >
-- >      AAG   Offer number
-- >               Reference number assigned by issuing party to an offer.
-- >
-- >      AAH   Bank's batch interbank transaction reference number
-- >               Reference number allocated by the bank to a batch of
-- >               different underlying interbank transactions.
-- >
-- >      AAI   Bank's individual interbank transaction reference number
-- >               Reference number allocated by the bank to one specific
-- >               interbank transaction.
-- >
-- >      AAJ   Delivery order number
-- >               Reference number assigned by issuer to a delivery order.
-- >
-- >      AAK   Despatch advice number
-- >               Reference number assigned by issuing party to a despatch
-- >               advice.
-- >
-- >      AAL   Drawing number
-- >               Reference number identifying a specific product drawing.
-- >
-- >      AAM   Waybill number
-- >               Reference number assigned to a waybill, see: 1001 = 700.
-- >
-- >      AAN   Delivery schedule number
-- >               Reference number assigned by buyer to a delivery
-- >               schedule.
-- >
-- >      AAO   Consignee's shipment reference number
-- >               [1362] Reference assigned by the consignee to a
-- >               shipment.
-- >
-- >      AAP   Part consignment number
-- >               [1310] Reference to a specific consignment forming part
-- >               of a contract allowing part deliveries.
-- >
-- >      AAQ   Unit load device (e.g. container) identification number
-- >               [8260] Marks (letters and/or numbers) which identify a
-- >               unit load device e.g. freight container.
-- >
-- >      AAR   Municipality assigned business registry number
-- >               A reference number assigned by a municipality to
-- >               identify a business.
-- >
-- >      AAS   Transport document number
-- >               [1188] Reference assigned by the carrier or his agent to
-- >               the transport document.
-- >
-- >      AAT   Master label number
-- >               Identifies the master label number of any package type.
-- >
-- >      AAU   Despatch note number
-- >               [1128] Reference number assigned by the seller to a
-- >               Despatch Note.
-- >
-- >      AAV   Enquiry number
-- >               Reference number assigned to an enquiry.
-- >
-- >      AAW   Docket number
-- >               A reference number identifying the docket.
-- >
-- >      AAX   Civil action number
-- >               A reference number identifying the civil action.
-- >
-- >      AAY   Carrier's agent reference number
-- >               Reference number assigned by the carriers agent to a
-- >               transaction.
-- >
-- >      AAZ   Standard Carrier Alpha Code (SCAC) number
-- >               For maritime shipments, this code qualifies a Standard
-- >               Alpha Carrier Code (SCAC) as issued by the United Stated
-- >               National Motor Traffic Association Inc.
-- >
-- >      ABA   Customs valuation decision number
-- >               Reference by an importing party to a previous decision
-- >               made by a Customs administration regarding the valuation
-- >               of goods.
-- >
-- >      ABB   End use authorization number
-- >               Reference issued by a Customs administration authorizing
-- >               a preferential rate of duty if a product is used for a
-- >               specified purpose, see: 1001 = 990.
-- >
-- >      ABC   Anti-dumping case number
-- >               Reference issued by a Customs administration pertaining
-- >               to a past or current investigation of goods "dumped" at
-- >               a price lower than the exporter's domestic market price.
-- >
-- >      ABD   Customs tariff number
-- >               [7282] Code number of the goods in accordance with the
-- >               tariff nomenclature system of classification in use
-- >               where the Customs declaration is made.
-- >
-- >      ABE   Declarant's reference number
-- >               Unique reference number assigned to a document or a
-- >               message by the declarant for identification purposes.
-- >
-- >      ABF   Repair estimate number
-- >               A number identifying a repair estimate.
-- >
-- >      ABG   Customs decision request number
-- >               Reference issued by Customs pertaining to a pending
-- >               tariff classification decision requested by an importer
-- >               or agent.
-- >
-- >      ABH   Sub-house bill of lading number
-- >               Reference assigned to a sub-house bill of lading.
-- >
-- >      ABI   Deferred payment reference
-- >               [1168] Reference or indication of the deferred payment
-- >               of duty/tax.
-- >
-- >      ABJ   Quota number
-- >               Reference number allocated by a government authority to
-- >               identify a quota.
-- >
-- >      ABK   Transit (onward carriage) guarantee (bond) number
-- >               Reference number to identify the guarantee or security
-- >               provided for Customs transit operation (CCC).
-- >
-- >      ABL   Customs guarantee number
-- >               Reference assigned to a Customs guarantee.
-- >
-- >      ABM   Replacing part number
-- >               New part number which replaces the existing part number.
-- >
-- >      ABN   Seller's catalogue number
-- >               Identification number assigned to a seller's catalogue.
-- >
-- >      ABO   Originator's reference
-- >               A unique reference assigned by the originator.
-- >
-- >      ABP   Declarant's Customs identity number
-- >               Reference to the party whose posted bond or security is
-- >               being declared in order to accept responsibility for a
-- >               goods declaration and the applicable duties and taxes.
-- >
-- >      ABQ   Importer reference number
-- >               Reference number assigned by the importer to identify a
-- >               particular shipment for his own purposes.
-- >
-- >      ABR   Export clearance instruction reference number
-- >               Reference number of the clearance instructions given by
-- >               the consignor through different means.
-- >
-- >      ABS   Import clearance instruction reference number
-- >               Reference number of the import clearance instructions
-- >               given by the consignor/consignee through different
-- >               means.
-- >
-- >      ABT   Customs declaration number
-- >               [1426] Number, assigned or accepted by Customs, to
-- >               identify a Goods declaration.
-- >
-- >      ABU   Article number
-- >               A number that identifies an article.
-- >
-- >      ABV   Intra-plant routing
-- >               To define routing within a plant.
-- >
-- >      ABW   Stock keeping unit number
-- >               A number that identifies the stock keeping unit.
-- >
-- >      ABX   Text Element Identifier deletion reference
-- >               The reference used within a given TEI (Text Element
-- >               Identifier) which is to be deleted.
-- >
-- >      ABY   Allotment identification (Air)
-- >               Reference assigned to guarantied capacity on one or more
-- >               specific flights on specific date(s) to third parties as
-- >               agents and other airlines.
-- >
-- >      ABZ   Vehicle licence number
-- >               Number of the licence issued for a vehicle by an agency
-- >               of government.
-- >
-- >      AC    Air cargo transfer manifest
-- >               A number assigned to an air cargo list of goods to be
-- >               transferred.
-- >
-- >      ACA   Cargo acceptance order reference number
-- >               Reference assigned to the cargo acceptance order.
-- >
-- >      ACB   US government agency number
-- >               A number that identifies a United States Government
-- >               agency.
-- >
-- >      ACC   Shipping unit identification
-- >               Identifying marks on the outermost unit that is used to
-- >               transport merchandise.
-- >
-- >      ACD   Additional reference number
-- >               Reference number provided in addition to another given
-- >               reference.
-- >
-- >      ACE   Related document number
-- >               Reference number identifying a related document.
-- >
-- >      ACF   Addressee reference
-- >               A reference number of an addressee.
-- >
-- >      ACG   ATA carnet number
-- >               Reference number assigned to an ATA carnet.
-- >
-- >      ACH   Packaging unit identification
-- >               Identifying marks on packing units.
-- >
-- >      ACI   Outerpackaging unit identification
-- >               (7070) Identifying marks on packing units contained
-- >               within an outermost shipping unit.
-- >
-- >      ACJ   Customer material specification number
-- >               Number for a material specification given by customer.
-- >
-- >      ACK   Bank reference
-- >               Cross reference issued by financial institution.
-- >
-- >      ACL   Principal reference number
-- >               A number that identifies the principal reference.
-- >
-- >      ACM   Unique REINAC reference number of the sender
-- >               Description to be provided.
-- >
-- >      ACN   Advice of collection number
-- >               [1030] Number of the Advice of Collection attached to
-- >               the Rail Consignment Note (CIM 75).
-- >
-- >      ACO   Iron charge number
-- >               Number attributed to the iron charge for the production
-- >               of steel products.
-- >
-- >      ACP   Hot roll number
-- >               Number attributed to a hot roll coil.
-- >
-- >      ACQ   Cold roll number
-- >               Number attributed to a cold roll coil.
-- >
-- >      ACR   Railway wagon number
-- >               (8320) Registered identification initials and numbers of
-- >               railway wagon. Synonym: Rail car number.
-- >
-- >      ACS   Unique CURRAC reference number of the sender
-- >               Description to be provided.
-- >
-- >      ACT   Unique claims reference number of the sender
-- >               A number that identifies the unique claims reference of
-- >               the sender.
-- >
-- >      ACU   Loss/event number
-- >               To reference to the unique number that is assigned to
-- >               each major loss hitting the reinsurance industry.
-- >
-- >      ACV   Estimate order reference number
-- >               Reference number assigned by the ordering party of the
-- >               estimate order.
-- >
-- >      ACW   Reference number to previous message
-- >               Reference number assigned to the message which was
-- >               previously issued (e.g. in the case of a cancellation,
-- >               the primary reference of the message to be cancelled
-- >               will be quoted in this element).
-- >
-- >      ACX   Banker's acceptance
-- >               Reference number for banker's acceptance issued by the
-- >               accepting financial institution.
-- >
-- >      ACY   Duty memo number
-- >               Reference number assigned by customs to a duty memo.
-- >
-- >      ACZ   Equipment transport charge number
-- >               Reference assigned to a specific equipment
-- >               transportation charge.
-- >
-- >      ADA   Buyer's item number
-- >               Reference number assigned by the buyer to an item.
-- >
-- >      ADB   Matured certificate of deposit
-- >               Reference number for certificate of deposit allocated by
-- >               issuing financial institution.
-- >
-- >      ADC   Loan
-- >               Reference number for loan allocated by lending financial
-- >               institution.
-- >
-- >      ADD   Analysis number/test number
-- >               Number given to a specific analysis or test operation.
-- >
-- >      ADE   Account number
-- >               Identification number of an account.
-- >
-- >      ADF   Treaty number
-- >               A number that identifies a treaty.
-- >
-- >      ADG   Catastrophe number
-- >               A number that identifies a catastrophe.
-- >
-- >      ADH   PCS Catastrophe
-- >               Description to be provided.
-- >
-- >      ADI   Bureau signing (statement reference)
-- >               A statement reference that identifies a bureau signing.
-- >
-- >      ADJ   Company / syndicate reference 1
-- >               First reference of a company/syndicate.
-- >
-- >      ADK   Company / syndicate reference 2
-- >               Second reference of a company/syndicate.
-- >
-- >      ADL   Ordering customer consignment reference number
-- >               Reference number assigned to the consignment by the
-- >               ordering customer.
-- >
-- >      ADM   Shipowner's authorization number
-- >               Reference number assigned by the shipowner as an
-- >               authorization number to transport certain goods (such as
-- >               hazardous goods, cool or reefer goods).
-- >
-- >      ADN   Inland transport order number
-- >               Reference number assigned by the principal to the
-- >               transport order for inland carriage.
-- >
-- >      ADO   Container work order reference number
-- >               Reference number assigned by the principal to the work
-- >               order for a (set of) container(s).
-- >
-- >      ADP   Statement number
-- >               A reference number identifying a statement.
-- >
-- >      ADQ   Unique market reference
-- >               A number that identifies a unique market.
-- >
-- >      ADR   Bureau signing (original FDO reference)
-- >               Description to be provided.
-- >
-- >      ADS   Original FDO transaction reference
-- >               Description to be provided.
-- >
-- >      ADT   Group accounting
-- >               Description to be provided.
-- >
-- >      ADU   Broker reference 1
-- >               First reference of a broker.
-- >
-- >      ADV   Broker reference 2
-- >               Second reference of a broker.
-- >
-- >      ADW   Lloyd's claims office reference
-- >               A number that identifies a Lloyd's claims office.
-- >
-- >      ADX   Secure delivery terms and conditions agreement reference
-- >               A reference to a secure delivery terms and conditions
-- >               agreement. A secured delivery agreement is an agreement
-- >               containing terms and conditions to secure deliveries in
-- >               case of failure in the production or logistics process
-- >               of the supplier.
-- >
-- >      ADY   Report number
-- >               Reference to a report to Customs by a carrier at the
-- >               point of entry, encompassing both conveyance and
-- >               consignment information.
-- >
-- >      ADZ   Trader account number
-- >               Number assigned by a Customs authority which uniquely
-- >               identifies a trader (i.e. importer, exporter or
-- >               declarant) for Customs purposes.
-- >
-- >      AE    Authorization for expense (AFE) number
-- >               A number that identifies an authorization for expense
-- >               (AFE).
-- >
-- >      AEA   Government agency reference number
-- >               Coded reference number that pertains to the business of
-- >               a government agency.
-- >
-- >      AEB   Assembly number
-- >               A number that identifies an assembly.
-- >
-- >      AEC   Symbol number
-- >               A number that identifies a symbol.
-- >
-- >      AED   Commodity number
-- >               A number that identifies a commodity.
-- >
-- >      AEE   Eur 1 certificate number
-- >               Reference number assigned to a Eur 1 certificate.
-- >
-- >      AEF   Customer process specification number
-- >               Retrieval number for a process specification defined by
-- >               customer.
-- >
-- >      AEG   Customer specification number
-- >               Retrieval number for a specification defined by
-- >               customer.
-- >
-- >      AEH   Applicable instructions or standards
-- >               Instructions or standards applicable for the whole
-- >               message or a message line item. These instructions or
-- >               standards may be published by a neutral organization or
-- >               authority or another party concerned.
-- >
-- >      AEI   Registration number of previous Customs declaration
-- >               Registration number of the Customs declaration lodged
-- >               for the previous Customs procedure.
-- >
-- >      AEJ   Post-entry reference
-- >               Reference to a message related to a post-entry.
-- >
-- >      AEK   Payment order number
-- >               A number that identifies a payment order.
-- >
-- >      AEL   Delivery number (transport)
-- >               Reference number by which a haulier/carrier will
-- >               announce himself at the container terminal or depot when
-- >               delivering equipment.
-- >
-- >      AEM   Transport route
-- >               A predefined and identified sequence of points where
-- >               goods are collected, agreed between partners, e.g. the
-- >               party in charge of organizing the transport and the
-- >               parties where goods will be collected. The same
-- >               collecting points may be included in different transport
-- >               routes, but in a different sequence.
-- >
-- >      AEN   Customer's unit inventory number
-- >               Number assigned by customer to a unique unit for
-- >               inventory purposes.
-- >
-- >      AEO   Product reservation number
-- >               Number assigned by seller to identify reservation of
-- >               specified products.
-- >
-- >      AEP   Project number
-- >               Reference number assigned to a project.
-- >
-- >      AEQ   Drawing list number
-- >               Reference number identifying a drawing list.
-- >
-- >      AER   Project specification number
-- >               Reference number identifying a project specification.
-- >
-- >      AES   Primary reference
-- >               A number that identifies the primary reference.
-- >
-- >      AET   Request for cancellation number
-- >               A number that identifies a request for cancellation.
-- >
-- >      AEU   Supplier's control number
-- >               Reference to a file regarding a control of the supplier
-- >               carried out on departure of the goods.
-- >
-- >      AEV   Shipping note number
-- >               Reference number assigned to a shipping note, see: 1001
-- >               = 630.
-- >
-- >      AEW   Empty container bill number
-- >               Reference number assigned to an empty container bill,
-- >               see: 1001 = 708.
-- >
-- >      AEX   Non-negotiable maritime transport document number
-- >               Reference number assigned to a sea waybill, see: 1001 =
-- >               712.
-- >
-- >      AEY   Substitute air waybill number
-- >               Reference number assigned to a substitute air waybill,
-- >               see: 1001 = 743.
-- >
-- >      AEZ   Despatch note (post parcels) number
-- >               (1128) Reference number assigned to a despatch note
-- >               (post parcels), see: 1001 = 750.
-- >
-- >      AF    Airlines flight identification number
-- >               (8110) Identification of a commercial flight by carrier
-- >               code and number as assigned by the airline (IATA).
-- >
-- >      AFA   Through bill of lading number
-- >               Reference number assigned to a through bill of lading,
-- >               see: 1001 = 761.
-- >
-- >      AFB   Cargo manifest number
-- >               Reference number assigned to a cargo manifest, see: 1001
-- >               = 785.
-- >
-- >      AFC   Bordereau number
-- >               Reference number assigned to a bordereau, see: 1001 =
-- >               787.
-- >
-- >      AFD   Customs item number
-- >               Number (1496 in CST) assigned by the declarant to an
-- >               item.
-- >
-- >      AFE   Export Control Commodity number (ECCN)
-- >               Reference number to relevant item within Commodity
-- >               Control List covering actual products change
-- >               functionality.
-- >
-- >      AFF   Marking/label reference
-- >               Reference where marking/label information derives from.
-- >
-- >      AFG   Tariff number
-- >               A number that identifies a tariff.
-- >
-- >      AFH   Replenishment purchase order number
-- >               Purchase order number specified by the buyer for the
-- >               assignment to vendor's replenishment orders in a vendor
-- >               managed inventory program.
-- >
-- >      AFI   Immediate transportation no. for in bond movement
-- >               A number that identifies immediate transportation for in
-- >               bond movement.
-- >
-- >      AFJ   Transportation exportation no. for in bond movement
-- >               A number that identifies the transportation exportation
-- >               number for an in bond movement.
-- >
-- >      AFK   Immediate exportation no. for in bond movement
-- >               A number that identifies the immediate exportation
-- >               number for an in bond movement.
-- >
-- >      AFL   Associated invoices
-- >               A number that identifies associated invoices.
-- >
-- >      AFM   Secondary Customs reference
-- >               A number that identifies the secondary customs
-- >               reference.
-- >
-- >      AFN   Account party's reference
-- >               Reference of the account party.
-- >
-- >      AFO   Beneficiary's reference
-- >               Reference of the beneficiary.
-- >
-- >      AFP   Second beneficiary's reference
-- >               Reference of the second beneficiary.
-- >
-- >      AFQ   Applicant's bank reference
-- >               Reference number of the applicant's bank.
-- >
-- >      AFR   Issuing bank's reference
-- >               Reference number of the issuing bank.
-- >
-- >      AFS   Beneficiary's bank reference
-- >               Reference number of the beneficiary's bank.
-- >
-- >      AFT   Direct payment valuation number
-- >               Reference number assigned to a direct payment valuation.
-- >
-- >      AFU   Direct payment valuation request number
-- >               Reference number assigned to a direct payment valuation
-- >               request.
-- >
-- >      AFV   Quantity valuation number
-- >               Reference number assigned to a quantity valuation.
-- >
-- >      AFW   Quantity valuation request number
-- >               Reference number assigned to a quantity valuation
-- >               request.
-- >
-- >      AFX   Bill of quantities number
-- >               Reference number assigned to a bill of quantities.
-- >
-- >      AFY   Payment valuation number
-- >               Reference number assigned to a payment valuation.
-- >
-- >      AFZ   Situation number
-- >               Common reference number given to documents concerning a
-- >               determined period of works.
-- >
-- >      AGA   Agreement to pay number
-- >               A number that identifies an agreement to pay.
-- >
-- >      AGB   Contract party reference number
-- >               Reference number assigned to a party for a particular
-- >               contract.
-- >
-- >      AGC   Account party's bank reference
-- >               Reference number of the account party's bank.
-- >
-- >      AGD   Agent's bank reference
-- >               Reference number issued by the agent's bank.
-- >
-- >      AGE   Agent's reference
-- >               Reference number of the agent.
-- >
-- >      AGF   Applicant's reference
-- >               Reference number of the applicant.
-- >
-- >      AGG   Dispute number
-- >               Reference number to a dispute notice.
-- >
-- >      AGH   Credit rating agency's reference number
-- >               Reference number assigned by a credit rating agency to a
-- >               debtor.
-- >
-- >      AGI   Request number
-- >               The reference number of a request.
-- >
-- >      AGJ   Single transaction sequence number
-- >               A number that identifies a single transaction sequence.
-- >
-- >      AGK   Application reference number
-- >               A number that identifies an application reference.
-- >
-- >      AGL   Delivery verification certificate
-- >               Formal identification of delivery verification
-- >               certificate which is a formal document from Customs etc.
-- >               confirming that physical goods have been delivered. It
-- >               may be needed to support a tax reclaim based on an
-- >               invoice.
-- >
-- >      AGM   Number of temporary importation document
-- >               Number assigned by customs to identify consignment in
-- >               transit.
-- >
-- >      AGN   Reference number quoted on statement
-- >               Reference number quoted on the statement sent to the
-- >               beneficiary for information purposes.
-- >
-- >      AGO   Sender's reference to the original message
-- >               The reference provided by the sender of the original
-- >               message.
-- >
-- >      AGP   Company issued equipment ID
-- >               Owner/operator, non-government issued equipment
-- >               reference number.
-- >
-- >      AGQ   Domestic flight number
-- >               Airline flight number assigned to a flight originating
-- >               and terminating within the same country.
-- >
-- >      AGR   International flight number
-- >               Airline flight number assigned to a flight originating
-- >               and terminating across national borders.
-- >
-- >      AGS   Employer identification number of service bureau
-- >               Reference number assigned by a service/processing bureau
-- >               to an employer.
-- >
-- >      AGT   Service group identification number
-- >               Identification used for a group of services.
-- >
-- >      AGU   Member number
-- >               Reference number assigned to a person as a member of a
-- >               group of persons or a service scheme.
-- >
-- >      AGV   Previous member number
-- >               Reference number previously assigned to a member.
-- >
-- >      AGW   Scheme/plan number
-- >               Reference number assigned to a service scheme or plan.
-- >
-- >      AGX   Previous scheme/plan number
-- >               Reference number previously assigned to a service scheme
-- >               or plan.
-- >
-- >      AGY   Receiving party's member identification
-- >               Identification used by the receiving party for a member
-- >               of a service scheme or group of persons.
-- >
-- >      AGZ   Payroll number
-- >               Reference number assigned to the payroll of an
-- >               organisation.
-- >
-- >      AHA   Packaging specification number
-- >               Reference number of documentation specifying the
-- >               technical detail of packaging requirements.
-- >
-- >      AHB   Authority issued equipment identification
-- >               Identification issued by an authority, e.g. government,
-- >               airport authority.
-- >
-- >      AHC   Training flight number
-- >               Non-revenue producing airline flight for training
-- >               purposes.
-- >
-- >      AHD   Fund code number
-- >               Reference number to identify appropriation and branch
-- >               chargeable for item.
-- >
-- >      AHE   Signal code number
-- >               Reference number to identify a signal.
-- >
-- >      AHF   Major force program number
-- >               Reference number according to Major Force Program (US).
-- >
-- >      AHG   Nomination number
-- >               Reference number assigned by a shipper to a request/
-- >               commitment-to-ship on a pipeline system.
-- >
-- >      AHH   Laboratory registration number
-- >               Reference number is the official registration number of
-- >               the laboratory.
-- >
-- >      AHI   Transport contract reference number
-- >               Reference number of a transport contract.
-- >
-- >      AHJ   Payee's reference number
-- >               Reference number of the party to be paid.
-- >
-- >      AHK   Payer's reference number
-- >               Reference number of the party who pays.
-- >
-- >      AHL   Creditor's reference number
-- >               Reference number of the party to whom a debt is owed.
-- >
-- >      AHM   Debtor's reference number
-- >               Reference number of the party who owes an amount of
-- >               money.
-- >
-- >      AHN   Joint venture reference number
-- >               Reference number assigned to a joint venture agreement.
-- >
-- >      AHO   Chamber of Commerce registration number
-- >               The registration number by which a company/organization
-- >               is known to the Chamber of Commerce.
-- >
-- >      AHP   Tax registration number
-- >               The registration number by which a company/organization
-- >               is identified with the tax administration.
-- >
-- >      AHQ   Wool identification number
-- >               Shipping Identification Mark (SIM) allocated to a wool
-- >               consignment by a shipping company.
-- >
-- >      AHR   Wool tax reference number
-- >               Reference or indication of the payment of wool tax.
-- >
-- >      AHS   Meat processing establishment registration number
-- >               Registration number allocated to a registered meat
-- >               packing establishment by the local quarantine and
-- >               inspection authority.
-- >
-- >      AHT   Quarantine/treatment status reference number
-- >               Coded quarantine/treatment status of a container and its
-- >               cargo and packing materials, generated by a shipping
-- >               company based upon declarations presented by a shipper.
-- >
-- >      AHU   Request for quote number
-- >               Reference number assigned by the requestor to a request
-- >               for quote.
-- >
-- >      AHV   Manual processing authority number
-- >               Number allocated to allow the manual processing of an
-- >               entity.
-- >
-- >      AHW   Import permit number
-- >               Reference number assigned by the issuing authority to an
-- >               import permit for goods.
-- >
-- >      AHX   Rate note number
-- >               Reference assigned to a specific rate.
-- >
-- >      AHY   Freight Forwarder number
-- >               An identification code of a Freight Forwarder.
-- >
-- >      AHZ   Customs release code
-- >               A code associated to a requirement that must be
-- >               presented to gain the release of goods by Customs.
-- >
-- >      AIA   Compliance code number
-- >               Number assigned to indicate regulatory compliance.
-- >
-- >      AIB   Department of transportation bond number
-- >               Number of a bond assigned by the department of
-- >               transportation.
-- >
-- >      AIC   Export establishment number
-- >               Number to identify export establishment.
-- >
-- >      AID   Certificate of conformity
-- >               Certificate certifying the conformity to predefined
-- >               definitions.
-- >
-- >      AIE   Ministerial certificate of homologation
-- >               Certificate of approval for components which are subject
-- >               to legal restrictions and must be approved by the
-- >               government.
-- >
-- >      AIF   Previous delivery instruction number
-- >               The identification of a previous delivery instruction.
-- >
-- >      AIG   Passport number
-- >               Number assigned to a passport.
-- >
-- >      AIH   Common transaction reference number
-- >               Reference number applicable to different underlying
-- >               individual transactions.
-- >
-- >      AII   Bank's common transaction reference number
-- >               Bank's reference number allocated by the bank to
-- >               different underlying individual transactions.
-- >
-- >      AIJ   Customer's individual transaction reference number
-- >               Customer's reference number allocated by the customer to
-- >               one specific transaction.
-- >
-- >      AIK   Bank's individual transaction reference number
-- >               Bank's reference number allocated by the bank to one
-- >               specific transaction.
-- >
-- >      AIL   Customer's common transaction reference number
-- >               Customer's reference number allocated by the customer to
-- >               different underlying individual transactions.
-- >
-- >      AIM   Individual transaction reference number
-- >               Reference number applying to one specific transaction.
-- >
-- >      AIN   Product sourcing agreement number
-- >               Reference number assigned to a product sourcing
-- >               agreement.
-- >
-- >      AIO   Customs transhipment number
-- >               Approval number issued by Customs for cargo to be
-- >               transhipped under Customs control.
-- >
-- >      AIP   Customs preference inquiry number
-- >               The number assigned by Customs to a preference inquiry.
-- >
-- >      AIQ   Packing plant number
-- >               Number to identify packing establishment.
-- >
-- >      AIR   Original certificate number
-- >               Number giving reference to an original certificate
-- >               number.
-- >
-- >      AIS   Processing plant number
-- >               Number to identify processing plant.
-- >
-- >      AIT   Slaughter plant number
-- >               Number to identify slaughter plant.
-- >
-- >      AIU   Charge card account number
-- >               Number to identify charge card account.
-- >
-- >      AIV   Event reference number
-- >               A number identifying an event.
-- >
-- >      AIW   Transport section reference number
-- >               A number identifying a transport section.
-- >
-- >      AIX   Referred product for mechanical analysis
-- >               A product number identifying the product which is used
-- >               for mechanical analysis considered valid for a group of
-- >               products.
-- >
-- >      AIY   Referred product for chemical analysis
-- >               A product number identifying the product which is used
-- >               for chemical analysis considered valid for a group of
-- >               products.
-- >
-- >      AIZ   Consolidated invoice number
-- >               Invoice number into which other invoices are
-- >               consolidated.
-- >
-- >      AJA   Part reference indicator in a drawing
-- >               To designate the number which provides a cross reference
-- >               between parts contained in a drawing and a parts
-- >               catalogue.
-- >
-- >      AJB   U.S. Code of Federal Regulations (CFR)
-- >               A reference indicating a citation from the U.S. Code of
-- >               Federal Regulations (CFR).
-- >
-- >      AJC   Purchasing activity clause number
-- >               A number indicating a clause applicable to a purchasing
-- >               activity.
-- >
-- >      AJD   U.S. Defense Federal Acquisition Regulation Supplement
-- >               A reference indicating a citation from the U.S. Defense
-- >               Federal Acquisition Regulation Supplement.
-- >
-- >      AJE   Agency clause number
-- >               A number indicating a clause applicable to a particular
-- >               agency.
-- >
-- >      AJF   Circular publication number
-- >               A number specifying a circular publication.
-- >
-- >      AJG   U.S. Federal Acquisition Regulation
-- >               A reference indicating a citation from the U.S. Federal
-- >               Acquisition Regulation.
-- >
-- >      AJH   U.S. General Services Administration Regulation
-- >               A reference indicating a citation from U.S. General
-- >               Services Administration Regulation.
-- >
-- >      AJI   U.S. Federal Information Resources Management Regulation
-- >               A reference indicating a citation from U.S. Federal
-- >               Information Resources Management Regulation.
-- >
-- >      AJJ   Paragraph
-- >               A reference indicating a paragraph cited as the source
-- >               of information.
-- >
-- >      AJK   Special instructions number
-- >               A number indicating a citation used for special
-- >               instructions.
-- >
-- >      AJL   Site specific procedures, terms, and conditions number
-- >               A number indicating a set of site specific procedures,
-- >               terms and conditions.
-- >
-- >      AJM   Master solicitation procedures, terms, and conditions
-- >            number
-- >               A number indicating a master solicitation containing
-- >               procedures, terms and conditions.
-- >
-- >      AJN   U.S. Department of Veterans Affairs Acquisition Regulation
-- >               A reference indicating a citation from the U.S.
-- >               Department of Veterans Affairs Acquisition Regulation.
-- >
-- >      AJO   Military Interdepartmental Purchase Request (MIPR) number
-- >               A number indicating an interdepartmental purchase
-- >               request used by the military.
-- >
-- >      AJP   Foreign military sales number
-- >               A number specifying a sale to a foreign military.
-- >
-- >      AJQ   Defense priorities allocation system priority rating
-- >               A reference indicating a priority rating assigned to
-- >               allocate resources for defense purchases.
-- >
-- >      AJR   Wage determination number
-- >               A number specifying a wage determination.
-- >
-- >      AJS   Agreement number
-- >               A number specifying an agreement between parties.
-- >
-- >      AJT   Standard Industry Classification (SIC) number
-- >               A number specifying a standard industry classification.
-- >
-- >      AJU   End item number
-- >               A number specifying the end item applicable to a
-- >               subordinate item.
-- >
-- >      AJV   Federal supply schedule item number
-- >               A number specifying an item listed in a federal supply
-- >               schedule.
-- >
-- >      AJW   Technical document number
-- >               A number specifying a technical document.
-- >
-- >      AJX   Technical order number
-- >               A reference to an order that specifies a technical
-- >               change.
-- >
-- >      AJY   Suffix
-- >               A reference to specify a suffix added to the end of a
-- >               basic identifier.
-- >
-- >      AJZ   Transportation account number
-- >               An account number to be charged or credited for
-- >               transportation.
-- >
-- >      AKA   Container disposition order reference number
-- >               Reference assigned to the empty container disposition
-- >               order.
-- >
-- >      AKB   Container prefix
-- >               The first part of the unique identification of a
-- >               container formed by an alpha code identifying the owner
-- >               of the container.
-- >
-- >      AKC   Transport equipment return reference
-- >               Reference known at the address to return equipment to.
-- >
-- >      AKD   Transport equipment survey reference
-- >               Reference number assigned by the ordering party to the
-- >               transport equipment survey order.
-- >
-- >      AKE   Transport equipment survey report number
-- >               Reference number used by a party to identify its
-- >               transport equipment survey report.
-- >
-- >      AKF   Transport equipment stuffing order
-- >               Reference number assigned to the order to stuff goods in
-- >               transport equipment.
-- >
-- >      AKG   Vehicle Identification Number (VIN)
-- >               The identification number which uniquely distinguishes
-- >               one vehicle from another through the lifespan of the
-- >               vehicle.
-- >
-- >      AKH   Government bill of lading
-- >               Bill of lading as defined by the government.
-- >
-- >      AKI   Ordering customer's second reference number
-- >               Ordering customer's second reference number.
-- >
-- >      AKJ   Direct debit reference
-- >               Reference number assigned to the direct debit operation.
-- >
-- >      AKK   Meter reading at the beginning of the delivery
-- >               Meter reading at the beginning of the delivery.
-- >
-- >      AKL   Meter reading at the end of delivery
-- >               Meter reading at the end of the delivery.
-- >
-- >      AKM   Replenishment purchase order range start number
-- >               Starting number of a range of purchase order numbers
-- >               assigned by the buyer to vendor's replenishment orders.
-- >
-- >      AKN   Third bank's reference
-- >               Reference number of the third bank.
-- >
-- >      AKO   Action authorization number
-- >               A reference number authorizing an action.
-- >
-- >      AKP   Appropriation number
-- >               The number identifying a type of funding for a specific
-- >               purpose (appropriation).
-- >
-- >      AKQ   Product change authority number
-- >               Number which authorises a change in form, fit or
-- >               function of a product.
-- >
-- >      AKR   General cargo consignment reference number
-- >               Reference number identifying a particular general cargo
-- >               (non-containerised or break bulk) consignment.
-- >
-- >      AKS   Catalogue sequence number
-- >               A number which uniquely identifies an item within a
-- >               catalogue according to a standard numbering system.
-- >
-- >      AKT   Forwarding order number
-- >               Reference number assigned to the forwarding order by the
-- >               ordering customer.
-- >
-- >      AKU   Transport equipment survey reference number
-- >               Reference number known at the address where the
-- >               transport equipment will be or has been surveyed.
-- >
-- >      AKV   Lease contract reference
-- >               Reference number of the lease contract.
-- >
-- >      AKW   Transport costs reference number
-- >               Reference number of the transport costs.
-- >
-- >      AKX   Transport equipment stripping order
-- >               Reference number assigned to the order to strip goods
-- >               from transport equipment.
-- >
-- >      AKY   Prior policy number
-- >               The number of the prior policy.
-- >
-- >      AKZ   Policy number
-- >               Number assigned to a policy.
-- >
-- >      ALA   Procurement budget number
-- >               A number which uniquely identifies a procurement budget
-- >               against which commitments or invoices can be allocated.
-- >
-- >      ALB   Domestic inventory management code
-- >               Code to identify the management of domestic inventory.
-- >
-- >      ALC   Customer reference number assigned to previous balance of
-- >            payment information
-- >               Identification number of the previous balance of
-- >               payments information from customer message.
-- >
-- >      ALD   Previous credit advice reference number
-- >               Reference number of the previous "Credit advice"
-- >               message.
-- >
-- >      ALE   Reporting form number
-- >               Reference number assigned to the reporting form.
-- >
-- >      ALF   Authorization number for exception to dangerous goods
-- >            regulations
-- >               Reference number allocated by an authority. This number
-- >               contains an approval concerning exceptions on the
-- >               existing dangerous goods regulations.
-- >
-- >      ALG   Dangerous goods security number
-- >               Reference number allocated by an authority in order to
-- >               control the dangerous goods on board of a specific means
-- >               of transport for dangerous goods security purposes.
-- >
-- >      ALH   Dangerous goods transport licence number
-- >               Licence number allocated by an authority as to the
-- >               permission of carrying dangerous goods by a specific
-- >               means of transport.
-- >
-- >      ALI   Previous rental agreement number
-- >               Number to identify the previous rental agreement number.
-- >
-- >      ALJ   Next rental agreement reason number
-- >               Number to identify the reason for the next rental
-- >               agreement.
-- >
-- >      ALK   Consignee's invoice number
-- >               The invoice number assigned by a consignee.
-- >
-- >      ALL   Message batch number
-- >               A number identifying a batch of messages.
-- >
-- >      ALM   Previous delivery schedule number
-- >               A reference number identifying a previous delivery
-- >               schedule.
-- >
-- >      ALN   Physical inventory recount reference number
-- >               A reference to a re-count of physically held inventory.
-- >
-- >      ALO   Receiving advice number
-- >               A reference number to a receiving advice.
-- >
-- >      ALP   Returnable container reference number
-- >               A reference number identifying a returnable container.
-- >
-- >      ALQ   Returns notice number
-- >               A reference number to a returns notice.
-- >
-- >      ALR   Sales forecast number
-- >               A reference number identifying a sales forecast.
-- >
-- >      ALS   Sales report number
-- >               A reference number identifying a sales report.
-- >
-- >      ALT   Previous tax control number
-- >               A reference number identifying a previous tax control
-- >               number.
-- >
-- >      ALU   AGERD (Aerospace Ground Equipment Requirement Data) number
-- >               Identifies the equipment required to conduct
-- >               maintenance.
-- >
-- >      ALV   Registered capital reference
-- >               Registered capital reference of a company.
-- >
-- >      ALW   Standard number of inspection document
-- >               Code identifying the standard number of the inspection
-- >               document supplied.
-- >
-- >      ALX   Model
-- >               A reference used to identify a model.
-- >
-- >      ALY   Financial management reference
-- >               A financial management reference.
-- >
-- >      ALZ   NOTIfication for COLlection number (NOTICOL)
-- >               A reference assigned by a consignor to a notification
-- >               document which indicates the availability of goods for
-- >               collection.
-- >
-- >      AMA   Previous request for metered reading reference number
-- >               Number to identify a previous request for a recording or
-- >               reading of a measuring device.
-- >
-- >      AMB   Next rental agreement number
-- >               Number to identify the next rental agreement.
-- >
-- >      AMC   Reference number of a request for metered reading
-- >               Number to identify a request for a recording or reading
-- >               of a measuring device to be taken.
-- >
-- >      AMD   Hastening number
-- >               A number which uniquely identifies a request to hasten
-- >               an action.
-- >
-- >      AME   Repair data request number
-- >               A number which uniquely identifies a request for data
-- >               about repairs.
-- >
-- >      AMF   Consumption data request number
-- >               A number which identifies a request for consumption
-- >               data.
-- >
-- >      AMG   Profile number
-- >               Reference number allocated to a discrete set of
-- >               criteria.
-- >
-- >      AMH   Case number
-- >               Number assigned to a case.
-- >
-- >      AMI   Government quality assurance and control level Number
-- >               A number which identifies the level of quality assurance
-- >               and control required by the government for an article.
-- >
-- >      AMJ   Payment plan reference
-- >               A number which uniquely identifies a payment plan.
-- >
-- >      AMK   Replaced meter unit number
-- >               Number identifying the replaced meter unit.
-- >
-- >      AML   Replenishment purchase order range end number
-- >               Ending number of a range of purchase order numbers
-- >               assigned by the buyer to vendor's replenishment orders.
-- >
-- >      AMM   Insurer assigned reference number
-- >               A unique reference number assigned by the insurer.
-- >
-- >      AMN   Canadian excise entry number
-- >               An excise entry number assigned by the Canadian Customs.
-- >
-- >      AMO   Premium rate table
-- >               Identifies the premium rate table.
-- >
-- >      AMP   Advise through bank's reference
-- >               Financial institution through which the advising bank is
-- >               to advise the documentary credit.
-- >
-- >      AMQ   US, Department of Transportation bond surety code
-- >               A bond surety code assigned by the United States
-- >               Department of Transportation (DOT).
-- >
-- >      AMR   US, Food and Drug Administration establishment indicator
-- >               An establishment indicator assigned by the United States
-- >               Food and Drug Administration.
-- >
-- >      AMS   US, Federal Communications Commission (FCC) import
-- >            condition number
-- >               A number known as the United States Federal
-- >               Communications Commission (FCC) import condition number
-- >               applying to certain types of regulated communications
-- >               equipment.
-- >
-- >      AMT   Goods and Services Tax identification number
-- >               An identification number assigned to an organization
-- >               collecting Goods and Services Taxes (GST).
-- >
-- >      AMU   Integrated logistic support cross reference number
-- >               Provides the identification of the reference which
-- >               allows cross referencing of items between different
-- >               areas of integrated logistics support.
-- >
-- >      AMV   Department number
-- >               Number assigned to a department within an organization.
-- >
-- >      AMW   Buyer's catalogue number
-- >               Identification of a catalogue maintained by a buyer.
-- >
-- >      AMX   Financial settlement party's reference number
-- >               Reference number of the party who is responsible for the
-- >               financial settlement.
-- >
-- >      AMY   Standard's version number
-- >               The version number assigned to a standard.
-- >
-- >      AMZ   Pipeline number
-- >               Number to identify a pipeline.
-- >
-- >      ANA   Account servicing bank's reference number
-- >               Reference number of the account servicing bank.
-- >
-- >      ANB   Completed units payment request reference
-- >               A reference to a payment request for completed units.
-- >
-- >      ANC   Payment in advance request reference
-- >               A reference to a request for payment in advance.
-- >
-- >      AND   Parent file
-- >               Identifies the parent file in a structure of related
-- >               files.
-- >
-- >      ANE   Sub file
-- >               Identifies the sub file in a structure of related files.
-- >
-- >      ANF   CAD file layer convention
-- >               Reference number identifying a layer convention for a
-- >               file in a Computer Aided Design (CAD) environment.
-- >
-- >      ANG   Technical regulation
-- >               Reference number identifying a technical regulation.
-- >
-- >      ANH   Plot file
-- >               Reference number indicating that the file is a plot
-- >               file.
-- >
-- >      ANI   File conversion journal
-- >               Reference number identifying a journal recording details
-- >               about conversion operations between file formats.
-- >
-- >      ANJ   Authorization number
-- >               A number which uniquely identifies an authorization.
-- >
-- >      ANK   Reference number assigned by third party
-- >               Reference number assigned by a third party.
-- >
-- >      ANL   Deposit reference number
-- >               A reference number identifying a deposit.
-- >
-- >      ANM   Named bank's reference
-- >               Reference number of the named bank.
-- >
-- >      ANN   Drawee's reference
-- >               Reference number of the drawee.
-- >
-- >      ANO   Case of need party's reference
-- >               Reference number of the case of need party.
-- >
-- >      ANP   Collecting bank's reference
-- >               Reference number of the collecting bank.
-- >
-- >      ANQ   Remitting bank's reference
-- >               Reference number of the remitting bank.
-- >
-- >      ANR   Principal's bank reference
-- >               Reference number of the principal's bank.
-- >
-- >      ANS   Presenting bank's reference
-- >               Reference number of the presenting bank.
-- >
-- >      ANT   Consignee's reference
-- >               Reference number of the consignee.
-- >
-- >      ANU   Financial transaction reference number
-- >               Reference number of the financial transaction.
-- >
-- >      ANV   Credit reference number
-- >               The reference number of a credit instruction.
-- >
-- >      ANW   Receiving bank's authorization number
-- >               Authorization number of the receiving bank.
-- >
-- >      ANX   Clearing reference
-- >               Reference allocated by a clearing procedure.
-- >
-- >      ANY   Sending bank's reference number
-- >               Reference number of the sending bank.
-- >
-- > X    ANZ   Direct debit reference
-- >               Reference of the direct debit.
-- >
-- >            Note:
-- >               1. This code value will be removed effective with
-- >               directory D.02A.
-- >
-- >      AOA   Documentary payment reference
-- >               Reference of the documentary payment.
-- >
-- > X    AOB   Third bank's reference
-- >               Reference assigned by a third bank.
-- >
-- >            Note:
-- >               1. This code value will be removed effective with
-- >               directory D.02A.
-- >
-- > X    AOC   Ordering customer's second reference number
-- >               The second reference number of the ordering customer.
-- >
-- >            Note:
-- >               1. This code value will be removed effective with
-- >               directory D.02A.
-- >
-- >      AOD   Accounting file reference
-- >               Reference of an accounting file.
-- >
-- >      AOE   Sender's file reference number
-- >               File reference number assigned by the sender.
-- >
-- >      AOF   Receiver's file reference number
-- >               File reference number assigned by the receiver.
-- >
-- >      AOG   Source document internal reference
-- >               Reference number assigned to a source document for
-- >               internal usage.
-- >
-- >      AOH   Principal's reference
-- >               Reference number of the principal.
-- >
-- >      AOI   Debit reference number
-- >               The reference number of a debit instruction.
-- >
-- >      AOJ   Calendar
-- >               A calendar reference number.
-- >
-- >      AOK   Work shift
-- >               A work shift reference number.
-- >
-- >      AOL   Work breakdown structure
-- >               A structure reference that identifies the breakdown of
-- >               work for a project.
-- >
-- >      AOM   Organisation breakdown structure
-- >               A structure reference that identifies the breakdown of
-- >               an organisation.
-- >
-- >      AON   Work task charge number
-- >               A reference assigned to a specific work task charge.
-- >
-- >      AOO   Functional work group
-- >               A reference to identify a functional group performing
-- >               work.
-- >
-- >      AOP   Work team
-- >               A reference to identify a team performing work.
-- >
-- >      AOQ   Department
-- >               Section of an organisation.
-- >
-- >      AOR   Statement of work
-- >               A reference number for a statement of work.
-- >
-- >      AOS   Work package
-- >               A reference for a detailed package of work.
-- >
-- >      AOT   Planning package
-- >               A reference for a planning package of work.
-- >
-- >      AOU   Cost account
-- >               A cost control account reference.
-- >
-- >      AOV   Work order
-- >               Reference number for an order to do work.
-- >
-- >      AOW   Transportation Control Number (TCN)
-- >               A number assigned for transportation purposes.
-- >
-- >      AOX   Constraint notation
-- >               Identifies a reference to a constraint notation.
-- >
-- >      AOY   ETERMS reference
-- >               Identifies a reference to the ICC (International Chamber
-- >               of Commerce) ETERMS(tm) repository of electronic
-- >               commerce trading terms and conditions.
-- >
-- >      AOZ   Implementation version number
-- >               Identifies a version number of an implementation.
-- >
-- >      AP    Accounts receivable number
-- >               Reference number assigned by accounts receivable
-- >               department to the account of a specific debtor.
-- >
-- >      APA   Incorporated legal reference
-- >               Identifies a legal reference which is deemed
-- >               incorporated by reference.
-- >
-- >      APB   Payment instalment reference number
-- >               A reference number given to a payment instalment to
-- >               identify a specific instance of payment of a debt which
-- >               can be paid at specified intervals.
-- >
-- >      APC   Equipment owner reference number
-- >               Reference number issued by the owner of the equipment.
-- >
-- >      APD   Cedent's claim number
-- >               To identify the number assigned to the claim by the
-- >               ceding company.
-- >
-- >      APE   Reinsurer's claim number
-- >               To identify the number assigned to the claim by the
-- >               reinsurer.
-- >
-- >      APF   Price/sales catalogue response reference number
-- >               A reference number identifying a response to a
-- >               price/sales catalogue.
-- >
-- >      APG   General purpose message reference number
-- >               A reference number identifying a general purpose
-- >               message.
-- >
-- >      APH   Invoicing data sheet reference number
-- >               A reference number identifying an invoicing data sheet.
-- >
-- >      API   Inventory report reference number
-- >               A reference number identifying an inventory report.
-- >
-- >      APJ   Ceiling formula reference number
-- >               The reference number which identifies a formula for
-- >               determining a ceiling.
-- >
-- >      APK   Price variation formula reference number
-- >               The reference number which identifies a price variation
-- >               formula.
-- >
-- >      APL   Reference to account servicing bank's message
-- >               Reference to the account servicing bank's message.
-- >
-- >      APM   Party sequence number
-- >               Reference identifying a party sequence number.
-- >
-- >      APN   Purchaser's request reference
-- >               Reference identifying a request made by the purchaser.
-- >
-- >      APO   Contractor request reference
-- >               Reference identifying a request made by a contractor.
-- >
-- >      APP   Accident reference number
-- >               Reference number assigned to an accident.
-- >
-- >      APQ   Commercial account summary reference number
-- >               A reference number identifying a commercial account
-- >               summary.
-- >
-- >      APR   Contract breakdown reference
-- >               A reference which identifies a specific breakdown of a
-- >               contract.
-- >
-- >      APS   Contractor registration number
-- >               A reference number used to identify a contractor.
-- >
-- >      APT   Applicable coefficient identification number
-- >               The identification number of the coefficient which is
-- >               applicable.
-- >
-- >      APU   Special budget account number
-- >               The number of a special budget account.
-- >
-- >      APV   Authorisation for repair reference
-- >               Reference of the authorisation for repair.
-- >
-- >      APW   Manufacturer defined repair rates reference
-- >               Reference assigned by a manufacturer to their repair
-- >               rates.
-- >
-- >      APX   Original submitter log number
-- >               A control number assigned by the original submitter.
-- >
-- >      APY   Original submitter, parent Data Maintenance Request (DMR)
-- >            log number
-- >               A Data Maintenance Request (DMR) original submitter's
-- >               reference log number for the parent DMR.
-- >
-- >      APZ   Original submitter, child Data Maintenance Request (DMR)
-- >            log number
-- >               A Data Maintenance Request (DMR) original submitter's
-- >               reference log number for a child DMR.
-- >
-- >      AQA   Entry point assessment log number
-- >               The reference log number assigned by an entry point
-- >               assessment group for the DMR.
-- >
-- >      AQB   Entry point assessment log number, parent DMR
-- >               The reference log number assigned by an entry point
-- >               assessment group for the parent Data Maintenance Request
-- >               (DMR).
-- >
-- >      AQC   Entry point assessment log number, child DMR
-- >               The reference log number assigned by an entry point
-- >               assessment group for a child Data Maintenance Request
-- >               (DMR).
-- >
-- >      AQD   Data structure tag
-- >               The tag assigned to a data structure.
-- >
-- >      AQE   Central secretariat log number
-- >               The reference log number assigned by the central
-- >               secretariat for the Data Maintenance Request (DMR).
-- >
-- >      AQF   Central secretariat log number, parent Data Maintenance
-- >            Request (DMR)
-- >               The reference log number assigned by the central
-- >               secretariat for the parent Data Maintenance Request
-- >               (DMR).
-- >
-- >      AQG   Central secretariat log number, child Data Maintenance
-- >            Request (DMR)
-- >               The reference log number assigned by the central
-- >               secretariat for the child Data Maintenance Request
-- >               (DMR).
-- >
-- >      AQH   International assessment log number
-- >               The reference log number assigned to a Data Maintenance
-- >               Request (DMR) changed in international assessment.
-- >
-- >      AQI   International assessment log number, parent Data
-- >            Maintenance Request (DMR)
-- >               The reference log number assigned to a Data Maintenance
-- >               Request (DMR) changed in international assessment that
-- >               is a parent to the current DMR.
-- >
-- >      AQJ   International assessment log number, child Data Maintenance
-- >            Request (DMR)
-- >               The reference log number assigned to a Data Maintenance
-- >               Request (DMR) changed in international assessment that
-- >               is a child to the current DMR.
-- >
-- >      AQK   Status report number
-- >               The reference number for a status report.
-- >
-- >      AQL   Message design group number
-- >               Reference number for a message design group.
-- >
-- >      AQM   US Customs Service (USCS) entry code
-- >               An entry number assigned by the United States (US)
-- >               customs service.
-- >
-- >      AQN   Beginning job sequence number
-- >               The number designating the beginning of the job
-- >               sequence.
-- >
-- >      AQO   Sender's clause number
-- >               The number that identifies the sender's clause.
-- >
-- >      AQP   Dun and Bradstreet Canada's 8 digit Standard Industrial
-- >            Classification (SIC) code
-- >               Dun and Bradstreet Canada's 8 digit Standard Industrial
-- >               Classification (SIC) code identifying activities of the
-- >               company.
-- >
-- >      AQQ   Activite Principale Exercee (APE) identifier
-- >               The French industry code for the main activity of a
-- >               company.
-- >
-- >      AQR   Dun and Bradstreet US 8 digit Standard Industrial
-- >            Classification (SIC) code
-- >               Dun and Bradstreet United States' 8 digit Standard
-- >               Industrial Classification (SIC) code identifying
-- >               activities of the company.
-- >
-- >      AQS   Nomenclature Activity Classification Economy (NACE)
-- >            identifier
-- >               A European industry classification code used to identify
-- >               the activity of a company.
-- >
-- >      AQT   Norme Activite Francaise (NAF) identifier
-- >               A French industry classification code assigned by the
-- >               French government to identify the activity of a company.
-- >
-- >      AQU   Registered contractor activity type
-- >               Reference number identifying the type of registered
-- >               contractor activity.
-- >
-- >      AQV   Statistic Bundes Amt (SBA) identifier
-- >               A German industry classification code issued by
-- >               Statistic Bundes Amt (SBA) to identify the activity of a
-- >               company.
-- >
-- >      AQW   State or province assigned entity identification
-- >               Reference number of an entity assigned by a state or
-- >               province.
-- >
-- >      AQX   Institute of Security and Future Market Development (ISFMD)
-- >            serial number
-- >               A number used to identify a public but not publicly
-- >               traded company.
-- >
-- >      AQY   File identification number
-- >               A number assigned to identify a file.
-- >
-- >      AQZ   Bankruptcy procedure number
-- >               A number identifying a bankruptcy procedure.
-- >
-- >      ARA   National government business identification number
-- >               A business identification number which is assigned by a
-- >               national government.
-- >
-- >      ARB   Prior Data Universal Number System (DUNS) number
-- >               A previously assigned Data Universal Number System
-- >               (DUNS) number.
-- >
-- >      ARC   Companies Registry Office (CRO) number
-- >               Identifies the reference number assigned by the
-- >               Companies Registry Office (CRO).
-- >
-- >      ARD   Costa Rican judicial number
-- >               A number assigned by the government to a business in
-- >               Costa Rica.
-- >
-- >      ARE   Numero de Identificacion Tributaria (NIT)
-- >               A number assigned by the government to a business in
-- >               some Latin American countries.
-- >
-- >      ARF   Patron number
-- >               A number assigned by the government to a business in
-- >               some Latin American countries. Note that "Patron" is a
-- >               Spanish word, it is not a person who gives financial or
-- >               other support.
-- >
-- >      ARG   Registro Informacion Fiscal (RIF) number
-- >               A number assigned by the government to a business in
-- >               some Latin American countries.
-- >
-- >      ARH   Registro Unico de Contribuyente (RUC) number
-- >               A number assigned by the government to a business in
-- >               some Latin American countries.
-- >
-- >      ARI   Tokyo SHOKO Research (TSR) business identifier
-- >               A number assigned to a business by TSR.
-- >
-- >      ARJ   Personal identity card number
-- >               An identity card number assigned to a person.
-- >
-- >      ARK   Systeme Informatique pour le Repertoire des ENtreprises
-- >            (SIREN) number
-- >               An identification number known as a SIREN assigned to a
-- >               business in France.
-- >
-- >      ARL   Systeme Informatique pour le Repertoire des ETablissements
-- >            (SIRET) number
-- >               An identification number known as a SIRET assigned to a
-- >               business location in France.
-- >
-- >      ARM   Publication issue number
-- >               A number assigned to identify a publication issue.
-- >
-- >      ARN   Original filing number
-- >               A number assigned to the original filing.
-- >
-- >      ARO   Page number
-- >               The number of a page.
-- >
-- >      ARP   Public filing registration number
-- >               A number assigned at the time of registration of a
-- >               public filing.
-- >
-- >      ARQ   Regiristo Federal de Contribuyentes
-- >               A federal tax identification number assigned by the
-- >               Mexican tax authority.
-- >
-- >      ARR   Social security number
-- >               An identification number assigned to an individual by
-- >               the social security administration.
-- >
-- >      ARS   Document volume number
-- >               The number of a document volume.
-- >
-- >      ART   Book number
-- >               A number assigned to identify a book.
-- >
-- >      ARU   Stock exchange company identifier
-- >               A reference assigned by the stock exchange to a company.
-- >
-- >      ARV   Imputation account
-- >               An account to which an amount is to be posted.
-- >
-- >      ARW   Financial phase reference
-- >               A reference which identifies a specific financial phase.
-- >
-- >      ARX   Technical phase reference
-- >               A reference which identifies a specific technical phase.
-- >
-- >      ARY   Prior contractor registration number
-- >               A previous reference number used to identify a
-- >               contractor.
-- >
-- >      ARZ   Stock adjustment number
-- >               A number identifying a stock adjustment.
-- >
-- >      ASA   Dispensation reference
-- >               A reference number assigned to an official exemption
-- >               from a law or obligation.
-- >
-- >      ASB   Investment reference number
-- >               A reference to a specific investment.
-- >
-- >      ASC   Assuming company
-- >               A number that identifies an assuming company.
-- >
-- >      ASD   Budget chapter
-- >               A reference to the chapter in a budget.
-- >
-- >      ASE   Duty free products security number
-- >               A security number allocated for duty free products.
-- >
-- >      ASF   Duty free products receipt authorisation number
-- >               Authorisation number allocated for the receipt of duty
-- >               free products.
-- >
-- >      ASG   Party information message reference
-- >               Reference identifying a party information message.
-- >
-- >      ASH   Formal statement reference
-- >               A reference to a formal statement.
-- >
-- >      ASI   Proof of delivery reference number
-- >               A reference number identifying a proof of delivery which
-- >               is generated by the goods recipient.
-- >
-- >      ASJ   Supplier's credit claim reference number
-- >               A reference number identifying a supplier's credit
-- >               claim.
-- >
-- >      ASK   Picture of actual product
-- >               Reference identifying the picture of an actual product.
-- >
-- >      ASL   Picture of a generic product
-- >               Reference identifying a picture of a generic product.
-- >
-- >      ASM   Trading partner identification number
-- >               Code specifying an identification assigned to an entity
-- >               with whom one conducts trade.
-- >
-- >      ASN   Prior trading partner identification number
-- >               Code specifying an identification number previously
-- >               assigned to a trading partner.
-- >
-- >      ASO   Password
-- >               Code used for authentication purposes.
-- >
-- >      ASP   Formal report number
-- >               A number uniquely identifying a formal report.
-- >
-- >      ASQ   Fund account number
-- >               Account number of fund.
-- >
-- >      ASR   Safe custody number
-- >               The number of a file or portfolio kept for safe custody
-- >               on behalf of clients.
-- >
-- >      ASS   Master account number
-- >               A reference number identifying a master account.
-- >
-- >      AST   Group reference number
-- >               The reference number identifying a group.
-- >
-- >      ASU   Accounting transmission number
-- >               A number used to identify the transmission of an
-- >               accounting book entry.
-- >
-- >      ASV   Product data file number
-- >               The number of a product data file.
-- >
-- >      ASW   Cadastro Geral do Contribuinte (CGC)
-- >               Brazilian taxpayer number.
-- >
-- >      ASX   Foreign resident identification number
-- >               Number assigned by a government agency to identify a
-- >               foreign resident.
-- >
-- >      ASY   CD-ROM
-- >               Identity number of the Compact Disk Read Only Memory
-- >               (CD-ROM).
-- >
-- >      ASZ   Physical medium
-- >               Identifies the physical medium.
-- >
-- >      ATA   Financial cancellation reference number
-- >               Reference number of a financial cancellation.
-- >
-- >      ATB   Purchase for export Customs agreement number
-- >               A number assigned by a Customs authority allowing the
-- >               purchase of goods free of tax because they are to be
-- >               exported immediately after the purchase.
-- >
-- >      ATC   Judgment number
-- >               A reference number identifying the legal decision.
-- >
-- >      ATD   Secretariat number
-- >               A reference number identifying a secretariat.
-- >
-- >      ATE   Previous banking status message reference
-- >               Message reference number of the previous banking status
-- >               message being responded to.
-- >
-- >      ATF   Last received banking status message reference
-- >               Reference number of the latest received banking status
-- >               message.
-- >
-- >      ATG   Bank's documentary procedure reference
-- >               Reference allocated by the bank to a documentary
-- >               procedure.
-- >
-- >      ATH   Customer's documentary procedure reference
-- >               Reference allocated by a customer to a documentary
-- >               procedure.
-- >
-- >      ATI   Safe deposit box number
-- >               Number of the safe deposit box.
-- >
-- >      ATJ   Receiving Bankgiro number
-- >               Number of the receiving Bankgiro.
-- >
-- >      ATK   Sending Bankgiro number
-- >               Number of the sending Bankgiro.
-- >
-- >      ATL   Bankgiro reference
-- >               Reference of the Bankgiro.
-- >
-- >      ATM   Guarantee number
-- >               Number of a guarantee.
-- >
-- >      ATN   Collection instrument number
-- >               To identify the number of an instrument used to remit
-- >               funds to a beneficiary.
-- >
-- >      ATO   Converted Postgiro number
-- >               To identify the reference number of a giro payment
-- >               having been converted to a Postgiro account.
-- >
-- >      ATP   Cost centre alignment number
-- >               Number used in the financial management process to align
-- >               cost allocations.
-- >
-- >      ATQ   Kamer Van Koophandel (KVK) number
-- >               An identification number assigned by the Dutch Chamber
-- >               of Commerce to a business in the Netherlands.
-- >
-- >      ATR   Institut Belgo-Luxembourgeois de Codification (IBLC) number
-- >               An identification number assigned by the Luxembourg
-- >               National Bank to a business in Luxembourg.
-- >
-- >      ATS   External object reference
-- >               A reference identifying an external object.
-- >
-- >      ATT   Exceptional transport authorisation number
-- >               Authorisation number for exceptional transport (using
-- >               specific equipment, out of gauge, materials and/or
-- >               specific routing).
-- >
-- >      ATU   Clave Unica de Identificacion Tributaria (CUIT)
-- >               Tax identification number in Argentina.
-- >
-- >      ATV   Registro Unico Tributario (RUT)
-- >               Tax identification number in Chile.
-- >
-- >      ATW   Flat rack container bundle identification number
-- >               Reference number assigned to a bundle of flat rack
-- >               containers.
-- >
-- >      ATX   Transport equipment acceptance order reference
-- >               Reference number assigned to an order to accept
-- >               transport equipment that is to be delivered by an inland
-- >               carrier to a specified facility.
-- >
-- >      ATY   Transport equipment release order reference
-- >               Reference number assigned to an order to release
-- >               transport equipment which is to be picked up by an
-- >               inland carrier from a specified facility.
-- >
-- >      ATZ   Ship's stay reference number
-- >               Reference number assigned by a port authority to the
-- >               stay of a vessel in the port.
-- >
-- >      AU    Authorization to meet competition number
-- >               A number assigned by a requestor to an offer incoming
-- >               following request for quote.
-- >
-- >      AUA   Place of positioning reference
-- >               Identifies the reference pertaining to the place of
-- >               positioning.
-- >
-- >      AUB   Party reference
-- >               The reference to a party.
-- >
-- >      AUC   Issued prescription identification
-- >               The identification of the issued prescription.
-- >
-- >      AUD   Collection reference
-- >               A reference identifying a collection.
-- >
-- >      AUE   Travel service
-- >               Reference identifying a travel service.
-- >
-- >      AUF   Consignment stock contract
-- >               Reference identifying a consignment stock contract.
-- >
-- >      AUG   Importer's letter of credit reference
-- >               Letter of credit reference issued by importer.
-- >
-- >      AUH   Performed prescription identification
-- >               The identification of the prescription that has been
-- >               carried into effect.
-- >
-- >      AUI   Image reference
-- >               A reference number identifying an image.
-- >
-- >      AUJ   Proposed purchase order reference number
-- >               A reference number assigned to a proposed purchase
-- >               order.
-- >
-- >      AUK   Application for financial support reference number
-- >               Reference number assigned to an application for
-- >               financial support.
-- >
-- >      AUL   Manufacturing quality agreement number
-- >               Reference number of a manufacturing quality agreement.
-- >
-- >      AUM   Software editor reference
-- >               Reference identifying the software editor.
-- >
-- >      AUN   Software reference
-- >               Reference identifying the software.
-- >
-- >      AUO   Software quality reference
-- >               Reference allocated to the software by a quality
-- >               assurance agency.
-- >
-- >      AUP   Consolidated orders' reference
-- >               A reference number to identify orders which have been,
-- >               or shall be consolidated.
-- >
-- >      AUQ   Customs binding ruling number
-- >               Binding ruling number issued by customs.
-- >
-- >      AUR   Customs non-binding ruling number
-- >               Non-binding ruling number issued by customs.
-- >
-- >      AUS   Delivery route reference
-- >               A reference to the route of the delivery.
-- >
-- >      AUT   Net area supplier reference
-- >               A reference identifying a supplier within a net area.
-- >
-- >      AUU   Time series reference
-- >               Reference to a time series.
-- >
-- >      AUV   Connecting point to central grid
-- >               Reference to a connecting point to a central grid.
-- >
-- >      AUW   Marketing plan identification number (MPIN)
-- >               Number identifying a marketing plan.
-- >
-- >      AUX   Entity reference number, previous
-- >               The previous reference number assigned to an entity.
-- >
-- >      AUY   International Standard Industrial Classification (ISIC)
-- >            code
-- >               A code specifying an international standard industrial
-- >               classification.
-- >
-- >      AUZ   Customs pre-approval ruling number
-- >               Pre-approval ruling number issued by Customs.
-- >
-- >      AV    Account payable number
-- >               Reference number assigned by accounts payable department
-- >               to the account of a specific creditor.
-- >
-- >      AWA   Rate code number
-- >               Number assigned by a buyer to rate a product.
-- >
-- >      AWB   Air waybill number
-- >               Reference number assigned to an air waybill, see: 1001 =
-- >               740.
-- >
-- >      AWC   Documentary credit amendment number
-- >               Number of the amendment of the documentary credit.
-- >
-- >      AWD   Advising bank's reference
-- >               Reference number of the advising bank.
-- >
-- >      AWE   Cost centre
-- >               A number identifying a cost centre.
-- >
-- >      AWF   Work item quantity determination
-- >               A reference assigned to a work item quantity
-- >               determination.
-- >
-- >      AWG   Internal data process number
-- >               A number identifying an internal data process.
-- >
-- >      AWH   Category of work reference
-- >               A reference identifying a category of work.
-- >
-- >      AWI   Policy form number
-- >               Number assigned to a policy form.
-- >
-- >      AWJ   Net area
-- >               Reference to an area of a net.
-- >
-- > +    AWK   Service provider
-- >               Reference of the service provider.
-- >
-- > +    AWL   Error position
-- >               Reference to the position of an error in a message.
-- >
-- > +    AWM   Service category reference
-- >               Reference identifying the service category.
-- >
-- > +    AWN   Connected location
-- >               Reference of a connected location.
-- >
-- > +    AWO   Related party
-- >               Reference of a related party.
-- >
-- > +    AWP   Latest accounting entry record reference
-- >               Code identifying the reference of the latest accounting
-- >               entry record.
-- >
-- > +    AWQ   Accounting entry
-- >               Accounting entry to which this item is related.
-- >
-- > +    AWR   Document reference, original
-- >               The original reference of a document.
-- >
-- >      BA    Beginning meter reading actual
-- >               Meter reading at the beginning of an invoicing period.
-- >
-- >      BC    Buyer's contract number
-- >               Reference number assigned by buyer to a contract.
-- >
-- >      BD    Bid number
-- >               Number assigned by a submitter of a bid to his bid.
-- >
-- >      BE    Beginning meter reading estimated
-- >               Meter reading at the beginning of an invoicing period
-- >               where an actual reading is not available.
-- >
-- >      BH    House bill of lading number
-- >               Reference number assigned to a house bill of lading,
-- >               see: 1001 = 714.
-- >
-- >      BM    Bill of lading number
-- >               Reference number assigned to a bill of lading, see: 1001
-- >               = 705.
-- >
-- >      BN    Booking reference number
-- >               [1016] Reference number assigned by the carrier or his
-- >               agent when cargo space is reserved prior to loading.
-- >
-- >      BO    Blanket order number
-- >               Reference number assigned by the order issuer to a
-- >               blanket order.
-- >
-- >      BR    Broker or sales office number
-- >               A number that identifies a broker or sales office.
-- >
-- >      BT    Batch number/lot number
-- >               Reference number assigned by manufacturer to a series of
-- >               similar products or goods produced under similar
-- >               conditions.
-- >
-- >      BW    Blended with number
-- >               The batch/lot/package number a product is blended with.
-- >
-- >      CAS   IATA Cargo Agent CASS Address number
-- >               Code issued by IATA to identify agent locations for CASS
-- >               billing purposes.
-- >
-- > +    CAT   Matching of entries, balanced
-- >               Reference to a balanced matching of entries.
-- >
-- > +    CAU   Entry flagging
-- >               Reference to a flagging of entries.
-- >
-- > +    CAV   Matching of entries, unbalanced
-- >               Reference to an unbalanced matching of entries.
-- >
-- > +    CAW   Document reference, internal
-- >               Internal reference to a document.
-- >
-- > +    CAX   European Value Added Tax identification
-- >               Value Added Tax identification number according to
-- >               European regulation.
-- >
-- > +    CAY   Cost accounting document
-- >               The reference to a cost accounting document.
-- >
-- >      CD    Credit note number
-- >               Reference number assigned to a credit note.
-- >
-- >      CEC   Ceding company
-- >               Company selling obligations to a third party.
-- >
-- >      CFE   Consignee's further order
-- >               Reference of an order given by the consignee after
-- >               departure of the means of transport.
-- >
-- >      CFO   Consignor's further order
-- >               Reference of an order given by the consignor after
-- >               departure of the means of transport.
-- >
-- >      CG    Consignee's order number
-- >               A number that identifies a consignee's order.
-- >
-- >      CH    Customer catalogue number
-- >               Number identifying a catalogue for customer's usage.
-- >
-- >      CK    Cheque number
-- >               Unique number assigned to one specific cheque.
-- >
-- >      CKN   Checking number
-- >               Number assigned by checking party to one specific check
-- >               action.
-- >
-- >      CM    Credit memo number
-- >               Reference number assigned by issuer to a credit memo.
-- >
-- >      CMR   Road consignment note number
-- >               Reference number assigned to a road consignment note,
-- >               see: 1001 = 730.
-- >
-- >      CN    Carrier's reference number
-- >               Reference number assigned by carrier to a consignment.
-- >
-- >      CNO   Charge note reference number
-- >               [1070] Indication in pre-printed form that a Charges
-- >               note has been established and is attached to the Rail
-- >               Consignment Note (CIM 76).
-- >
-- >      CO    Buyers order number
-- >               [1022] Reference number assigned by the buyer to an
-- >               order.
-- >
-- >      COF   Call off order number
-- >               A number that identifies a call off order.
-- >
-- >      CP    Condition of purchase document number
-- >               Reference number identifying the conditions of purchase
-- >               relevant to a purchase.
-- >
-- >      CR    Customer reference number
-- >               Reference number assigned by the customer to a
-- >               transaction.
-- >
-- >      CRN   Conveyance reference number
-- >               [8028] Unique reference given by the carrier to a
-- >               certain journey or departure of a means of transport
-- >               (generic term).
-- >
-- >      CS    Condition of sale document number
-- >               Reference number identifying the conditions of sale
-- >               relevant to a sale.
-- >
-- >      CST   Team assignment number
-- >               Team number assigned to a group that is responsible for
-- >               working a particular transaction.
-- >
-- >      CT    Contract number
-- >               Reference number of a contract concluded between
-- >               parties.
-- >
-- >      CU    Consignor's reference number
-- >               [1140] Reference number assigned by a consignor to a
-- >               particular shipment for his own purposes or for those of
-- >               the consignee.
-- >
-- >      CV    Container operators reference number
-- >               Reference number assigned by the party operating or
-- >               controlling the transport container to a transaction or
-- >               consignment.
-- >
-- >      CW    Package number
-- >               (7070) Reference number identifying a package or carton
-- >               within a consignment.
-- >
-- >      CZ    Cooperation contract number
-- >               Number issued by a party concerned given to a contract
-- >               on cooperation of two or more parties.
-- >
-- >      DA    Deferment approval number
-- >               Number assigned by authorities to a party to approve
-- >               deferment of payment of tax or duties.
-- >
-- >      DAN   Debit account number
-- >               Reference number assigned by issuer to a debit account.
-- >
-- >      DB    Buyer's debtor number
-- >               Reference number assigned to a debtor.
-- >
-- >      DI    Distributor invoice number
-- >               Reference number assigned by issuer to a distributor
-- >               invoice.
-- >
-- >      DL    Debit note number
-- >               Reference number assigned by issuer to a debit note.
-- >
-- >      DM    Document number
-- >               [1004] Reference number assigned to the document by the
-- >               issuer.
-- >
-- >      DQ    Delivery note number
-- >               Reference number assigned by the issuer to a delivery
-- >               note.
-- >
-- >      DR    Dock receipt number
-- >               Number of the cargo receipt submitted when cargo is
-- >               delivered to a marine terminal.
-- >
-- >      EA    Ending meter reading actual
-- >               Meter reading at the end of an invoicing period.
-- >
-- >      EB    Embargo permit number
-- >               Reference number assigned by issuer to an embargo
-- >               permit.
-- >
-- >      ED    Export declaration
-- >               Number assigned by the exporter to his export
-- >               declaration number submitted to an authority.
-- >
-- >      EE    Ending meter reading estimated
-- >               Meter reading at the end of an invoicing period where an
-- >               actual reading is not available.
-- >
-- >      EI    Employer's identification number
-- >               Number issued by an authority to identify an employer.
-- >
-- >      EN    Embargo number
-- >               Number assigned to specific goods or a family of goods
-- >               in a classification of embargo measures.
-- >
-- >      EP    Export permit number
-- >               Reference number assigned by issuing authority to an
-- >               export permit for products.
-- >
-- >      EQ    Equipment number
-- >               Number assigned by the manufacturer to specific
-- >               equipment.
-- >
-- >      ER    Container/equipment receipt number
-- >               Number of the Equipment Interchange Receipt issued for
-- >               full or empty equipment received.
-- >
-- >      ERN   Exporter's reference number
-- >               Reference to a party exporting goods.
-- >
-- >      ET    Excess transportation number
-- >               Number assigned to excess transport.
-- >
-- >      EX    Export licence number
-- >               [1208] Reference number assigned by issuing authority to
-- >               an Export Licence.
-- >
-- >      FC    Fiscal number
-- >               Tax payer's number. Number assigned to individual
-- >               persons as well as to corporates by a public
-- >               institution; this number is different from the VAT
-- >               registration number.
-- >
-- >      FF    Freight forwarder's reference number
-- >               [1460] Reference number assigned to the consignment by
-- >               the freight forwarder.
-- >
-- >      FI    File line identifier
-- >               Number assigned by the file issuer or sender to identify
-- >               a specific line.
-- >
-- >      FLW   Flow reference number
-- >               Number given to a usual sender which has regular
-- >               expeditions of the same goods, to the same destination,
-- >               defining all general conditions of the transport.
-- >
-- >      FN    Freight bill number
-- >               Reference number assigned by issuing party to a freight
-- >               bill.
-- >
-- >      FO    Foreign exchange
-- >               Exchange of two currencies at an agreed rate.
-- >
-- >      FS    Final sequence number
-- >               A number that identifies the final sequence.
-- >
-- >      FT    Free zone identifier
-- >               Identifier to specify the territory of a State where any
-- >               goods introduced are generally regarded, insofar as
-- >               import duties and taxes are concerned, as being outside
-- >               the Customs territory and are not subject to usual
-- >               Customs control (CCC).
-- >
-- >      FV    File version number
-- >               Number given to a version of an identified file.
-- >
-- >      FX    Foreign exchange contract number
-- >               Reference number identifying a foreign exchange
-- >               contract.
-- >
-- >      GA    Standard's number
-- >               Number to identify a standardization description (e.g.
-- >               ISO 9375).
-- >
-- >      GC    Government contract number
-- >               Number assigned to a specific government/public
-- >               contract.
-- >
-- >      GD    Standard's code number
-- >               Number to identify a specific parameter within a
-- >               standardization description (e.g. M5 for screws or DIN
-- >               A4 for paper).
-- >
-- >      GDN   General declaration number
-- >               Number of the declaration of incoming goods out of a
-- >               vessel.
-- >
-- >      GN    Government reference number
-- >               A number that identifies a government reference.
-- >
-- >      HS    Harmonised system number
-- >               Number specifying the goods classification under the
-- >               Harmonised Commodity Description and Coding System of
-- >               the Customs Co-operation Council (CCC).
-- >
-- >      HWB   House waybill number
-- >               Reference number assigned to a house waybill, see: 1001
-- >               = 703.
-- >
-- >      IA    Internal vendor number
-- >               Number identifying the company-internal vending
-- >               department/unit.
-- >
-- >      IB    In bond number
-- >               Customs assigned number that is used to control the
-- >               movement of imported cargo prior to its formal Customs
-- >               clearing.
-- >
-- >      ICA   IATA cargo agent code number
-- >               Code issued by IATA identify each IATA Cargo Agent whose
-- >               name is entered on the Cargo Agency List.
-- >
-- >      ICE   Insurance certificate reference number
-- >               A number that identifies an insurance certificate
-- >               reference.
-- >
-- >      ICO   Insurance contract reference number
-- >               A number that identifies an insurance contract
-- >               reference.
-- >
-- >      II    Initial sample inspection report number
-- >               Inspection report number given to the initial sample
-- >               inspection.
-- >
-- >      IL    Internal order number
-- >               Number assigned to an order for internal handling/follow
-- >               up.
-- >
-- >      INB   Intermediary broker
-- >               A number that identifies an intermediary broker.
-- >
-- >      INN   Interchange number new
-- >               Number assigned by the interchange sender to identify
-- >               one specific interchange. This number points to the
-- >               actual interchange.
-- >
-- >      INO   Interchange number old
-- >               Number assigned by the interchange sender to identify
-- >               one specific interchange. This number points to the
-- >               previous interchange.
-- >
-- >      IP    Import licence number
-- >               [1106] Reference number assigned by the issuing
-- >               authority to an Import Licence.
-- >
-- >      IS    Invoice number suffix
-- >               A number added at the end of an invoice number.
-- >
-- >      IT    Internal customer number
-- >               Number assigned by a seller, supplier etc. to identify a
-- >               customer within his enterprise.
-- >
-- >      IV    Invoice number
-- >               [1334] Reference number assigned by the seller to a
-- >               Commercial Invoice.
-- >
-- >      JB    Job number
-- >               Identifies a piece of work.
-- >
-- >      JE    Ending job sequence number
-- >               A number that identifies the ending job sequence.
-- >
-- >      LA    Shipping label serial number
-- >               The serial number on a shipping label.
-- >
-- >      LAN   Loading authorization number
-- >               [4092] A number assigned to the loading authorization
-- >               granted by the forwarding station when the consignment
-- >               is subject to traffic limitations (CIM 43).
-- >
-- >      LAR   Lower number in range
-- >               Lower number in a range of numbers.
-- >
-- >      LB    Lockbox
-- >               Type of cash management system offered by financial
-- >               institutions to provide for collection of customers
-- >               'receivables'.
-- >
-- >      LC    Letter of credit number
-- >               Reference number identifying the letter of credit
-- >               document.
-- >
-- >      LI    Line item reference number
-- >               (1156) Reference number identifying a particular line in
-- >               a document.
-- >
-- >      LO    Load planning number
-- >               The reference that identifies the load planning number.
-- >
-- >      LS    Bar coded label serial number
-- >               The serial number on a bar code label.
-- >
-- >      MA    Ship notice/manifest number
-- >               The number assigned to a ship notice or manifest.
-- >
-- >      MB    Master bill of lading number
-- >               Reference number assigned to a master bill of lading,
-- >               see: 1001 = 704.
-- >
-- >      MF    Manufacturer's part number
-- >               Reference number assigned by the manufacturer to his
-- >               product or part.
-- >
-- >      MG    Meter unit number
-- >               Number identifying a unique meter unit.
-- >
-- >      MH    Manufacturing order number
-- >               Reference number assigned by manufacturer for a given
-- >               production quantity of products.
-- >
-- >      MR    Message recipient
-- >               A number that identifies the message recipient.
-- >
-- >      MRN   Mailing reference number
-- >               Identifies the party designated by the importer to
-- >               receive certain customs correspondence in lieu of its
-- >               being mailed directly to the importer.
-- >
-- >      MS    Message sender
-- >               A number that identifies the message sender.
-- >
-- >      MSS   Manufacturer's material safety data sheet number
-- >               A number that identifies a manufacturer's material
-- >               safety data sheet.
-- >
-- >      MWB   Master air waybill number
-- >               Reference number assigned to a master air waybill, see:
-- >               1001 = 741.
-- >
-- >      NA    North American hazardous goods classification number
-- >               Reference to materials designated as hazardous for
-- >               purposes of transportation in North American commerce.
-- >
-- >      OH    Current invoice number
-- >               Reference number identifying the current invoice.
-- >
-- >      OI    Previous invoice number
-- >               Reference number identifying a previously issued
-- >               invoice.
-- >
-- >      ON    Order number (purchase)
-- >               [1022] Reference number assigned by the buyer to an
-- >               order.
-- >
-- >      OP    Original purchase order
-- >               Reference to the order previously sent.
-- >
-- >      OR    General order number
-- >               Customs number assigned to imported merchandise that has
-- >               been left unclaimed and subsequently moved to a Customs
-- >               bonded warehouse for storage.
-- >
-- >      PB    Payer's financial institution account number
-- >               Originated company account number (ACH transfer), check,
-- >               draft or wire.
-- >
-- >      PC    Production code
-- >               Number assigned by the manufacturer to a specified
-- >               article or batch to identify the manufacturing date etc.
-- >               for subsequent reference.
-- >
-- >      PD    Promotion deal number
-- >               Number assigned by a vendor to a special promotion
-- >               activity.
-- >
-- >      PE    Plant number
-- >               A number that identifies a plant.
-- >
-- >      PF    Prime contractor contract number
-- >               Reference number assigned by the client to the contract
-- >               of the prime contractor.
-- >
-- >      PI    Price list version number
-- >               A number that identifies the version of a price list.
-- >
-- >      PK    Packing list number
-- >               (1014) Reference number assigned to a packing list, see:
-- >               1001 = 271.
-- >
-- >      PL    Price list number
-- >               Reference number assigned to a price list.
-- >
-- >      POR   Purchase order response number
-- >               Reference number assigned by the seller to an order
-- >               response.
-- >
-- >      PP    Purchase order change number
-- >               Reference number assigned by a buyer for a revision of a
-- >               purchase order.
-- >
-- >      PQ    Payment reference
-- >               Reference number assigned to a payment.
-- >
-- >      PR    Price quote number
-- >               Reference number assigned by the seller to a quote.
-- >
-- >      PS    Purchase order number suffix
-- >               A number added at the end of a purchase order number.
-- >
-- >      PW    Prior purchase order number
-- >               Reference number of a purchase order previously sent to
-- >               the supplier.
-- >
-- >      PY    Payee's financial institution account number
-- >               Receiving company account number (ACH transfer), check,
-- >               draft or wire.
-- >
-- >      RA    Remittance advice number
-- >               A number that identifies a remittance advice.
-- >
-- >      RC    Rail/road routing code
-- >               International Western and Eastern European route code
-- >               used in all rail organizations and specified in the
-- >               international tariffs (rail tariffs) known by the
-- >               customers.
-- >
-- >      RCN   Railway consignment note number
-- >               Reference number assigned to a rail consignment note,
-- >               see: 1001 = 720.
-- >
-- >      RE    Release number
-- >               Reference number assigned to identify a release of a set
-- >               of rules, conventions, conditions, etc.
-- >
-- >      REN   Received number
-- >               [1150] Number assigned to a rail consignment upon its
-- >               arrival at its destination station (CIM 84).
-- >
-- >      RF    Export reference number
-- >               Reference number given to an export shipment.
-- >
-- >      RR    Payer's financial institution transit routing No.(ACH
-- >            transfers)
-- >               ODFI (ACH transfer).
-- >
-- >      RT    Payee's financial institution transit routing No.
-- >               RDFI Transit routing number (ACH transfer).
-- >
-- >      SA    Sales person number
-- >               Identification number of a sales person.
-- >
-- >      SB    Sales region number
-- >               A number that identifies a sales region.
-- >
-- >      SD    Sales department number
-- >               A number that identifies a sales department.
-- >
-- >      SE    Serial number
-- >               Identification number of an item which distinguishes
-- >               this specific item out of an number of identical items.
-- >
-- >      SF    Ship from
-- >               A number that identifies a ship from location.
-- >
-- >      SH    Previous highest schedule number
-- >               Number of the latest schedule of a previous period
-- >               (ODETTE DELINS).
-- >
-- >      SI    SID (Shipper's identifying number for shipment)
-- >               A number that identifies the SID (shipper's
-- >               identification) number for a shipment.
-- >
-- >      SM    Sales office number
-- >               A number that identifies a sales office.
-- >
-- >      SN    Seal number
-- >               [9308] Identification number on Customs or other seals
-- >               affixed to containers or other transport units.
-- >
-- >      SP    Scan line
-- >               A number that identifies a scan line.
-- >
-- >      SQ    Equipment sequence number
-- >               A temporary reference number identifying a particular
-- >               piece of equipment within a series of pieces of
-- >               equipment.
-- >
-- >      SRN   Shipment reference number
-- >               Reference number assigned to a shipment.
-- >
-- >      SS    Sellers reference number
-- >               Reference number assigned to a transaction by the
-- >               seller.
-- >
-- >      STA   Station reference number
-- >               International UIC code assigned to every European rail
-- >               station (CIM convention).
-- >
-- >      SW    Swap order number
-- >               Number assigned by the seller to a swap order (see
-- >               definition of DE 1001, code 229).
-- >
-- >      SZ    Specification number
-- >               Number assigned by the issuer to his specification.
-- >
-- >      TB    Trucker's bill of lading
-- >               A cargo list/description issued by a motor carrier of
-- >               freight.
-- >
-- >      TE    Telex message number
-- >               Reference number identifying a telex message.
-- >
-- >      TF    Transfer number
-- >               An extra number assigned to goods or a container which
-- >               functions as a reference number or as an authorization
-- >               number to get the goods or container released from a
-- >               certain party.
-- >
-- >      TI    TIR carnet number
-- >               Reference number assigned to a TIR carnet.
-- >
-- >      TL    Tax exemption licence number
-- >               Number assigned by the tax authorities to a party
-- >               indicating its tax exemption authorization. This number
-- >               could relate to a specified business type, a specified
-- >               local area or a class of products.
-- >
-- >      TN    Transaction reference number
-- >               Reference applied to a transaction between two or more
-- >               parties over a defined life cycle; e.g. number applied
-- >               by importer or broker to obtain release from Customs,
-- >               may then used to control declaration through final
-- >               accounting (synonyms: declaration, entry number).
-- >
-- >      TP    Test report number
-- >               Reference number identifying a test report document
-- >               relevant to the product.
-- >
-- >      UAR   Upper number of range
-- >               Upper number in a range of numbers.
-- >
-- >      UC    Ultimate customer's reference number
-- >               The originator's reference number as forwarded in a
-- >               sequence of parties involved.
-- >
-- >      UCN   Unique consignment reference number
-- >               (1202) Unique reference of a consignment (UCRN) used for
-- >               identification purposes in documents and messages
-- >               exchanged between parties in international trade. See
-- >               also: Unique Identifier Code (UNIC) in UN/ECE
-- >               Recommendation No. 8, March 1992.
-- >
-- >      UN    United Nations dangerous goods (UNDG) number
-- >               [7124] Unique serial number assigned within the United
-- >               Nations to substances and articles contained in a list
-- >               of the dangerous goods most commonly carried.
-- >
-- >      UO    Ultimate customer's order number
-- >               The originator's order number as forwarded in a sequence
-- >               of parties involved.
-- >
-- >      VA    VAT registration number
-- >               Unique number assigned by the relevant tax authority to
-- >               identify a party for use in relation to Value Added Tax
-- >               (VAT).
-- >
-- >      VC    Vendor contract number
-- >               Number assigned by the vendor to a contract.
-- >
-- >      VM    Vessel identification
-- >               (8123) Reference identifying a vessel (UN/ECE
-- >               Recommendation No 10).
-- >
-- >      VN    Order number (vendor)
-- >               Reference number assigned by supplier to a buyer's
-- >               purchase order.
-- >
-- >      VON   Voyage number
-- >               [8228] Reference number assigned by the carrier or his
-- >               agent to the voyage of the vessel.
-- >
-- >      VP    Vendor product number
-- >               Number assigned by vendor to another manufacturer's
-- >               product.
-- >
-- >      VR    Vendor ID number
-- >               A number that identifies a vendor's identification.
-- >
-- >      VS    Vendor order number suffix
-- >               The suffix for a vendor order number.
-- >
-- >      VT    Motor vehicle identification number
-- >               (Reference identifying a motor vehicle used for
-- >               transport) normally is the vehicle registration number.
-- >
-- >      VV    Voucher number
-- >               Reference number identifying a voucher.
-- >
-- >      WE    Warehouse entry number
-- >               Entry number under which imported merchandise was placed
-- >               in a Customs bonded warehouse.
-- >
-- >      WM    Weight agreement number
-- >               A number identifying a weight agreement.
-- >
-- >      WN    Well number
-- >               A number assigned to a shaft sunk into the ground.
-- >
-- >      WR    Warehouse receipt number
-- >               A number identifying a warehouse receipt.
-- >
-- >      WS    Warehouse storage location number
-- >               A number identifying a warehouse storage location.
-- >
-- >      WY    Rail waybill number
-- >               The number on a rail waybill.
-- >
-- >      XA    Company/place registration number
-- >               Company registration and place as legally required.
-- >
-- >      XC    Cargo control number
-- >               Reference used to identify and control a carrier and
-- >               consignment from initial entry into a country until
-- >               release of the cargo by Customs.
-- >
-- >      XP    Previous cargo control number
-- >               Where a consignment is deconsolidated and/or transferred
-- >               to the control of another carrier or freight forwarder
-- >               (e.g. housebill, abstract) this references the previous
-- >               (e.g. master) cargo control number.
-- >
-- >      ZZZ   Mutually defined reference number
-- >               Number based on party agreement.
simple1153 :: Parser Value
simple1153 = simple "1153" (alphaNumeric `upTo` 3)