-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
1786 lines (1786 loc) · 63.2 KB
/
data.json
File metadata and controls
1786 lines (1786 loc) · 63.2 KB
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
[
{
"code": "01110",
"description": "Growing of cereals (except rice), leguminous crops and oil seeds"
},
{ "code": "01120", "description": "Growing of rice" },
{
"code": "01130",
"description": "Growing of vegetables and melons, roots and tubers"
},
{ "code": "01140", "description": "Growing of sugar cane" },
{ "code": "01150", "description": "Growing of tobacco" },
{ "code": "01160", "description": "Growing of fibre crops" },
{ "code": "01190", "description": "Growing of other non-perennial crops" },
{ "code": "01210", "description": "Growing of grapes" },
{
"code": "01220",
"description": "Growing of tropical and subtropical fruits"
},
{ "code": "01230", "description": "Growing of citrus fruits" },
{ "code": "01240", "description": "Growing of pome fruits and stone fruits" },
{
"code": "01250",
"description": "Growing of other tree and bush fruits and nuts"
},
{ "code": "01260", "description": "Growing of oleaginous fruits" },
{ "code": "01270", "description": "Growing of beverage crops" },
{
"code": "01280",
"description": "Growing of spices, aromatic, drug and pharmaceutical crops"
},
{ "code": "01290", "description": "Growing of other perennial crops" },
{ "code": "01300", "description": "Plant propagation" },
{ "code": "01410", "description": "Raising of dairy cattle" },
{ "code": "01420", "description": "Raising of other cattle and buffaloes" },
{ "code": "01430", "description": "Raising of horses and other equines" },
{ "code": "01440", "description": "Raising of camels and camelids" },
{ "code": "01450", "description": "Raising of sheep and goats" },
{ "code": "01460", "description": "Raising of swine/pigs" },
{ "code": "01470", "description": "Raising of poultry" },
{ "code": "01490", "description": "Raising of other animals" },
{ "code": "01500", "description": "Mixed farming" },
{ "code": "01610", "description": "Support activities for crop production" },
{ "code": "01621", "description": "Farm animal boarding and care" },
{
"code": "01629",
"description": "Support activities for animal production (other than farm animal boarding and care) n.e.c."
},
{ "code": "01630", "description": "Post-harvest crop activities" },
{ "code": "01640", "description": "Seed processing for propagation" },
{
"code": "01700",
"description": "Hunting, trapping and related service activities"
},
{
"code": "02100",
"description": "Silviculture and other forestry activities"
},
{ "code": "02200", "description": "Logging" },
{
"code": "02300",
"description": "Gathering of wild growing non-wood products"
},
{ "code": "02400", "description": "Support services to forestry" },
{ "code": "03110", "description": "Marine fishing" },
{ "code": "03120", "description": "Freshwater fishing" },
{ "code": "03210", "description": "Marine aquaculture" },
{ "code": "03220", "description": "Freshwater aquaculture" },
{ "code": "05101", "description": "Deep coal mines" },
{ "code": "05102", "description": "Open cast coal working" },
{ "code": "05200", "description": "Mining of lignite" },
{ "code": "06100", "description": "Extraction of crude petroleum" },
{ "code": "06200", "description": "Extraction of natural gas" },
{ "code": "07100", "description": "Mining of iron ores" },
{ "code": "07210", "description": "Mining of uranium and thorium ores" },
{ "code": "07290", "description": "Mining of other non-ferrous metal ores" },
{
"code": "08110",
"description": "Quarrying of ornamental and building stone, limestone, gypsum, chalk and slate"
},
{
"code": "08120",
"description": "Operation of gravel and sand pits; mining of clays and kaolin"
},
{
"code": "08910",
"description": "Mining of chemical and fertilizer minerals"
},
{ "code": "08920", "description": "Extraction of peat" },
{ "code": "08930", "description": "Extraction of salt" },
{ "code": "08990", "description": "Other mining and quarrying n.e.c." },
{
"code": "09100",
"description": "Support activities for petroleum and natural gas extraction"
},
{
"code": "09900",
"description": "Support activities for other mining and quarrying"
},
{ "code": "10110", "description": "Processing and preserving of meat" },
{
"code": "10120",
"description": "Processing and preserving of poultry meat"
},
{
"code": "10130",
"description": "Production of meat and poultry meat products"
},
{
"code": "10200",
"description": "Processing and preserving of fish, crustaceans and molluscs"
},
{ "code": "10310", "description": "Processing and preserving of potatoes" },
{
"code": "10320",
"description": "Manufacture of fruit and vegetable juice"
},
{
"code": "10390",
"description": "Other processing and preserving of fruit and vegetables"
},
{ "code": "10410", "description": "Manufacture of oils and fats" },
{
"code": "10420",
"description": "Manufacture of margarine and similar edible fats"
},
{ "code": "10511", "description": "Liquid milk and cream production" },
{ "code": "10512", "description": "Butter and cheese production" },
{ "code": "10519", "description": "Manufacture of other milk products" },
{ "code": "10520", "description": "Manufacture of ice cream" },
{ "code": "10611", "description": "Grain milling" },
{
"code": "10612",
"description": "Manufacture of breakfast cereals and cereals-based food"
},
{
"code": "10620",
"description": "Manufacture of starches and starch products"
},
{
"code": "10710",
"description": "Manufacture of bread; manufacture of fresh pastry goods and cakes"
},
{
"code": "10720",
"description": "Manufacture of rusks and biscuits; manufacture of preserved pastry goods and cakes"
},
{
"code": "10730",
"description": "Manufacture of macaroni, noodles, couscous and similar farinaceous products"
},
{ "code": "10810", "description": "Manufacture of sugar" },
{
"code": "10821",
"description": "Manufacture of cocoa and chocolate confectionery"
},
{ "code": "10822", "description": "Manufacture of sugar confectionery" },
{ "code": "10831", "description": "Tea processing" },
{
"code": "10832",
"description": "Production of coffee and coffee substitutes"
},
{
"code": "10840",
"description": "Manufacture of condiments and seasonings"
},
{
"code": "10850",
"description": "Manufacture of prepared meals and dishes"
},
{
"code": "10860",
"description": "Manufacture of homogenized food preparations and dietetic food"
},
{
"code": "10890",
"description": "Manufacture of other food products n.e.c."
},
{
"code": "10910",
"description": "Manufacture of prepared feeds for farm animals"
},
{ "code": "10920", "description": "Manufacture of prepared pet foods" },
{
"code": "11010",
"description": "Distilling, rectifying and blending of spirits"
},
{ "code": "11020", "description": "Manufacture of wine from grape" },
{
"code": "11030",
"description": "Manufacture of cider and other fruit wines"
},
{
"code": "11040",
"description": "Manufacture of other non-distilled fermented beverages"
},
{ "code": "11050", "description": "Manufacture of beer" },
{ "code": "11060", "description": "Manufacture of malt" },
{
"code": "11070",
"description": "Manufacture of soft drinks; production of mineral waters and other bottled waters"
},
{ "code": "12000", "description": "Manufacture of tobacco products" },
{
"code": "13100",
"description": "Preparation and spinning of textile fibres"
},
{ "code": "13200", "description": "Weaving of textiles" },
{ "code": "13300", "description": "Finishing of textiles" },
{
"code": "13910",
"description": "Manufacture of knitted and crocheted fabrics"
},
{ "code": "13921", "description": "Manufacture of soft furnishings" },
{
"code": "13922",
"description": "Manufacture of canvas goods, sacks, etc."
},
{ "code": "13923", "description": "Manufacture of household textiles" },
{
"code": "13931",
"description": "Manufacture of woven or tufted carpets and rugs"
},
{ "code": "13939", "description": "Manufacture of other carpets and rugs" },
{
"code": "13940",
"description": "Manufacture of cordage, rope, twine and netting"
},
{
"code": "13950",
"description": "Manufacture of non-wovens and articles made from non-wovens, except apparel"
},
{
"code": "13960",
"description": "Manufacture of other technical and industrial textiles"
},
{ "code": "13990", "description": "Manufacture of other textiles n.e.c." },
{ "code": "14110", "description": "Manufacture of leather clothes" },
{ "code": "14120", "description": "Manufacture of workwear" },
{ "code": "14131", "description": "Manufacture of other men's outerwear" },
{ "code": "14132", "description": "Manufacture of other women's outerwear" },
{ "code": "14141", "description": "Manufacture of men's underwear" },
{ "code": "14142", "description": "Manufacture of women's underwear" },
{
"code": "14190",
"description": "Manufacture of other wearing apparel and accessories n.e.c."
},
{ "code": "14200", "description": "Manufacture of articles of fur" },
{
"code": "14310",
"description": "Manufacture of knitted and crocheted hosiery"
},
{
"code": "14390",
"description": "Manufacture of other knitted and crocheted apparel"
},
{
"code": "15110",
"description": "Tanning and dressing of leather; dressing and dyeing of fur"
},
{
"code": "15120",
"description": "Manufacture of luggage, handbags and the like, saddlery and harness"
},
{ "code": "15200", "description": "Manufacture of footwear" },
{ "code": "16100", "description": "Sawmilling and planing of wood" },
{
"code": "16210",
"description": "Manufacture of veneer sheets and wood-based panels"
},
{ "code": "16220", "description": "Manufacture of assembled parquet floors" },
{
"code": "16230",
"description": "Manufacture of other builders' carpentry and joinery"
},
{ "code": "16240", "description": "Manufacture of wooden containers" },
{
"code": "16290",
"description": "Manufacture of other products of wood; manufacture of articles of cork, straw and plaiting materials"
},
{ "code": "17110", "description": "Manufacture of pulp" },
{ "code": "17120", "description": "Manufacture of paper and paperboard" },
{
"code": "17211",
"description": "Manufacture of corrugated paper and paperboard, sacks and bags"
},
{
"code": "17219",
"description": "Manufacture of other paper and paperboard containers"
},
{
"code": "17220",
"description": "Manufacture of household and sanitary goods and of toilet requisites"
},
{ "code": "17230", "description": "Manufacture of paper stationery" },
{ "code": "17240", "description": "Manufacture of wallpaper" },
{
"code": "17290",
"description": "Manufacture of other articles of paper and paperboard n.e.c."
},
{ "code": "18110", "description": "Printing of newspapers" },
{ "code": "18121", "description": "Manufacture of printed labels" },
{ "code": "18129", "description": "Printing n.e.c." },
{ "code": "18130", "description": "Pre-press and pre-media services" },
{ "code": "18140", "description": "Binding and related services" },
{ "code": "18201", "description": "Reproduction of sound recording" },
{ "code": "18202", "description": "Reproduction of video recording" },
{ "code": "18203", "description": "Reproduction of computer media" },
{ "code": "19100", "description": "Manufacture of coke oven products" },
{ "code": "19201", "description": "Mineral oil refining" },
{
"code": "19209",
"description": "Other treatment of petroleum products (excluding petrochemicals manufacture)"
},
{ "code": "20110", "description": "Manufacture of industrial gases" },
{ "code": "20120", "description": "Manufacture of dyes and pigments" },
{
"code": "20130",
"description": "Manufacture of other inorganic basic chemicals"
},
{
"code": "20140",
"description": "Manufacture of other organic basic chemicals"
},
{
"code": "20150",
"description": "Manufacture of fertilizers and nitrogen compounds"
},
{
"code": "20160",
"description": "Manufacture of plastics in primary forms"
},
{
"code": "20170",
"description": "Manufacture of synthetic rubber in primary forms"
},
{
"code": "20200",
"description": "Manufacture of pesticides and other agrochemical products"
},
{
"code": "20301",
"description": "Manufacture of paints, varnishes and similar coatings, mastics and sealants"
},
{ "code": "20302", "description": "Manufacture of printing ink" },
{ "code": "20411", "description": "Manufacture of soap and detergents" },
{
"code": "20412",
"description": "Manufacture of cleaning and polishing preparations"
},
{
"code": "20420",
"description": "Manufacture of perfumes and toilet preparations"
},
{ "code": "20510", "description": "Manufacture of explosives" },
{ "code": "20520", "description": "Manufacture of glues" },
{ "code": "20530", "description": "Manufacture of essential oils" },
{
"code": "20590",
"description": "Manufacture of other chemical products n.e.c."
},
{ "code": "20600", "description": "Manufacture of man-made fibres" },
{
"code": "21100",
"description": "Manufacture of basic pharmaceutical products"
},
{
"code": "21200",
"description": "Manufacture of pharmaceutical preparations"
},
{
"code": "22110",
"description": "Manufacture of rubber tyres and tubes; retreading and rebuilding of rubber tyres"
},
{ "code": "22190", "description": "Manufacture of other rubber products" },
{
"code": "22210",
"description": "Manufacture of plastic plates, sheets, tubes and profiles"
},
{ "code": "22220", "description": "Manufacture of plastic packing goods" },
{
"code": "22230",
"description": "Manufacture of builders ware of plastic"
},
{ "code": "22290", "description": "Manufacture of other plastic products" },
{ "code": "23110", "description": "Manufacture of flat glass" },
{ "code": "23120", "description": "Shaping and processing of flat glass" },
{ "code": "23130", "description": "Manufacture of hollow glass" },
{ "code": "23140", "description": "Manufacture of glass fibres" },
{
"code": "23190",
"description": "Manufacture and processing of other glass, including technical glassware"
},
{ "code": "23200", "description": "Manufacture of refractory products" },
{ "code": "23310", "description": "Manufacture of ceramic tiles and flags" },
{
"code": "23320",
"description": "Manufacture of bricks, tiles and construction products, in baked clay"
},
{
"code": "23410",
"description": "Manufacture of ceramic household and ornamental articles"
},
{
"code": "23420",
"description": "Manufacture of ceramic sanitary fixtures"
},
{
"code": "23430",
"description": "Manufacture of ceramic insulators and insulating fittings"
},
{
"code": "23440",
"description": "Manufacture of other technical ceramic products"
},
{
"code": "23490",
"description": "Manufacture of other ceramic products n.e.c."
},
{ "code": "23510", "description": "Manufacture of cement" },
{ "code": "23520", "description": "Manufacture of lime and plaster" },
{
"code": "23610",
"description": "Manufacture of concrete products for construction purposes"
},
{
"code": "23620",
"description": "Manufacture of plaster products for construction purposes"
},
{ "code": "23630", "description": "Manufacture of ready-mixed concrete" },
{ "code": "23640", "description": "Manufacture of mortars" },
{ "code": "23650", "description": "Manufacture of fibre cement" },
{
"code": "23690",
"description": "Manufacture of other articles of concrete, plaster and cement"
},
{ "code": "23700", "description": "Cutting, shaping and finishing of stone" },
{ "code": "23910", "description": "Production of abrasive products" },
{
"code": "23990",
"description": "Manufacture of other non-metallic mineral products n.e.c."
},
{
"code": "24100",
"description": "Manufacture of basic iron and steel and of ferro-alloys"
},
{
"code": "24200",
"description": "Manufacture of tubes, pipes, hollow profiles and related fittings, of steel"
},
{ "code": "24310", "description": "Cold drawing of bars" },
{ "code": "24320", "description": "Cold rolling of narrow strip" },
{ "code": "24330", "description": "Cold forming or folding" },
{ "code": "24340", "description": "Cold drawing of wire" },
{ "code": "24410", "description": "Precious metals production" },
{ "code": "24420", "description": "Aluminium production" },
{ "code": "24430", "description": "Lead, zinc and tin production" },
{ "code": "24440", "description": "Copper production" },
{ "code": "24450", "description": "Other non-ferrous metal production" },
{ "code": "24460", "description": "Processing of nuclear fuel" },
{ "code": "24510", "description": "Casting of iron" },
{ "code": "24520", "description": "Casting of steel" },
{ "code": "24530", "description": "Casting of light metals" },
{ "code": "24540", "description": "Casting of other non-ferrous metals" },
{
"code": "25110",
"description": "Manufacture of metal structures and parts of structures"
},
{
"code": "25120",
"description": "Manufacture of doors and windows of metal"
},
{
"code": "25210",
"description": "Manufacture of central heating radiators and boilers"
},
{
"code": "25290",
"description": "Manufacture of other tanks, reservoirs and containers of metal"
},
{
"code": "25300",
"description": "Manufacture of steam generators, except central heating hot water boilers"
},
{ "code": "25400", "description": "Manufacture of weapons and ammunition" },
{
"code": "25500",
"description": "Forging, pressing, stamping and roll-forming of metal; powder metallurgy"
},
{ "code": "25610", "description": "Treatment and coating of metals" },
{ "code": "25620", "description": "Machining" },
{ "code": "25710", "description": "Manufacture of cutlery" },
{ "code": "25720", "description": "Manufacture of locks and hinges" },
{ "code": "25730", "description": "Manufacture of tools" },
{
"code": "25910",
"description": "Manufacture of steel drums and similar containers"
},
{ "code": "25920", "description": "Manufacture of light metal packaging" },
{
"code": "25930",
"description": "Manufacture of wire products, chain and springs"
},
{
"code": "25940",
"description": "Manufacture of fasteners and screw machine products"
},
{
"code": "25990",
"description": "Manufacture of other fabricated metal products n.e.c."
},
{ "code": "26110", "description": "Manufacture of electronic components" },
{ "code": "26120", "description": "Manufacture of loaded electronic boards" },
{
"code": "26200",
"description": "Manufacture of computers and peripheral equipment"
},
{
"code": "26301",
"description": "Manufacture of telegraph and telephone apparatus and equipment"
},
{
"code": "26309",
"description": "Manufacture of communication equipment other than telegraph, and telephone apparatus and equipment"
},
{ "code": "26400", "description": "Manufacture of consumer electronics" },
{
"code": "26511",
"description": "Manufacture of electronic measuring, testing etc. equipment, not for industrial process control"
},
{
"code": "26512",
"description": "Manufacture of electronic industrial process control equipment"
},
{
"code": "26513",
"description": "Manufacture of non-electronic measuring, testing etc. equipment, not for industrial process control"
},
{
"code": "26514",
"description": "Manufacture of non-electronic industrial process control equipment"
},
{ "code": "26520", "description": "Manufacture of watches and clocks" },
{
"code": "26600",
"description": "Manufacture of irradiation, electromedical and electrotherapeutic equipment"
},
{
"code": "26701",
"description": "Manufacture of optical precision instruments"
},
{
"code": "26702",
"description": "Manufacture of photographic and cinematographic equipment"
},
{
"code": "26800",
"description": "Manufacture of magnetic and optical media"
},
{
"code": "27110",
"description": "Manufacture of electric motors, generators and transformers"
},
{
"code": "27120",
"description": "Manufacture of electricity distribution and control apparatus"
},
{
"code": "27200",
"description": "Manufacture of batteries and accumulators"
},
{ "code": "27310", "description": "Manufacture of fibre optic cables" },
{
"code": "27320",
"description": "Manufacture of other electronic and electric wires and cables"
},
{ "code": "27330", "description": "Manufacture of wiring devices" },
{
"code": "27400",
"description": "Manufacture of electric lighting equipment"
},
{
"code": "27510",
"description": "Manufacture of electric domestic appliances"
},
{
"code": "27520",
"description": "Manufacture of non-electric domestic appliances"
},
{
"code": "27900",
"description": "Manufacture of other electrical equipment"
},
{
"code": "28110",
"description": "Manufacture of engines and turbines, except aircraft, vehicle and cycle engines"
},
{ "code": "28120", "description": "Manufacture of fluid power equipment" },
{ "code": "28131", "description": "Manufacture of pumps" },
{ "code": "28132", "description": "Manufacture of compressors" },
{ "code": "28140", "description": "Manufacture of taps and valves" },
{
"code": "28150",
"description": "Manufacture of bearings, gears, gearing and driving elements"
},
{
"code": "28210",
"description": "Manufacture of ovens, furnaces and furnace burners"
},
{
"code": "28220",
"description": "Manufacture of lifting and handling equipment"
},
{
"code": "28230",
"description": "Manufacture of office machinery and equipment (except computers and peripheral equipment)"
},
{ "code": "28240", "description": "Manufacture of power-driven hand tools" },
{
"code": "28250",
"description": "Manufacture of non-domestic cooling and ventilation equipment"
},
{
"code": "28290",
"description": "Manufacture of other general-purpose machinery n.e.c."
},
{ "code": "28301", "description": "Manufacture of agricultural tractors" },
{
"code": "28302",
"description": "Manufacture of agricultural and forestry machinery other than tractors"
},
{ "code": "28410", "description": "Manufacture of metal forming machinery" },
{ "code": "28490", "description": "Manufacture of other machine tools" },
{ "code": "28910", "description": "Manufacture of machinery for metallurgy" },
{ "code": "28921", "description": "Manufacture of machinery for mining" },
{ "code": "28922", "description": "Manufacture of earthmoving equipment" },
{
"code": "28923",
"description": "Manufacture of equipment for concrete crushing and screening and roadworks"
},
{
"code": "28930",
"description": "Manufacture of machinery for food, beverage and tobacco processing"
},
{
"code": "28940",
"description": "Manufacture of machinery for textile, apparel and leather production"
},
{
"code": "28950",
"description": "Manufacture of machinery for paper and paperboard production"
},
{
"code": "28960",
"description": "Manufacture of plastics and rubber machinery"
},
{
"code": "28990",
"description": "Manufacture of other special-purpose machinery n.e.c."
},
{ "code": "29100", "description": "Manufacture of motor vehicles" },
{
"code": "29201",
"description": "Manufacture of bodies (coachwork) for motor vehicles (except caravans)"
},
{
"code": "29202",
"description": "Manufacture of trailers and semi-trailers"
},
{ "code": "29203", "description": "Manufacture of caravans" },
{
"code": "29310",
"description": "Manufacture of electrical and electronic equipment for motor vehicles and their engines"
},
{
"code": "29320",
"description": "Manufacture of other parts and accessories for motor vehicles"
},
{
"code": "30110",
"description": "Building of ships and floating structures"
},
{ "code": "30120", "description": "Building of pleasure and sporting boats" },
{
"code": "30200",
"description": "Manufacture of railway locomotives and rolling stock"
},
{
"code": "30300",
"description": "Manufacture of air and spacecraft and related machinery"
},
{
"code": "30400",
"description": "Manufacture of military fighting vehicles"
},
{ "code": "30910", "description": "Manufacture of motorcycles" },
{
"code": "30920",
"description": "Manufacture of bicycles and invalid carriages"
},
{
"code": "30990",
"description": "Manufacture of other transport equipment n.e.c."
},
{
"code": "31010",
"description": "Manufacture of office and shop furniture"
},
{ "code": "31020", "description": "Manufacture of kitchen furniture" },
{ "code": "31030", "description": "Manufacture of mattresses" },
{ "code": "31090", "description": "Manufacture of other furniture" },
{ "code": "32110", "description": "Striking of coins" },
{
"code": "32120",
"description": "Manufacture of jewellery and related articles"
},
{
"code": "32130",
"description": "Manufacture of imitation jewellery and related articles"
},
{ "code": "32200", "description": "Manufacture of musical instruments" },
{ "code": "32300", "description": "Manufacture of sports goods" },
{
"code": "32401",
"description": "Manufacture of professional and arcade games and toys"
},
{
"code": "32409",
"description": "Manufacture of other games and toys, n.e.c."
},
{
"code": "32500",
"description": "Manufacture of medical and dental instruments and supplies"
},
{ "code": "32910", "description": "Manufacture of brooms and brushes" },
{ "code": "32990", "description": "Other manufacturing n.e.c." },
{ "code": "33110", "description": "Repair of fabricated metal products" },
{ "code": "33120", "description": "Repair of machinery" },
{
"code": "33130",
"description": "Repair of electronic and optical equipment"
},
{ "code": "33140", "description": "Repair of electrical equipment" },
{
"code": "33150",
"description": "Repair and maintenance of ships and boats"
},
{
"code": "33160",
"description": "Repair and maintenance of aircraft and spacecraft"
},
{
"code": "33170",
"description": "Repair and maintenance of other transport equipment n.e.c."
},
{ "code": "33190", "description": "Repair of other equipment" },
{
"code": "33200",
"description": "Installation of industrial machinery and equipment"
},
{ "code": "35110", "description": "Production of electricity" },
{ "code": "35120", "description": "Transmission of electricity" },
{ "code": "35130", "description": "Distribution of electricity" },
{ "code": "35140", "description": "Trade of electricity" },
{ "code": "35210", "description": "Manufacture of gas" },
{
"code": "35220",
"description": "Distribution of gaseous fuels through mains"
},
{ "code": "35230", "description": "Trade of gas through mains" },
{ "code": "35300", "description": "Steam and air conditioning supply" },
{ "code": "36000", "description": "Water collection, treatment and supply" },
{ "code": "37000", "description": "Sewerage" },
{ "code": "38110", "description": "Collection of non-hazardous waste" },
{ "code": "38120", "description": "Collection of hazardous waste" },
{
"code": "38210",
"description": "Treatment and disposal of non-hazardous waste"
},
{
"code": "38220",
"description": "Treatment and disposal of hazardous waste"
},
{ "code": "38310", "description": "Dismantling of wrecks" },
{ "code": "38320", "description": "Recovery of sorted materials" },
{
"code": "39000",
"description": "Remediation activities and other waste management services"
},
{ "code": "41100", "description": "Development of building projects" },
{ "code": "41201", "description": "Construction of commercial buildings" },
{ "code": "41202", "description": "Construction of domestic buildings" },
{ "code": "42110", "description": "Construction of roads and motorways" },
{
"code": "42120",
"description": "Construction of railways and underground railways"
},
{ "code": "42130", "description": "Construction of bridges and tunnels" },
{
"code": "42210",
"description": "Construction of utility projects for fluids"
},
{
"code": "42220",
"description": "Construction of utility projects for electricity and telecommunications"
},
{ "code": "42910", "description": "Construction of water projects" },
{
"code": "42990",
"description": "Construction of other civil engineering projects n.e.c."
},
{ "code": "43110", "description": "Demolition" },
{ "code": "43120", "description": "Site preparation" },
{ "code": "43130", "description": "Test drilling and boring" },
{ "code": "43210", "description": "Electrical installation" },
{
"code": "43220",
"description": "Plumbing, heat and air-conditioning installation"
},
{ "code": "43290", "description": "Other construction installation" },
{ "code": "43310", "description": "Plastering" },
{ "code": "43320", "description": "Joinery installation" },
{ "code": "43330", "description": "Floor and wall covering" },
{ "code": "43341", "description": "Painting" },
{ "code": "43342", "description": "Glazing" },
{ "code": "43390", "description": "Other building completion and finishing" },
{ "code": "43910", "description": "Roofing activities" },
{ "code": "43991", "description": "Scaffold erection" },
{
"code": "43999",
"description": "Other specialised construction activities n.e.c."
},
{
"code": "45111",
"description": "Sale of new cars and light motor vehicles"
},
{
"code": "45112",
"description": "Sale of used cars and light motor vehicles"
},
{ "code": "45190", "description": "Sale of other motor vehicles" },
{
"code": "45200",
"description": "Maintenance and repair of motor vehicles"
},
{
"code": "45310",
"description": "Wholesale trade of motor vehicle parts and accessories"
},
{
"code": "45320",
"description": "Retail trade of motor vehicle parts and accessories"
},
{
"code": "45400",
"description": "Sale, maintenance and repair of motorcycles and related parts and accessories"
},
{
"code": "46110",
"description": "Agents selling agricultural raw materials, livestock, textile raw materials and semi-finished goods"
},
{
"code": "46120",
"description": "Agents involved in the sale of fuels, ores, metals and industrial chemicals"
},
{
"code": "46130",
"description": "Agents involved in the sale of timber and building materials"
},
{
"code": "46140",
"description": "Agents involved in the sale of machinery, industrial equipment, ships and aircraft"
},
{
"code": "46150",
"description": "Agents involved in the sale of furniture, household goods, hardware and ironmongery"
},
{
"code": "46160",
"description": "Agents involved in the sale of textiles, clothing, fur, footwear and leather goods"
},
{
"code": "46170",
"description": "Agents involved in the sale of food, beverages and tobacco"
},
{
"code": "46180",
"description": "Agents specialized in the sale of other particular products"
},
{
"code": "46190",
"description": "Agents involved in the sale of a variety of goods"
},
{
"code": "46210",
"description": "Wholesale of grain, unmanufactured tobacco, seeds and animal feeds"
},
{ "code": "46220", "description": "Wholesale of flowers and plants" },
{ "code": "46230", "description": "Wholesale of live animals" },
{ "code": "46240", "description": "Wholesale of hides, skins and leather" },
{ "code": "46310", "description": "Wholesale of fruit and vegetables" },
{ "code": "46320", "description": "Wholesale of meat and meat products" },
{
"code": "46330",
"description": "Wholesale of dairy products, eggs and edible oils and fats"
},
{
"code": "46341",
"description": "Wholesale of fruit and vegetable juices, mineral water and soft drinks"
},
{
"code": "46342",
"description": "Wholesale of wine, beer, spirits and other alcoholic beverages"
},
{ "code": "46350", "description": "Wholesale of tobacco products" },
{
"code": "46360",
"description": "Wholesale of sugar and chocolate and sugar confectionery"
},
{
"code": "46370",
"description": "Wholesale of coffee, tea, cocoa and spices"
},
{
"code": "46380",
"description": "Wholesale of other food, including fish, crustaceans and molluscs"
},
{
"code": "46390",
"description": "Non-specialised wholesale of food, beverages and tobacco"
},
{ "code": "46410", "description": "Wholesale of textiles" },
{ "code": "46420", "description": "Wholesale of clothing and footwear" },
{
"code": "46431",
"description": "Wholesale of audio tapes, records, CDs and video tapes and the equipment on which these are played"
},
{
"code": "46439",
"description": "Wholesale of radio, television goods & electrical household appliances (other than records, tapes, CD's & video tapes and the equipment used for playing them)"
},
{
"code": "46440",
"description": "Wholesale of china and glassware and cleaning materials"
},
{ "code": "46450", "description": "Wholesale of perfume and cosmetics" },
{ "code": "46460", "description": "Wholesale of pharmaceutical goods" },
{
"code": "46470",
"description": "Wholesale of furniture, carpets and lighting equipment"
},
{ "code": "46480", "description": "Wholesale of watches and jewellery" },
{ "code": "46491", "description": "Wholesale of musical instruments" },
{
"code": "46499",
"description": "Wholesale of household goods (other than musical instruments) n.e.c."
},
{
"code": "46510",
"description": "Wholesale of computers, computer peripheral equipment and software"
},
{
"code": "46520",
"description": "Wholesale of electronic and telecommunications equipment and parts"
},
{
"code": "46610",
"description": "Wholesale of agricultural machinery, equipment and supplies"
},
{ "code": "46620", "description": "Wholesale of machine tools" },
{
"code": "46630",
"description": "Wholesale of mining, construction and civil engineering machinery"
},
{
"code": "46640",
"description": "Wholesale of machinery for the textile industry and of sewing and knitting machines"
},
{ "code": "46650", "description": "Wholesale of office furniture" },
{
"code": "46660",
"description": "Wholesale of other office machinery and equipment"
},
{
"code": "46690",
"description": "Wholesale of other machinery and equipment"
},
{
"code": "46711",
"description": "Wholesale of petroleum and petroleum products"
},
{
"code": "46719",
"description": "Wholesale of other fuels and related products"
},
{ "code": "46720", "description": "Wholesale of metals and metal ores" },
{
"code": "46730",
"description": "Wholesale of wood, construction materials and sanitary equipment"
},