isic 0.0.1 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3fe92b411586b3cb876e38e7e82aa9ba02e7fd18
4
- data.tar.gz: 89dd872639ba738c78deb2b4d2a0482abc7c15bc
3
+ metadata.gz: 4a2323b19c16c5cd28edfbacaf7214eb9424bd94
4
+ data.tar.gz: 62ab729d46d57141beaf15b6fe64b0e47eae110f
5
5
  SHA512:
6
- metadata.gz: ae4e4bb00ecaf7135b4dc3407d0f9ae6da0f2165c1750003008785fa7efda38049d5a8db67ce166ea6a7bdd354a310f61d7b0f99acfa179fae922f6c893778b1
7
- data.tar.gz: 384b40e36561c1e2fb6ee10e3a297045be6acba750aefa1053ee52052e13b16802c5a9f80c9b475744dc84424b29f414c66f72229b0a1df62f334d055ee801d6
6
+ metadata.gz: 465fcab80ecf3dc9b4c1c54df21194ed9ddf7b6a94dba34bd08c8f5118008dad836b33c2b0deb6b27122ac8cf1b984b6b0f123e6c7fa3f3bbe61f1aa870f9df5
7
+ data.tar.gz: 8c77cfde6db469a3aa54876c58008573fe08f51163cc08aaed5c2abb0e6ac35e98d2edd47cee0e6cc5e24bc48a595bf0982df2469ca8bc7b872676b5c562210d
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Isic
2
2
 
3
- TODO: Write a gem description
3
+ The International Standard Industrial Classification (ISIC) is a United Nations system for classifying economic data.
4
+
5
+ The classification is based in four hierarchical levels: sections, divisions, groups and classes.
6
+
7
+ This gem allows to classify an entity based on its ISIC code.
4
8
 
5
9
  ## Installation
6
10
 
@@ -18,11 +22,93 @@ Or install it yourself as:
18
22
 
19
23
  ## Usage
20
24
 
21
- TODO: Write usage instructions here
25
+ Given an ISIC code, find its place in the hierarchy:
26
+
27
+ > Isic::Entity.new("0891").classify
28
+ {
29
+ :section => { :code => "B", :description => "Mining and quarrying" },
30
+ :division => { :code => "08", :description => "Other mining and quarrying" },
31
+ :group => { :code => "089", :description => "Mining and quarrying n.e.c." },
32
+ :class => { :code => "0891", :description => "Mining of chemical and fertilizer minerals" }
33
+ }
34
+
35
+ Find all the sections:
36
+
37
+ > Isic.sections
38
+ [
39
+ {:code=>"A", :description=>"Agriculture, forestry and fishing"},
40
+ {:code=>"B", :description=>"Mining and quarrying"},
41
+ {:code=>"C", :description=>"Manufacturing"}
42
+ {:code=>"D", :description=>"Electricity, gas, steam and air conditioning supply"},
43
+ {:code=>"E", :description=>"Water supply; sewerage, waste management and remediation activities"},
44
+ {:code=>"F", :description=>"Construction"},
45
+ {:code=>"G", :description=>"Wholesale and retail trade; repair of motor vehicles and motorcycles"},
46
+ {:code=>"H", :description=>"Transportation and storage"},
47
+ {:code=>"I", :description=>"Accommodation and food service activities"},
48
+ {:code=>"J", :description=>"Information and communication"},
49
+ {:code=>"K", :description=>"Financial and insurance activities"},
50
+ {:code=>"L", :description=>"Real estate activities"},
51
+ {:code=>"M", :description=>"Professional, scientific and technical activities"},
52
+ {:code=>"N", :description=>"Administrative and support service activities"},
53
+ {:code=>"O", :description=>"Public administration and defence; compulsory social security"},
54
+ {:code=>"P", :description=>"Education"}, {:code=>"Q", :description=>"Human health and social work activities"},
55
+ {:code=>"R", :description=>"Arts, entertainment and recreation"},
56
+ {:code=>"S", :description=>"Other service activities"},
57
+ {:code=>"T", :description=>"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use"},
58
+ {:code=>"U", :description=>"Activities of extraterritorial organizations and bodies"}
59
+ ]
60
+
61
+ Find all the divisions of the "B" section:
62
+
63
+ > Isic.divisions(section: "B")
64
+ [
65
+ {:code=>"05", :description=>"Mining of coal and lignite"},
66
+ {:code=>"06", :description=>"Extraction of crude petroleum and natural gas"},
67
+ {:code=>"07", :description=>"Mining of metal ores"},
68
+ {:code=>"08", :description=>"Other mining and quarrying"},
69
+ {:code=>"09", :description=>"Mining support service activities"}
70
+ ]
71
+
72
+ Find all the groups of the "08" division:
73
+
74
+ > Isic.groups(division: "08")
75
+ [
76
+ {:code=>"081", :description=>"Quarrying of stone, sand and clay"},
77
+ {:code=>"089", :description=>"Mining and quarrying n.e.c."}
78
+ ]
79
+
80
+ Find all the classes of the "089" group:
81
+
82
+ > Isic.classes(group: "089")
83
+ [
84
+ {:code=>"0891", :description=>"Mining of chemical and fertilizer minerals"},
85
+ {:code=>"0892", :description=>"Extraction of peat"},
86
+ {:code=>"0893", :description=>"Extraction of salt"},
87
+ {:code=>"0899", :description=>"Other mining and quarrying n.e.c."}
88
+ ]
89
+
90
+ ## Translations
91
+
92
+ Descriptions are returned in English by default, but Spanish and French are supported. In any of the methods above you can specify the translation:
93
+
94
+ > Isic::Entity.new("0891").classify(translation: :es)
95
+ {
96
+ :class=>{:code=>"0891", :description=>"Extracción de minerales para la fabricación de abonos y productos químicos"},
97
+ :group=>{:code=>"089", :description=>"Explotación de minas y canteras n.c.p."},
98
+ :division=>{:code=>"08", :description=>"Explotación de otras minas y canteras"},
99
+ :section=>{:code=>"B", :description=>"Explotación de minas y canteras"}
100
+ }
101
+
102
+ > Isic.groups(division: "08", translation: :fr)
103
+ [
104
+ {:code=>"081", :description=>"Extraction de pierres, de sables et d'argiles"},
105
+ {:code=>"089", :description=>"Activités extractives, n.c.a."}
106
+ ]
107
+
22
108
 
