fin_data 0.1.2

Registry implementations for common financial categories.
Documentation
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
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
/*!
UK Standard industrial classification of economic activities registry implementation.

The data for this file was generated automatically.
*/

use std::collections::HashMap;

use fin_model::classification::Code;
use fin_model::prelude::*;

// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------

pub struct Scheme {
    codes: HashMap<u32, Code<u32>>,
}

// ------------------------------------------------------------------------------------------------
// Trait Implementations
// ------------------------------------------------------------------------------------------------

impl Registry<u32, Code<u32>> for Scheme {
    fn new() -> Self {
        Scheme {
            codes: create_data_table(),
        }
    }

    fn name(&self) -> String {
        "Standard industrial classification of economic activities".to_string()
    }

    fn acronym(&self) -> String {
        "SIC".to_string()
    }

    fn source(&self) -> String {
        "https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/527619/SIC07_CH_condensed_list_en.csv".to_string()
    }

    fn governing_body(&self) -> String {
        "UK Companies House".to_string()
    }

    fn last_updated(&self) -> Option<Date> {
        Some(Date::from_ymd(2018, 1, 9))
    }

    fn next_publication(&self) -> Option<Date> {
        None
    }

    fn get(&self, code: u32) -> Option<&Code<u32>> {
        self.codes.get(&code)
    }

    fn get_children(&self, _parent: u32) -> Option<Vec<&Code<u32>>> {
        None
    }
}

// ------------------------------------------------------------------------------------------------
// Generated Data Table
// ------------------------------------------------------------------------------------------------