23
109
  ## Contributing
24
110
 
25
- 1. Fork it ( http://github.com/<my-github-username>/isic/fork )
111
+ 1. Fork it ( http://github.com/javiervidal/isic/fork )
26
112
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
113
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
114
  4. Push to the branch (`git push origin my-new-feature`)
data/Rakefile CHANGED
@@ -1 +1,10 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ task :console do
4
+ require "awesome_print"
5
+ require "irb"
6
+ require "irb/completion"
7
+ require "isic"
8
+ ARGV.clear
9
+ IRB.start
10
+ end
@@ -0,0 +1,767 @@
1
+ "Code","Description"
2
+ "A","Agriculture, forestry and fishing"
3
+ "01","Crop and animal production, hunting and related service activities"
4
+ "011","Growing of non-perennial crops"
5
+ "0111","Growing of cereals (except rice), leguminous crops and oil seeds"
6
+ "0112","Growing of rice"
7
+ "0113","Growing of vegetables and melons, roots and tubers"
8
+ "0114","Growing of sugar cane"
9
+ "0115","Growing of tobacco"
10
+ "0116","Growing of fibre crops"
11
+ "0119","Growing of other non-perennial crops"
12
+ "012","Growing of perennial crops"
13
+ "0121","Growing of grapes"
14
+ "0122","Growing of tropical and subtropical fruits"
15
+ "0123","Growing of citrus fruits"
16
+ "0124","Growing of pome fruits and stone fruits"
17
+ "0125","Growing of other tree and bush fruits and nuts"
18
+ "0126","Growing of oleaginous fruits"
19
+ "0127","Growing of beverage crops"
20
+ "0128","Growing of spices, aromatic, drug and pharmaceutical crops"
21
+ "0129","Growing of other perennial crops"
22
+ "013","Plant propagation"
23
+ "0130","Plant propagation"
24
+ "014","Animal production"
25
+ "0141","Raising of cattle and buffaloes"
26
+ "0142","Raising of horses and other equines"
27
+ "0143","Raising of camels and camelids"
28
+ "0144","Raising of sheep and goats"
29
+ "0145","Raising of swine/pigs"
30
+ "0146","Raising of poultry"
31
+ "0149","Raising of other animals"
32
+ "015","Mixed farming"
33
+ "0150","Mixed farming"
34
+ "016","Support activities to agriculture and post-harvest crop activities"
35
+ "0161","Support activities for crop production"
36
+ "0162","Support activities for animal production"
37
+ "0163","Post-harvest crop activities"
38
+ "0164","Seed processing for propagation"
39
+ "017","Hunting, trapping and related service activities"
40
+ "0170","Hunting, trapping and related service activities"
41
+ "02","Forestry and logging"
42
+ "021","Silviculture and other forestry activities"
43
+ "0210","Silviculture and other forestry activities"
44
+ "022","Logging"
45
+ "0220","Logging"
46
+ "023","Gathering of non-wood forest products"
47
+ "0230","Gathering of non-wood forest products"
48
+ "024","Support services to forestry"
49
+ "0240","Support services to forestry"
50
+ "03","Fishing and aquaculture"
51
+ "031","Fishing"
52
+ "0311","Marine fishing"
53
+ "0312","Freshwater fishing"
54
+ "032","Aquaculture"
55
+ "0321","Marine aquaculture"
56
+ "0322","Freshwater aquaculture"
57
+ "B","Mining and quarrying"
58
+ "05","Mining of coal and lignite"
59
+ "051","Mining of hard coal"
60
+ "0510","Mining of hard coal"
61
+ "052","Mining of lignite"
62
+ "0520","Mining of lignite"
63
+ "06","Extraction of crude petroleum and natural gas"
64
+ "061","Extraction of crude petroleum"
65
+ "0610","Extraction of crude petroleum"
66
+ "062","Extraction of natural gas"
67
+ "0620","Extraction of natural gas"
68
+ "07","Mining of metal ores"
69
+ "071","Mining of iron ores"
70
+ "0710","Mining of iron ores"
71
+ "072","Mining of non-ferrous metal ores"
72
+ "0721","Mining of uranium and thorium ores"
73
+ "0729","Mining of other non-ferrous metal ores"
74
+ "08","Other mining and quarrying"
75
+ "081","Quarrying of stone, sand and clay"
76
+ "0810","Quarrying of stone, sand and clay"
77
+ "089","Mining and quarrying n.e.c."
78
+ "0891","Mining of chemical and fertilizer minerals"
79
+ "0892","Extraction of peat"
80
+ "0893","Extraction of salt"
81
+ "0899","Other mining and quarrying n.e.c."
82
+ "09","Mining support service activities"
83
+ "091","Support activities for petroleum and natural gas extraction"
84
+ "0910","Support activities for petroleum and natural gas extraction"
85
+ "099","Support activities for other mining and quarrying"
86
+ "0990","Support activities for other mining and quarrying"
87
+ "C","Manufacturing"
88
+ "10","Manufacture of food products"
89
+ "101","Processing and preserving of meat"
90
+ "1010","Processing and preserving of meat"
91
+ "102","Processing and preserving of fish, crustaceans and molluscs"
92
+ "1020","Processing and preserving of fish, crustaceans and molluscs"
93
+ "103","Processing and preserving of fruit and vegetables"
94
+ "1030","Processing and preserving of fruit and vegetables"
95
+ "104","Manufacture of vegetable and animal oils and fats"
96
+ "1040","Manufacture of vegetable and animal oils and fats"
97
+ "105","Manufacture of dairy products"
98
+ "1050","Manufacture of dairy products"
99
+ "106","Manufacture of grain mill products, starches and starch products"
100
+ "1061","Manufacture of grain mill products"
101
+ "1062","Manufacture of starches and starch products"
102
+ "107","Manufacture of other food products"
103
+ "1071","Manufacture of bakery products"
104
+ "1072","Manufacture of sugar"
105
+ "1073","Manufacture of cocoa, chocolate and sugar confectionery"
106
+ "1074","Manufacture of macaroni, noodles, couscous and similar farinaceous products"
107
+ "1075","Manufacture of prepared meals and dishes"
108
+ "1079","Manufacture of other food products n.e.c."
109
+ "108","Manufacture of prepared animal feeds"
110
+ "1080","Manufacture of prepared animal feeds"
111
+ "11","Manufacture of beverages"
112
+ "110","Manufacture of beverages"
113
+ "1101","Distilling, rectifying and blending of spirits"
114
+ "1102","Manufacture of wines"
115
+ "1103","Manufacture of malt liquors and malt"
116
+ "1104","Manufacture of soft drinks; production of mineral waters and other bottled waters"
117
+ "12","Manufacture of tobacco products"
118
+ "120","Manufacture of tobacco products"
119
+ "1200","Manufacture of tobacco products"
120
+ "13","Manufacture of textiles"
121
+ "131","Spinning, weaving and finishing of textiles"
122
+ "1311","Preparation and spinning of textile fibres"
123
+ "1312","Weaving of textiles"
124
+ "1313","Finishing of textiles"
125
+ "139","Manufacture of other textiles"
126
+ "1391","Manufacture of knitted and crocheted fabrics"
127
+ "1392","Manufacture of made-up textile articles, except apparel"
128
+ "1393","Manufacture of carpets and rugs"
129
+ "1394","Manufacture of cordage, rope, twine and netting"
130
+ "1399","Manufacture of other textiles n.e.c."
131
+ "14","Manufacture of wearing apparel"
132
+ "141","Manufacture of wearing apparel, except fur apparel"
133
+ "1410","Manufacture of wearing apparel, except fur apparel"
134
+ "142","Manufacture of articles of fur"
135
+ "1420","Manufacture of articles of fur"
136
+ "143","Manufacture of knitted and crocheted apparel"
137
+ "1430","Manufacture of knitted and crocheted apparel"
138
+ "15","Manufacture of leather and related products"
139
+ "151","Tanning and dressing of leather; manufacture of luggage, handbags, saddlery and harness; dressing and dyeing of fur"
140
+ "1511","Tanning and dressing of leather; dressing and dyeing of fur"
141
+ "1512","Manufacture of luggage, handbags and the like, saddlery and harness"
142
+ "152","Manufacture of footwear"
143
+ "1520","Manufacture of footwear"
144
+ "16","Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials"
145
+ "161","Sawmilling and planing of wood"
146
+ "1610","Sawmilling and planing of wood"
147
+ "162","Manufacture of products of wood, cork, straw and plaiting materials"
148
+ "1621","Manufacture of veneer sheets and wood-based panels"
149
+ "1622","Manufacture of builders' carpentry and joinery"
150
+ "1623","Manufacture of wooden containers"
151
+ "1629","Manufacture of other products of wood; manufacture of articles of cork, straw and plaiting materials"
152
+ "17","Manufacture of paper and paper products"
153
+ "170","Manufacture of paper and paper products"
154
+ "1701","Manufacture of pulp, paper and paperboard"
155
+ "1702","Manufacture of corrugated paper and paperboard and of containers of paper and paperboard"
156
+ "1709","Manufacture of other articles of paper and paperboard"
157
+ "18","Printing and reproduction of recorded media"
158
+ "181","Printing and service activities related to printing"
159
+ "1811","Printing"
160
+ "1812","Service activities related to printing"
161
+ "182","Reproduction of recorded media"
162
+ "1820","Reproduction of recorded media"
163
+ "19","Manufacture of coke and refined petroleum products"
164
+ "191","Manufacture of coke oven products"
165
+ "1910","Manufacture of coke oven products"
166
+ "192","Manufacture of refined petroleum products"
167
+ "1920","Manufacture of refined petroleum products"
168
+ "20","Manufacture of chemicals and chemical products"
169
+ "201","Manufacture of basic chemicals, fertilizers and nitrogen compounds, plastics and synthetic rubber in primary forms"
170
+ "2011","Manufacture of basic chemicals"
171
+ "2012","Manufacture of fertilizers and nitrogen compounds"
172
+ "2013","Manufacture of plastics and synthetic rubber in primary forms"
173
+ "202","Manufacture of other chemical products"
174
+ "2021","Manufacture of pesticides and other agrochemical products"
175
+ "2022","Manufacture of paints, varnishes and similar coatings, printing ink and mastics"
176
+ "2023","Manufacture of soap and detergents, cleaning and polishing preparations, perfumes and toilet preparations"
177
+ "2029","Manufacture of other chemical products n.e.c."
178
+ "203","Manufacture of man-made fibres"
179
+ "2030","Manufacture of man-made fibres"
180
+ "21","Manufacture of basic pharmaceutical products and pharmaceutical preparations"
181
+ "210","Manufacture of pharmaceuticals, medicinal chemical and botanical products"
182
+ "2100","Manufacture of pharmaceuticals, medicinal chemical and botanical products"
183
+ "22","Manufacture of rubber and plastics products"
184
+ "221","Manufacture of rubber products"
185
+ "2211","Manufacture of rubber tyres and tubes; retreading and rebuilding of rubber tyres"
186
+ "2219","Manufacture of other rubber products"
187
+ "222","Manufacture of plastics products"
188
+ "2220","Manufacture of plastics products"
189
+ "23","Manufacture of other non-metallic mineral products"
190
+ "231","Manufacture of glass and glass products"
191
+ "2310","Manufacture of glass and glass products"
192
+ "239","Manufacture of non-metallic mineral products n.e.c."
193
+ "2391","Manufacture of refractory products"
194
+ "2392","Manufacture of clay building materials"
195
+ "2393","Manufacture of other porcelain and ceramic products"
196
+ "2394","Manufacture of cement, lime and plaster"
197
+ "2395","Manufacture of articles of concrete, cement and plaster"
198
+ "2396","Cutting, shaping and finishing of stone"
199
+ "2399","Manufacture of other non-metallic mineral products n.e.c."
200
+ "24","Manufacture of basic metals"
201
+ "241","Manufacture of basic iron and steel"
202
+ "2410","Manufacture of basic iron and steel"
203
+ "242","Manufacture of basic precious and other non-ferrous metals"
204
+ "2420","Manufacture of basic precious and other non-ferrous metals"
205
+ "243","Casting of metals"
206
+ "2431","Casting of iron and steel"
207
+ "2432","Casting of non-ferrous metals"
208
+ "25","Manufacture of fabricated metal products, except machinery and equipment"
209
+ "251","Manufacture of structural metal products, tanks, reservoirs and steam generators"
210
+ "2511","Manufacture of structural metal products"
211
+ "2512","Manufacture of tanks, reservoirs and containers of metal"
212
+ "2513","Manufacture of steam generators, except central heating hot water boilers"
213
+ "252","Manufacture of weapons and ammunition"
214
+ "2520","Manufacture of weapons and ammunition"
215
+ "259","Manufacture of other fabricated metal products; metalworking service activities"
216
+ "2591","Forging, pressing, stamping and roll-forming of metal; powder metallurgy"
217
+ "2592","Treatment and coating of metals; machining"
218
+ "2593","Manufacture of cutlery, hand tools and general hardware"
219
+ "2599","Manufacture of other fabricated metal products n.e.c."
220
+ "26","Manufacture of computer, electronic and optical products"
221
+ "261","Manufacture of electronic components and boards"
222
+ "2610","Manufacture of electronic components and boards"
223
+ "262","Manufacture of computers and peripheral equipment"
224
+ "2620","Manufacture of computers and peripheral equipment"
225
+ "263","Manufacture of communication equipment"
226
+ "2630","Manufacture of communication equipment"
227
+ "264","Manufacture of consumer electronics"
228
+ "2640","Manufacture of consumer electronics"
229
+ "265","Manufacture of measuring, testing, navigating and control equipment; watches and clocks"
230
+ "2651","Manufacture of measuring, testing, navigating and control equipment"
231
+ "2652","Manufacture of watches and clocks"
232
+ "266","Manufacture of irradiation, electromedical and electrotherapeutic equipment"
233
+ "2660","Manufacture of irradiation, electromedical and electrotherapeutic equipment"
234
+ "267","Manufacture of optical instruments and photographic equipment"
235
+ "2670","Manufacture of optical instruments and photographic equipment"
236
+ "268","Manufacture of magnetic and optical media"
237
+ "2680","Manufacture of magnetic and optical media"
238
+ "27","Manufacture of electrical equipment"
239
+ "271","Manufacture of electric motors, generators, transformers and electricity distribution and control apparatus"
240
+ "2710","Manufacture of electric motors, generators, transformers and electricity distribution and control apparatus"
241
+ "272","Manufacture of batteries and accumulators"
242
+ "2720","Manufacture of batteries and accumulators"
243
+ "273","Manufacture of wiring and wiring devices"
244
+ "2731","Manufacture of fibre optic cables"
245
+ "2732","Manufacture of other electronic and electric wires and cables"
246
+ "2733","Manufacture of wiring devices"
247
+ "274","Manufacture of electric lighting equipment"
248
+ "2740","Manufacture of electric lighting equipment"
249
+ "275","Manufacture of domestic appliances"
250
+ "2750","Manufacture of domestic appliances"
251
+ "279","Manufacture of other electrical equipment"
252
+ "2790","Manufacture of other electrical equipment"
253
+ "28","Manufacture of machinery and equipment n.e.c."
254
+ "281","Manufacture of general-purpose machinery"
255
+ "2811","Manufacture of engines and turbines, except aircraft, vehicle and cycle engines"
256
+ "2812","Manufacture of fluid power equipment"
257
+ "2813","Manufacture of other pumps, compressors, taps and valves"
258
+ "2814","Manufacture of bearings, gears, gearing and driving elements"
259
+ "2815","Manufacture of ovens, furnaces and furnace burners"
260
+ "2816","Manufacture of lifting and handling equipment"
261
+ "2817","Manufacture of office machinery and equipment (except computers and peripheral equipment)"
262
+ "2818","Manufacture of power-driven hand tools"
263
+ "2819","Manufacture of other general-purpose machinery"
264
+ "282","Manufacture of special-purpose machinery"
265
+ "2821","Manufacture of agricultural and forestry machinery"
266
+ "2822","Manufacture of metal-forming machinery and machine tools"
267
+ "2823","Manufacture of machinery for metallurgy"
268
+ "2824","Manufacture of machinery for mining, quarrying and construction"
269
+ "2825","Manufacture of machinery for food, beverage and tobacco processing"
270
+ "2826","Manufacture of machinery for textile, apparel and leather production"
271
+ "2829","Manufacture of other special-purpose machinery"
272
+ "29","Manufacture of motor vehicles, trailers and semi-trailers"
273
+ "291","Manufacture of motor vehicles"
274
+ "2910","Manufacture of motor vehicles"
275
+ "292","Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi-trailers"
276
+ "2920","Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi-trailers"
277
+ "293","Manufacture of parts and accessories for motor vehicles"
278
+ "2930","Manufacture of parts and accessories for motor vehicles"
279
+ "30","Manufacture of other transport equipment"
280
+ "301","Building of ships and boats"
281
+ "3011","Building of ships and floating structures"
282
+ "3012","Building of pleasure and sporting boats"
283
+ "302","Manufacture of railway locomotives and rolling stock"
284
+ "3020","Manufacture of railway locomotives and rolling stock"
285
+ "303","Manufacture of air and spacecraft and related machinery"
286
+ "3030","Manufacture of air and spacecraft and related machinery"
287
+ "304","Manufacture of military fighting vehicles"
288
+ "3040","Manufacture of military fighting vehicles"
289
+ "309","Manufacture of transport equipment n.e.c."
290
+ "3091","Manufacture of motorcycles"
291
+ "3092","Manufacture of bicycles and invalid carriages"
292
+ "3099","Manufacture of other transport equipment n.e.c."
293
+ "31","Manufacture of furniture"
294
+ "310","Manufacture of furniture"
295
+ "3100","Manufacture of furniture"
296
+ "32","Other manufacturing"
297
+ "321","Manufacture of jewellery, bijouterie and related articles"
298
+ "3211","Manufacture of jewellery and related articles"
299
+ "3212","Manufacture of imitation jewellery and related articles"
300
+ "322","Manufacture of musical instruments"
301
+ "3220","Manufacture of musical instruments"
302
+ "323","Manufacture of sports goods"
303
+ "3230","Manufacture of sports goods"
304
+ "324","Manufacture of games and toys"
305
+ "3240","Manufacture of games and toys"
306
+ "325","Manufacture of medical and dental instruments and supplies"
307
+ "3250","Manufacture of medical and dental instruments and supplies"
308
+ "329","Other manufacturing n.e.c."
309
+ "3290","Other manufacturing n.e.c."
310
+ "33","Repair and installation of machinery and equipment"
311
+ "331","Repair of fabricated metal products, machinery and equipment"
312
+ "3311","Repair of fabricated metal products"
313
+ "3312","Repair of machinery"
314
+ "3313","Repair of electronic and optical equipment"
315
+ "3314","Repair of electrical equipment"
316
+ "3315","Repair of transport equipment, except motor vehicles"
317
+ "3319","Repair of other equipment"
318
+ "332","Installation of industrial machinery and equipment"
319
+ "3320","Installation of industrial machinery and equipment"
320
+ "D","Electricity, gas, steam and air conditioning supply"
321
+ "35","Electricity, gas, steam and air conditioning supply"
322
+ "351","Electric power generation, transmission and distribution"
323
+ "3510","Electric power generation, transmission and distribution"
324
+ "352","Manufacture of gas; distribution of gaseous fuels through mains"
325
+ "3520","Manufacture of gas; distribution of gaseous fuels through mains"
326
+ "353","Steam and air conditioning supply"
327
+ "3530","Steam and air conditioning supply"
328
+ "E","Water supply; sewerage, waste management and remediation activities"
329
+ "36","Water collection, treatment and supply"
330
+ "360","Water collection, treatment and supply"
331
+ "3600","Water collection, treatment and supply"
332
+ "37","Sewerage"
333
+ "370","Sewerage"
334
+ "3700","Sewerage"
335
+ "38","Waste collection, treatment and disposal activities; materials recovery"
336
+ "381","Waste collection"
337
+ "3811","Collection of non-hazardous waste"
338
+ "3812","Collection of hazardous waste"
339
+ "382","Waste treatment and disposal"
340
+ "3821","Treatment and disposal of non-hazardous waste"
341
+ "3822","Treatment and disposal of hazardous waste"
342
+ "383","Materials recovery"
343
+ "3830","Materials recovery"
344
+ "39","Remediation activities and other waste management services"
345
+ "390","Remediation activities and other waste management services"
346
+ "3900","Remediation activities and other waste management services"
347
+ "F","Construction"
348
+ "41","Construction of buildings"
349
+ "410","Construction of buildings"
350
+ "4100","Construction of buildings"
351
+ "42","Civil engineering"
352
+ "421","Construction of roads and railways"
353
+ "4210","Construction of roads and railways"
354
+ "422","Construction of utility projects"
355
+ "4220","Construction of utility projects"
356
+ "429","Construction of other civil engineering projects"
357
+ "4290","Construction of other civil engineering projects"
358
+ "43","Specialized construction activities"
359
+ "431","Demolition and site preparation"
360
+ "4311","Demolition"
361
+ "4312","Site preparation"
362
+ "432","Electrical, plumbing and other construction installation activities"
363
+ "4321","Electrical installation"
364
+ "4322","Plumbing, heat and air-conditioning installation"
365
+ "4329","Other construction installation"
366
+ "433","Building completion and finishing"
367
+ "4330","Building completion and finishing"
368
+ "439","Other specialized construction activities"
369
+ "4390","Other specialized construction activities"
370
+ "G","Wholesale and retail trade; repair of motor vehicles and motorcycles"
371
+ "45","Wholesale and retail trade and repair of motor vehicles and motorcycles"
372
+ "451","Sale of motor vehicles"
373
+ "4510","Sale of motor vehicles"
374
+ "452","Maintenance and repair of motor vehicles"
375
+ "4520","Maintenance and repair of motor vehicles"
376
+ "453","Sale of motor vehicle parts and accessories"
377
+ "4530","Sale of motor vehicle parts and accessories"
378
+ "454","Sale, maintenance and repair of motorcycles and related parts and accessories"
379
+ "4540","Sale, maintenance and repair of motorcycles and related parts and accessories"
380
+ "46","Wholesale trade, except of motor vehicles and motorcycles"
381
+ "461","Wholesale on a fee or contract basis"
382
+ "4610","Wholesale on a fee or contract basis"
383
+ "462","Wholesale of agricultural raw materials and live animals"
384
+ "4620","Wholesale of agricultural raw materials and live animals"
385
+ "463","Wholesale of food, beverages and tobacco"
386
+ "4630","Wholesale of food, beverages and tobacco"
387
+ "464","Wholesale of household goods"
388
+ "4641","Wholesale of textiles, clothing and footwear"
389
+ "4649","Wholesale of other household goods"
390
+ "465","Wholesale of machinery, equipment and supplies"
391
+ "4651","Wholesale of computers, computer peripheral equipment and software"
392
+ "4652","Wholesale of electronic and telecommunications equipment and parts"
393
+ "4653","Wholesale of agricultural machinery, equipment and supplies"
394
+ "4659","Wholesale of other machinery and equipment"
395
+ "466","Other specialized wholesale"
396
+ "4661","Wholesale of solid, liquid and gaseous fuels and related products"
397
+ "4662","Wholesale of metals and metal ores"
398
+ "4663","Wholesale of construction materials, hardware, plumbing and heating equipment and supplies"
399
+ "4669","Wholesale of waste and scrap and other products n.e.c."
400
+ "469","Non-specialized wholesale trade"
401
+ "4690","Non-specialized wholesale trade"
402
+ "47","Retail trade, except of motor vehicles and motorcycles"
403
+ "471","Retail sale in non-specialized stores"
404
+ "4711","Retail sale in non-specialized stores with food, beverages or tobacco predominating"
405
+ "4719","Other retail sale in non-specialized stores"
406
+ "472","Retail sale of food, beverages and tobacco in specialized stores"
407
+ "4721","Retail sale of food in specialized stores"
408
+ "4722","Retail sale of beverages in specialized stores"
409
+ "4723","Retail sale of tobacco products in specialized stores"
410
+ "473","Retail sale of automotive fuel in specialized stores"
411
+ "4730","Retail sale of automotive fuel in specialized stores"
412
+ "474","Retail sale of information and communications equipment in specialized stores"
413
+ "4741","Retail sale of computers, peripheral units, software and telecommunications equipment in specialized stores"
414
+ "4742","Retail sale of audio and video equipment in specialized stores"
415
+ "475","Retail sale of other household equipment in specialized stores"
416
+ "4751","Retail sale of textiles in specialized stores"
417
+ "4752","Retail sale of hardware, paints and glass in specialized stores"
418
+ "4753","Retail sale of carpets, rugs, wall and floor coverings in specialized stores"
419
+ "4759","Retail sale of electrical household appliances, furniture, lighting equipment and other household articles in specialized stores"
420
+ "476","Retail sale of cultural and recreation goods in specialized stores"
421
+ "4761","Retail sale of books, newspapers and stationary in specialized stores"
422
+ "4762","Retail sale of music and video recordings in specialized stores"
423
+ "4763","Retail sale of sporting equipment in specialized stores"
424
+ "4764","Retail sale of games and toys in specialized stores"
425
+ "477","Retail sale of other goods in specialized stores"
426
+ "4771","Retail sale of clothing, footwear and leather articles in specialized stores"
427
+ "4772","Retail sale of pharmaceutical and medical goods, cosmetic and toilet articles in specialized stores"
428
+ "4773","Other retail sale of new goods in specialized stores"
429
+ "4774","Retail sale of second-hand goods"
430
+ "478","Retail sale via stalls and markets"
431
+ "4781","Retail sale via stalls and markets of food, beverages and tobacco products"
432
+ "4782","Retail sale via stalls and markets of textiles, clothing and footwear"
433
+ "4789","Retail sale via stalls and markets of other goods"
434
+ "479","Retail trade not in stores, stalls or markets"
435
+ "4791","Retail sale via mail order houses or via Internet"
436
+ "4799","Other retail sale not in stores, stalls or markets"
437
+ "H","Transportation and storage"
438
+ "49","Land transport and transport via pipelines"
439
+ "491","Transport via railways"
440
+ "4911","Passenger rail transport, interurban"
441
+ "4912","Freight rail transport"
442
+ "492","Other land transport"
443
+ "4921","Urban and suburban passenger land transport"
444
+ "4922","Other passenger land transport"
445
+ "4923","Freight transport by road"
446
+ "493","Transport via pipeline"
447
+ "4930","Transport via pipeline"
448
+ "50","Water transport"
449
+ "501","Sea and coastal water transport"
450
+ "5011","Sea and coastal passenger water transport"
451
+ "5012","Sea and coastal freight water transport"
452
+ "502","Inland water transport"
453
+ "5021","Inland passenger water transport"
454
+ "5022","Inland freight water transport"
455
+ "51","Air transport"
456
+ "511","Passenger air transport"
457
+ "5110","Passenger air transport"
458
+ "512","Freight air transport"
459
+ "5120","Freight air transport"
460
+ "52","Warehousing and support activities for transportation"
461
+ "521","Warehousing and storage"
462
+ "5210","Warehousing and storage"
463
+ "522","Support activities for transportation"
464
+ "5221","Service activities incidental to land transportation"
465
+ "5222","Service activities incidental to water transportation"
466
+ "5223","Service activities incidental to air transportation"
467
+ "5224","Cargo handling"
468
+ "5229","Other transportation support activities"
469
+ "53","Postal and courier activities"
470
+ "531","Postal activities"
471
+ "5310","Postal activities"
472
+ "532","Courier activities"
473
+ "5320","Courier activities"
474
+ "I","Accommodation and food service activities"
475
+ "55","Accommodation"
476
+ "551","Short term accommodation activities"
477
+ "5510","Short term accommodation activities"
478
+ "552","Camping grounds, recreational vehicle parks and trailer parks"
479
+ "5520","Camping grounds, recreational vehicle parks and trailer parks"
480
+ "559","Other accommodation"
481
+ "5590","Other accommodation"
482
+ "56","Food and beverage service activities"
483
+ "561","Restaurants and mobile food service activities"
484
+ "5610","Restaurants and mobile food service activities"
485
+ "562","Event catering and other food service activities"
486
+ "5621","Event catering"
487
+ "5629","Other food service activities"
488
+ "563","Beverage serving activities"
489
+ "5630","Beverage serving activities"
490
+ "J","Information and communication"
491
+ "58","Publishing activities"
492
+ "581","Publishing of books, periodicals and other publishing activities"
493
+ "5811","Book publishing"
494
+ "5812","Publishing of directories and mailing lists"
495
+ "5813","Publishing of newspapers, journals and periodicals"
496
+ "5819","Other publishing activities"
497
+ "582","Software publishing"
498
+ "5820","Software publishing"
499
+ "59","Motion picture, video and television programme production, sound recording and music publishing activities"
500
+ "591","Motion picture, video and television programme activities"
501
+ "5911","Motion picture, video and television programme production activities"
502
+ "5912","Motion picture, video and television programme post-production activities"
503
+ "5913","Motion picture, video and television programme distribution activities"
504
+ "5914","Motion picture projection activities"
505
+ "592","Sound recording and music publishing activities"
506
+ "5920","Sound recording and music publishing activities"
507
+ "60","Programming and broadcasting activities"
508
+ "601","Radio broadcasting"
509
+ "6010","Radio broadcasting"
510
+ "602","Television programming and broadcasting activities"
511
+ "6020","Television programming and broadcasting activities"
512
+ "61","Telecommunications"
513
+ "611","Wired telecommunications activities"
514
+ "6110","Wired telecommunications activities"
515
+ "612","Wireless telecommunications activities"
516
+ "6120","Wireless telecommunications activities"
517
+ "613","Satellite telecommunications activities"
518
+ "6130","Satellite telecommunications activities"
519
+ "619","Other telecommunications activities"
520
+ "6190","Other telecommunications activities"
521
+ "62","Computer programming, consultancy and related activities"
522
+ "620","Computer programming, consultancy and related activities"
523
+ "6201","Computer programming activities"
524
+ "6202","Computer consultancy and computer facilities management activities"
525
+ "6209","Other information technology and computer service activities"
526
+ "63","Information service activities"
527
+ "631","Data processing, hosting and related activities; web portals"
528
+ "6311","Data processing, hosting and related activities"
529
+ "6312","Web portals"
530
+ "639","Other information service activities"
531
+ "6391","News agency activities"
532
+ "6399","Other information service activities n.e.c."
533
+ "K","Financial and insurance activities"
534
+ "64","Financial service activities, except insurance and pension funding"
535
+ "641","Monetary intermediation"
536
+ "6411","Central banking"
537
+ "6419","Other monetary intermediation"
538
+ "642","Activities of holding companies"
539
+ "6420","Activities of holding companies"
540
+ "643","Trusts, funds and similar financial entities"
541
+ "6430","Trusts, funds and similar financial entities"
542
+ "649","Other financial service activities, except insurance and pension funding activities"
543
+ "6491","Financial leasing"
544
+ "6492","Other credit granting"
545
+ "6499","Other financial service activities, except insurance and pension funding activities, n.e.c."
546
+ "65","Insurance, reinsurance and pension funding, except compulsory social security"
547
+ "651","Insurance"
548
+ "6511","Life insurance"
549
+ "6512","Non-life insurance"
550
+ "652","Reinsurance"
551
+ "6520","Reinsurance"
552
+ "653","Pension funding"
553
+ "6530","Pension funding"
554
+ "66","Activities auxiliary to financial service and insurance activities"
555
+ "661","Activities auxiliary to financial service activities, except insurance and pension funding"
556
+ "6611","Administration of financial markets"
557
+ "6612","Security and commodity contracts brokerage"
558
+ "6619","Other activities auxiliary to financial service activities"
559
+ "662","Activities auxiliary to insurance and pension funding"
560
+ "6621","Risk and damage evaluation"
561
+ "6622","Activities of insurance agents and brokers"
562
+ "6629","Other activities auxiliary to insurance and pension funding"
563
+ "663","Fund management activities"
564
+ "6630","Fund management activities"
565
+ "L","Real estate activities"
566
+ "68","Real estate activities"
567
+ "681","Real estate activities with own or leased property"
568
+ "6810","Real estate activities with own or leased property"
569
+ "682","Real estate activities on a fee or contract basis"
570
+ "6820","Real estate activities on a fee or contract basis"
571
+ "M","Professional, scientific and technical activities"
572
+ "69","Legal and accounting activities"
573
+ "691","Legal activities"
574
+ "6910","Legal activities"
575
+ "692","Accounting, bookkeeping and auditing activities; tax consultancy"
576
+ "6920","Accounting, bookkeeping and auditing activities; tax consultancy"
577
+ "70","Activities of head offices; management consultancy activities"
578
+ "701","Activities of head offices"
579
+ "7010","Activities of head offices"
580
+ "702","Management consultancy activities"
581
+ "7020","Management consultancy activities"
582
+ "71","Architectural and engineering activities; technical testing and analysis"
583
+ "711","Architectural and engineering activities and related technical consultancy"
584
+ "7110","Architectural and engineering activities and related technical consultancy"
585
+ "712","Technical testing and analysis"
586
+ "7120","Technical testing and analysis"
587
+ "72","Scientific research and development"
588
+ "721","Research and experimental development on natural sciences and engineering"
589
+ "7210","Research and experimental development on natural sciences and engineering"
590
+ "722","Research and experimental development on social sciences and humanities"
591
+ "7220","Research and experimental development on social sciences and humanities"
592
+ "73","Advertising and market research"
593
+ "731","Advertising"
594
+ "7310","Advertising"
595
+ "732","Market research and public opinion polling"
596
+ "7320","Market research and public opinion polling"
597
+ "74","Other professional, scientific and technical activities"
598
+ "741","Specialized design activities"
599
+ "7410","Specialized design activities"
600
+ "742","Photographic activities"
601
+ "7420","Photographic activities"
602
+ "749","Other professional, scientific and technical activities n.e.c."
603
+ "7490","Other professional, scientific and technical activities n.e.c."
604
+ "75","Veterinary activities"
605
+ "750","Veterinary activities"
606
+ "7500","Veterinary activities"
607
+ "N","Administrative and support service activities"
608
+ "77","Rental and leasing activities"
609
+ "771","Renting and leasing of motor vehicles"
610
+ "7710","Renting and leasing of motor vehicles"
611
+ "772","Renting and leasing of personal and household goods"
612
+ "7721","Renting and leasing of recreational and sports goods"
613
+ "7722","Renting of video tapes and disks"
614
+ "7729","Renting and leasing of other personal and household goods"
615
+ "773","Renting and leasing of other machinery, equipment and tangible goods"
616
+ "7730","Renting and leasing of other machinery, equipment and tangible goods"
617
+ "774","Leasing of intellectual property and similar products, except copyrighted works"
618
+ "7740","Leasing of intellectual property and similar products, except copyrighted works"
619
+ "78","Employment activities"
620
+ "781","Activities of employment placement agencies"
621
+ "7810","Activities of employment placement agencies"
622
+ "782","Temporary employment agency activities"
623
+ "7820","Temporary employment agency activities"
624
+ "783","Other human resources provision"
625
+ "7830","Other human resources provision"
626
+ "79","Travel agency, tour operator, reservation service and related activities"
627
+ "791","Travel agency and tour operator activities"
628
+ "7911","Travel agency activities"
629
+ "7912","Tour operator activities"
630
+ "799","Other reservation service and related activities"
631
+ "7990","Other reservation service and related activities"
632
+ "80","Security and investigation activities"
633
+ "801","Private security activities"
634
+ "8010","Private security activities"
635
+ "802","Security systems service activities"
636
+ "8020","Security systems service activities"
637
+ "803","Investigation activities"
638
+ "8030","Investigation activities"
639
+ "81","Services to buildings and landscape activities"
640
+ "811","Combined facilities support activities"
641
+ "8110","Combined facilities support activities"
642
+ "812","Cleaning activities"
643
+ "8121","General cleaning of buildings"
644
+ "8129","Other building and industrial cleaning activities"
645
+ "813","Landscape care and maintenance service activities"
646
+ "8130","Landscape care and maintenance service activities"
647
+ "82","Office administrative, office support and other business support activities"
648
+ "821","Office administrative and support activities"
649
+ "8211","Combined office administrative service activities"
650
+ "8219","Photocopying, document preparation and other specialized office support activities"
651
+ "822","Activities of call centres"
652
+ "8220","Activities of call centres"
653
+ "823","Organization of conventions and trade shows"
654
+ "8230","Organization of conventions and trade shows"
655
+ "829","Business support service activities n.e.c."
656
+ "8291","Activities of collection agencies and credit bureaus"
657
+ "8292","Packaging activities"
658
+ "8299","Other business support service activities n.e.c."
659
+ "O","Public administration and defence; compulsory social security"
660
+ "84","Public administration and defence; compulsory social security"
661
+ "841","Administration of the State and the economic and social policy of the community"
662
+ "8411","General public administration activities"
663
+ "8412","Regulation of the activities of providing health care, education, cultural services and other social services, excluding social security"
664
+ "8413","Regulation of and contribution to more efficient operation of businesses"
665
+ "842","Provision of services to the community as a whole"
666
+ "8421","Foreign affairs"
667
+ "8422","Defence activities"
668
+ "8423","Public order and safety activities"
669
+ "843","Compulsory social security activities"
670
+ "8430","Compulsory social security activities"
671
+ "P","Education"
672
+ "85","Education"
673
+ "851","Pre-primary and primary education"
674
+ "8510","Pre-primary and primary education"
675
+ "852","Secondary education"
676
+ "8521","General secondary education"
677
+ "8522","Technical and vocational secondary education"
678
+ "853","Higher education"
679
+ "8530","Higher education"
680
+ "854","Other education"
681
+ "8541","Sports and recreation education"
682
+ "8542","Cultural education"
683
+ "8549","Other education n.e.c."
684
+ "855","Educational support activities"
685
+ "8550","Educational support activities"
686
+ "Q","Human health and social work activities"
687
+ "86","Human health activities"
688
+ "861","Hospital activities"
689
+ "8610","Hospital activities"
690
+ "862","Medical and dental practice activities"
691
+ "8620","Medical and dental practice activities"
692
+ "869","Other human health activities"
693
+ "8690","Other human health activities"
694
+ "87","Residential care activities"
695
+ "871","Residential nursing care facilities"
696
+ "8710","Residential nursing care facilities"
697
+ "872","Residential care activities for mental retardation, mental health and substance abuse"
698
+ "8720","Residential care activities for mental retardation, mental health and substance abuse"
699
+ "873","Residential care activities for the elderly and disabled"
700
+ "8730","Residential care activities for the elderly and disabled"
701
+ "879","Other residential care activities"
702
+ "8790","Other residential care activities"
703
+ "88","Social work activities without accommodation"
704
+ "881","Social work activities without accommodation for the elderly and disabled"
705
+ "8810","Social work activities without accommodation for the elderly and disabled"
706
+ "889","Other social work activities without accommodation"
707
+ "8890","Other social work activities without accommodation"
708
+ "R","Arts, entertainment and recreation"
709
+ "90","Creative, arts and entertainment activities"
710
+ "900","Creative, arts and entertainment activities"
711
+ "9000","Creative, arts and entertainment activities"
712
+ "91","Libraries, archives, museums and other cultural activities"
713
+ "910","Libraries, archives, museums and other cultural activities"
714
+ "9101","Library and archives activities"
715
+ "9102","Museums activities and operation of historical sites and buildings"
716
+ "9103","Botanical and zoological gardens and nature reserves activities"
717
+ "92","Gambling and betting activities"
718
+ "920","Gambling and betting activities"
719
+ "9200","Gambling and betting activities"
720
+ "93","Sports activities and amusement and recreation activities"
721
+ "931","Sports activities"
722
+ "9311","Operation of sports facilities"
723
+ "9312","Activities of sports clubs"
724
+ "9319","Other sports activities"
725
+ "932","Other amusement and recreation activities"
726
+ "9321","Activities of amusement parks and theme parks"
727
+ "9329","Other amusement and recreation activities n.e.c."
728
+ "S","Other service activities"
729
+ "94","Activities of membership organizations"
730
+ "941","Activities of business, employers and professional membership organizations"
731
+ "9411","Activities of business and employers membership organizations"
732
+ "9412","Activities of professional membership organizations"
733
+ "942","Activities of trade unions"
734
+ "9420","Activities of trade unions"
735
+ "949","Activities of other membership organizations"
736
+ "9491","Activities of religious organizations"
737
+ "9492","Activities of political organizations"
738
+ "9499","Activities of other membership organizations n.e.c."
739
+ "95","Repair of computers and personal and household goods"
740
+ "951","Repair of computers and communication equipment"
741
+ "9511","Repair of computers and peripheral equipment"
742
+ "9512","Repair of communication equipment"
743
+ "952","Repair of personal and household goods"
744
+ "9521","Repair of consumer electronics"
745
+ "9522","Repair of household appliances and home and garden equipment"
746
+ "9523","Repair of footwear and leather goods"
747
+ "9524","Repair of furniture and home furnishings"
748
+ "9529","Repair of other personal and household goods"
749
+ "96","Other personal service activities"
750
+ "960","Other personal service activities"
751
+ "9601","Washing and (dry-) cleaning of textile and fur products"
752
+ "9602","Hairdressing and other beauty treatment"
753
+ "9603","Funeral and related activities"
754
+ "9609","Other personal service activities n.e.c."
755
+ "T","Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use"
756
+ "97","Activities of households as employers of domestic personnel"
757
+ "970","Activities of households as employers of domestic personnel"
758
+ "9700","Activities of households as employers of domestic personnel"
759
+ "98","Undifferentiated goods- and services-producing activities of private households for own use"
760
+ "981","Undifferentiated goods-producing activities of private households for own use"
761
+ "9810","Undifferentiated goods-producing activities of private households for own use"
762
+ "982","Undifferentiated service-producing activities of private households for own use"
763
+ "9820","Undifferentiated service-producing activities of private households for own use"
764
+ "U","Activities of extraterritorial organizations and bodies"
765
+ "99","Activities of extraterritorial organizations and bodies"
766
+ "990","Activities of extraterritorial organizations and bodies"
767
+ "9900","Activities of extraterritorial organizations and bodies"