#[allow(clippy::unreadable_literal)]
fn create_data_table() -> HashMap<u32, Code<u32>> {
    let table: HashMap<u32, Code<u32>> =
    [
        (1110, Code::<u32> {
            code: 1110,
            parent_code: None,
            description: "Growing of cereals (except rice), leguminous crops and oil seeds".to_string(),
        }),
        (1120, Code::<u32> {
            code: 1120,
            parent_code: None,
            description: "Growing of rice".to_string(),
        }),
        (1130, Code::<u32> {
            code: 1130,
            parent_code: None,
            description: "Growing of vegetables and melons, roots and tubers".to_string(),
        }),
        (1140, Code::<u32> {
            code: 1140,
            parent_code: None,
            description: "Growing of sugar cane".to_string(),
        }),
        (1150, Code::<u32> {
            code: 1150,
            parent_code: None,
            description: "Growing of tobacco".to_string(),
        }),
        (1160, Code::<u32> {
            code: 1160,
            parent_code: None,
            description: "Growing of fibre crops".to_string(),
        }),
        (1190, Code::<u32> {
            code: 1190,
            parent_code: None,
            description: "Growing of other non-perennial crops".to_string(),
        }),
        (1210, Code::<u32> {
            code: 1210,
            parent_code: None,
            description: "Growing of grapes".to_string(),
        }),
        (1220, Code::<u32> {
            code: 1220,
            parent_code: None,
            description: "Growing of tropical and subtropical fruits".to_string(),
        }),
        (1230, Code::<u32> {
            code: 1230,
            parent_code: None,
            description: "Growing of citrus fruits".to_string(),
        }),
        (1240, Code::<u32> {
            code: 1240,
            parent_code: None,
            description: "Growing of pome fruits and stone fruits".to_string(),
        }),
        (1250, Code::<u32> {
            code: 1250,
            parent_code: None,
            description: "Growing of other tree and bush fruits and nuts".to_string(),
        }),
        (1260, Code::<u32> {
            code: 1260,
            parent_code: None,
            description: "Growing of oleaginous fruits".to_string(),
        }),
        (1270, Code::<u32> {
            code: 1270,
            parent_code: None,
            description: "Growing of beverage crops".to_string(),
        }),
        (1280, Code::<u32> {
            code: 1280,
            parent_code: None,
            description: "Growing of spices, aromatic, drug and pharmaceutical crops".to_string(),
        }),
        (1290, Code::<u32> {
            code: 1290,
            parent_code: None,
            description: "Growing of other perennial crops".to_string(),
        }),
        (1300, Code::<u32> {
            code: 1300,
            parent_code: None,
            description: "Plant propagation".to_string(),
        }),
        (1410, Code::<u32> {
            code: 1410,
            parent_code: None,
            description: "Raising of dairy cattle".to_string(),
        }),
        (1420, Code::<u32> {
            code: 1420,
            parent_code: None,
            description: "Raising of other cattle and buffaloes".to_string(),
        }),
        (1430, Code::<u32> {
            code: 1430,
            parent_code: None,
            description: "Raising of horses and other equines".to_string(),
        }),
        (1440, Code::<u32> {
            code: 1440,
            parent_code: None,
            description: "Raising of camels and camelids".to_string(),
        }),
        (1450, Code::<u32> {
            code: 1450,
            parent_code: None,
            description: "Raising of sheep and  goats".to_string(),
        }),
        (1460, Code::<u32> {
            code: 1460,
            parent_code: None,
            description: "Raising of swine/pigs".to_string(),
        }),
        (1470, Code::<u32> {
            code: 1470,
            parent_code: None,
            description: "Raising of poultry".to_string(),
        }),
        (1490, Code::<u32> {
            code: 1490,
            parent_code: None,
            description: "Raising of other animals".to_string(),
        }),
        (1500, Code::<u32> {
            code: 1500,
            parent_code: None,
            description: "Mixed farming".to_string(),
        }),
        (1610, Code::<u32> {
            code: 1610,
            parent_code: None,
            description: "Support activities for crop production".to_string(),
        }),
        (1621, Code::<u32> {
            code: 1621,
            parent_code: None,
            description: "Farm animal boarding and care".to_string(),
        }),
        (1629, Code::<u32> {
            code: 1629,
            parent_code: None,
            description: "Support activities for animal production (other than farm animal boarding and care) n.e.c.".to_string(),
        }),
        (1630, Code::<u32> {
            code: 1630,
            parent_code: None,
            description: "Post-harvest crop activities".to_string(),
        }),
        (1640, Code::<u32> {
            code: 1640,
            parent_code: None,
            description: "Seed processing for propagation".to_string(),
        }),
        (1700, Code::<u32> {
            code: 1700,
            parent_code: None,
            description: "Hunting, trapping and related service activities".to_string(),
        }),
        (2100, Code::<u32> {
            code: 2100,
            parent_code: None,
            description: "Silviculture and other forestry activities".to_string(),
        }),
        (2200, Code::<u32> {
            code: 2200,
            parent_code: None,
            description: "Logging".to_string(),
        }),
        (2300, Code::<u32> {
            code: 2300,
            parent_code: None,
            description: "Gathering of wild growing non-wood products".to_string(),
        }),
        (2400, Code::<u32> {
            code: 2400,
            parent_code: None,
            description: "Support services to forestry".to_string(),
        }),
        (3110, Code::<u32> {
            code: 3110,
            parent_code: None,
            description: "Marine fishing".to_string(),
        }),
        (3120, Code::<u32> {
            code: 3120,
            parent_code: None,
            description: "Freshwater fishing".to_string(),
        }),
        (3210, Code::<u32> {
            code: 3210,
            parent_code: None,
            description: "Marine aquaculture".to_string(),
        }),
        (3220, Code::<u32> {
            code: 3220,
            parent_code: None,
            description: "Freshwater aquaculture".to_string(),
        }),
        (5101, Code::<u32> {
            code: 5101,
            parent_code: None,
            description: "Deep coal mines".to_string(),
        }),
        (5102, Code::<u32> {
            code: 5102,
            parent_code: None,
            description: "Open cast coal working".to_string(),
        }),
        (5200, Code::<u32> {
            code: 5200,
            parent_code: None,
            description: "Mining of lignite".to_string(),
        }),
        (6100, Code::<u32> {
            code: 6100,
            parent_code: None,
            description: "Extraction of crude petroleum".to_string(),
        }),
        (6200, Code::<u32> {
            code: 6200,
            parent_code: None,
            description: "Extraction of natural gas".to_string(),
        }),
        (7100, Code::<u32> {
            code: 7100,
            parent_code: None,
            description: "Mining of iron ores".to_string(),
        }),
        (7210, Code::<u32> {
            code: 7210,
            parent_code: None,
            description: "Mining of uranium and thorium ores".to_string(),
        }),
        (7290, Code::<u32> {
            code: 7290,
            parent_code: None,
            description: "Mining of other non-ferrous metal ores".to_string(),
        }),
        (8110, Code::<u32> {
            code: 8110,
            parent_code: None,
            description: "Quarrying of ornamental and building stone, limestone, gypsum, chalk and slate".to_string(),
        }),
        (8120, Code::<u32> {
            code: 8120,
            parent_code: None,
            description: "Operation of gravel and sand pits; mining of clays and kaolin".to_string(),
        }),
        (8910, Code::<u32> {
            code: 8910,
            parent_code: None,
            description: "Mining of chemical and fertilizer minerals".to_string(),
        }),
        (8920, Code::<u32> {
            code: 8920,
            parent_code: None,
            description: "Extraction of peat".to_string(),
        }),
        (8930, Code::<u32> {
            code: 8930,
            parent_code: None,
            description: "Extraction of salt".to_string(),
        }),
        (8990, Code::<u32> {
            code: 8990,
            parent_code: None,
            description: "Other mining and quarrying n.e.c.".to_string(),
        }),
        (9100, Code::<u32> {
            code: 9100,
            parent_code: None,
            description: "Support activities for petroleum and natural gas extraction".to_string(),
        }),
        (9900, Code::<u32> {
            code: 9900,
            parent_code: None,
            description: "Support activities for other mining and quarrying".to_string(),
        }),
        (10110, Code::<u32> {
            code: 10110,
            parent_code: None,
            description: "Processing and preserving of meat".to_string(),
        }),
        (10120, Code::<u32> {
            code: 10120,
            parent_code: None,
            description: "Processing and preserving of poultry meat".to_string(),
        }),
        (10130, Code::<u32> {
            code: 10130,
            parent_code: None,
            description: "Production of meat and poultry meat products".to_string(),
        }),
        (10200, Code::<u32> {
            code: 10200,
            parent_code: None,
            description: "Processing and preserving of fish, crustaceans and molluscs".to_string(),
        }),
        (10310, Code::<u32> {
            code: 10310,
            parent_code: None,
            description: "Processing and preserving of potatoes".to_string(),
        }),
        (10320, Code::<u32> {
            code: 10320,
            parent_code: None,
            description: "Manufacture of fruit and vegetable juice".to_string(),
        }),
        (10390, Code::<u32> {
            code: 10390,
            parent_code: None,
            description: "Other processing and preserving of fruit and vegetables".to_string(),
        }),
        (10410, Code::<u32> {
            code: 10410,
            parent_code: None,
            description: "Manufacture of oils and fats".to_string(),
        }),
        (10420, Code::<u32> {
            code: 10420,
            parent_code: None,
            description: "Manufacture of margarine and similar edible fats".to_string(),
        }),
        (10511, Code::<u32> {
            code: 10511,
            parent_code: None,
            description: "Liquid milk and cream production".to_string(),
        }),
        (10512, Code::<u32> {
            code: 10512,
            parent_code: None,
            description: "Butter and cheese production".to_string(),
        }),
        (10519, Code::<u32> {
            code: 10519,
            parent_code: None,
            description: "Manufacture of other milk products".to_string(),
        }),
        (10520, Code::<u32> {
            code: 10520,
            parent_code: None,
            description: "Manufacture of ice cream".to_string(),
        }),
        (10611, Code::<u32> {
            code: 10611,
            parent_code: None,
            description: "Grain milling".to_string(),
        }),
        (10612, Code::<u32> {
            code: 10612,
            parent_code: None,
            description: "Manufacture of breakfast cereals and cereals-based food".to_string(),
        }),
        (10620, Code::<u32> {
            code: 10620,
            parent_code: None,
            description: "Manufacture of starches and starch products".to_string(),
        }),
        (10710, Code::<u32> {
            code: 10710,
            parent_code: None,
            description: "Manufacture of bread; manufacture of fresh pastry goods and cakes".to_string(),
        }),
        (10720, Code::<u32> {
            code: 10720,
            parent_code: None,
            description: "Manufacture of rusks and biscuits; manufacture of preserved pastry goods and cakes".to_string(),
        }),
        (10730, Code::<u32> {
            code: 10730,
            parent_code: None,
            description: "Manufacture of macaroni, noodles, couscous and similar farinaceous products".to_string(),
        }),
        (10810, Code::<u32> {
            code: 10810,
            parent_code: None,
            description: "Manufacture of sugar".to_string(),
        }),
        (10821, Code::<u32> {
            code: 10821,
            parent_code: None,
            description: "Manufacture of cocoa and chocolate confectionery".to_string(),
        }),
        (10822, Code::<u32> {
            code: 10822,
            parent_code: None,
            description: "Manufacture of sugar confectionery".to_string(),
        }),
        (10831, Code::<u32> {
            code: 10831,
            parent_code: None,
            description: "Tea processing".to_string(),
        }),
        (10832, Code::<u32> {
            code: 10832,
            parent_code: None,
            description: "Production of coffee and coffee substitutes".to_string(),
        }),
        (10840, Code::<u32> {
            code: 10840,
            parent_code: None,
            description: "Manufacture of condiments and seasonings".to_string(),
        }),
        (10850, Code::<u32> {
            code: 10850,
            parent_code: None,
            description: "Manufacture of prepared meals and dishes".to_string(),
        }),
        (10860, Code::<u32> {
            code: 10860,
            parent_code: None,
            description: "Manufacture of homogenized food preparations and dietetic food".to_string(),
        }),
        (10890, Code::<u32> {
            code: 10890,
            parent_code: None,
            description: "Manufacture of other food products n.e.c.".to_string(),
        }),
        (10910, Code::<u32> {
            code: 10910,
            parent_code: None,
            description: "Manufacture of prepared feeds for farm animals".to_string(),
        }),
        (10920, Code::<u32> {
            code: 10920,
            parent_code: None,
            description: "Manufacture of prepared pet foods".to_string(),
        }),
        (11010, Code::<u32> {
            code: 11010,
            parent_code: None,
            description: "Distilling, rectifying and blending of spirits".to_string(),
        }),
        (11020, Code::<u32> {
            code: 11020,
            parent_code: None,
            description: "Manufacture of wine from grape".to_string(),
        }),
        (11030, Code::<u32> {
            code: 11030,
            parent_code: None,
            description: "Manufacture of cider and other fruit wines".to_string(),
        }),
        (11040, Code::<u32> {
            code: 11040,
            parent_code: None,
            description: "Manufacture of other non-distilled fermented beverages".to_string(),
        }),
        (11050, Code::<u32> {
            code: 11050,
            parent_code: None,
            description: "Manufacture of beer".to_string(),
        }),
        (11060, Code::<u32> {
            code: 11060,
            parent_code: None,
            description: "Manufacture of malt".to_string(),
        }),
        (11070, Code::<u32> {
            code: 11070,
            parent_code: None,
            description: "Manufacture of soft drinks; production of mineral waters and other bottled waters".to_string(),
        }),
        (12000, Code::<u32> {
            code: 12000,
            parent_code: None,
            description: "Manufacture of tobacco products".to_string(),
        }),
        (13100, Code::<u32> {
            code: 13100,
            parent_code: None,
            description: "Preparation and spinning of textile fibres".to_string(),
        }),
        (13200, Code::<u32> {
            code: 13200,
            parent_code: None,
            description: "Weaving of textiles".to_string(),
        }),
        (13300, Code::<u32> {
            code: 13300,
            parent_code: None,
            description: "Finishing of textiles".to_string(),
        }),
        (13910, Code::<u32> {
            code: 13910,
            parent_code: None,
            description: "Manufacture of knitted and crocheted fabrics".to_string(),
        }),
        (13921, Code::<u32> {
            code: 13921,
            parent_code: None,
            description: "Manufacture of soft furnishings".to_string(),
        }),
        (13922, Code::<u32> {
            code: 13922,
            parent_code: None,
            description: "manufacture of canvas goods, sacks, etc.".to_string(),
        }),
        (13923, Code::<u32> {
            code: 13923,
            parent_code: None,
            description: "manufacture of household textiles".to_string(),
        }),
        (13931, Code::<u32> {
            code: 13931,
            parent_code: None,
            description: "Manufacture of woven or tufted carpets and rugs".to_string(),
        }),
        (13939, Code::<u32> {
            code: 13939,
            parent_code: None,
            description: "Manufacture of other carpets and rugs".to_string(),
        }),
        (13940, Code::<u32> {
            code: 13940,
            parent_code: None,
            description: "Manufacture of cordage, rope, twine and netting".to_string(),
        }),
        (13950, Code::<u32> {
            code: 13950,
            parent_code: None,
            description: "Manufacture of non-wovens and articles made from non-wovens, except apparel".to_string(),
        }),
        (13960, Code::<u32> {
            code: 13960,
            parent_code: None,
            description: "Manufacture of other technical and industrial textiles".to_string(),
        }),
        (13990, Code::<u32> {
            code: 13990,
            parent_code: None,
            description: "Manufacture of other textiles n.e.c.".to_string(),
        }),
        (14110, Code::<u32> {
            code: 14110,
            parent_code: None,
            description: "Manufacture of leather clothes".to_string(),
        }),
        (14120, Code::<u32> {
            code: 14120,
            parent_code: None,
            description: "Manufacture of workwear".to_string(),
        }),
        (14131, Code::<u32> {
            code: 14131,
            parent_code: None,
            description: "Manufacture of other men's outerwear".to_string(),
        }),
        (14132, Code::<u32> {
            code: 14132,
            parent_code: None,
            description: "Manufacture of other women's outerwear".to_string(),
        }),
        (14141, Code::<u32> {
            code: 14141,
            parent_code: None,
            description: "Manufacture of men's underwear".to_string(),
        }),
        (14142, Code::<u32> {
            code: 14142,
            parent_code: None,
            description: "Manufacture of women's underwear".to_string(),
        }),
        (14190, Code::<u32> {
            code: 14190,
            parent_code: None,
            description: "Manufacture of other wearing apparel and accessories n.e.c.".to_string(),
        }),
        (14200, Code::<u32> {
            code: 14200,
            parent_code: None,
            description: "Manufacture of articles of fur".to_string(),
        }),
        (14310, Code::<u32> {
            code: 14310,
            parent_code: None,
            description: "Manufacture of knitted and crocheted hosiery".to_string(),
        }),
        (14390, Code::<u32> {
            code: 14390,
            parent_code: None,
            description: "Manufacture of other knitted and crocheted apparel".to_string(),
        }),
        (15110, Code::<u32> {
            code: 15110,
            parent_code: None,
            description: "Tanning and dressing of leather; dressing and dyeing of fur".to_string(),
        }),
        (15120, Code::<u32> {
            code: 15120,
            parent_code: None,
            description: "Manufacture of luggage, handbags and the like, saddlery and harness".to_string(),
        }),
        (15200, Code::<u32> {
            code: 15200,
            parent_code: None,
            description: "Manufacture of footwear".to_string(),
        }),
        (16100, Code::<u32> {
            code: 16100,
            parent_code: None,
            description: "Sawmilling and planing of wood".to_string(),
        }),
        (16210, Code::<u32> {
            code: 16210,
            parent_code: None,
            description: "Manufacture of veneer sheets and wood-based panels".to_string(),
        }),
        (16220, Code::<u32> {
            code: 16220,
            parent_code: None,
            description: "Manufacture of assembled parquet floors".to_string(),
        }),
        (16230, Code::<u32> {
            code: 16230,
            parent_code: None,
            description: "Manufacture of other builders' carpentry and joinery".to_string(),
        }),
        (16240, Code::<u32> {
            code: 16240,
            parent_code: None,
            description: "Manufacture of wooden containers".to_string(),
        }),
        (16290, Code::<u32> {
            code: 16290,
            parent_code: None,
            description: "Manufacture of other products of wood; manufacture of articles of cork, straw and plaiting materials".to_string(),
        }),
        (17110, Code::<u32> {
            code: 17110,
            parent_code: None,
            description: "Manufacture of pulp".to_string(),
        }),
        (17120, Code::<u32> {
            code: 17120,
            parent_code: None,
            description: "Manufacture of paper and paperboard".to_string(),
        }),
        (17211, Code::<u32> {
            code: 17211,
            parent_code: None,
            description: "Manufacture of corrugated paper and paperboard, sacks and bags".to_string(),
        }),
        (17219, Code::<u32> {
            code: 17219,
            parent_code: None,
            description: "Manufacture of other paper and paperboard containers".to_string(),
        }),
        (17220, Code::<u32> {
            code: 17220,
            parent_code: None,
            description: "Manufacture of household and sanitary goods and of toilet requisites".to_string(),
        }),
        (17230, Code::<u32> {
            code: 17230,
            parent_code: None,
            description: "Manufacture of paper stationery".to_string(),
        }),
        (17240, Code::<u32> {
            code: 17240,
            parent_code: None,
            description: "Manufacture of wallpaper".to_string(),
        }),
        (17290, Code::<u32> {
            code: 17290,
            parent_code: None,
            description: "Manufacture of other articles of paper and paperboard n.e.c.".to_string(),
        }),
        (18110, Code::<u32> {
            code: 18110,
            parent_code: None,
            description: "Printing of newspapers".to_string(),
        }),
        (18121, Code::<u32> {
            code: 18121,
            parent_code: None,
            description: "Manufacture of printed labels".to_string(),
        }),
        (18129, Code::<u32> {
            code: 18129,
            parent_code: None,
            description: "Printing n.e.c.".to_string(),
        }),
        (18130, Code::<u32> {
            code: 18130,
            parent_code: None,
            description: "Pre-press and pre-media services".to_string(),
        }),
        (18140, Code::<u32> {
            code: 18140,
            parent_code: None,
            description: "Binding and related services".to_string(),
        }),
        (18201, Code::<u32> {
            code: 18201,
            parent_code: None,
            description: "Reproduction of sound recording".to_string(),
        }),
        (18202, Code::<u32> {
            code: 18202,
            parent_code: None,
            description: "Reproduction of video recording".to_string(),
        }),
        (18203, Code::<u32> {
            code: 18203,
            parent_code: None,
            description: "Reproduction of computer media".to_string(),
        }),
        (19100, Code::<u32> {
            code: 19100,
            parent_code: None,
            description: "Manufacture of coke oven products".to_string(),
        }),
        (19201, Code::<u32> {
            code: 19201,
            parent_code: None,
            description: "Mineral oil refining".to_string(),
        }),
        (19209, Code::<u32> {
            code: 19209,
            parent_code: None,
            description: "Other treatment of petroleum products (excluding petrochemicals manufacture)".to_string(),
        }),
        (20110, Code::<u32> {
            code: 20110,
            parent_code: None,
            description: "Manufacture of industrial gases".to_string(),
        }),
        (20120, Code::<u32> {
            code: 20120,
            parent_code: None,
            description: "Manufacture of dyes and pigments".to_string(),
        }),
        (20130, Code::<u32> {
            code: 20130,
            parent_code: None,
            description: "Manufacture of other inorganic basic chemicals".to_string(),
        }),
        (20140, Code::<u32> {
            code: 20140,
            parent_code: None,
            description: "Manufacture of other organic basic chemicals".to_string(),
        }),
        (20150, Code::<u32> {
            code: 20150,
            parent_code: None,
            description: "Manufacture of fertilizers and nitrogen compounds".to_string(),
        }),
        (20160, Code::<u32> {
            code: 20160,
            parent_code: None,
            description: "Manufacture of plastics in primary forms".to_string(),
        }),
        (20170, Code::<u32> {
            code: 20170,
            parent_code: None,
            description: "Manufacture of synthetic rubber in primary forms".to_string(),
        }),
        (20200, Code::<u32> {
            code: 20200,
            parent_code: None,
            description: "Manufacture of pesticides and other agrochemical products".to_string(),
        }),
        (20301, Code::<u32> {
            code: 20301,
            parent_code: None,
            description: "Manufacture of paints, varnishes and similar coatings, mastics and sealants".to_string(),
        }),
        (20302, Code::<u32> {
            code: 20302,
            parent_code: None,
            description: "Manufacture of printing ink".to_string(),
        }),
        (20411, Code::<u32> {
            code: 20411,
            parent_code: None,
            description: "Manufacture of soap and detergents".to_string(),
        }),
        (20412, Code::<u32> {
            code: 20412,
            parent_code: None,
            description: "Manufacture of cleaning and polishing preparations".to_string(),
        }),
        (20420, Code::<u32> {
            code: 20420,
            parent_code: None,
            description: "Manufacture of perfumes and toilet preparations".to_string(),
        }),
        (20510, Code::<u32> {
            code: 20510,
            parent_code: None,
            description: "Manufacture of explosives".to_string(),
        }),
        (20520, Code::<u32> {
            code: 20520,
            parent_code: None,
            description: "Manufacture of glues".to_string(),
        }),
        (20530, Code::<u32> {
            code: 20530,
            parent_code: None,
            description: "Manufacture of essential oils".to_string(),
        }),
        (20590, Code::<u32> {
            code: 20590,
            parent_code: None,
            description: "Manufacture of other chemical products n.e.c.".to_string(),
        }),
        (20600, Code::<u32> {
            code: 20600,
            parent_code: None,
            description: "Manufacture of man-made fibres".to_string(),
        }),
        (21100, Code::<u32> {
            code: 21100,
            parent_code: None,
            description: "Manufacture of basic pharmaceutical products".to_string(),
        }),
        (21200, Code::<u32> {
            code: 21200,
            parent_code: None,
            description: "Manufacture of pharmaceutical preparations".to_string(),
        }),
        (22110, Code::<u32> {
            code: 22110,
            parent_code: None,
            description: "Manufacture of rubber tyres and tubes; retreading and rebuilding of rubber tyres".to_string(),
        }),
        (22190, Code::<u32> {
            code: 22190,
            parent_code: None,
            description: "Manufacture of other rubber products".to_string(),
        }),
        (22210, Code::<u32> {
            code: 22210,
            parent_code: None,
            description: "Manufacture of plastic plates, sheets, tubes and profiles".to_string(),
        }),
        (22220, Code::<u32> {
            code: 22220,
            parent_code: None,
            description: "Manufacture of plastic packing goods".to_string(),
        }),
        (22230, Code::<u32> {
            code: 22230,
            parent_code: None,
            description: "Manufacture of builders  ware of plastic".to_string(),
        }),
        (22290, Code::<u32> {
            code: 22290,
            parent_code: None,
            description: "Manufacture of other plastic products".to_string(),
        }),
        (23110, Code::<u32> {
            code: 23110,
            parent_code: None,
            description: "Manufacture of flat glass".to_string(),
        }),
        (23120, Code::<u32> {
            code: 23120,
            parent_code: None,
            description: "Shaping and processing of flat glass".to_string(),
        }),
        (23130, Code::<u32> {
            code: 23130,
            parent_code: None,
            description: "Manufacture of hollow glass".to_string(),
        }),
        (23140, Code::<u32> {
            code: 23140,
            parent_code: None,
            description: "Manufacture of glass fibres".to_string(),
        }),
        (23190, Code::<u32> {
            code: 23190,
            parent_code: None,
            description: "Manufacture and processing of other glass, including technical glassware".to_string(),
        }),
        (23200, Code::<u32> {
            code: 23200,
            parent_code: None,
            description: "Manufacture of refractory products".to_string(),
        }),
        (23310, Code::<u32> {
            code: 23310,
            parent_code: None,
            description: "Manufacture of ceramic tiles and flags".to_string(),
        }),
        (23320, Code::<u32> {
            code: 23320,
            parent_code: None,
            description: "Manufacture of bricks, tiles and construction products, in baked clay".to_string(),
        }),
        (23410, Code::<u32> {
            code: 23410,
            parent_code: None,
            description: "Manufacture of ceramic household and ornamental articles".to_string(),
        }),
        (23420, Code::<u32> {
            code: 23420,
            parent_code: None,
            description: "Manufacture of ceramic sanitary fixtures".to_string(),
        }),
        (23430, Code::<u32> {
            code: 23430,
            parent_code: None,
            description: "Manufacture of ceramic insulators and insulating fittings".to_string(),
        }),
        (23440, Code::<u32> {
            code: 23440,
            parent_code: None,
            description: "Manufacture of other technical ceramic products".to_string(),
        }),
        (23490, Code::<u32> {
            code: 23490,
            parent_code: None,
            description: "Manufacture of other ceramic products n.e.c.".to_string(),
        }),
        (23510, Code::<u32> {
            code: 23510,
            parent_code: None,
            description: "Manufacture of cement".to_string(),
        }),
        (23520, Code::<u32> {
            code: 23520,
            parent_code: None,
            description: "Manufacture of lime and plaster".to_string(),
        }),
        (23610, Code::<u32> {
            code: 23610,
            parent_code: None,
            description: "Manufacture of concrete products for construction purposes".to_string(),
        }),
        (23620, Code::<u32> {
            code: 23620,
            parent_code: None,
            description: "Manufacture of plaster products for construction purposes".to_string(),
        }),
        (23630, Code::<u32> {
            code: 23630,
            parent_code: None,
            description: "Manufacture of ready-mixed concrete".to_string(),
        }),
        (23640, Code::<u32> {
            code: 23640,
            parent_code: None,
            description: "Manufacture of mortars".to_string(),
        }),
        (23650, Code::<u32> {
            code: 23650,
            parent_code: None,
            description: "Manufacture of fibre cement".to_string(),
        }),
        (23690, Code::<u32> {
            code: 23690,
            parent_code: None,
            description: "Manufacture of other articles of concrete, plaster and cement".to_string(),
        }),
        (23700, Code::<u32> {
            code: 23700,
            parent_code: None,
            description: "Cutting, shaping and finishing of stone".to_string(),
        }),
        (23910, Code::<u32> {
            code: 23910,
            parent_code: None,
            description: "Production of abrasive products".to_string(),
        }),
        (23990, Code::<u32> {
            code: 23990,
            parent_code: None,
            description: "Manufacture of other non-metallic mineral products n.e.c.".to_string(),
        }),
        (24100, Code::<u32> {
            code: 24100,
            parent_code: None,
            description: "Manufacture of basic iron and steel and of ferro-alloys".to_string(),
        }),
        (24200, Code::<u32> {
            code: 24200,
            parent_code: None,
            description: "Manufacture of tubes, pipes, hollow profiles and related fittings, of steel".to_string(),
        }),
        (24310, Code::<u32> {
            code: 24310,
            parent_code: None,
            description: "Cold drawing of bars".to_string(),
        }),
        (24320, Code::<u32> {
            code: 24320,
            parent_code: None,
            description: "Cold rolling of narrow strip".to_string(),
        }),
        (24330, Code::<u32> {
            code: 24330,
            parent_code: None,
            description: "Cold forming or folding".to_string(),
        }),
        (24340, Code::<u32> {
            code: 24340,
            parent_code: None,
            description: "Cold drawing of wire".to_string(),
        }),
        (24410, Code::<u32> {
            code: 24410,
            parent_code: None,
            description: "Precious metals production".to_string(),
        }),
        (24420, Code::<u32> {
            code: 24420,
            parent_code: None,
            description: "Aluminium production".to_string(),
        }),
        (24430, Code::<u32> {
            code: 24430,
            parent_code: None,
            description: "Lead, zinc and tin production".to_string(),
        }),
        (24440, Code::<u32> {
            code: 24440,
            parent_code: None,
            description: "Copper production".to_string(),
        }),
        (24450, Code::<u32> {
            code: 24450,
            parent_code: None,
            description: "Other non-ferrous metal production".to_string(),
        }),
        (24460, Code::<u32> {
            code: 24460,
            parent_code: None,
            description: "Processing of nuclear fuel".to_string(),
        }),
        (24510, Code::<u32> {
            code: 24510,
            parent_code: None,
            description: "Casting of iron".to_string(),
        }),
        (24520, Code::<u32> {
            code: 24520,
            parent_code: None,
            description: "Casting of steel".to_string(),
        }),
        (24530, Code::<u32> {
            code: 24530,
            parent_code: None,
            description: "Casting of light metals".to_string(),
        }),
        (24540, Code::<u32> {
            code: 24540,
            parent_code: None,
            description: "Casting of other non-ferrous metals".to_string(),
        }),
        (25110, Code::<u32> {
            code: 25110,
            parent_code: None,
            description: "Manufacture of metal structures and parts of structures".to_string(),
        }),
        (25120, Code::<u32> {
            code: 25120,
            parent_code: None,
            description: "Manufacture of doors and windows of metal".to_string(),
        }),
        (25210, Code::<u32> {
            code: 25210,
            parent_code: None,
            description: "Manufacture of central heating radiators and boilers".to_string(),
        }),
        (25290, Code::<u32> {
            code: 25290,
            parent_code: None,
            description: "Manufacture of other tanks, reservoirs and containers of metal".to_string(),
        }),
        (25300, Code::<u32> {
            code: 25300,
            parent_code: None,
            description: "Manufacture of steam generators, except central heating hot water boilers".to_string(),
        }),
        (25400, Code::<u32> {
            code: 25400,
            parent_code: None,
            description: "Manufacture of weapons and ammunition".to_string(),
        }),
        (25500, Code::<u32> {
            code: 25500,
            parent_code: None,
            description: "Forging, pressing, stamping and roll-forming of metal; powder metallurgy".to_string(),
        }),
        (25610, Code::<u32> {
            code: 25610,
            parent_code: None,
            description: "Treatment and coating of metals".to_string(),
        }),
        (25620, Code::<u32> {
            code: 25620,
            parent_code: None,
            description: "Machining".to_string(),
        }),
        (25710, Code::<u32> {
            code: 25710,
            parent_code: None,
            description: "Manufacture of cutlery".to_string(),
        }),
        (25720, Code::<u32> {
            code: 25720,
            parent_code: None,
            description: "Manufacture of locks and hinges".to_string(),
        }),
        (25730, Code::<u32> {
            code: 25730,
            parent_code: None,
            description: "Manufacture of tools".to_string(),
        }),
        (25910, Code::<u32> {
            code: 25910,
            parent_code: None,
            description: "Manufacture of steel drums and similar containers".to_string(),
        }),
        (25920, Code::<u32> {
            code: 25920,
            parent_code: None,
            description: "Manufacture of light metal packaging".to_string(),
        }),
        (25930, Code::<u32> {
            code: 25930,
            parent_code: None,
            description: "Manufacture of wire products, chain and springs".to_string(),
        }),
        (25940, Code::<u32> {
            code: 25940,
            parent_code: None,
            description: "Manufacture of fasteners and screw machine products".to_string(),
        }),
        (25990, Code::<u32> {
            code: 25990,
            parent_code: None,
            description: "Manufacture of other fabricated metal products n.e.c.".to_string(),
        }),
        (26110, Code::<u32> {
            code: 26110,
            parent_code: None,
            description: "Manufacture of electronic components".to_string(),
        }),
        (26120, Code::<u32> {
            code: 26120,
            parent_code: None,
            description: "Manufacture of loaded electronic boards".to_string(),
        }),
        (26200, Code::<u32> {
            code: 26200,
            parent_code: None,
            description: "Manufacture of computers and peripheral equipment".to_string(),
        }),
        (26301, Code::<u32> {
            code: 26301,
            parent_code: None,
            description: "Manufacture of telegraph and telephone apparatus and equipment".to_string(),
        }),
        (26309, Code::<u32> {
            code: 26309,
            parent_code: None,
            description: "Manufacture of communication equipment other than telegraph, and telephone apparatus and equipment".to_string(),
        }),
        (26400, Code::<u32> {
            code: 26400,
            parent_code: None,
            description: "Manufacture of consumer electronics".to_string(),
        }),
        (26511, Code::<u32> {
            code: 26511,
            parent_code: None,
            description: "Manufacture of electronic measuring, testing etc. equipment, not for industrial process control".to_string(),
        }),
        (26512, Code::<u32> {
            code: 26512,
            parent_code: None,
            description: "Manufacture of electronic industrial process control equipment".to_string(),
        }),
        (26513, Code::<u32> {
            code: 26513,
            parent_code: None,
            description: "Manufacture of non-electronic measuring, testing etc. equipment, not for industrial process control".to_string(),
        }),
        (26514, Code::<u32> {
            code: 26514,
            parent_code: None,
            description: "Manufacture of non-electronic industrial process control equipment".to_string(),
        }),
        (26520, Code::<u32> {
            code: 26520,
            parent_code: None,
            description: "Manufacture of watches and clocks".to_string(),
        }),
        (26600, Code::<u32> {
            code: 26600,
            parent_code: None,
            description: "Manufacture of irradiation, electromedical and electrotherapeutic equipment".to_string(),
        }),
        (26701, Code::<u32> {
            code: 26701,
            parent_code: None,
            description: "Manufacture of optical precision instruments".to_string(),
        }),
        (26702, Code::<u32> {
            code: 26702,
            parent_code: None,
            description: "Manufacture of photographic and cinematographic equipment".to_string(),
        }),
        (26800, Code::<u32> {
            code: 26800,
            parent_code: None,
            description: "Manufacture of magnetic and optical media".to_string(),
        }),
        (27110, Code::<u32> {
            code: 27110,
            parent_code: None,
            description: "Manufacture of electric motors, generators and transformers".to_string(),
        }),
        (27120, Code::<u32> {
            code: 27120,
            parent_code: None,
            description: "Manufacture of electricity distribution and control apparatus".to_string(),
        }),
        (27200, Code::<u32> {
            code: 27200,
            parent_code: None,
            description: "Manufacture of batteries and accumulators".to_string(),
        }),
        (27310, Code::<u32> {
            code: 27310,
            parent_code: None,
            description: "Manufacture of fibre optic cables".to_string(),
        }),
        (27320, Code::<u32> {
            code: 27320,
            parent_code: None,
            description: "Manufacture of other electronic and electric wires and cables".to_string(),
        }),
        (27330, Code::<u32> {
            code: 27330,
            parent_code: None,
            description: "Manufacture of wiring devices".to_string(),
        }),
        (27400, Code::<u32> {
            code: 27400,
            parent_code: None,
            description: "Manufacture of electric lighting equipment".to_string(),
        }),
        (27510, Code::<u32> {
            code: 27510,
            parent_code: None,
            description: "Manufacture of electric domestic appliances".to_string(),
        }),
        (27520, Code::<u32> {
            code: 27520,
            parent_code: None,
            description: "Manufacture of non-electric domestic appliances".to_string(),
        }),
        (27900, Code::<u32> {
            code: 27900,
            parent_code: None,
            description: "Manufacture of other electrical equipment".to_string(),
        }),
        (28110, Code::<u32> {
            code: 28110,
            parent_code: None,
            description: "Manufacture of engines and turbines, except aircraft, vehicle and cycle engines".to_string(),
        }),
        (28120, Code::<u32> {
            code: 28120,
            parent_code: None,
            description: "Manufacture of fluid power equipment".to_string(),
        }),
        (28131, Code::<u32> {
            code: 28131,
            parent_code: None,
            description: "Manufacture of pumps".to_string(),
        }),
        (28132, Code::<u32> {
            code: 28132,
            parent_code: None,
            description: "Manufacture of compressors".to_string(),
        }),
        (28140, Code::<u32> {
            code: 28140,
            parent_code: None,
            description: "Manufacture of taps and valves".to_string(),
        }),
        (28150, Code::<u32> {
            code: 28150,
            parent_code: None,
            description: "Manufacture of bearings, gears, gearing and driving elements".to_string(),
        }),
        (28210, Code::<u32> {
            code: 28210,
            parent_code: None,
            description: "Manufacture of ovens, furnaces and furnace burners".to_string(),
        }),
        (28220, Code::<u32> {
            code: 28220,
            parent_code: None,
            description: "Manufacture of lifting and handling equipment".to_string(),
        }),
        (28230, Code::<u32> {
            code: 28230,
            parent_code: None,
            description: "Manufacture of office machinery and equipment (except computers and peripheral equipment)".to_string(),
        }),
        (28240, Code::<u32> {
            code: 28240,
            parent_code: None,
            description: "Manufacture of power-driven hand tools".to_string(),
        }),
        (28250, Code::<u32> {
            code: 28250,
            parent_code: None,
            description: "Manufacture of non-domestic cooling and ventilation equipment".to_string(),
        }),
        (28290, Code::<u32> {
            code: 28290,
            parent_code: None,
            description: "Manufacture of other general-purpose machinery n.e.c.".to_string(),
        }),
        (28301, Code::<u32> {
            code: 28301,
            parent_code: None,
            description: "Manufacture of agricultural tractors".to_string(),
        }),
        (28302, Code::<u32> {
            code: 28302,
            parent_code: None,
            description: "Manufacture of agricultural and forestry machinery other than tractors".to_string(),
        }),
        (28410, Code::<u32> {
            code: 28410,
            parent_code: None,
            description: "Manufacture of metal forming machinery".to_string(),
        }),
        (28490, Code::<u32> {
            code: 28490,
            parent_code: None,
            description: "Manufacture of other machine tools".to_string(),
        }),
        (28910, Code::<u32> {
            code: 28910,
            parent_code: None,
            description: "Manufacture of machinery for metallurgy".to_string(),
        }),
        (28921, Code::<u32> {
            code: 28921,
            parent_code: None,
            description: "Manufacture of machinery for mining".to_string(),
        }),
        (28922, Code::<u32> {
            code: 28922,
            parent_code: None,
            description: "Manufacture of earthmoving equipment".to_string(),
        }),
        (28923, Code::<u32> {
            code: 28923,
            parent_code: None,
            description: "Manufacture of equipment for concrete crushing and screening and roadworks".to_string(),
        }),
        (28930, Code::<u32> {
            code: 28930,
            parent_code: None,
            description: "Manufacture of machinery for food, beverage and tobacco processing".to_string(),
        }),
        (28940, Code::<u32> {
            code: 28940,
            parent_code: None,
            description: "Manufacture of machinery for textile, apparel and leather production".to_string(),
        }),
        (28950, Code::<u32> {
            code: 28950,
            parent_code: None,
            description: "Manufacture of machinery for paper and paperboard production".to_string(),
        }),
        (28960, Code::<u32> {
            code: 28960,
            parent_code: None,
            description: "Manufacture of plastics and rubber machinery".to_string(),
        }),
        (28990, Code::<u32> {
            code: 28990,
            parent_code: None,
            description: "Manufacture of other special-purpose machinery n.e.c.".to_string(),
        }),
        (29100, Code::<u32> {
            code: 29100,
            parent_code: None,
            description: "Manufacture of motor vehicles".to_string(),
        }),
        (29201, Code::<u32> {
            code: 29201,
            parent_code: None,
            description: "Manufacture of bodies (coachwork) for motor vehicles (except caravans)".to_string(),
        }),
        (29202, Code::<u32> {
            code: 29202,
            parent_code: None,
            description: "Manufacture of trailers and semi-trailers".to_string(),
        }),
        (29203, Code::<u32> {
            code: 29203,
            parent_code: None,
            description: "Manufacture of caravans".to_string(),
        }),
        (29310, Code::<u32> {
            code: 29310,
            parent_code: None,
            description: "Manufacture of electrical and electronic equipment for motor vehicles and their engines".to_string(),
        }),
        (29320, Code::<u32> {
            code: 29320,
            parent_code: None,
            description: "Manufacture of other parts and accessories for motor vehicles".to_string(),
        }),
        (30110, Code::<u32> {
            code: 30110,
            parent_code: None,
            description: "Building of ships and floating structures".to_string(),
        }),
        (30120, Code::<u32> {
            code: 30120,
            parent_code: None,
            description: "Building of pleasure and sporting boats".to_string(),
        }),
        (30200, Code::<u32> {
            code: 30200,
            parent_code: None,
            description: "Manufacture of railway locomotives and rolling stock".to_string(),
        }),
        (30300, Code::<u32> {
            code: 30300,
            parent_code: None,
            description: "Manufacture of air and spacecraft and related machinery".to_string(),
        }),
        (30400, Code::<u32> {
            code: 30400,
            parent_code: None,
            description: "Manufacture of military fighting vehicles".to_string(),
        }),
        (30910, Code::<u32> {
            code: 30910,
            parent_code: None,
            description: "Manufacture of motorcycles".to_string(),
        }),
        (30920, Code::<u32> {
            code: 30920,
            parent_code: None,
            description: "Manufacture of bicycles and invalid carriages".to_string(),
        }),
        (30990, Code::<u32> {
            code: 30990,
            parent_code: None,
            description: "Manufacture of other transport equipment n.e.c.".to_string(),
        }),
        (31010, Code::<u32> {
            code: 31010,
            parent_code: None,
            description: "Manufacture of office and shop furniture".to_string(),
        }),
        (31020, Code::<u32> {
            code: 31020,
            parent_code: None,
            description: "Manufacture of kitchen furniture".to_string(),
        }),
        (31030, Code::<u32> {
            code: 31030,
            parent_code: None,
            description: "Manufacture of mattresses".to_string(),
        }),
        (31090, Code::<u32> {
            code: 31090,
            parent_code: None,
            description: "Manufacture of other furniture".to_string(),
        }),
        (32110, Code::<u32> {
            code: 32110,
            parent_code: None,
            description: "Striking of coins".to_string(),
        }),
        (32120, Code::<u32> {
            code: 32120,
            parent_code: None,
            description: "Manufacture of jewellery and related articles".to_string(),
        }),
        (32130, Code::<u32> {
            code: 32130,
            parent_code: None,
            description: "Manufacture of imitation jewellery and related articles".to_string(),
        }),
        (32200, Code::<u32> {
            code: 32200,
            parent_code: None,
            description: "Manufacture of musical instruments".to_string(),
        }),
        (32300, Code::<u32> {
            code: 32300,
            parent_code: None,
            description: "Manufacture of sports goods".to_string(),
        }),
        (32401, Code::<u32> {
            code: 32401,
            parent_code: None,
            description: "Manufacture of professional and arcade games and toys".to_string(),
        }),
        (32409, Code::<u32> {
            code: 32409,
            parent_code: None,
            description: "Manufacture of other games and toys, n.e.c.".to_string(),
        }),
        (32500, Code::<u32> {
            code: 32500,
            parent_code: None,
            description: "Manufacture of medical and dental instruments and supplies".to_string(),
        }),
        (32910, Code::<u32> {
            code: 32910,
            parent_code: None,
            description: "Manufacture of brooms and brushes".to_string(),
        }),
        (32990, Code::<u32> {
            code: 32990,
            parent_code: None,
            description: "Other manufacturing n.e.c.".to_string(),
        }),
        (33110, Code::<u32> {
            code: 33110,
            parent_code: None,
            description: "Repair of fabricated metal products".to_string(),
        }),
        (33120, Code::<u32> {
            code: 33120,
            parent_code: None,
            description: "Repair of machinery".to_string(),
        }),
        (33130, Code::<u32> {
            code: 33130,
            parent_code: None,
            description: "Repair of electronic and optical equipment".to_string(),
        }),
        (33140, Code::<u32> {
            code: 33140,
            parent_code: None,
            description: "Repair of electrical equipment".to_string(),
        }),
        (33150, Code::<u32> {
            code: 33150,
            parent_code: None,
            description: "Repair and maintenance of ships and boats".to_string(),
        }),
        (33160, Code::<u32> {
            code: 33160,
            parent_code: None,
            description: "Repair and maintenance of aircraft and spacecraft".to_string(),
        }),
        (33170, Code::<u32> {
            code: 33170,
            parent_code: None,
            description: "Repair and maintenance of other transport equipment n.e.c.".to_string(),
        }),
        (33190, Code::<u32> {
            code: 33190,
            parent_code: None,
            description: "Repair of other equipment".to_string(),
        }),
        (33200, Code::<u32> {
            code: 33200,
            parent_code: None,
            description: "Installation of industrial machinery and equipment".to_string(),
        }),
        (35110, Code::<u32> {
            code: 35110,
            parent_code: None,
            description: "Production of electricity".to_string(),
        }),
        (35120, Code::<u32> {
            code: 35120,
            parent_code: None,
            description: "Transmission of electricity".to_string(),
        }),
        (35130, Code::<u32> {
            code: 35130,
            parent_code: None,
            description: "Distribution of electricity".to_string(),
        }),
        (35140, Code::<u32> {
            code: 35140,
            parent_code: None,
            description: "Trade of electricity".to_string(),
        }),
        (35210, Code::<u32> {
            code: 35210,
            parent_code: None,
            description: "Manufacture of gas".to_string(),
        }),
        (35220, Code::<u32> {
            code: 35220,
            parent_code: None,
            description: "Distribution of gaseous fuels through mains".to_string(),
        }),
        (35230, Code::<u32> {
            code: 35230,
            parent_code: None,
            description: "Trade of gas through mains".to_string(),
        }),
        (35300, Code::<u32> {
            code: 35300,
            parent_code: None,
            description: "Steam and air conditioning supply".to_string(),
        }),
        (36000, Code::<u32> {
            code: 36000,
            parent_code: None,
            description: "Water collection, treatment and supply".to_string(),
        }),
        (37000, Code::<u32> {
            code: 37000,
            parent_code: None,
            description: "Sewerage".to_string(),
        }),
        (38110, Code::<u32> {
            code: 38110,
            parent_code: None,
            description: "Collection of non-hazardous waste".to_string(),
        }),
        (38120, Code::<u32> {
            code: 38120,
            parent_code: None,
            description: "Collection of hazardous waste".to_string(),
        }),
        (38210, Code::<u32> {
            code: 38210,
            parent_code: None,
            description: "Treatment and disposal of non-hazardous waste".to_string(),
        }),
        (38220, Code::<u32> {
            code: 38220,
            parent_code: None,
            description: "Treatment and disposal of hazardous waste".to_string(),
        }),
        (38310, Code::<u32> {
            code: 38310,
            parent_code: None,
            description: "Dismantling of wrecks".to_string(),
        }),
        (38320, Code::<u32> {
            code: 38320,
            parent_code: None,
            description: "Recovery of sorted materials".to_string(),
        }),
        (39000, Code::<u32> {
            code: 39000,
            parent_code: None,
            description: "Remediation activities and other waste management services".to_string(),
        }),
        (41100, Code::<u32> {
            code: 41100,
            parent_code: None,
            description: "Development of building projects".to_string(),
        }),
        (41201, Code::<u32> {
            code: 41201,
            parent_code: None,
            description: "Construction of commercial buildings".to_string(),
        }),
        (41202, Code::<u32> {
            code: 41202,
            parent_code: None,
            description: "Construction of domestic buildings".to_string(),
        }),
        (42110, Code::<u32> {
            code: 42110,
            parent_code: None,
            description: "Construction of roads and motorways".to_string(),
        }),
        (42120, Code::<u32> {
            code: 42120,
            parent_code: None,
            description: "Construction of railways and underground railways".to_string(),
        }),
        (42130, Code::<u32> {
            code: 42130,
            parent_code: None,
            description: "Construction of bridges and tunnels".to_string(),
        }),
        (42210, Code::<u32> {
            code: 42210,
            parent_code: None,
            description: "Construction of utility projects for fluids".to_string(),
        }),
        (42220, Code::<u32> {
            code: 42220,
            parent_code: None,
            description: "Construction of utility projects for electricity and telecommunications".to_string(),
        }),
        (42910, Code::<u32> {
            code: 42910,
            parent_code: None,
            description: "Construction of water projects".to_string(),
        }),
        (42990, Code::<u32> {
            code: 42990,
            parent_code: None,
            description: "Construction of other civil engineering projects n.e.c.".to_string(),
        }),
        (43110, Code::<u32> {
            code: 43110,
            parent_code: None,
            description: "Demolition".to_string(),
        }),
        (43120, Code::<u32> {
            code: 43120,
            parent_code: None,
            description: "Site preparation".to_string(),
        }),
        (43130, Code::<u32> {
            code: 43130,
            parent_code: None,
            description: "Test drilling and boring".to_string(),
        }),
        (43210, Code::<u32> {
            code: 43210,
            parent_code: None,
            description: "Electrical installation".to_string(),
        }),
        (43220, Code::<u32> {
            code: 43220,
            parent_code: None,
            description: "Plumbing, heat and air-conditioning installation".to_string(),
        }),
        (43290, Code::<u32> {
            code: 43290,
            parent_code: None,
            description: "Other construction installation".to_string(),
        }),
        (43310, Code::<u32> {
            code: 43310,
            parent_code: None,
            description: "Plastering".to_string(),
        }),
        (43320, Code::<u32> {
            code: 43320,
            parent_code: None,
            description: "Joinery installation".to_string(),
        }),
        (43330, Code::<u32> {
            code: 43330,
            parent_code: None,
            description: "Floor and wall covering".to_string(),
        }),
        (43341, Code::<u32> {
            code: 43341,
            parent_code: None,
            description: "Painting".to_string(),
        }),
        (43342, Code::<u32> {
            code: 43342,
            parent_code: None,
            description: "Glazing".to_string(),
        }),
        (43390, Code::<u32> {
            code: 43390,
            parent_code: None,
            description: "Other building completion and finishing".to_string(),
        }),
        (43910, Code::<u32> {
            code: 43910,
            parent_code: None,
            description: "Roofing activities".to_string(),
        }),
        (43991, Code::<u32> {
            code: 43991,
            parent_code: None,
            description: "Scaffold erection".to_string(),
        }),
        (43999, Code::<u32> {
            code: 43999,
            parent_code: None,
            description: "Other specialised construction activities n.e.c.".to_string(),
        }),
        (45111, Code::<u32> {
            code: 45111,
            parent_code: None,
            description: "Sale of new cars and light motor vehicles".to_string(),
        }),
        (45112, Code::<u32> {
            code: 45112,
            parent_code: None,
            description: "Sale of used cars and light motor vehicles".to_string(),
        }),
        (45190, Code::<u32> {
            code: 45190,
            parent_code: None,
            description: "Sale of other motor vehicles".to_string(),
        }),
        (45200, Code::<u32> {
            code: 45200,
            parent_code: None,
            description: "Maintenance and repair of motor vehicles".to_string(),
        }),
        (45310, Code::<u32> {
            code: 45310,
            parent_code: None,
            description: "Wholesale trade of motor vehicle parts and accessories".to_string(),
        }),
        (45320, Code::<u32> {
            code: 45320,
            parent_code: None,
            description: "Retail trade of motor vehicle parts and accessories".to_string(),
        }),
        (45400, Code::<u32> {
            code: 45400,
            parent_code: None,
            description: "Sale, maintenance and repair of motorcycles and related parts and accessories".to_string(),
        }),
        (46110, Code::<u32> {
            code: 46110,
            parent_code: None,
            description: "Agents selling agricultural raw materials, livestock, textile raw materials and semi-finished goods".to_string(),
        }),
        (46120, Code::<u32> {
            code: 46120,
            parent_code: None,
            description: "Agents involved in the sale of fuels, ores, metals and industrial chemicals".to_string(),
        }),
        (46130, Code::<u32> {
            code: 46130,
            parent_code: None,
            description: "Agents involved in the sale of timber and building materials".to_string(),
        }),
        (46140, Code::<u32> {
            code: 46140,
            parent_code: None,
            description: "Agents involved in the sale of machinery, industrial equipment, ships and aircraft".to_string(),
        }),
        (46150, Code::<u32> {
            code: 46150,
            parent_code: None,
            description: "Agents involved in the sale of furniture, household goods, hardware and ironmongery".to_string(),
        }),
        (46160, Code::<u32> {
            code: 46160,
            parent_code: None,
            description: "Agents involved in the sale of textiles, clothing, fur, footwear and leather goods".to_string(),
        }),
        (46170, Code::<u32> {
            code: 46170,
            parent_code: None,
            description: "Agents involved in the sale of food, beverages and tobacco".to_string(),
        }),
        (46180, Code::<u32> {
            code: 46180,
            parent_code: None,
            description: "Agents specialized in the sale of other particular products".to_string(),
        }),
        (46190, Code::<u32> {
            code: 46190,
            parent_code: None,
            description: "Agents involved in the sale of a variety of goods".to_string(),
        }),
        (46210, Code::<u32> {
            code: 46210,
            parent_code: None,
            description: "Wholesale of grain, unmanufactured tobacco, seeds and animal feeds".to_string(),
        }),
        (46220, Code::<u32> {
            code: 46220,
            parent_code: None,
            description: "Wholesale of flowers and plants".to_string(),
        }),
        (46230, Code::<u32> {
            code: 46230,
            parent_code: None,
            description: "Wholesale of live animals".to_string(),
        }),
        (46240, Code::<u32> {
            code: 46240,
            parent_code: None,
            description: "Wholesale of hides, skins and leather".to_string(),
        }),
        (46310, Code::<u32> {
            code: 46310,
            parent_code: None,
            description: "Wholesale of fruit and vegetables".to_string(),
        }),
        (46320, Code::<u32> {
            code: 46320,
            parent_code: None,
            description: "Wholesale of meat and meat products".to_string(),
        }),
        (46330, Code::<u32> {
            code: 46330,
            parent_code: None,
            description: "Wholesale of dairy products, eggs and edible oils and fats".to_string(),
        }),
        (46341, Code::<u32> {
            code: 46341,
            parent_code: None,
            description: "Wholesale of fruit and vegetable juices, mineral water and soft drinks".to_string(),
        }),
        (46342, Code::<u32> {
            code: 46342,
            parent_code: None,
            description: "Wholesale of wine, beer, spirits and other alcoholic beverages".to_string(),
        }),
        (46350, Code::<u32> {
            code: 46350,
            parent_code: None,
            description: "Wholesale of tobacco products".to_string(),
        }),
        (46360, Code::<u32> {
            code: 46360,
            parent_code: None,
            description: "Wholesale of sugar and chocolate and sugar confectionery".to_string(),
        }),
        (46370, Code::<u32> {
            code: 46370,
            parent_code: None,
            description: "Wholesale of coffee, tea, cocoa and spices".to_string(),
        }),
        (46380, Code::<u32> {
            code: 46380,
            parent_code: None,
            description: "Wholesale of other food, including fish, crustaceans and molluscs".to_string(),
        }),
        (46390, Code::<u32> {
            code: 46390,
            parent_code: None,
            description: "Non-specialised wholesale of food, beverages and tobacco".to_string(),
        }),
        (46410, Code::<u32> {
            code: 46410,
            parent_code: None,
            description: "Wholesale of textiles".to_string(),
        }),
        (46420, Code::<u32> {
            code: 46420,
            parent_code: None,
            description: "Wholesale of clothing and footwear".to_string(),
        }),
        (46431, Code::<u32> {
            code: 46431,
            parent_code: None,
            description: "Wholesale of audio tapes, records, CDs and video tapes and the equipment on which these are played".to_string(),
        }),
        (46439, Code::<u32> {
            code: 46439,
            parent_code: None,
            description: "Wholesale of radio, television goods & electrical household appliances (other than records, tapes, CD's & video tapes and the equipment used for playing them)".to_string(),
        }),
        (46440, Code::<u32> {
            code: 46440,
            parent_code: None,
            description: "Wholesale of china and glassware and cleaning materials".to_string(),
        }),
        (46450, Code::<u32> {
            code: 46450,
            parent_code: None,
            description: "Wholesale of perfume and cosmetics".to_string(),
        }),
        (46460, Code::<u32> {
            code: 46460,
            parent_code: None,
            description: "Wholesale of pharmaceutical goods".to_string(),
        }),
        (46470, Code::<u32> {
            code: 46470,
            parent_code: None,
            description: "Wholesale of furniture, carpets and lighting equipment".to_string(),
        }),
        (46480, Code::<u32> {
            code: 46480,
            parent_code: None,
            description: "Wholesale of watches and jewellery".to_string(),
        }),
        (46491, Code::<u32> {
            code: 46491,
            parent_code: None,
            description: "Wholesale of musical instruments".to_string(),
        }),
        (46499, Code::<u32> {
            code: 46499,
            parent_code: None,
            description: "Wholesale of household goods (other than musical instruments) n.e.c.".to_string(),
        }),
        (46510, Code::<u32> {
            code: 46510,
            parent_code: None,
            description: "Wholesale of computers, computer peripheral equipment and software".to_string(),
        }),
        (46520, Code::<u32> {
            code: 46520,
            parent_code: None,
            description: "Wholesale of electronic and telecommunications equipment and parts".to_string(),
        }),
        (46610, Code::<u32> {
            code: 46610,
            parent_code: None,
            description: "Wholesale of agricultural machinery, equipment and supplies".to_string(),
        }),
        (46620, Code::<u32> {
            code: 46620,
            parent_code: None,
            description: "Wholesale of machine tools".to_string(),
        }),
        (46630, Code::<u32> {
            code: 46630,
            parent_code: None,
            description: "Wholesale of mining, construction and civil engineering machinery".to_string(),
        }),
        (46640, Code::<u32> {
            code: 46640,
            parent_code: None,
            description: "Wholesale of machinery for the textile industry and of sewing and knitting machines".to_string(),
        }),
        (46650, Code::<u32> {
            code: 46650,
            parent_code: None,
            description: "Wholesale of office furniture".to_string(),
        }),
        (46660, Code::<u32> {
            code: 46660,
            parent_code: None,
            description: "Wholesale of other office machinery and equipment".to_string(),
        }),
        (46690, Code::<u32> {
            code: 46690,
            parent_code: None,
            description: "Wholesale of other machinery and equipment".to_string(),
        }),
        (46711, Code::<u32> {
            code: 46711,
            parent_code: None,
            description: "Wholesale of petroleum and petroleum products".to_string(),
        }),
        (46719, Code::<u32> {
            code: 46719,
            parent_code: None,
            description: "Wholesale of other fuels and related products".to_string(),
        }),
        (46720, Code::<u32> {
            code: 46720,
            parent_code: None,
            description: "Wholesale of metals and metal ores".to_string(),
        }),
        (46730, Code::<u32> {
            code: 46730,
            parent_code: None,
            description: "Wholesale of wood, construction materials and sanitary equipment".to_string(),
        }),
        (46740, Code::<u32> {
            code: 46740,
            parent_code: None,
            description: "Wholesale of hardware, plumbing and heating equipment and supplies".to_string(),
        }),
        (46750, Code::<u32> {
            code: 46750,
            parent_code: None,
            description: "Wholesale of chemical products".to_string(),
        }),
        (46760, Code::<u32> {
            code: 46760,
            parent_code: None,
            description: "Wholesale of other intermediate products".to_string(),
        }),
        (46770, Code::<u32> {
            code: 46770,
            parent_code: None,
            description: "Wholesale of waste and scrap".to_string(),
        }),
        (46900, Code::<u32> {
            code: 46900,
            parent_code: None,
            description: "Non-specialised wholesale trade".to_string(),
        }),
        (47110, Code::<u32> {
            code: 47110,
            parent_code: None,
            description: "Retail sale in non-specialised stores with food, beverages or tobacco predominating".to_string(),
        }),
        (47190, Code::<u32> {
            code: 47190,
            parent_code: None,
            description: "Other retail sale in non-specialised stores".to_string(),
        }),
        (47210, Code::<u32> {
            code: 47210,
            parent_code: None,
            description: "Retail sale of fruit and vegetables in specialised stores".to_string(),
        }),
        (47220, Code::<u32> {
            code: 47220,
            parent_code: None,
            description: "Retail sale of meat and meat products in specialised stores".to_string(),
        }),
        (47230, Code::<u32> {
            code: 47230,
            parent_code: None,
            description: "Retail sale of fish, crustaceans and molluscs in specialised stores".to_string(),
        }),
        (47240, Code::<u32> {
            code: 47240,
            parent_code: None,
            description: "Retail sale of bread, cakes, flour confectionery and sugar confectionery in specialised stores".to_string(),
        }),
        (47250, Code::<u32> {
            code: 47250,
            parent_code: None,
            description: "Retail sale of beverages in specialised stores".to_string(),
        }),
        (47260, Code::<u32> {
            code: 47260,
            parent_code: None,
            description: "Retail sale of tobacco products in specialised stores".to_string(),
        }),
        (47290, Code::<u32> {
            code: 47290,
            parent_code: None,
            description: "Other retail sale of food in specialised stores".to_string(),
        }),
        (47300, Code::<u32> {
            code: 47300,
            parent_code: None,
            description: "Retail sale of automotive fuel in specialised stores".to_string(),
        }),
        (47410, Code::<u32> {
            code: 47410,
            parent_code: None,
            description: "Retail sale of computers, peripheral units and software in specialised stores".to_string(),
        }),
        (47421, Code::<u32> {
            code: 47421,
            parent_code: None,
            description: "Retail sale of mobile telephones".to_string(),
        }),
        (47429, Code::<u32> {
            code: 47429,
            parent_code: None,
            description: "Retail sale of telecommunications equipment other than mobile telephones".to_string(),
        }),
        (47430, Code::<u32> {
            code: 47430,
            parent_code: None,
            description: "Retail sale of audio and video equipment in specialised stores".to_string(),
        }),
        (47510, Code::<u32> {
            code: 47510,
            parent_code: None,
            description: "Retail sale of textiles in specialised stores".to_string(),
        }),
        (47520, Code::<u32> {
            code: 47520,
            parent_code: None,
            description: "Retail sale of hardware, paints and glass in specialised stores".to_string(),
        }),
        (47530, Code::<u32> {
            code: 47530,
            parent_code: None,
            description: "Retail sale of carpets, rugs, wall and floor coverings in specialised stores".to_string(),
        }),
        (47540, Code::<u32> {
            code: 47540,
            parent_code: None,
            description: "Retail sale of electrical household appliances in specialised stores".to_string(),
        }),
        (47591, Code::<u32> {
            code: 47591,
            parent_code: None,
            description: "Retail sale of musical instruments and scores".to_string(),
        }),
        (47599, Code::<u32> {
            code: 47599,
            parent_code: None,
            description: "Retail of furniture, lighting, and similar (not musical instruments or scores) in specialised store".to_string(),
        }),
        (47610, Code::<u32> {
            code: 47610,
            parent_code: None,
            description: "Retail sale of books in specialised stores".to_string(),
        }),
        (47620, Code::<u32> {
            code: 47620,
            parent_code: None,
            description: "Retail sale of newspapers and stationery in specialised stores".to_string(),
        }),
        (47630, Code::<u32> {
            code: 47630,
            parent_code: None,
            description: "Retail sale of music and video recordings in specialised stores".to_string(),
        }),
        (47640, Code::<u32> {
            code: 47640,
            parent_code: None,
            description: "Retail sale of sports goods, fishing gear, camping goods, boats and bicycles".to_string(),
        }),
        (47650, Code::<u32> {
            code: 47650,
            parent_code: None,
            description: "Retail sale of games and toys in specialised stores".to_string(),
        }),
        (47710, Code::<u32> {
            code: 47710,
            parent_code: None,
            description: "Retail sale of clothing in specialised stores".to_string(),
        }),
        (47721, Code::<u32> {
            code: 47721,
            parent_code: None,
            description: "Retail sale of footwear in specialised stores".to_string(),
        }),
        (47722, Code::<u32> {
            code: 47722,
            parent_code: None,
            description: "Retail sale of leather goods in specialised stores".to_string(),
        }),
        (47730, Code::<u32> {
            code: 47730,
            parent_code: None,
            description: "Dispensing chemist in specialised stores".to_string(),
        }),
        (47741, Code::<u32> {
            code: 47741,
            parent_code: None,
            description: "Retail sale of hearing aids".to_string(),
        }),
        (47749, Code::<u32> {
            code: 47749,
            parent_code: None,
            description: "Retail sale of medical and orthopaedic goods in specialised stores (not incl. hearing aids) n.e.c.".to_string(),
        }),
        (47750, Code::<u32> {
            code: 47750,
            parent_code: None,
            description: "Retail sale of cosmetic and toilet articles in specialised stores".to_string(),
        }),
        (47760, Code::<u32> {
            code: 47760,
            parent_code: None,
            description: "Retail sale of flowers, plants, seeds, fertilizers, pet animals and pet food in specialised stores".to_string(),
        }),
        (47770, Code::<u32> {
            code: 47770,
            parent_code: None,
            description: "Retail sale of watches and jewellery in specialised stores".to_string(),
        }),
        (47781, Code::<u32> {
            code: 47781,
            parent_code: None,
            description: "Retail sale in commercial art galleries".to_string(),
        }),
        (47782, Code::<u32> {
            code: 47782,
            parent_code: None,
            description: "Retail sale by opticians".to_string(),
        }),
        (47789, Code::<u32> {
            code: 47789,
            parent_code: None,
            description: "Other retail sale of new goods in specialised stores (not commercial art galleries and opticians)".to_string(),
        }),
        (47791, Code::<u32> {
            code: 47791,
            parent_code: None,
            description: "Retail sale of antiques including antique books in stores".to_string(),
        }),
        (47799, Code::<u32> {
            code: 47799,
            parent_code: None,
            description: "Retail sale of other second-hand goods in stores (not incl. antiques)".to_string(),
        }),
        (47810, Code::<u32> {
            code: 47810,
            parent_code: None,
            description: "Retail sale via stalls and markets of food, beverages and tobacco products".to_string(),
        }),
        (47820, Code::<u32> {
            code: 47820,
            parent_code: None,
            description: "Retail sale via stalls and markets of textiles, clothing and footwear".to_string(),
        }),
        (47890, Code::<u32> {
            code: 47890,
            parent_code: None,
            description: "Retail sale via stalls and markets of other goods".to_string(),
        }),
        (47910, Code::<u32> {
            code: 47910,
            parent_code: None,
            description: "Retail sale via mail order houses or via Internet".to_string(),
        }),
        (47990, Code::<u32> {
            code: 47990,
            parent_code: None,
            description: "Other retail sale not in stores, stalls or markets".to_string(),
        }),
        (49100, Code::<u32> {
            code: 49100,
            parent_code: None,
            description: "Passenger rail transport, interurban".to_string(),
        }),
        (49200, Code::<u32> {
            code: 49200,
            parent_code: None,
            description: "Freight rail transport".to_string(),
        }),
        (49311, Code::<u32> {
            code: 49311,
            parent_code: None,
            description: "Urban and suburban passenger railway transportation by underground, metro and similar systems".to_string(),
        }),
        (49319, Code::<u32> {
            code: 49319,
            parent_code: None,
            description: "Other urban, suburban or metropolitan passenger land transport (not underground, metro or similar)".to_string(),
        }),
        (49320, Code::<u32> {
            code: 49320,
            parent_code: None,
            description: "Taxi operation".to_string(),
        }),
        (49390, Code::<u32> {
            code: 49390,
            parent_code: None,
            description: "Other passenger land transport".to_string(),
        }),
        (49410, Code::<u32> {
            code: 49410,
            parent_code: None,
            description: "Freight transport by road".to_string(),
        }),
        (49420, Code::<u32> {
            code: 49420,
            parent_code: None,
            description: "Removal services".to_string(),
        }),
        (49500, Code::<u32> {
            code: 49500,
            parent_code: None,
            description: "Transport via pipeline".to_string(),
        }),
        (50100, Code::<u32> {
            code: 50100,
            parent_code: None,
            description: "Sea and coastal passenger water transport".to_string(),
        }),
        (50200, Code::<u32> {
            code: 50200,
            parent_code: None,
            description: "Sea and coastal freight water transport".to_string(),
        }),
        (50300, Code::<u32> {
            code: 50300,
            parent_code: None,
            description: "Inland passenger water transport".to_string(),
        }),
        (50400, Code::<u32> {
            code: 50400,
            parent_code: None,
            description: "Inland freight water transport".to_string(),
        }),
        (51101, Code::<u32> {
            code: 51101,
            parent_code: None,
            description: "Scheduled passenger air transport".to_string(),
        }),
        (51102, Code::<u32> {
            code: 51102,
            parent_code: None,
            description: "Non-scheduled passenger air transport".to_string(),
        }),
        (51210, Code::<u32> {
            code: 51210,
            parent_code: None,
            description: "Freight air transport".to_string(),
        }),
        (51220, Code::<u32> {
            code: 51220,
            parent_code: None,
            description: "Space transport".to_string(),
        }),
        (52101, Code::<u32> {
            code: 52101,
            parent_code: None,
            description: "Operation of warehousing and storage facilities for water transport activities".to_string(),
        }),
        (52102, Code::<u32> {
            code: 52102,
            parent_code: None,
            description: "Operation of warehousing and storage facilities for air transport activities".to_string(),
        }),
        (52103, Code::<u32> {
            code: 52103,
            parent_code: None,
            description: "Operation of warehousing and storage facilities for land transport activities".to_string(),
        }),
        (52211, Code::<u32> {
            code: 52211,
            parent_code: None,
            description: "Operation of rail freight terminals".to_string(),
        }),
        (52212, Code::<u32> {
            code: 52212,
            parent_code: None,
            description: "Operation of rail passenger facilities at railway stations".to_string(),
        }),
        (52213, Code::<u32> {
            code: 52213,
            parent_code: None,
            description: "Operation of bus and coach passenger facilities at bus and coach stations".to_string(),
        }),
        (52219, Code::<u32> {
            code: 52219,
            parent_code: None,
            description: "Other service activities incidental to land transportation, n.e.c.".to_string(),
        }),
        (52220, Code::<u32> {
            code: 52220,
            parent_code: None,
            description: "Service activities incidental to water transportation".to_string(),
        }),
        (52230, Code::<u32> {
            code: 52230,
            parent_code: None,
            description: "Service activities incidental to air transportation".to_string(),
        }),
        (52241, Code::<u32> {
            code: 52241,
            parent_code: None,
            description: "Cargo handling for water transport activities".to_string(),
        }),
        (52242, Code::<u32> {
            code: 52242,
            parent_code: None,
            description: "Cargo handling for air transport activities".to_string(),
        }),
        (52243, Code::<u32> {
            code: 52243,
            parent_code: None,
            description: "Cargo handling for land transport activities".to_string(),
        }),
        (52290, Code::<u32> {
            code: 52290,
            parent_code: None,
            description: "Other transportation support activities".to_string(),
        }),
        (53100, Code::<u32> {
            code: 53100,
            parent_code: None,
            description: "Postal activities under universal service obligation".to_string(),
        }),
        (53201, Code::<u32> {
            code: 53201,
            parent_code: None,
            description: "Licensed carriers".to_string(),
        }),
        (53202, Code::<u32> {
            code: 53202,
            parent_code: None,
            description: "Unlicensed carrier".to_string(),
        }),
        (55100, Code::<u32> {
            code: 55100,
            parent_code: None,
            description: "Hotels and similar accommodation".to_string(),
        }),
        (55201, Code::<u32> {
            code: 55201,
            parent_code: None,
            description: "Holiday centres and villages".to_string(),
        }),
        (55202, Code::<u32> {
            code: 55202,
            parent_code: None,
            description: "Youth hostels".to_string(),
        }),
        (55209, Code::<u32> {
            code: 55209,
            parent_code: None,
            description: "Other holiday and other collective accommodation".to_string(),
        }),
        (55300, Code::<u32> {
            code: 55300,
            parent_code: None,
            description: "Recreational vehicle parks, trailer parks and camping grounds".to_string(),
        }),
        (55900, Code::<u32> {
            code: 55900,
            parent_code: None,
            description: "Other accommodation".to_string(),
        }),
        (56101, Code::<u32> {
            code: 56101,
            parent_code: None,
            description: "Licensed restaurants".to_string(),
        }),
        (56102, Code::<u32> {
            code: 56102,
            parent_code: None,
            description: "Unlicensed restaurants and cafes".to_string(),
        }),
        (56103, Code::<u32> {
            code: 56103,
            parent_code: None,
            description: "Take-away food shops and mobile food stands".to_string(),
        }),
        (56210, Code::<u32> {
            code: 56210,
            parent_code: None,
            description: "Event catering activities".to_string(),
        }),
        (56290, Code::<u32> {
            code: 56290,
            parent_code: None,
            description: "Other food services".to_string(),
        }),
        (56301, Code::<u32> {
            code: 56301,
            parent_code: None,
            description: "Licensed clubs".to_string(),
        }),
        (56302, Code::<u32> {
            code: 56302,
            parent_code: None,
            description: "Public houses and bars".to_string(),
        }),
        (58110, Code::<u32> {
            code: 58110,
            parent_code: None,
            description: "Book publishing".to_string(),
        }),
        (58120, Code::<u32> {
            code: 58120,
            parent_code: None,
            description: "Publishing of directories and mailing lists".to_string(),
        }),
        (58130, Code::<u32> {
            code: 58130,
            parent_code: None,
            description: "Publishing of newspapers".to_string(),
        }),
        (58141, Code::<u32> {
            code: 58141,
            parent_code: None,
            description: "Publishing of learned journals".to_string(),
        }),
        (58142, Code::<u32> {
            code: 58142,
            parent_code: None,
            description: "Publishing of  consumer and business journals and periodicals".to_string(),
        }),
        (58190, Code::<u32> {
            code: 58190,
            parent_code: None,
            description: "Other publishing activities".to_string(),
        }),
        (58210, Code::<u32> {
            code: 58210,
            parent_code: None,
            description: "Publishing of computer games".to_string(),
        }),
        (58290, Code::<u32> {
            code: 58290,
            parent_code: None,
            description: "Other software publishing".to_string(),
        }),
        (59111, Code::<u32> {
            code: 59111,
            parent_code: None,
            description: "Motion picture production activities".to_string(),
        }),
        (59112, Code::<u32> {
            code: 59112,
            parent_code: None,
            description: "Video production activities".to_string(),
        }),
        (59113, Code::<u32> {
            code: 59113,
            parent_code: None,
            description: "Television programme production activities".to_string(),
        }),
        (59120, Code::<u32> {
            code: 59120,
            parent_code: None,
            description: "Motion picture, video and television programme post-production activities".to_string(),
        }),
        (59131, Code::<u32> {
            code: 59131,
            parent_code: None,
            description: "Motion picture distribution activities".to_string(),
        }),
        (59132, Code::<u32> {
            code: 59132,
            parent_code: None,
            description: "Video distribution activities".to_string(),
        }),
        (59133, Code::<u32> {
            code: 59133,
            parent_code: None,
            description: "Television programme distribution activities".to_string(),
        }),
        (59140, Code::<u32> {
            code: 59140,
            parent_code: None,
            description: "Motion picture projection activities".to_string(),
        }),
        (59200, Code::<u32> {
            code: 59200,
            parent_code: None,
            description: "Sound recording and music publishing activities".to_string(),
        }),
        (60100, Code::<u32> {
            code: 60100,
            parent_code: None,
            description: "Radio broadcasting".to_string(),
        }),
        (60200, Code::<u32> {
            code: 60200,
            parent_code: None,
            description: "Television programming and broadcasting activities".to_string(),
        }),
        (61100, Code::<u32> {
            code: 61100,
            parent_code: None,
            description: "Wired telecommunications activities".to_string(),
        }),
        (61200, Code::<u32> {
            code: 61200,
            parent_code: None,
            description: "Wireless telecommunications activities".to_string(),
        }),
        (61300, Code::<u32> {
            code: 61300,
            parent_code: None,
            description: "Satellite telecommunications activities".to_string(),
        }),
        (61900, Code::<u32> {
            code: 61900,
            parent_code: None,
            description: "Other telecommunications activities".to_string(),
        }),
        (62011, Code::<u32> {
            code: 62011,
            parent_code: None,
            description: "Ready-made interactive leisure and entertainment software development".to_string(),
        }),
        (62012, Code::<u32> {
            code: 62012,
            parent_code: None,
            description: "Business and domestic software development".to_string(),
        }),
        (62020, Code::<u32> {
            code: 62020,
            parent_code: None,
            description: "Information technology consultancy activities".to_string(),
        }),
        (62030, Code::<u32> {
            code: 62030,
            parent_code: None,
            description: "Computer facilities management activities".to_string(),
        }),
        (62090, Code::<u32> {
            code: 62090,
            parent_code: None,
            description: "Other information technology service activities".to_string(),
        }),
        (63110, Code::<u32> {
            code: 63110,
            parent_code: None,
            description: "Data processing, hosting and related activities".to_string(),
        }),
        (63120, Code::<u32> {
            code: 63120,
            parent_code: None,
            description: "Web portals".to_string(),
        }),
        (63910, Code::<u32> {
            code: 63910,
            parent_code: None,
            description: "News agency activities".to_string(),
        }),
        (63990, Code::<u32> {
            code: 63990,
            parent_code: None,
            description: "Other information service activities n.e.c.".to_string(),
        }),
        (64110, Code::<u32> {
            code: 64110,
            parent_code: None,
            description: "Central banking".to_string(),
        }),
        (64191, Code::<u32> {
            code: 64191,
            parent_code: None,
            description: "Banks".to_string(),
        }),
        (64192, Code::<u32> {
            code: 64192,
            parent_code: None,
            description: "Building societies".to_string(),
        }),
        (64201, Code::<u32> {
            code: 64201,
            parent_code: None,
            description: "Activities of agricultural holding companies".to_string(),
        }),
        (64202, Code::<u32> {
            code: 64202,
            parent_code: None,
            description: "Activities of production holding companies".to_string(),
        }),
        (64203, Code::<u32> {
            code: 64203,
            parent_code: None,
            description: "Activities of construction holding companies".to_string(),
        }),
        (64204, Code::<u32> {
            code: 64204,
            parent_code: None,
            description: "Activities of distribution holding companies".to_string(),
        }),
        (64205, Code::<u32> {
            code: 64205,
            parent_code: None,
            description: "Activities of financial services holding companies".to_string(),
        }),
        (64209, Code::<u32> {
            code: 64209,
            parent_code: None,
            description: "Activities of other holding companies n.e.c.".to_string(),
        }),
        (64301, Code::<u32> {
            code: 64301,
            parent_code: None,
            description: "Activities of investment trusts".to_string(),
        }),
        (64302, Code::<u32> {
            code: 64302,
            parent_code: None,
            description: "Activities of unit trusts".to_string(),
        }),
        (64303, Code::<u32> {
            code: 64303,
            parent_code: None,
            description: "Activities of venture and development capital companies".to_string(),
        }),
        (64304, Code::<u32> {
            code: 64304,
            parent_code: None,
            description: "Activities of open-ended investment companies".to_string(),
        }),
        (64305, Code::<u32> {
            code: 64305,
            parent_code: None,
            description: "Activities of property unit trusts".to_string(),
        }),
        (64306, Code::<u32> {
            code: 64306,
            parent_code: None,
            description: "Activities of real estate investment trusts".to_string(),
        }),
        (64910, Code::<u32> {
            code: 64910,
            parent_code: None,
            description: "Financial leasing".to_string(),
        }),
        (64921, Code::<u32> {
            code: 64921,
            parent_code: None,
            description: "Credit granting by non-deposit taking finance houses and other specialist consumer credit grantors".to_string(),
        }),
        (64922, Code::<u32> {
            code: 64922,
            parent_code: None,
            description: "Activities of mortgage finance companies".to_string(),
        }),
        (64929, Code::<u32> {
            code: 64929,
            parent_code: None,
            description: "Other credit granting n.e.c.".to_string(),
        }),
        (64991, Code::<u32> {
            code: 64991,
            parent_code: None,
            description: "Security dealing on own account".to_string(),
        }),
        (64992, Code::<u32> {
            code: 64992,
            parent_code: None,
            description: "Factoring".to_string(),
        }),
        (64999, Code::<u32> {
            code: 64999,
            parent_code: None,
            description: "Financial intermediation not elsewhere classified".to_string(),
        }),
        (65110, Code::<u32> {
            code: 65110,
            parent_code: None,
            description: "Life insurance".to_string(),
        }),
        (65120, Code::<u32> {
            code: 65120,
            parent_code: None,
            description: "Non-life insurance".to_string(),
        }),
        (65201, Code::<u32> {
            code: 65201,
            parent_code: None,
            description: "Life reinsurance".to_string(),
        }),
        (65202, Code::<u32> {
            code: 65202,
            parent_code: None,
            description: "Non-life reinsurance".to_string(),
        }),
        (65300, Code::<u32> {
            code: 65300,
            parent_code: None,
            description: "Pension funding".to_string(),
        }),
        (66110, Code::<u32> {
            code: 66110,
            parent_code: None,
            description: "Administration of financial markets".to_string(),
        }),
        (66120, Code::<u32> {
            code: 66120,
            parent_code: None,
            description: "Security and commodity contracts dealing activities".to_string(),
        }),
        (66190, Code::<u32> {
            code: 66190,
            parent_code: None,
            description: "Activities auxiliary to financial intermediation n.e.c.".to_string(),
        }),
        (66210, Code::<u32> {
            code: 66210,
            parent_code: None,
            description: "Risk and damage evaluation".to_string(),
        }),
        (66220, Code::<u32> {
            code: 66220,
            parent_code: None,
            description: "Activities of insurance agents and brokers".to_string(),
        }),
        (66290, Code::<u32> {
            code: 66290,
            parent_code: None,
            description: "Other activities auxiliary to insurance and pension funding".to_string(),
        }),
        (66300, Code::<u32> {
            code: 66300,
            parent_code: None,
            description: "Fund management activities".to_string(),
        }),
        (68100, Code::<u32> {
            code: 68100,
            parent_code: None,
            description: "Buying and selling of own real estate".to_string(),
        }),
        (68201, Code::<u32> {
            code: 68201,
            parent_code: None,
            description: "Renting and operating of Housing Association real estate".to_string(),
        }),
        (68202, Code::<u32> {
            code: 68202,
            parent_code: None,
            description: "Letting and operating of conference and exhibition centres".to_string(),
        }),
        (68209, Code::<u32> {
            code: 68209,
            parent_code: None,
            description: "Other letting and operating of own or leased real estate".to_string(),
        }),
        (68310, Code::<u32> {
            code: 68310,
            parent_code: None,
            description: "Real estate agencies".to_string(),
        }),
        (68320, Code::<u32> {
            code: 68320,
            parent_code: None,
            description: "Management of real estate on a fee or contract basis".to_string(),
        }),
        (69101, Code::<u32> {
            code: 69101,
            parent_code: None,
            description: "Barristers at law".to_string(),
        }),
        (69102, Code::<u32> {
            code: 69102,
            parent_code: None,
            description: "Solicitors".to_string(),
        }),
        (69109, Code::<u32> {
            code: 69109,
            parent_code: None,
            description: "Activities of patent and copyright agents; other legal activities n.e.c.".to_string(),
        }),
        (69201, Code::<u32> {
            code: 69201,
            parent_code: None,
            description: "Accounting and auditing activities".to_string(),
        }),
        (69202, Code::<u32> {
            code: 69202,
            parent_code: None,
            description: "Bookkeeping activities".to_string(),
        }),
        (69203, Code::<u32> {
            code: 69203,
            parent_code: None,
            description: "Tax consultancy".to_string(),
        }),
        (70100, Code::<u32> {
            code: 70100,
            parent_code: None,
            description: "Activities of head offices".to_string(),
        }),
        (70210, Code::<u32> {
            code: 70210,
            parent_code: None,
            description: "Public relations and communications activities".to_string(),
        }),
        (70221, Code::<u32> {
            code: 70221,
            parent_code: None,
            description: "Financial management".to_string(),
        }),
        (70229, Code::<u32> {
            code: 70229,
            parent_code: None,
            description: "Management consultancy activities other than financial management".to_string(),
        }),
        (71111, Code::<u32> {
            code: 71111,
            parent_code: None,
            description: "Architectural activities".to_string(),
        }),
        (71112, Code::<u32> {
            code: 71112,
            parent_code: None,
            description: "Urban planning and landscape architectural activities".to_string(),
        }),
        (71121, Code::<u32> {
            code: 71121,
            parent_code: None,
            description: "Engineering design activities for industrial process and production".to_string(),
        }),
        (71122, Code::<u32> {
            code: 71122,
            parent_code: None,
            description: "Engineering related scientific and technical consulting activities".to_string(),
        }),
        (71129, Code::<u32> {
            code: 71129,
            parent_code: None,
            description: "Other engineering activities".to_string(),
        }),
        (71200, Code::<u32> {
            code: 71200,
            parent_code: None,
            description: "Technical testing and analysis".to_string(),
        }),
        (72110, Code::<u32> {
            code: 72110,
            parent_code: None,
            description: "Research and experimental development on biotechnology".to_string(),
        }),
        (72190, Code::<u32> {
            code: 72190,
            parent_code: None,
            description: "Other research and experimental development on natural sciences and engineering".to_string(),
        }),
        (72200, Code::<u32> {
            code: 72200,
            parent_code: None,
            description: "Research and experimental development on social sciences and humanities".to_string(),
        }),
        (73110, Code::<u32> {
            code: 73110,
            parent_code: None,
            description: "Advertising agencies".to_string(),
        }),
        (73120, Code::<u32> {
            code: 73120,
            parent_code: None,
            description: "Media representation services".to_string(),
        }),
        (73200, Code::<u32> {
            code: 73200,
            parent_code: None,
            description: "Market research and public opinion polling".to_string(),
        }),
        (74100, Code::<u32> {
            code: 74100,
            parent_code: None,
            description: "specialised design activities".to_string(),
        }),
        (74201, Code::<u32> {
            code: 74201,
            parent_code: None,
            description: "Portrait photographic activities".to_string(),
        }),
        (74202, Code::<u32> {
            code: 74202,
            parent_code: None,
            description: "Other specialist photography".to_string(),
        }),
        (74203, Code::<u32> {
            code: 74203,
            parent_code: None,
            description: "Film processing".to_string(),
        }),
        (74209, Code::<u32> {
            code: 74209,
            parent_code: None,
            description: "Photographic activities not elsewhere classified".to_string(),
        }),
        (74300, Code::<u32> {
            code: 74300,
            parent_code: None,
            description: "Translation and interpretation activities".to_string(),
        }),
        (74901, Code::<u32> {
            code: 74901,
            parent_code: None,
            description: "Environmental consulting activities".to_string(),
        }),
        (74902, Code::<u32> {
            code: 74902,
            parent_code: None,
            description: "Quantity surveying activities".to_string(),
        }),
        (74909, Code::<u32> {
            code: 74909,
            parent_code: None,
            description: "Other professional, scientific and technical activities n.e.c.".to_string(),
        }),
        (74990, Code::<u32> {
            code: 74990,
            parent_code: None,
            description: "Non-trading company".to_string(),
        }),
        (75000, Code::<u32> {
            code: 75000,
            parent_code: None,
            description: "Veterinary activities".to_string(),
        }),
        (77110, Code::<u32> {
            code: 77110,
            parent_code: None,
            description: "Renting and leasing of cars and light motor vehicles".to_string(),
        }),
        (77120, Code::<u32> {
            code: 77120,
            parent_code: None,
            description: "Renting and leasing of trucks and other heavy vehicles".to_string(),
        }),
        (77210, Code::<u32> {
            code: 77210,
            parent_code: None,
            description: "Renting and leasing of recreational and sports goods".to_string(),
        }),
        (77220, Code::<u32> {
            code: 77220,
            parent_code: None,
            description: "Renting of video tapes and disks".to_string(),
        }),
        (77291, Code::<u32> {
            code: 77291,
            parent_code: None,
            description: "Renting and leasing of media entertainment equipment".to_string(),
        }),
        (77299, Code::<u32> {
            code: 77299,
            parent_code: None,
            description: "Renting and leasing of other personal and household goods".to_string(),
        }),
        (77310, Code::<u32> {
            code: 77310,
            parent_code: None,
            description: "Renting and leasing of agricultural machinery and equipment".to_string(),
        }),
        (77320, Code::<u32> {
            code: 77320,
            parent_code: None,
            description: "Renting and leasing of construction and civil engineering machinery and equipment".to_string(),
        }),
        (77330, Code::<u32> {
            code: 77330,
            parent_code: None,
            description: "Renting and leasing of office machinery and equipment (including computers)".to_string(),
        }),
        (77341, Code::<u32> {
            code: 77341,
            parent_code: None,
            description: "Renting and leasing of passenger water transport equipment".to_string(),
        }),
        (77342, Code::<u32> {
            code: 77342,
            parent_code: None,
            description: "Renting and leasing of freight water transport equipment".to_string(),
        }),
        (77351, Code::<u32> {
            code: 77351,
            parent_code: None,
            description: "Renting and leasing of air passenger transport equipment".to_string(),
        }),
        (77352, Code::<u32> {
            code: 77352,
            parent_code: None,
            description: "Renting and leasing of freight air transport equipment".to_string(),
        }),
        (77390, Code::<u32> {
            code: 77390,
            parent_code: None,
            description: "Renting and leasing of other machinery, equipment and tangible goods n.e.c.".to_string(),
        }),
        (77400, Code::<u32> {
            code: 77400,
            parent_code: None,
            description: "Leasing of intellectual property and similar products, except copyright works".to_string(),
        }),
        (78101, Code::<u32> {
            code: 78101,
            parent_code: None,
            description: "Motion picture, television and other theatrical casting activities".to_string(),
        }),
        (78109, Code::<u32> {
            code: 78109,
            parent_code: None,
            description: "Other activities of employment placement agencies".to_string(),
        }),
        (78200, Code::<u32> {
            code: 78200,
            parent_code: None,
            description: "Temporary employment agency activities".to_string(),
        }),
        (78300, Code::<u32> {
            code: 78300,
            parent_code: None,
            description: "Human resources provision and management of human resources functions".to_string(),
        }),
        (79110, Code::<u32> {
            code: 79110,
            parent_code: None,
            description: "Travel agency activities".to_string(),
        }),
        (79120, Code::<u32> {
            code: 79120,
            parent_code: None,
            description: "Tour operator activities".to_string(),
        }),
        (79901, Code::<u32> {
            code: 79901,
            parent_code: None,
            description: "Activities of tourist guides".to_string(),
        }),
        (79909, Code::<u32> {
            code: 79909,
            parent_code: None,
            description: "Other reservation service activities n.e.c.".to_string(),
        }),
        (80100, Code::<u32> {
            code: 80100,
            parent_code: None,
            description: "Private security activities".to_string(),
        }),
        (80200, Code::<u32> {
            code: 80200,
            parent_code: None,
            description: "Security systems service activities".to_string(),
        }),
        (80300, Code::<u32> {
            code: 80300,
            parent_code: None,
            description: "Investigation activities".to_string(),
        }),
        (81100, Code::<u32> {
            code: 81100,
            parent_code: None,
            description: "Combined facilities support activities".to_string(),
        }),
        (81210, Code::<u32> {
            code: 81210,
            parent_code: None,
            description: "General cleaning of buildings".to_string(),
        }),
        (81221, Code::<u32> {
            code: 81221,
            parent_code: None,
            description: "Window cleaning services".to_string(),
        }),
        (81222, Code::<u32> {
            code: 81222,
            parent_code: None,
            description: "Specialised cleaning services".to_string(),
        }),
        (81223, Code::<u32> {
            code: 81223,
            parent_code: None,
            description: "Furnace and chimney cleaning services".to_string(),
        }),
        (81229, Code::<u32> {
            code: 81229,
            parent_code: None,
            description: "Other building and industrial cleaning activities".to_string(),
        }),
        (81291, Code::<u32> {
            code: 81291,
            parent_code: None,
            description: "Disinfecting and exterminating services".to_string(),
        }),
        (81299, Code::<u32> {
            code: 81299,
            parent_code: None,
            description: "Other cleaning services".to_string(),
        }),
        (81300, Code::<u32> {
            code: 81300,
            parent_code: None,
            description: "Landscape service activities".to_string(),
        }),
        (82110, Code::<u32> {
            code: 82110,
            parent_code: None,
            description: "Combined office administrative service activities".to_string(),
        }),
        (82190, Code::<u32> {
            code: 82190,
            parent_code: None,
            description: "Photocopying, document preparation and other specialised office support activities".to_string(),
        }),
        (82200, Code::<u32> {
            code: 82200,
            parent_code: None,
            description: "Activities of call centres".to_string(),
        }),
        (82301, Code::<u32> {
            code: 82301,
            parent_code: None,
            description: "Activities of exhibition and fair organisers".to_string(),
        }),
        (82302, Code::<u32> {
            code: 82302,
            parent_code: None,
            description: "Activities of conference organisers".to_string(),
        }),
        (82911, Code::<u32> {
            code: 82911,
            parent_code: None,
            description: "Activities of collection agencies".to_string(),
        }),
        (82912, Code::<u32> {
            code: 82912,
            parent_code: None,
            description: "Activities of credit bureaus".to_string(),
        }),
        (82920, Code::<u32> {
            code: 82920,
            parent_code: None,
            description: "Packaging activities".to_string(),
        }),
        (82990, Code::<u32> {
            code: 82990,
            parent_code: None,
            description: "Other business support service activities n.e.c.".to_string(),
        }),
        (84110, Code::<u32> {
            code: 84110,
            parent_code: None,
            description: "General public administration activities".to_string(),
        }),
        (84120, Code::<u32> {
            code: 84120,
            parent_code: None,
            description: "Regulation of health care, education, cultural and other social services, not incl. social security".to_string(),
        }),
        (84130, Code::<u32> {
            code: 84130,
            parent_code: None,
            description: "Regulation of and contribution to more efficient operation of businesses".to_string(),
        }),
        (84210, Code::<u32> {
            code: 84210,
            parent_code: None,
            description: "Foreign affairs".to_string(),
        }),
        (84220, Code::<u32> {
            code: 84220,
            parent_code: None,
            description: "Defence activities".to_string(),
        }),
        (84230, Code::<u32> {
            code: 84230,
            parent_code: None,
            description: "Justice and judicial activities".to_string(),
        }),
        (84240, Code::<u32> {
            code: 84240,
            parent_code: None,
            description: "Public order and safety activities".to_string(),
        }),
        (84250, Code::<u32> {
            code: 84250,
            parent_code: None,
            description: "Fire service activities".to_string(),
        }),
        (84300, Code::<u32> {
            code: 84300,
            parent_code: None,
            description: "Compulsory social security activities".to_string(),
        }),
        (85100, Code::<u32> {
            code: 85100,
            parent_code: None,
            description: "Pre-primary education".to_string(),
        }),
        (85200, Code::<u32> {
            code: 85200,
            parent_code: None,
            description: "Primary education".to_string(),
        }),
        (85310, Code::<u32> {
            code: 85310,
            parent_code: None,
            description: "General secondary education".to_string(),
        }),
        (85320, Code::<u32> {
            code: 85320,
            parent_code: None,
            description: "Technical and vocational secondary education".to_string(),
        }),
        (85410, Code::<u32> {
            code: 85410,
            parent_code: None,
            description: "Post-secondary non-tertiary education".to_string(),
        }),
        (85421, Code::<u32> {
            code: 85421,
            parent_code: None,
            description: "First-degree level higher education".to_string(),
        }),
        (85422, Code::<u32> {
            code: 85422,
            parent_code: None,
            description: "Post-graduate level higher education".to_string(),
        }),
        (85510, Code::<u32> {
            code: 85510,
            parent_code: None,
            description: "Sports and recreation education".to_string(),
        }),
        (85520, Code::<u32> {
            code: 85520,
            parent_code: None,
            description: "Cultural education".to_string(),
        }),
        (85530, Code::<u32> {
            code: 85530,
            parent_code: None,
            description: "Driving school activities".to_string(),
        }),
        (85590, Code::<u32> {
            code: 85590,
            parent_code: None,
            description: "Other education n.e.c.".to_string(),
        }),
        (85600, Code::<u32> {
            code: 85600,
            parent_code: None,
            description: "Educational support services".to_string(),
        }),
        (86101, Code::<u32> {
            code: 86101,
            parent_code: None,
            description: "Hospital activities".to_string(),
        }),
        (86102, Code::<u32> {
            code: 86102,
            parent_code: None,
            description: "Medical nursing home activities".to_string(),
        }),
        (86210, Code::<u32> {
            code: 86210,
            parent_code: None,
            description: "General medical practice activities".to_string(),
        }),
        (86220, Code::<u32> {
            code: 86220,
            parent_code: None,
            description: "Specialists medical practice activities".to_string(),
        }),
        (86230, Code::<u32> {
            code: 86230,
            parent_code: None,
            description: "Dental practice activities".to_string(),
        }),
        (86900, Code::<u32> {
            code: 86900,
            parent_code: None,
            description: "Other human health activities".to_string(),
        }),
        (87100, Code::<u32> {
            code: 87100,
            parent_code: None,
            description: "Residential nursing care facilities".to_string(),
        }),
        (87200, Code::<u32> {
            code: 87200,
            parent_code: None,
            description: "Residential care activities for learning difficulties, mental health and substance abuse".to_string(),
        }),
        (87300, Code::<u32> {
            code: 87300,
            parent_code: None,
            description: "Residential care activities for the elderly and disabled".to_string(),
        }),
        (87900, Code::<u32> {
            code: 87900,
            parent_code: None,
            description: "Other residential care activities n.e.c.".to_string(),
        }),
        (88100, Code::<u32> {
            code: 88100,
            parent_code: None,
            description: "Social work activities without accommodation for the elderly and disabled".to_string(),
        }),
        (88910, Code::<u32> {
            code: 88910,
            parent_code: None,
            description: "Child day-care activities".to_string(),
        }),
        (88990, Code::<u32> {
            code: 88990,
            parent_code: None,
            description: "Other social work activities without accommodation n.e.c.".to_string(),
        }),
        (90010, Code::<u32> {
            code: 90010,
            parent_code: None,
            description: "Performing arts".to_string(),
        }),
        (90020, Code::<u32> {
            code: 90020,
            parent_code: None,
            description: "Support activities to performing arts".to_string(),
        }),
        (90030, Code::<u32> {
            code: 90030,
            parent_code: None,
            description: "Artistic creation".to_string(),
        }),
        (90040, Code::<u32> {
            code: 90040,
            parent_code: None,
            description: "Operation of arts facilities".to_string(),
        }),
        (91011, Code::<u32> {
            code: 91011,
            parent_code: None,
            description: "Library activities".to_string(),
        }),
        (91012, Code::<u32> {
            code: 91012,
            parent_code: None,
            description: "Archives activities".to_string(),
        }),
        (91020, Code::<u32> {
            code: 91020,
            parent_code: None,
            description: "Museums activities".to_string(),
        }),
        (91030, Code::<u32> {
            code: 91030,
            parent_code: None,
            description: "Operation of historical sites and buildings and similar visitor attractions".to_string(),
        }),
        (91040, Code::<u32> {
            code: 91040,
            parent_code: None,
            description: "Botanical and zoological gardens and nature reserves activities".to_string(),
        }),
        (92000, Code::<u32> {
            code: 92000,
            parent_code: None,
            description: "Gambling and betting activities".to_string(),
        }),
        (93110, Code::<u32> {
            code: 93110,
            parent_code: None,
            description: "Operation of sports facilities".to_string(),
        }),
        (93120, Code::<u32> {
            code: 93120,
            parent_code: None,
            description: "Activities of sport clubs".to_string(),
        }),
        (93130, Code::<u32> {
            code: 93130,
            parent_code: None,
            description: "Fitness facilities".to_string(),
        }),
        (93191, Code::<u32> {
            code: 93191,
            parent_code: None,
            description: "Activities of racehorse owners".to_string(),
        }),
        (93199, Code::<u32> {
            code: 93199,
            parent_code: None,
            description: "Other sports activities".to_string(),
        }),
        (93210, Code::<u32> {
            code: 93210,
            parent_code: None,
            description: "Activities of amusement parks and theme parks".to_string(),
        }),
        (93290, Code::<u32> {
            code: 93290,
            parent_code: None,
            description: "Other amusement and recreation activities n.e.c.".to_string(),
        }),
        (94110, Code::<u32> {
            code: 94110,
            parent_code: None,
            description: "Activities of business and employers membership organizations".to_string(),
        }),
        (94120, Code::<u32> {
            code: 94120,
            parent_code: None,
            description: "Activities of professional membership organizations".to_string(),
        }),
        (94200, Code::<u32> {
            code: 94200,
            parent_code: None,
            description: "Activities of trade unions".to_string(),
        }),
        (94910, Code::<u32> {
            code: 94910,
            parent_code: None,
            description: "Activities of religious organizations".to_string(),
        }),
        (94920, Code::<u32> {
            code: 94920,
            parent_code: None,
            description: "Activities of political organizations".to_string(),
        }),
        (94990, Code::<u32> {
            code: 94990,
            parent_code: None,
            description: "Activities of other membership organizations n.e.c.".to_string(),
        }),
        (95110, Code::<u32> {
            code: 95110,
            parent_code: None,
            description: "Repair of computers and peripheral equipment".to_string(),
        }),
        (95120, Code::<u32> {
            code: 95120,
            parent_code: None,
            description: "Repair of communication equipment".to_string(),
        }),
        (95210, Code::<u32> {
            code: 95210,
            parent_code: None,
            description: "Repair of consumer electronics".to_string(),
        }),
        (95220, Code::<u32> {
            code: 95220,
            parent_code: None,
            description: "Repair of household appliances and home and garden equipment".to_string(),
        }),
        (95230, Code::<u32> {
            code: 95230,
            parent_code: None,
            description: "Repair of footwear and leather goods".to_string(),
        }),
        (95240, Code::<u32> {
            code: 95240,
            parent_code: None,
            description: "Repair of furniture and home furnishings".to_string(),
        }),
        (95250, Code::<u32> {
            code: 95250,
            parent_code: None,
            description: "Repair of watches, clocks and jewellery".to_string(),
        }),
        (95290, Code::<u32> {
            code: 95290,
            parent_code: None,
            description: "Repair of personal and household goods n.e.c.".to_string(),
        }),
        (96010, Code::<u32> {
            code: 96010,
            parent_code: None,
            description: "Washing and (dry-)cleaning of textile and fur products".to_string(),
        }),
        (96020, Code::<u32> {
            code: 96020,
            parent_code: None,
            description: "Hairdressing and other beauty treatment".to_string(),
        }),
        (96030, Code::<u32> {
            code: 96030,
            parent_code: None,
            description: "Funeral and related activities".to_string(),
        }),
        (96040, Code::<u32> {
            code: 96040,
            parent_code: None,
            description: "Physical well-being activities".to_string(),
        }),
        (96090, Code::<u32> {
            code: 96090,
            parent_code: None,
            description: "Other service activities n.e.c.".to_string(),
        }),
        (97000, Code::<u32> {
            code: 97000,
            parent_code: None,
            description: "Activities of households as employers of domestic personnel".to_string(),
        }),
        (98000, Code::<u32> {
            code: 98000,
            parent_code: None,
            description: "Residents property management".to_string(),
        }),
        (98100, Code::<u32> {
            code: 98100,
            parent_code: None,
            description: "Undifferentiated goods-producing activities of private households for own use".to_string(),
        }),
        (98200, Code::<u32> {
            code: 98200,
            parent_code: None,
            description: "Undifferentiated service-producing activities of private households for own use".to_string(),
        }),
        (99000, Code::<u32> {
            code: 99000,
            parent_code: None,
            description: "Activities of extraterritorial organizations and bodies".to_string(),
        }),
        (99999, Code::<u32> {
            code: 99999,
            parent_code: None,
            description: "Dormant Company".to_string(),
        }),
    ].iter().cloned().collect();
    table
}