Created
February 3, 2024 14:12
-
-
Save hotmeteor/2bac34a4ae764d5813dbc0aab8bb0106 to your computer and use it in GitHub Desktop.
SIC to NAICS code in PHP array format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// As found here: https://www.naics.com/sic-naics-crosswalk-search-results/ | |
return [ | |
[ | |
'sic_code' => '0111', | |
'sic_description' => 'Wheat', | |
'naics_code' => '111140', | |
'naics_description' => 'Wheat Farming', | |
], | |
[ | |
'sic_code' => '0112', | |
'sic_description' => 'Rice', | |
'naics_code' => '111160', | |
'naics_description' => 'Rice Farming', | |
], | |
[ | |
'sic_code' => '0115', | |
'sic_description' => 'Corn', | |
'naics_code' => '111150', | |
'naics_description' => 'Corn Farming', | |
], | |
[ | |
'sic_code' => '0116', | |
'sic_description' => 'Soybeans', | |
'naics_code' => '111110', | |
'naics_description' => 'Soybean Farming', | |
], | |
[ | |
'sic_code' => '0119', | |
'sic_description' => 'Cash Grains, Nec', | |
'naics_code' => '111120', | |
'naics_description' => 'Oilseed (except Soybean) Farming', | |
], | |
[ | |
'sic_code' => '0119', | |
'sic_description' => 'Cash Grains, Nec', | |
'naics_code' => '111130', | |
'naics_description' => 'Dry Pea and Bean Farming', | |
], | |
[ | |
'sic_code' => '0119', | |
'sic_description' => 'Cash Grains, Nec', | |
'naics_code' => '111150', | |
'naics_description' => 'Corn Farming', | |
], | |
[ | |
'sic_code' => '0119', | |
'sic_description' => 'Cash Grains, Nec', | |
'naics_code' => '111191', | |
'naics_description' => 'Oilseed and Grain Combination Farming', | |
], | |
[ | |
'sic_code' => '0119', | |
'sic_description' => 'Cash Grains, Nec', | |
'naics_code' => '111199', | |
'naics_description' => 'All Other Grain Farming', | |
], | |
[ | |
'sic_code' => '0131', | |
'sic_description' => 'Cotton', | |
'naics_code' => '111920', | |
'naics_description' => 'Cotton Farming', | |
], | |
[ | |
'sic_code' => '0132', | |
'sic_description' => 'Tobacco', | |
'naics_code' => '111910', | |
'naics_description' => 'Tobacco Farming', | |
], | |
[ | |
'sic_code' => '0133', | |
'sic_description' => 'Sugarcane and Sugar Beets', | |
'naics_code' => '111930', | |
'naics_description' => 'Sugarcane Farming', | |
], | |
[ | |
'sic_code' => '0133', | |
'sic_description' => 'Sugarcane and Sugar Beets', | |
'naics_code' => '111991', | |
'naics_description' => 'Sugar Beet Farming', | |
], | |
[ | |
'sic_code' => '0134', | |
'sic_description' => 'Irish Potatoes', | |
'naics_code' => '111211', | |
'naics_description' => 'Potato Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111199', | |
'naics_description' => 'All Other Grain Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111211', | |
'naics_description' => 'Potato Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111219', | |
'naics_description' => 'Other Vegetable (except Potato) and Melon Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111940', | |
'naics_description' => 'Hay Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111992', | |
'naics_description' => 'Peanut Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '111998', | |
'naics_description' => 'All Other Miscellaneous Crop Farming', | |
], | |
[ | |
'sic_code' => '0139', | |
'sic_description' => 'Field Crops, Except Cash Grain', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0161', | |
'sic_description' => 'Vegetables and Melons', | |
'naics_code' => '111211', | |
'naics_description' => 'Potato Farming', | |
], | |
[ | |
'sic_code' => '0161', | |
'sic_description' => 'Vegetables and Melons', | |
'naics_code' => '111219', | |
'naics_description' => 'Other Vegetable (except Potato) and Melon Farming', | |
], | |
[ | |
'sic_code' => '0171', | |
'sic_description' => 'Berry Crops', | |
'naics_code' => '111333', | |
'naics_description' => 'Strawberry Farming', | |
], | |
[ | |
'sic_code' => '0171', | |
'sic_description' => 'Berry Crops', | |
'naics_code' => '111334', | |
'naics_description' => 'Berry (except Strawberry) Farming', | |
], | |
[ | |
'sic_code' => '0172', | |
'sic_description' => 'Grapes', | |
'naics_code' => '111332', | |
'naics_description' => 'Grape Vineyards', | |
], | |
[ | |
'sic_code' => '0173', | |
'sic_description' => 'Tree Nuts', | |
'naics_code' => '111335', | |
'naics_description' => 'Tree Nut Farming', | |
], | |
[ | |
'sic_code' => '0174', | |
'sic_description' => 'Citrus Fruits', | |
'naics_code' => '111310', | |
'naics_description' => 'Orange Groves', | |
], | |
[ | |
'sic_code' => '0174', | |
'sic_description' => 'Citrus Fruits', | |
'naics_code' => '111320', | |
'naics_description' => 'Citrus (except Orange) Groves', | |
], | |
[ | |
'sic_code' => '0175', | |
'sic_description' => 'Deciduous Tree Fruits', | |
'naics_code' => '111331', | |
'naics_description' => 'Apple Orchards', | |
], | |
[ | |
'sic_code' => '0175', | |
'sic_description' => 'Deciduous Tree Fruits', | |
'naics_code' => '111339', | |
'naics_description' => 'Other Noncitrus Fruit Farming', | |
], | |
[ | |
'sic_code' => '0179', | |
'sic_description' => 'Fruits and Tree Nuts, Nec', | |
'naics_code' => '111336', | |
'naics_description' => 'Fruit and Tree Nut Combination Farming', | |
], | |
[ | |
'sic_code' => '0179', | |
'sic_description' => 'Fruits and Tree Nuts, Nec', | |
'naics_code' => '111339', | |
'naics_description' => 'Other Noncitrus Fruit Farming', | |
], | |
[ | |
'sic_code' => '0181', | |
'sic_description' => 'Ornamental Nursery Products', | |
'naics_code' => '111421', | |
'naics_description' => 'Nursery and Tree Production', | |
], | |
[ | |
'sic_code' => '0181', | |
'sic_description' => 'Ornamental Nursery Products', | |
'naics_code' => '111422', | |
'naics_description' => 'Floriculture Production', | |
], | |
[ | |
'sic_code' => '0182', | |
'sic_description' => 'Food Crops Grown Under Cover', | |
'naics_code' => '111411', | |
'naics_description' => 'Mushroom Production', | |
], | |
[ | |
'sic_code' => '0182', | |
'sic_description' => 'Food Crops Grown Under Cover', | |
'naics_code' => '111419', | |
'naics_description' => 'Other Food Crops Grown Under Cover', | |
], | |
[ | |
'sic_code' => '0191', | |
'sic_description' => 'General Farms, Primarily Crop', | |
'naics_code' => '111998', | |
'naics_description' => 'All Other Miscellaneous Crop Farming', | |
], | |
[ | |
'sic_code' => '0191', | |
'sic_description' => 'General Farms, Primarily Crop', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0211', | |
'sic_description' => 'Beef Cattle Feedlots', | |
'naics_code' => '112112', | |
'naics_description' => 'Cattle Feedlots', | |
], | |
[ | |
'sic_code' => '0212', | |
'sic_description' => 'Beef Cattle, Except Feedlots', | |
'naics_code' => '112111', | |
'naics_description' => 'Beef Cattle Ranching and Farming', | |
], | |
[ | |
'sic_code' => '0213', | |
'sic_description' => 'Hogs', | |
'naics_code' => '112210', | |
'naics_description' => 'Hog and Pig Farming', | |
], | |
[ | |
'sic_code' => '0214', | |
'sic_description' => 'Sheep and Goats', | |
'naics_code' => '112410', | |
'naics_description' => 'Sheep Farming', | |
], | |
[ | |
'sic_code' => '0214', | |
'sic_description' => 'Sheep and Goats', | |
'naics_code' => '112420', | |
'naics_description' => 'Goat Farming', | |
], | |
[ | |
'sic_code' => '0219', | |
'sic_description' => 'General Livestock, Nec', | |
'naics_code' => '112990', | |
'naics_description' => 'All Other Animal Production', | |
], | |
[ | |
'sic_code' => '0241', | |
'sic_description' => 'Dairy Farms', | |
'naics_code' => '112111', | |
'naics_description' => 'Beef Cattle Ranching and Farming', | |
], | |
[ | |
'sic_code' => '0241', | |
'sic_description' => 'Dairy Farms', | |
'naics_code' => '112120', | |
'naics_description' => 'Dairy Cattle and Milk Production', | |
], | |
[ | |
'sic_code' => '0251', | |
'sic_description' => 'Broiler, Fryer, and Roaster Chickens', | |
'naics_code' => '112320', | |
'naics_description' => 'Broilers and Other Meat Type Chicken Production', | |
], | |
[ | |
'sic_code' => '0252', | |
'sic_description' => 'Chicken Eggs', | |
'naics_code' => '112310', | |
'naics_description' => 'Chicken Egg Production', | |
], | |
[ | |
'sic_code' => '0253', | |
'sic_description' => 'Turkeys and Turkey Eggs', | |
'naics_code' => '112330', | |
'naics_description' => 'Turkey Production', | |
], | |
[ | |
'sic_code' => '0254', | |
'sic_description' => 'Poultry Hatcheries', | |
'naics_code' => '112340', | |
'naics_description' => 'Poultry Hatcheries', | |
], | |
[ | |
'sic_code' => '0259', | |
'sic_description' => 'Poultry and Eggs, Nec', | |
'naics_code' => '112390', | |
'naics_description' => 'Other Poultry Production', | |
], | |
[ | |
'sic_code' => '0271', | |
'sic_description' => 'Fur-bearing Animals and Rabbits', | |
'naics_code' => '112930', | |
'naics_description' => 'Fur-Bearing Animal and Rabbit Production', | |
], | |
[ | |
'sic_code' => '0272', | |
'sic_description' => 'Horses and Other Equines', | |
'naics_code' => '112920', | |
'naics_description' => 'Horses and Other Equine Production', | |
], | |
[ | |
'sic_code' => '0273', | |
'sic_description' => 'Animal Aquaculture', | |
'naics_code' => '112511', | |
'naics_description' => 'Finfish Farming and Fish Hatcheries', | |
], | |
[ | |
'sic_code' => '0273', | |
'sic_description' => 'Animal Aquaculture', | |
'naics_code' => '112512', | |
'naics_description' => 'Shellfish Farming', | |
], | |
[ | |
'sic_code' => '0273', | |
'sic_description' => 'Animal Aquaculture', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0279', | |
'sic_description' => 'Animal Specialties, Nec', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0279', | |
'sic_description' => 'Animal Specialties, Nec', | |
'naics_code' => '112910', | |
'naics_description' => 'Apiculture', | |
], | |
[ | |
'sic_code' => '0279', | |
'sic_description' => 'Animal Specialties, Nec', | |
'naics_code' => '112990', | |
'naics_description' => 'All Other Animal Production', | |
], | |
[ | |
'sic_code' => '0291', | |
'sic_description' => 'General Farms, Primarily animals', | |
'naics_code' => '112990', | |
'naics_description' => 'All Other Animal Production', | |
], | |
[ | |
'sic_code' => '0711', | |
'sic_description' => 'Soil Preparation Services', | |
'naics_code' => '115112', | |
'naics_description' => 'Soil Preparation, Planting, and Cultivating', | |
], | |
[ | |
'sic_code' => '0721', | |
'sic_description' => 'Crop Planting and Protection', | |
'naics_code' => '115112', | |
'naics_description' => 'Soil Preparation, Planting, and Cultivating', | |
], | |
[ | |
'sic_code' => '0722', | |
'sic_description' => 'Crop Harvesting', | |
'naics_code' => '115113', | |
'naics_description' => 'Crop Harvesting, Primarily by Machine', | |
], | |
[ | |
'sic_code' => '0723', | |
'sic_description' => 'Crop Preparation Services For Market', | |
'naics_code' => '115114', | |
'naics_description' => 'Postharvest Crop Activities (except Cotton Ginning)', | |
], | |
[ | |
'sic_code' => '0723', | |
'sic_description' => 'Crop Preparation Services For Market', | |
'naics_code' => '311119', | |
'naics_description' => 'Other Animal Food Manufacturing', | |
], | |
[ | |
'sic_code' => '0724', | |
'sic_description' => 'Cotton Ginning', | |
'naics_code' => '115111', | |
'naics_description' => 'Cotton Ginning', | |
], | |
[ | |
'sic_code' => '0741', | |
'sic_description' => 'Veterinary Services For Livestock', | |
'naics_code' => '541940', | |
'naics_description' => 'Veterinary Services', | |
], | |
[ | |
'sic_code' => '0742', | |
'sic_description' => 'Veterinary Services, Specialties', | |
'naics_code' => '541940', | |
'naics_description' => 'Veterinary Services', | |
], | |
[ | |
'sic_code' => '0751', | |
'sic_description' => 'Livestock Services, Except Veterinary', | |
'naics_code' => '115210', | |
'naics_description' => 'Support Activities for Animal Production', | |
], | |
[ | |
'sic_code' => '0751', | |
'sic_description' => 'Livestock Services, Except Veterinary', | |
'naics_code' => '311611', | |
'naics_description' => 'Animal (except Poultry) Slaughtering', | |
], | |
[ | |
'sic_code' => '0752', | |
'sic_description' => 'Animal Specialty Services', | |
'naics_code' => '115210', | |
'naics_description' => 'Support Activities for Animal Production', | |
], | |
[ | |
'sic_code' => '0752', | |
'sic_description' => 'Animal Specialty Services', | |
'naics_code' => '812910', | |
'naics_description' => 'Pet Care (except Veterinary) Services', | |
], | |
[ | |
'sic_code' => '0761', | |
'sic_description' => 'Farm Labor Contractors', | |
'naics_code' => '115115', | |
'naics_description' => 'Farm Labor Contractors and Crew Leaders', | |
], | |
[ | |
'sic_code' => '0762', | |
'sic_description' => 'Farm Management Services', | |
'naics_code' => '115116', | |
'naics_description' => 'Farm Management Services', | |
], | |
[ | |
'sic_code' => '0781', | |
'sic_description' => 'Landscape Counseling and Planning', | |
'naics_code' => '541320', | |
'naics_description' => 'Landscape Architectural Services', | |
], | |
[ | |
'sic_code' => '0781', | |
'sic_description' => 'Landscape Counseling and Planning', | |
'naics_code' => '541690', | |
'naics_description' => 'Other Scientific and Technical Consulting Services', | |
], | |
[ | |
'sic_code' => '0782', | |
'sic_description' => 'Lawn and Garden Services', | |
'naics_code' => '561730', | |
'naics_description' => 'Landscaping Services', | |
], | |
[ | |
'sic_code' => '0783', | |
'sic_description' => 'Ornamental Shrub and Tree Services', | |
'naics_code' => '561730', | |
'naics_description' => 'Landscaping Services', | |
], | |
[ | |
'sic_code' => '0811', | |
'sic_description' => 'Timber Tracts', | |
'naics_code' => '111421', | |
'naics_description' => 'Nursery and Tree Production', | |
], | |
[ | |
'sic_code' => '0811', | |
'sic_description' => 'Timber Tracts', | |
'naics_code' => '113110', | |
'naics_description' => 'Timber Tract Operations', | |
], | |
[ | |
'sic_code' => '0831', | |
'sic_description' => 'Forest Products', | |
'naics_code' => '111998', | |
'naics_description' => 'All Other Miscellaneous Crop Farming', | |
], | |
[ | |
'sic_code' => '0831', | |
'sic_description' => 'Forest Products', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0831', | |
'sic_description' => 'Forest Products', | |
'naics_code' => '113210', | |
'naics_description' => 'Forest Nurseries and Gathering of Forest Products', | |
], | |
[ | |
'sic_code' => '0851', | |
'sic_description' => 'Forestry Services', | |
'naics_code' => '115310', | |
'naics_description' => 'Support Activities for Forestry', | |
], | |
[ | |
'sic_code' => '0912', | |
'sic_description' => 'Finfish', | |
'naics_code' => '114111', | |
'naics_description' => 'Finfish Fishing', | |
], | |
[ | |
'sic_code' => '0913', | |
'sic_description' => 'Shellfish', | |
'naics_code' => '114112', | |
'naics_description' => 'Shellfish Fishing', | |
], | |
[ | |
'sic_code' => '0919', | |
'sic_description' => 'Miscellaneous Marine Products', | |
'naics_code' => '111998', | |
'naics_description' => 'All Other Miscellaneous Crop Farming', | |
], | |
[ | |
'sic_code' => '0919', | |
'sic_description' => 'Miscellaneous Marine Products', | |
'naics_code' => '112512', | |
'naics_description' => 'Shellfish Farming', | |
], | |
[ | |
'sic_code' => '0919', | |
'sic_description' => 'Miscellaneous Marine Products', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '0919', | |
'sic_description' => 'Miscellaneous Marine Products', | |
'naics_code' => '114112', | |
'naics_description' => 'Shellfish Fishing', | |
], | |
[ | |
'sic_code' => '0919', | |
'sic_description' => 'Miscellaneous Marine Products', | |
'naics_code' => '114119', | |
'naics_description' => 'Other Marine Fishing', | |
], | |
[ | |
'sic_code' => '0921', | |
'sic_description' => 'Fish Hatcheries and Preserves', | |
'naics_code' => '112511', | |
'naics_description' => 'Finfish Farming and Fish Hatcheries', | |
], | |
[ | |
'sic_code' => '0921', | |
'sic_description' => 'Fish Hatcheries and Preserves', | |
'naics_code' => '112512', | |
'naics_description' => 'Shellfish Farming', | |
], | |
[ | |
'sic_code' => '0971', | |
'sic_description' => 'Hunting, Trapping, Game Propagation', | |
'naics_code' => '114210', | |
'naics_description' => 'Hunting and Trapping', | |
], | |
[ | |
'sic_code' => '1011', | |
'sic_description' => 'Iron Ores', | |
'naics_code' => '212210', | |
'naics_description' => 'Iron Ore Mining', | |
], | |
[ | |
'sic_code' => '1021', | |
'sic_description' => 'Copper Ores', | |
'naics_code' => '212230', | |
'naics_description' => 'Copper, Nickel, Lead, and Zinc Mining', | |
], | |
[ | |
'sic_code' => '1031', | |
'sic_description' => 'Lead and Zinc Ores', | |
'naics_code' => '212230', | |
'naics_description' => 'Copper, Nickel, Lead, and Zinc Mining', | |
], | |
[ | |
'sic_code' => '1041', | |
'sic_description' => 'Gold Ores', | |
'naics_code' => '212221', | |
'naics_description' => 'Gold Ore Mining', | |
], | |
[ | |
'sic_code' => '1044', | |
'sic_description' => 'Silver Ores', | |
'naics_code' => '212222', | |
'naics_description' => 'Silver Ore Mining', | |
], | |
[ | |
'sic_code' => '1061', | |
'sic_description' => 'Ferroalloy Ores, Except Vanadium', | |
'naics_code' => '212230', | |
'naics_description' => 'Copper, Nickel, Lead, and Zinc Mining', | |
], | |
[ | |
'sic_code' => '1061', | |
'sic_description' => 'Ferroalloy Ores, Except Vanadium', | |
'naics_code' => '212299', | |
'naics_description' => 'All Other Metal Ore Mining', | |
], | |
[ | |
'sic_code' => '1081', | |
'sic_description' => 'Metal Mining Services', | |
'naics_code' => '213114', | |
'naics_description' => 'Support Activities for Metal Mining', | |
], | |
[ | |
'sic_code' => '1081', | |
'sic_description' => 'Metal Mining Services', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1081', | |
'sic_description' => 'Metal Mining Services', | |
'naics_code' => '541360', | |
'naics_description' => 'Geophysical Surveying and Mapping Services', | |
], | |
[ | |
'sic_code' => '1094', | |
'sic_description' => 'Uranium-radium-vanadium Ores', | |
'naics_code' => '212291', | |
'naics_description' => 'Uranium-Radium-Vanadium Ore Mining', | |
], | |
[ | |
'sic_code' => '1099', | |
'sic_description' => 'Metal Ores, Nec', | |
'naics_code' => '212299', | |
'naics_description' => 'All Other Metal Ore Mining', | |
], | |
[ | |
'sic_code' => '1221', | |
'sic_description' => 'Bituminous Coal and Lignite-surface Mining', | |
'naics_code' => '212111', | |
'naics_description' => 'Bituminous Coal and Lignite Surface Mining', | |
], | |
[ | |
'sic_code' => '1222', | |
'sic_description' => 'Bituminous Coal-underground Mining', | |
'naics_code' => '212112', | |
'naics_description' => 'Bituminous Coal Underground Mining', | |
], | |
[ | |
'sic_code' => '1231', | |
'sic_description' => 'Anthracite Mining', | |
'naics_code' => '212113', | |
'naics_description' => 'Anthracite Mining', | |
], | |
[ | |
'sic_code' => '1241', | |
'sic_description' => 'Coal Mining Services', | |
'naics_code' => '213113', | |
'naics_description' => 'Support Activities for Coal Mining', | |
], | |
[ | |
'sic_code' => '1241', | |
'sic_description' => 'Coal Mining Services', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1311', | |
'sic_description' => 'Crude Petroleum and Natural Gas', | |
'naics_code' => '211120', | |
'naics_description' => 'Crude Petroleum Extraction', | |
], | |
[ | |
'sic_code' => '1321', | |
'sic_description' => 'Natural Gas Liquids', | |
'naics_code' => '211130', | |
'naics_description' => 'Natural Gas Extraction', | |
], | |
[ | |
'sic_code' => '1381', | |
'sic_description' => 'Drilling Oil and Gas Wells', | |
'naics_code' => '213111', | |
'naics_description' => 'Drilling Oil and Gas Wells', | |
], | |
[ | |
'sic_code' => '1382', | |
'sic_description' => 'Oil and Gas Exploration Services', | |
'naics_code' => '213112', | |
'naics_description' => 'Support Activities for Oil and Gas Operations', | |
], | |
[ | |
'sic_code' => '1382', | |
'sic_description' => 'Oil and Gas Exploration Services', | |
'naics_code' => '541360', | |
'naics_description' => 'Geophysical Surveying and Mapping Services', | |
], | |
[ | |
'sic_code' => '1389', | |
'sic_description' => 'Oil and Gas Field Services, Nec', | |
'naics_code' => '213112', | |
'naics_description' => 'Support Activities for Oil and Gas Operations', | |
], | |
[ | |
'sic_code' => '1389', | |
'sic_description' => 'Oil and Gas Field Services, Nec', | |
'naics_code' => '237120', | |
'naics_description' => 'Oil and Gas Pipeline and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1389', | |
'sic_description' => 'Oil and Gas Field Services, Nec', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1411', | |
'sic_description' => 'Dimension Stone', | |
'naics_code' => '212311', | |
'naics_description' => 'Dimension Stone Mining and Quarrying', | |
], | |
[ | |
'sic_code' => '1422', | |
'sic_description' => 'Crushed and Broken Limestone', | |
'naics_code' => '212312', | |
'naics_description' => 'Crushed and Broken Limestone Mining and Quarrying', | |
], | |
[ | |
'sic_code' => '1423', | |
'sic_description' => 'Crushed and Broken Granite', | |
'naics_code' => '212313', | |
'naics_description' => 'Crushed and Broken Granite Mining and Quarrying', | |
], | |
[ | |
'sic_code' => '1429', | |
'sic_description' => 'Crushed and Broken Stone, Nec', | |
'naics_code' => '212319', | |
'naics_description' => 'Other Crushed and Broken Stone Mining and Quarrying', | |
], | |
[ | |
'sic_code' => '1442', | |
'sic_description' => 'Construction Sand and Gravel', | |
'naics_code' => '212321', | |
'naics_description' => 'Construction Sand and Gravel Mining', | |
], | |
[ | |
'sic_code' => '1446', | |
'sic_description' => 'Industrial Sand', | |
'naics_code' => '212322', | |
'naics_description' => 'Industrial Sand Mining', | |
], | |
[ | |
'sic_code' => '1455', | |
'sic_description' => 'Kaolin and Ball Clay', | |
'naics_code' => '212324', | |
'naics_description' => 'Kaolin and Ball Clay Mining', | |
], | |
[ | |
'sic_code' => '1459', | |
'sic_description' => 'Clay and Related Minerals, Nec', | |
'naics_code' => '212325', | |
'naics_description' => 'Clay and Ceramic and Refractory Minerals Mining', | |
], | |
[ | |
'sic_code' => '1474', | |
'sic_description' => 'Potash, Soda, and Borate Minerals', | |
'naics_code' => '212391', | |
'naics_description' => 'Potash, Soda, and Borate Mineral Mining', | |
], | |
[ | |
'sic_code' => '1475', | |
'sic_description' => 'Phosphate Rock', | |
'naics_code' => '212392', | |
'naics_description' => 'Phosphate Rock Mining', | |
], | |
[ | |
'sic_code' => '1479', | |
'sic_description' => 'Chemical and Fertilizer Mining', | |
'naics_code' => '212393', | |
'naics_description' => 'Other Chemical and Fertilizer Mineral Mining', | |
], | |
[ | |
'sic_code' => '1481', | |
'sic_description' => 'Nonmetallic Mineral Services', | |
'naics_code' => '213115', | |
'naics_description' => 'Support Activities for Nonmetallic Minerals (except Fuels) Mining', | |
], | |
[ | |
'sic_code' => '1481', | |
'sic_description' => 'Nonmetallic Mineral Services', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1481', | |
'sic_description' => 'Nonmetallic Mineral Services', | |
'naics_code' => '541360', | |
'naics_description' => 'Geophysical Surveying and Mapping Services', | |
], | |
[ | |
'sic_code' => '1499', | |
'sic_description' => 'Miscellaneous Nonmetallic Mining', | |
'naics_code' => '212319', | |
'naics_description' => 'Other Crushed and Broken Stone Mining and Quarrying', | |
], | |
[ | |
'sic_code' => '1499', | |
'sic_description' => 'Miscellaneous Nonmetallic Mining', | |
'naics_code' => '212399', | |
'naics_description' => 'All Other Nonmetallic Mineral Mining', | |
], | |
[ | |
'sic_code' => '1521', | |
'sic_description' => 'Single-family Housing Construction', | |
'naics_code' => '236115', | |
'naics_description' => 'New Single-Family Housing Construction (except For-Sale Builders)', | |
], | |
[ | |
'sic_code' => '1521', | |
'sic_description' => 'Single-family Housing Construction', | |
'naics_code' => '236118', | |
'naics_description' => 'Residential Remodelers', | |
], | |
[ | |
'sic_code' => '1522', | |
'sic_description' => 'Residential Construction, Nec', | |
'naics_code' => '236116', | |
'naics_description' => 'New Multifamily Housing Construction (except For-Sale Builders)', | |
], | |
[ | |
'sic_code' => '1522', | |
'sic_description' => 'Residential Construction, Nec', | |
'naics_code' => '236118', | |
'naics_description' => 'Residential Remodelers', | |
], | |
[ | |
'sic_code' => '1522', | |
'sic_description' => 'Residential Construction, Nec', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '1531', | |
'sic_description' => 'Operative Builders', | |
'naics_code' => '236117', | |
'naics_description' => 'New Housing For-Sale Builders', | |
], | |
[ | |
'sic_code' => '1531', | |
'sic_description' => 'Operative Builders', | |
'naics_code' => '236118', | |
'naics_description' => 'Residential Remodelers', | |
], | |
[ | |
'sic_code' => '1531', | |
'sic_description' => 'Operative Builders', | |
'naics_code' => '236210', | |
'naics_description' => 'Industrial Building Construction', | |
], | |
[ | |
'sic_code' => '1531', | |
'sic_description' => 'Operative Builders', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '1541', | |
'sic_description' => 'Industrial Buildings and Warehouses', | |
'naics_code' => '236210', | |
'naics_description' => 'Industrial Building Construction', | |
], | |
[ | |
'sic_code' => '1541', | |
'sic_description' => 'Industrial Buildings and Warehouses', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '1542', | |
'sic_description' => 'Nonresidential Construction, Nec', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '1611', | |
'sic_description' => 'Highway and Street Construction', | |
'naics_code' => '237310', | |
'naics_description' => 'Highway, Street, and Bridge Construction', | |
], | |
[ | |
'sic_code' => '1622', | |
'sic_description' => 'Bridge, Tunnel, and Elevated Highway', | |
'naics_code' => '237310', | |
'naics_description' => 'Highway, Street, and Bridge Construction', | |
], | |
[ | |
'sic_code' => '1622', | |
'sic_description' => 'Bridge, Tunnel, and Elevated Highway', | |
'naics_code' => '237990', | |
'naics_description' => 'Other Heavy and Civil Engineering Construction', | |
], | |
[ | |
'sic_code' => '1623', | |
'sic_description' => 'Water, Sewer, and Utility Lines', | |
'naics_code' => '237110', | |
'naics_description' => 'Water and Sewer Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1623', | |
'sic_description' => 'Water, Sewer, and Utility Lines', | |
'naics_code' => '237120', | |
'naics_description' => 'Oil and Gas Pipeline and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1623', | |
'sic_description' => 'Water, Sewer, and Utility Lines', | |
'naics_code' => '237130', | |
'naics_description' => 'Power and Communication Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '236210', | |
'naics_description' => 'Industrial Building Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '237110', | |
'naics_description' => 'Water and Sewer Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '237120', | |
'naics_description' => 'Oil and Gas Pipeline and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '237130', | |
'naics_description' => 'Power and Communication Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '237990', | |
'naics_description' => 'Other Heavy and Civil Engineering Construction', | |
], | |
[ | |
'sic_code' => '1629', | |
'sic_description' => 'Heavy Construction, Nec', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1711', | |
'sic_description' => 'Plumbing, Heating, Air-conditioning', | |
'naics_code' => '238210', | |
'naics_description' => 'Electrical Contractors and Other Wiring Installation Contractors', | |
], | |
[ | |
'sic_code' => '1711', | |
'sic_description' => 'Plumbing, Heating, Air-conditioning', | |
'naics_code' => '238220', | |
'naics_description' => 'Plumbing, Heating, and Air-Conditioning Contractors', | |
], | |
[ | |
'sic_code' => '1711', | |
'sic_description' => 'Plumbing, Heating, Air-conditioning', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1721', | |
'sic_description' => 'Painting and Paper Hanging', | |
'naics_code' => '237310', | |
'naics_description' => 'Highway, Street, and Bridge Construction', | |
], | |
[ | |
'sic_code' => '1721', | |
'sic_description' => 'Painting and Paper Hanging', | |
'naics_code' => '238320', | |
'naics_description' => 'Painting and Wall Covering Contractors', | |
], | |
[ | |
'sic_code' => '1731', | |
'sic_description' => 'Electrical Work', | |
'naics_code' => '238210', | |
'naics_description' => 'Electrical Contractors and Other Wiring Installation Contractors', | |
], | |
[ | |
'sic_code' => '1741', | |
'sic_description' => 'Masonry and Other Stonework', | |
'naics_code' => '238140', | |
'naics_description' => 'Masonry Contractors', | |
], | |
[ | |
'sic_code' => '1742', | |
'sic_description' => 'Plastering, Drywall, and Insulation', | |
'naics_code' => '238310', | |
'naics_description' => 'Drywall and Insulation Contractors', | |
], | |
[ | |
'sic_code' => '1743', | |
'sic_description' => 'Terrazzo, Tile, Marble, Mosaic Work', | |
'naics_code' => '238310', | |
'naics_description' => 'Drywall and Insulation Contractors', | |
], | |
[ | |
'sic_code' => '1743', | |
'sic_description' => 'Terrazzo, Tile, Marble, Mosaic Work', | |
'naics_code' => '238340', | |
'naics_description' => 'Tile and Terrazzo Contractors', | |
], | |
[ | |
'sic_code' => '1751', | |
'sic_description' => 'Carpentry Work', | |
'naics_code' => '238130', | |
'naics_description' => 'Framing Contractors', | |
], | |
[ | |
'sic_code' => '1751', | |
'sic_description' => 'Carpentry Work', | |
'naics_code' => '238350', | |
'naics_description' => 'Finish Carpentry Contractors', | |
], | |
[ | |
'sic_code' => '1752', | |
'sic_description' => 'Floor Laying and Floor Work, Nec', | |
'naics_code' => '238310', | |
'naics_description' => 'Drywall and Insulation Contractors', | |
], | |
[ | |
'sic_code' => '1752', | |
'sic_description' => 'Floor Laying and Floor Work, Nec', | |
'naics_code' => '238330', | |
'naics_description' => 'Flooring Contractors', | |
], | |
[ | |
'sic_code' => '1761', | |
'sic_description' => 'Roofing, Siding, and Sheetmetal Work', | |
'naics_code' => '238160', | |
'naics_description' => 'Roofing Contractors', | |
], | |
[ | |
'sic_code' => '1761', | |
'sic_description' => 'Roofing, Siding, and Sheetmetal Work', | |
'naics_code' => '238170', | |
'naics_description' => 'Siding Contractors', | |
], | |
[ | |
'sic_code' => '1761', | |
'sic_description' => 'Roofing, Siding, and Sheetmetal Work', | |
'naics_code' => '238390', | |
'naics_description' => 'Other Building Finishing Contractors', | |
], | |
[ | |
'sic_code' => '1771', | |
'sic_description' => 'Concrete Work', | |
'naics_code' => '238110', | |
'naics_description' => 'Poured Concrete Foundation and Structure Contractors', | |
], | |
[ | |
'sic_code' => '1771', | |
'sic_description' => 'Concrete Work', | |
'naics_code' => '238140', | |
'naics_description' => 'Masonry Contractors', | |
], | |
[ | |
'sic_code' => '1771', | |
'sic_description' => 'Concrete Work', | |
'naics_code' => '238990', | |
'naics_description' => 'All Other Specialty Trade Contractors', | |
], | |
[ | |
'sic_code' => '1781', | |
'sic_description' => 'Water Well Drilling', | |
'naics_code' => '237110', | |
'naics_description' => 'Water and Sewer Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '1791', | |
'sic_description' => 'Structural Steel Erection', | |
'naics_code' => '238120', | |
'naics_description' => 'Structural Steel and Precast Concrete Contractors', | |
], | |
[ | |
'sic_code' => '1791', | |
'sic_description' => 'Structural Steel Erection', | |
'naics_code' => '238190', | |
'naics_description' => 'Other Foundation, Structure, and Building Exterior Contractors', | |
], | |
[ | |
'sic_code' => '1791', | |
'sic_description' => 'Structural Steel Erection', | |
'naics_code' => '238220', | |
'naics_description' => 'Plumbing, Heating, and Air-Conditioning Contractors', | |
], | |
[ | |
'sic_code' => '1791', | |
'sic_description' => 'Structural Steel Erection', | |
'naics_code' => '238310', | |
'naics_description' => 'Drywall and Insulation Contractors', | |
], | |
[ | |
'sic_code' => '1793', | |
'sic_description' => 'Glass and Glazing Work', | |
'naics_code' => '238150', | |
'naics_description' => 'Glass and Glazing Contractors', | |
], | |
[ | |
'sic_code' => '1794', | |
'sic_description' => 'Excavation Work', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1795', | |
'sic_description' => 'Wrecking and Demolition Work', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1796', | |
'sic_description' => 'Installing Building Equipment', | |
'naics_code' => '238220', | |
'naics_description' => 'Plumbing, Heating, and Air-Conditioning Contractors', | |
], | |
[ | |
'sic_code' => '1796', | |
'sic_description' => 'Installing Building Equipment', | |
'naics_code' => '238290', | |
'naics_description' => 'Other Building Equipment Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '237990', | |
'naics_description' => 'Other Heavy and Civil Engineering Construction', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238150', | |
'naics_description' => 'Glass and Glazing Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238190', | |
'naics_description' => 'Other Foundation, Structure, and Building Exterior Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238290', | |
'naics_description' => 'Other Building Equipment Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238310', | |
'naics_description' => 'Drywall and Insulation Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238320', | |
'naics_description' => 'Painting and Wall Covering Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238350', | |
'naics_description' => 'Finish Carpentry Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238390', | |
'naics_description' => 'Other Building Finishing Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '238990', | |
'naics_description' => 'All Other Specialty Trade Contractors', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '561790', | |
'naics_description' => 'Other Services to Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '1799', | |
'sic_description' => 'Special Trade Contractors, Nec', | |
'naics_code' => '562910', | |
'naics_description' => 'Remediation Services', | |
], | |
[ | |
'sic_code' => '2011', | |
'sic_description' => 'Meat Packing Plants', | |
'naics_code' => '311611', | |
'naics_description' => 'Animal (except Poultry) Slaughtering', | |
], | |
[ | |
'sic_code' => '2013', | |
'sic_description' => 'Sausages and Other Prepared Meats', | |
'naics_code' => '311612', | |
'naics_description' => 'Meat Processed from Carcasses', | |
], | |
[ | |
'sic_code' => '2013', | |
'sic_description' => 'Sausages and Other Prepared Meats', | |
'naics_code' => '311613', | |
'naics_description' => 'Rendering and Meat Byproduct Processing', | |
], | |
[ | |
'sic_code' => '2015', | |
'sic_description' => 'Poultry Slaughtering and Processing', | |
'naics_code' => '311615', | |
'naics_description' => 'Poultry Processing', | |
], | |
[ | |
'sic_code' => '2015', | |
'sic_description' => 'Poultry Slaughtering and Processing', | |
'naics_code' => '311999', | |
'naics_description' => 'All Other Miscellaneous Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2021', | |
'sic_description' => 'Creamery Butter', | |
'naics_code' => '311512', | |
'naics_description' => 'Creamery Butter Manufacturing', | |
], | |
[ | |
'sic_code' => '2022', | |
'sic_description' => 'Cheese; Natural and Processed', | |
'naics_code' => '311513', | |
'naics_description' => 'Cheese Manufacturing', | |
], | |
[ | |
'sic_code' => '2023', | |
'sic_description' => 'Dry, Condensed, Evaporated Products', | |
'naics_code' => '311511', | |
'naics_description' => 'Fluid Milk Manufacturing', | |
], | |
[ | |
'sic_code' => '2023', | |
'sic_description' => 'Dry, Condensed, Evaporated Products', | |
'naics_code' => '311514', | |
'naics_description' => 'Dry, Condensed, and Evaporated Dairy Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2024', | |
'sic_description' => 'Ice Cream and Frozen Desserts', | |
'naics_code' => '311520', | |
'naics_description' => 'Ice Cream and Frozen Dessert Manufacturing', | |
], | |
[ | |
'sic_code' => '2026', | |
'sic_description' => 'Fluid Milk', | |
'naics_code' => '311511', | |
'naics_description' => 'Fluid Milk Manufacturing', | |
], | |
[ | |
'sic_code' => '2026', | |
'sic_description' => 'Fluid Milk', | |
'naics_code' => '311514', | |
'naics_description' => 'Dry, Condensed, and Evaporated Dairy Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2032', | |
'sic_description' => 'Canned Specialties', | |
'naics_code' => '311422', | |
'naics_description' => 'Specialty Canning', | |
], | |
[ | |
'sic_code' => '2032', | |
'sic_description' => 'Canned Specialties', | |
'naics_code' => '311999', | |
'naics_description' => 'All Other Miscellaneous Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2033', | |
'sic_description' => 'Canned Fruits and Specialties', | |
'naics_code' => '311421', | |
'naics_description' => 'Fruit and Vegetable Canning', | |
], | |
[ | |
'sic_code' => '2034', | |
'sic_description' => 'Dehydrated Fruits, Vegetables, Soups', | |
'naics_code' => '311211', | |
'naics_description' => 'Flour Milling', | |
], | |
[ | |
'sic_code' => '2034', | |
'sic_description' => 'Dehydrated Fruits, Vegetables, Soups', | |
'naics_code' => '311423', | |
'naics_description' => 'Dried and Dehydrated Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2034', | |
'sic_description' => 'Dehydrated Fruits, Vegetables, Soups', | |
'naics_code' => '311999', | |
'naics_description' => 'All Other Miscellaneous Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2035', | |
'sic_description' => 'Pickles, Sauces, and Salad Dressings', | |
'naics_code' => '311421', | |
'naics_description' => 'Fruit and Vegetable Canning', | |
], | |
[ | |
'sic_code' => '2035', | |
'sic_description' => 'Pickles, Sauces, and Salad Dressings', | |
'naics_code' => '311941', | |
'naics_description' => 'Mayonnaise, Dressing, and Other Prepared Sauce Manufacturing', | |
], | |
[ | |
'sic_code' => '2037', | |
'sic_description' => 'Frozen Fruits and Vegetables', | |
'naics_code' => '311411', | |
'naics_description' => 'Frozen Fruit, Juice, and Vegetable Manufacturing', | |
], | |
[ | |
'sic_code' => '2038', | |
'sic_description' => 'Frozen Specialties, Nec', | |
'naics_code' => '311412', | |
'naics_description' => 'Frozen Specialty Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2041', | |
'sic_description' => 'Flour and Other Grain Mill Products', | |
'naics_code' => '311211', | |
'naics_description' => 'Flour Milling', | |
], | |
[ | |
'sic_code' => '2043', | |
'sic_description' => 'Cereal Breakfast Foods', | |
'naics_code' => '311230', | |
'naics_description' => 'Breakfast Cereal Manufacturing', | |
], | |
[ | |
'sic_code' => '2043', | |
'sic_description' => 'Cereal Breakfast Foods', | |
'naics_code' => '311920', | |
'naics_description' => 'Coffee and Tea Manufacturing', | |
], | |
[ | |
'sic_code' => '2044', | |
'sic_description' => 'Rice Milling', | |
'naics_code' => '311212', | |
'naics_description' => 'Rice Milling', | |
], | |
[ | |
'sic_code' => '2045', | |
'sic_description' => 'Prepared Flour Mixes and Doughs', | |
'naics_code' => '311824', | |
'naics_description' => 'Dry Pasta, Dough, and Flour Mixes Manufacturing from Purchased Flour', | |
], | |
[ | |
'sic_code' => '2046', | |
'sic_description' => 'Wet Corn Milling', | |
'naics_code' => '311221', | |
'naics_description' => 'Wet Corn Milling', | |
], | |
[ | |
'sic_code' => '2046', | |
'sic_description' => 'Wet Corn Milling', | |
'naics_code' => '311225', | |
'naics_description' => 'Fats and Oils Refining and Blending', | |
], | |
[ | |
'sic_code' => '2047', | |
'sic_description' => 'Dog and Cat Food', | |
'naics_code' => '311111', | |
'naics_description' => 'Dog and Cat Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2048', | |
'sic_description' => 'Prepared Feeds, Nec', | |
'naics_code' => '311119', | |
'naics_description' => 'Other Animal Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2048', | |
'sic_description' => 'Prepared Feeds, Nec', | |
'naics_code' => '311611', | |
'naics_description' => 'Animal (except Poultry) Slaughtering', | |
], | |
[ | |
'sic_code' => '2051', | |
'sic_description' => 'Bread, Cake, and Related Products', | |
'naics_code' => '311812', | |
'naics_description' => 'Commercial Bakeries', | |
], | |
[ | |
'sic_code' => '2052', | |
'sic_description' => 'Cookies and Crackers', | |
'naics_code' => '311812', | |
'naics_description' => 'Commercial Bakeries', | |
], | |
[ | |
'sic_code' => '2052', | |
'sic_description' => 'Cookies and Crackers', | |
'naics_code' => '311821', | |
'naics_description' => 'Cookie and Cracker Manufacturing', | |
], | |
[ | |
'sic_code' => '2052', | |
'sic_description' => 'Cookies and Crackers', | |
'naics_code' => '311919', | |
'naics_description' => 'Other Snack Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2053', | |
'sic_description' => 'Frozen Bakery Products, Except Bread', | |
'naics_code' => '311813', | |
'naics_description' => 'Frozen Cakes, Pies, and Other Pastries Manufacturing', | |
], | |
[ | |
'sic_code' => '2061', | |
'sic_description' => 'Raw Cane Sugar', | |
'naics_code' => '311314', | |
'naics_description' => 'Cane Sugar Manufacturing', | |
], | |
[ | |
'sic_code' => '2062', | |
'sic_description' => 'Cane Sugar Refining', | |
'naics_code' => '311314', | |
'naics_description' => 'Cane Sugar Manufacturing', | |
], | |
[ | |
'sic_code' => '2063', | |
'sic_description' => 'Beet Sugar', | |
'naics_code' => '311313', | |
'naics_description' => 'Beet Sugar Manufacturing', | |
], | |
[ | |
'sic_code' => '2064', | |
'sic_description' => 'Candy and Other Confectionery Products', | |
'naics_code' => '311340', | |
'naics_description' => 'Nonchocolate Confectionery Manufacturing', | |
], | |
[ | |
'sic_code' => '2064', | |
'sic_description' => 'Candy and Other Confectionery Products', | |
'naics_code' => '311352', | |
'naics_description' => 'Confectionery Manufacturing from Purchased Chocolate', | |
], | |
[ | |
'sic_code' => '2066', | |
'sic_description' => 'Chocolate and Cocoa Products', | |
'naics_code' => '311351', | |
'naics_description' => 'Chocolate and Confectionery Manufacturing from Cacao Beans', | |
], | |
[ | |
'sic_code' => '2066', | |
'sic_description' => 'Chocolate and Cocoa Products', | |
'naics_code' => '311352', | |
'naics_description' => 'Confectionery Manufacturing from Purchased Chocolate', | |
], | |
[ | |
'sic_code' => '2067', | |
'sic_description' => 'Chewing Gum', | |
'naics_code' => '311340', | |
'naics_description' => 'Nonchocolate Confectionery Manufacturing', | |
], | |
[ | |
'sic_code' => '2068', | |
'sic_description' => 'Salted and Roasted Nuts and Seeds', | |
'naics_code' => '311911', | |
'naics_description' => 'Roasted Nuts and Peanut Butter Manufacturing', | |
], | |
[ | |
'sic_code' => '2074', | |
'sic_description' => 'Cottonseed Oil Mills', | |
'naics_code' => '311224', | |
'naics_description' => 'Soybean and Other Oilseed Processing', | |
], | |
[ | |
'sic_code' => '2074', | |
'sic_description' => 'Cottonseed Oil Mills', | |
'naics_code' => '311225', | |
'naics_description' => 'Fats and Oils Refining and Blending', | |
], | |
[ | |
'sic_code' => '2075', | |
'sic_description' => 'Soybean Oil Mills', | |
'naics_code' => '311224', | |
'naics_description' => 'Soybean and Other Oilseed Processing', | |
], | |
[ | |
'sic_code' => '2075', | |
'sic_description' => 'Soybean Oil Mills', | |
'naics_code' => '311225', | |
'naics_description' => 'Fats and Oils Refining and Blending', | |
], | |
[ | |
'sic_code' => '2076', | |
'sic_description' => 'Vegetable Oil Mills, Nec', | |
'naics_code' => '311224', | |
'naics_description' => 'Soybean and Other Oilseed Processing', | |
], | |
[ | |
'sic_code' => '2076', | |
'sic_description' => 'Vegetable Oil Mills, Nec', | |
'naics_code' => '311225', | |
'naics_description' => 'Fats and Oils Refining and Blending', | |
], | |
[ | |
'sic_code' => '2077', | |
'sic_description' => 'Animal and Marine Fats and Oils', | |
'naics_code' => '311613', | |
'naics_description' => 'Rendering and Meat Byproduct Processing', | |
], | |
[ | |
'sic_code' => '2077', | |
'sic_description' => 'Animal and Marine Fats and Oils', | |
'naics_code' => '311710', | |
'naics_description' => 'Seafood Product Preparation and Packaging', | |
], | |
[ | |
'sic_code' => '2079', | |
'sic_description' => 'Edible Fats and Oils', | |
'naics_code' => '311224', | |
'naics_description' => 'Soybean and Other Oilseed Processing', | |
], | |
[ | |
'sic_code' => '2079', | |
'sic_description' => 'Edible Fats and Oils', | |
'naics_code' => '311225', | |
'naics_description' => 'Fats and Oils Refining and Blending', | |
], | |
[ | |
'sic_code' => '2082', | |
'sic_description' => 'Malt Beverages', | |
'naics_code' => '311942', | |
'naics_description' => 'Spice and Extract Manufacturing', | |
], | |
[ | |
'sic_code' => '2082', | |
'sic_description' => 'Malt Beverages', | |
'naics_code' => '312120', | |
'naics_description' => 'Breweries', | |
], | |
[ | |
'sic_code' => '2083', | |
'sic_description' => 'Malt', | |
'naics_code' => '311213', | |
'naics_description' => 'Malt Manufacturing', | |
], | |
[ | |
'sic_code' => '2084', | |
'sic_description' => 'Wines, Brandy, and Brandy Spirits', | |
'naics_code' => '312130', | |
'naics_description' => 'Wineries', | |
], | |
[ | |
'sic_code' => '2085', | |
'sic_description' => 'Distilled and Blended Liquors', | |
'naics_code' => '312130', | |
'naics_description' => 'Wineries', | |
], | |
[ | |
'sic_code' => '2085', | |
'sic_description' => 'Distilled and Blended Liquors', | |
'naics_code' => '312140', | |
'naics_description' => 'Distilleries', | |
], | |
[ | |
'sic_code' => '2086', | |
'sic_description' => 'Bottled and Canned Soft Drinks', | |
'naics_code' => '312111', | |
'naics_description' => 'Soft Drink Manufacturing', | |
], | |
[ | |
'sic_code' => '2086', | |
'sic_description' => 'Bottled and Canned Soft Drinks', | |
'naics_code' => '312112', | |
'naics_description' => 'Bottled Water Manufacturing', | |
], | |
[ | |
'sic_code' => '2087', | |
'sic_description' => 'Flavoring Extracts and Syrups, Nec', | |
'naics_code' => '311920', | |
'naics_description' => 'Coffee and Tea Manufacturing', | |
], | |
[ | |
'sic_code' => '2087', | |
'sic_description' => 'Flavoring Extracts and Syrups, Nec', | |
'naics_code' => '311930', | |
'naics_description' => 'Flavoring Syrup and Concentrate Manufacturing', | |
], | |
[ | |
'sic_code' => '2087', | |
'sic_description' => 'Flavoring Extracts and Syrups, Nec', | |
'naics_code' => '311942', | |
'naics_description' => 'Spice and Extract Manufacturing', | |
], | |
[ | |
'sic_code' => '2087', | |
'sic_description' => 'Flavoring Extracts and Syrups, Nec', | |
'naics_code' => '311999', | |
'naics_description' => 'All Other Miscellaneous Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2091', | |
'sic_description' => 'Canned and Cured Fish and Seafoods', | |
'naics_code' => '311710', | |
'naics_description' => 'Seafood Product Preparation and Packaging', | |
], | |
[ | |
'sic_code' => '2092', | |
'sic_description' => 'Fresh or Frozen Packaged Fish', | |
'naics_code' => '311710', | |
'naics_description' => 'Seafood Product Preparation and Packaging', | |
], | |
[ | |
'sic_code' => '2095', | |
'sic_description' => 'Roasted Coffee', | |
'naics_code' => '311920', | |
'naics_description' => 'Coffee and Tea Manufacturing', | |
], | |
[ | |
'sic_code' => '2096', | |
'sic_description' => 'Potato Chips and Similar Snacks', | |
'naics_code' => '311919', | |
'naics_description' => 'Other Snack Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2097', | |
'sic_description' => 'Manufactured Ice', | |
'naics_code' => '312113', | |
'naics_description' => 'Ice Manufacturing', | |
], | |
[ | |
'sic_code' => '2098', | |
'sic_description' => 'Macaroni and Spaghetti', | |
'naics_code' => '311824', | |
'naics_description' => 'Dry Pasta, Dough, and Flour Mixes Manufacturing from Purchased Flour', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '111998', | |
'naics_description' => 'All Other Miscellaneous Crop Farming', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '112519', | |
'naics_description' => 'Other Aquaculture', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311212', | |
'naics_description' => 'Rice Milling', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311340', | |
'naics_description' => 'Nonchocolate Confectionery Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311423', | |
'naics_description' => 'Dried and Dehydrated Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311824', | |
'naics_description' => 'Dry Pasta, Dough, and Flour Mixes Manufacturing from Purchased Flour', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311830', | |
'naics_description' => 'Tortilla Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311911', | |
'naics_description' => 'Roasted Nuts and Peanut Butter Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311920', | |
'naics_description' => 'Coffee and Tea Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311941', | |
'naics_description' => 'Mayonnaise, Dressing, and Other Prepared Sauce Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311942', | |
'naics_description' => 'Spice and Extract Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311991', | |
'naics_description' => 'Perishable Prepared Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2099', | |
'sic_description' => 'Food Preparations, Nec', | |
'naics_code' => '311999', | |
'naics_description' => 'All Other Miscellaneous Food Manufacturing', | |
], | |
[ | |
'sic_code' => '2111', | |
'sic_description' => 'Cigarettes', | |
'naics_code' => '312230', | |
'naics_description' => 'Tobacco Manufacturing', | |
], | |
[ | |
'sic_code' => '2121', | |
'sic_description' => 'Cigars', | |
'naics_code' => '312230', | |
'naics_description' => 'Tobacco Manufacturing', | |
], | |
[ | |
'sic_code' => '2131', | |
'sic_description' => 'Chewing and Smoking Tobacco', | |
'naics_code' => '312230', | |
'naics_description' => 'Tobacco Manufacturing', | |
], | |
[ | |
'sic_code' => '2141', | |
'sic_description' => 'Tobacco Stemming and Redrying', | |
'naics_code' => '312230', | |
'naics_description' => 'Tobacco Manufacturing', | |
], | |
[ | |
'sic_code' => '2211', | |
'sic_description' => 'Broadwoven Fabric Mills, Cotton', | |
'naics_code' => '313210', | |
'naics_description' => 'Broadwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2221', | |
'sic_description' => 'Broadwoven Fabric Mills, Manmade', | |
'naics_code' => '313210', | |
'naics_description' => 'Broadwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2231', | |
'sic_description' => 'Broadwoven Fabric Mills, Wool', | |
'naics_code' => '313210', | |
'naics_description' => 'Broadwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2231', | |
'sic_description' => 'Broadwoven Fabric Mills, Wool', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2241', | |
'sic_description' => 'Narrow Fabric Mills', | |
'naics_code' => '313220', | |
'naics_description' => 'Narrow Fabric Mills and Schiffli Machine Embroidery', | |
], | |
[ | |
'sic_code' => '2251', | |
'sic_description' => "Women\'s Hosiery, Except Socks", | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2251', | |
'sic_description' => "Women\'s Hosiery, Except Socks", | |
'naics_code' => '315110', | |
'naics_description' => 'Hosiery and Sock Mills', | |
], | |
[ | |
'sic_code' => '2252', | |
'sic_description' => 'Hosiery, Nec', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2252', | |
'sic_description' => 'Hosiery, Nec', | |
'naics_code' => '315110', | |
'naics_description' => 'Hosiery and Sock Mills', | |
], | |
[ | |
'sic_code' => '2253', | |
'sic_description' => 'Knit Outerwear Mills', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2253', | |
'sic_description' => 'Knit Outerwear Mills', | |
'naics_code' => '315190', | |
'naics_description' => 'Other Apparel Knitting Mills', | |
], | |
[ | |
'sic_code' => '2254', | |
'sic_description' => 'Knit Underwear Mills', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2254', | |
'sic_description' => 'Knit Underwear Mills', | |
'naics_code' => '315190', | |
'naics_description' => 'Other Apparel Knitting Mills', | |
], | |
[ | |
'sic_code' => '2257', | |
'sic_description' => 'Weft Knit Fabric Mills', | |
'naics_code' => '313240', | |
'naics_description' => 'Knit Fabric Mills', | |
], | |
[ | |
'sic_code' => '2257', | |
'sic_description' => 'Weft Knit Fabric Mills', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2258', | |
'sic_description' => 'Lace and Warp Knit Fabric Mills', | |
'naics_code' => '313240', | |
'naics_description' => 'Knit Fabric Mills', | |
], | |
[ | |
'sic_code' => '2258', | |
'sic_description' => 'Lace and Warp Knit Fabric Mills', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2259', | |
'sic_description' => 'Knitting Mills, Nec', | |
'naics_code' => '313240', | |
'naics_description' => 'Knit Fabric Mills', | |
], | |
[ | |
'sic_code' => '2259', | |
'sic_description' => 'Knitting Mills, Nec', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2259', | |
'sic_description' => 'Knitting Mills, Nec', | |
'naics_code' => '315190', | |
'naics_description' => 'Other Apparel Knitting Mills', | |
], | |
[ | |
'sic_code' => '2261', | |
'sic_description' => 'Finishing Plants, Cotton', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2262', | |
'sic_description' => 'Finishing Plants, Manmade', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2269', | |
'sic_description' => 'Finishing Plants, Nec', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2273', | |
'sic_description' => 'Carpets and Rugs', | |
'naics_code' => '314110', | |
'naics_description' => 'Carpet and Rug Mills', | |
], | |
[ | |
'sic_code' => '2281', | |
'sic_description' => 'Yarn Spinning Mills', | |
'naics_code' => '313110', | |
'naics_description' => 'Fiber, Yarn, and Thread Mills', | |
], | |
[ | |
'sic_code' => '2282', | |
'sic_description' => 'Throwing and Winding Mills', | |
'naics_code' => '313110', | |
'naics_description' => 'Fiber, Yarn, and Thread Mills', | |
], | |
[ | |
'sic_code' => '2284', | |
'sic_description' => 'Thread Mills', | |
'naics_code' => '313110', | |
'naics_description' => 'Fiber, Yarn, and Thread Mills', | |
], | |
[ | |
'sic_code' => '2284', | |
'sic_description' => 'Thread Mills', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2295', | |
'sic_description' => 'Coated Fabrics, Not Rubberized', | |
'naics_code' => '313320', | |
'naics_description' => 'Fabric Coating Mills', | |
], | |
[ | |
'sic_code' => '2296', | |
'sic_description' => 'Tire Cord and Fabrics', | |
'naics_code' => '314994', | |
'naics_description' => 'Rope, Cordage, Twine, Tire Cord, and Tire Fabric Mills', | |
], | |
[ | |
'sic_code' => '2297', | |
'sic_description' => 'Nonwoven Fabrics', | |
'naics_code' => '313230', | |
'naics_description' => 'Nonwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2298', | |
'sic_description' => 'Cordage and Twine', | |
'naics_code' => '313110', | |
'naics_description' => 'Fiber, Yarn, and Thread Mills', | |
], | |
[ | |
'sic_code' => '2298', | |
'sic_description' => 'Cordage and Twine', | |
'naics_code' => '314994', | |
'naics_description' => 'Rope, Cordage, Twine, Tire Cord, and Tire Fabric Mills', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '313110', | |
'naics_description' => 'Fiber, Yarn, and Thread Mills', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '313210', | |
'naics_description' => 'Broadwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '313220', | |
'naics_description' => 'Narrow Fabric Mills and Schiffli Machine Embroidery', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '313230', | |
'naics_description' => 'Nonwoven Fabric Mills', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '2299', | |
'sic_description' => 'Textile Goods, Nec', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2311', | |
'sic_description' => "Men\'s and Boy\'s Suits and Coats", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2311', | |
'sic_description' => "Men\'s and Boy\'s Suits and Coats", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2311', | |
'sic_description' => "Men\'s and Boy\'s Suits and Coats", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2321', | |
'sic_description' => "Men\'s and Boy\'s Furnishings", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2321', | |
'sic_description' => "Men\'s and Boy\'s Furnishings", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2321', | |
'sic_description' => "Men\'s and Boy\'s Furnishings", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2322', | |
'sic_description' => "Men\'s and Boy\'s Underwear and Nightwear", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2322', | |
'sic_description' => "Men\'s and Boy\'s Underwear and Nightwear", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2322', | |
'sic_description' => "Men\'s and Boy\'s Underwear and Nightwear", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2323', | |
'sic_description' => "Men\'s and Boy\'s Neckwear", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2323', | |
'sic_description' => "Men\'s and Boy\'s Neckwear", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2323', | |
'sic_description' => "Men\'s and Boy\'s Neckwear", | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2325', | |
'sic_description' => "Men\'s and Boy\'s Trousers and Slacks", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2325', | |
'sic_description' => "Men\'s and Boy\'s Trousers and Slacks", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2325', | |
'sic_description' => "Men\'s and Boy\'s Trousers and Slacks", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2326', | |
'sic_description' => "Men\'s and Boy\'s Work Clothing", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2326', | |
'sic_description' => "Men\'s and Boy\'s Work Clothing", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2326', | |
'sic_description' => "Men\'s and Boy\'s Work Clothing", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2329', | |
'sic_description' => "Men\'s and Boy\'s Clothing, Nec", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2329', | |
'sic_description' => "Men\'s and Boy\'s Clothing, Nec", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2329', | |
'sic_description' => "Men\'s and Boy\'s Clothing, Nec", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2329', | |
'sic_description' => "Men\'s and Boy\'s Clothing, Nec", | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2331', | |
'sic_description' => "Women\'s and Misses\' Blouses and Shirts", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2331', | |
'sic_description' => "Women\'s and Misses\' Blouses and Shirts", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2331', | |
'sic_description' => "Women\'s and Misses\' Blouses and Shirts", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2335', | |
'sic_description' => "Women\'s, Junior\'s, and Misses\' Dresses", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2335', | |
'sic_description' => "Women\'s, Junior\'s, and Misses\' Dresses", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2335', | |
'sic_description' => "Women\'s, Junior\'s, and Misses\' Dresses", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2337', | |
'sic_description' => "Women\'s and Misses\' Suits and Coats", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2337', | |
'sic_description' => "Women\'s and Misses\' Suits and Coats", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2337', | |
'sic_description' => "Women\'s and Misses\' Suits and Coats", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2339', | |
'sic_description' => "Women\'s and Misses\' Outerwear, Nec", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2339', | |
'sic_description' => "Women\'s and Misses\' Outerwear, Nec", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2339', | |
'sic_description' => "Women\'s and Misses\' Outerwear, Nec", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2339', | |
'sic_description' => "Women\'s and Misses\' Outerwear, Nec", | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2339', | |
'sic_description' => "Women\'s and Misses\' Outerwear, Nec", | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2341', | |
'sic_description' => "Women\'s and Children\'s Underwear", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2341', | |
'sic_description' => "Women\'s and Children\'s Underwear", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2341', | |
'sic_description' => "Women\'s and Children\'s Underwear", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2341', | |
'sic_description' => "Women\'s and Children\'s Underwear", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2342', | |
'sic_description' => 'Bras, Girdles, and Allied Garments', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2342', | |
'sic_description' => 'Bras, Girdles, and Allied Garments', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2342', | |
'sic_description' => 'Bras, Girdles, and Allied Garments', | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2353', | |
'sic_description' => 'Hats, Caps, and Millinery', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2353', | |
'sic_description' => 'Hats, Caps, and Millinery', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2353', | |
'sic_description' => 'Hats, Caps, and Millinery', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2361', | |
'sic_description' => "Girl\'s and Children\'s Dresses, Blouses", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2361', | |
'sic_description' => "Girl\'s and Children\'s Dresses, Blouses", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2361', | |
'sic_description' => "Girl\'s and Children\'s Dresses, Blouses", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2361', | |
'sic_description' => "Girl\'s and Children\'s Dresses, Blouses", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2369', | |
'sic_description' => "Girl\'s and Children\'s Outerwear, Nec", | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2369', | |
'sic_description' => "Girl\'s and Children\'s Outerwear, Nec", | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2369', | |
'sic_description' => "Girl\'s and Children\'s Outerwear, Nec", | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2369', | |
'sic_description' => "Girl\'s and Children\'s Outerwear, Nec", | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2371', | |
'sic_description' => 'Fur Goods', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2371', | |
'sic_description' => 'Fur Goods', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2371', | |
'sic_description' => 'Fur Goods', | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2381', | |
'sic_description' => 'Fabric Dress and Work Gloves', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2381', | |
'sic_description' => 'Fabric Dress and Work Gloves', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2381', | |
'sic_description' => 'Fabric Dress and Work Gloves', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2384', | |
'sic_description' => 'Robes and Dressing Gowns', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2384', | |
'sic_description' => 'Robes and Dressing Gowns', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2384', | |
'sic_description' => 'Robes and Dressing Gowns', | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2384', | |
'sic_description' => 'Robes and Dressing Gowns', | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2385', | |
'sic_description' => 'Waterproof Outerwear', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2386', | |
'sic_description' => 'Leather and Sheep-lined Clothing', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2386', | |
'sic_description' => 'Leather and Sheep-lined Clothing', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2386', | |
'sic_description' => 'Leather and Sheep-lined Clothing', | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2387', | |
'sic_description' => 'Apparel Belts', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2387', | |
'sic_description' => 'Apparel Belts', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2387', | |
'sic_description' => 'Apparel Belts', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2389', | |
'sic_description' => 'Apparel and Accessories, Nec', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2389', | |
'sic_description' => 'Apparel and Accessories, Nec', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2389', | |
'sic_description' => 'Apparel and Accessories, Nec', | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '2389', | |
'sic_description' => 'Apparel and Accessories, Nec', | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2389', | |
'sic_description' => 'Apparel and Accessories, Nec', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2391', | |
'sic_description' => 'Curtains and Draperies', | |
'naics_code' => '314120', | |
'naics_description' => 'Curtain and Linen Mills', | |
], | |
[ | |
'sic_code' => '2392', | |
'sic_description' => 'Household Furnishings, Nec', | |
'naics_code' => '314120', | |
'naics_description' => 'Curtain and Linen Mills', | |
], | |
[ | |
'sic_code' => '2392', | |
'sic_description' => 'Household Furnishings, Nec', | |
'naics_code' => '314910', | |
'naics_description' => 'Textile Bag and Canvas Mills', | |
], | |
[ | |
'sic_code' => '2392', | |
'sic_description' => 'Household Furnishings, Nec', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2392', | |
'sic_description' => 'Household Furnishings, Nec', | |
'naics_code' => '339994', | |
'naics_description' => 'Broom, Brush, and Mop Manufacturing', | |
], | |
[ | |
'sic_code' => '2393', | |
'sic_description' => 'Textile Bags', | |
'naics_code' => '314910', | |
'naics_description' => 'Textile Bag and Canvas Mills', | |
], | |
[ | |
'sic_code' => '2394', | |
'sic_description' => 'Canvas and Related Products', | |
'naics_code' => '314910', | |
'naics_description' => 'Textile Bag and Canvas Mills', | |
], | |
[ | |
'sic_code' => '2395', | |
'sic_description' => 'Pleating and Stitching', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2395', | |
'sic_description' => 'Pleating and Stitching', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2396', | |
'sic_description' => 'Automotive and Apparel Trimmings', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2396', | |
'sic_description' => 'Automotive and Apparel Trimmings', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2396', | |
'sic_description' => 'Automotive and Apparel Trimmings', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2396', | |
'sic_description' => 'Automotive and Apparel Trimmings', | |
'naics_code' => '323113', | |
'naics_description' => 'Commercial Screen Printing', | |
], | |
[ | |
'sic_code' => '2396', | |
'sic_description' => 'Automotive and Apparel Trimmings', | |
'naics_code' => '336360', | |
'naics_description' => 'Motor Vehicle Seating and Interior Trim Manufacturing', | |
], | |
[ | |
'sic_code' => '2397', | |
'sic_description' => 'Schiffli Machine Embroideries', | |
'naics_code' => '313220', | |
'naics_description' => 'Narrow Fabric Mills and Schiffli Machine Embroidery', | |
], | |
[ | |
'sic_code' => '2399', | |
'sic_description' => 'Fabricated Textile Products, Nec', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '2399', | |
'sic_description' => 'Fabricated Textile Products, Nec', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '2399', | |
'sic_description' => 'Fabricated Textile Products, Nec', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '2399', | |
'sic_description' => 'Fabricated Textile Products, Nec', | |
'naics_code' => '336360', | |
'naics_description' => 'Motor Vehicle Seating and Interior Trim Manufacturing', | |
], | |
[ | |
'sic_code' => '2411', | |
'sic_description' => 'Logging', | |
'naics_code' => '113310', | |
'naics_description' => 'Logging', | |
], | |
[ | |
'sic_code' => '2421', | |
'sic_description' => 'Sawmills and Planing Mills, General', | |
'naics_code' => '321113', | |
'naics_description' => 'Sawmills', | |
], | |
[ | |
'sic_code' => '2421', | |
'sic_description' => 'Sawmills and Planing Mills, General', | |
'naics_code' => '321912', | |
'naics_description' => 'Cut Stock, Resawing Lumber, and Planing', | |
], | |
[ | |
'sic_code' => '2421', | |
'sic_description' => 'Sawmills and Planing Mills, General', | |
'naics_code' => '321918', | |
'naics_description' => 'Other Millwork (including Flooring)', | |
], | |
[ | |
'sic_code' => '2421', | |
'sic_description' => 'Sawmills and Planing Mills, General', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2421', | |
'sic_description' => 'Sawmills and Planing Mills, General', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2426', | |
'sic_description' => 'Hardwood Dimension and Flooring Mills', | |
'naics_code' => '321113', | |
'naics_description' => 'Sawmills', | |
], | |
[ | |
'sic_code' => '2426', | |
'sic_description' => 'Hardwood Dimension and Flooring Mills', | |
'naics_code' => '321912', | |
'naics_description' => 'Cut Stock, Resawing Lumber, and Planing', | |
], | |
[ | |
'sic_code' => '2426', | |
'sic_description' => 'Hardwood Dimension and Flooring Mills', | |
'naics_code' => '321918', | |
'naics_description' => 'Other Millwork (including Flooring)', | |
], | |
[ | |
'sic_code' => '2426', | |
'sic_description' => 'Hardwood Dimension and Flooring Mills', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '2429', | |
'sic_description' => 'Special Product Sawmills, Nec', | |
'naics_code' => '321113', | |
'naics_description' => 'Sawmills', | |
], | |
[ | |
'sic_code' => '2429', | |
'sic_description' => 'Special Product Sawmills, Nec', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2429', | |
'sic_description' => 'Special Product Sawmills, Nec', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2431', | |
'sic_description' => 'Millwork', | |
'naics_code' => '321911', | |
'naics_description' => 'Wood Window and Door Manufacturing', | |
], | |
[ | |
'sic_code' => '2431', | |
'sic_description' => 'Millwork', | |
'naics_code' => '321918', | |
'naics_description' => 'Other Millwork (including Flooring)', | |
], | |
[ | |
'sic_code' => '2434', | |
'sic_description' => 'Wood Kitchen Cabinets', | |
'naics_code' => '337110', | |
'naics_description' => 'Wood Kitchen Cabinet and Countertop Manufacturing', | |
], | |
[ | |
'sic_code' => '2435', | |
'sic_description' => 'Hardwood Veneer and Plywood', | |
'naics_code' => '321211', | |
'naics_description' => 'Hardwood Veneer and Plywood Manufacturing', | |
], | |
[ | |
'sic_code' => '2436', | |
'sic_description' => 'Softwood Veneer and Plywood', | |
'naics_code' => '321212', | |
'naics_description' => 'Softwood Veneer and Plywood Manufacturing', | |
], | |
[ | |
'sic_code' => '2439', | |
'sic_description' => 'Structural Wood Members, Nec', | |
'naics_code' => '321213', | |
'naics_description' => 'Engineered Wood Member (except Truss) Manufacturing', | |
], | |
[ | |
'sic_code' => '2439', | |
'sic_description' => 'Structural Wood Members, Nec', | |
'naics_code' => '321214', | |
'naics_description' => 'Truss Manufacturing', | |
], | |
[ | |
'sic_code' => '2441', | |
'sic_description' => 'Nailed Wood Boxes and Shook', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2448', | |
'sic_description' => 'Wood Pallets and Skids', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2449', | |
'sic_description' => 'Wood Containers, Nec', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2451', | |
'sic_description' => 'Mobile Homes', | |
'naics_code' => '321991', | |
'naics_description' => 'Manufactured Home (Mobile Home) Manufacturing', | |
], | |
[ | |
'sic_code' => '2452', | |
'sic_description' => 'Prefabricated Wood Buildings', | |
'naics_code' => '321992', | |
'naics_description' => 'Prefabricated Wood Building Manufacturing', | |
], | |
[ | |
'sic_code' => '2491', | |
'sic_description' => 'Wood Preserving', | |
'naics_code' => '321114', | |
'naics_description' => 'Wood Preservation', | |
], | |
[ | |
'sic_code' => '2493', | |
'sic_description' => 'Reconstituted Wood Products', | |
'naics_code' => '321219', | |
'naics_description' => 'Reconstituted Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '321920', | |
'naics_description' => 'Wood Container and Pallet Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '337125', | |
'naics_description' => 'Household Furniture (except Wood and Metal) Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '2499', | |
'sic_description' => 'Wood Products, Nec', | |
'naics_code' => '339999', | |
'naics_description' => 'All Other Miscellaneous Manufacturing', | |
], | |
[ | |
'sic_code' => '2511', | |
'sic_description' => 'Wood Household Furniture', | |
'naics_code' => '337122', | |
'naics_description' => 'Nonupholstered Wood Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2511', | |
'sic_description' => 'Wood Household Furniture', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '2512', | |
'sic_description' => 'Upholstered Household Furniture', | |
'naics_code' => '337121', | |
'naics_description' => 'Upholstered Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2514', | |
'sic_description' => 'Metal Household Furniture', | |
'naics_code' => '337121', | |
'naics_description' => 'Upholstered Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2514', | |
'sic_description' => 'Metal Household Furniture', | |
'naics_code' => '337124', | |
'naics_description' => 'Metal Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2514', | |
'sic_description' => 'Metal Household Furniture', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '2515', | |
'sic_description' => 'Mattresses and Bedsprings', | |
'naics_code' => '337121', | |
'naics_description' => 'Upholstered Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2515', | |
'sic_description' => 'Mattresses and Bedsprings', | |
'naics_code' => '337910', | |
'naics_description' => 'Mattress Manufacturing', | |
], | |
[ | |
'sic_code' => '2517', | |
'sic_description' => 'Wood Television and Radio Cabinets', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2519', | |
'sic_description' => 'Household Furniture, Nec', | |
'naics_code' => '337125', | |
'naics_description' => 'Household Furniture (except Wood and Metal) Manufacturing', | |
], | |
[ | |
'sic_code' => '2521', | |
'sic_description' => 'Wood Office Furniture', | |
'naics_code' => '337211', | |
'naics_description' => 'Wood Office Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2522', | |
'sic_description' => 'Office Furniture, Except Wood', | |
'naics_code' => '337214', | |
'naics_description' => 'Office Furniture (except Wood) Manufacturing', | |
], | |
[ | |
'sic_code' => '2531', | |
'sic_description' => 'Public Building and Related Furniture', | |
'naics_code' => '336360', | |
'naics_description' => 'Motor Vehicle Seating and Interior Trim Manufacturing', | |
], | |
[ | |
'sic_code' => '2531', | |
'sic_description' => 'Public Building and Related Furniture', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2531', | |
'sic_description' => 'Public Building and Related Furniture', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '2541', | |
'sic_description' => 'Wood Partitions and Fixtures', | |
'naics_code' => '337110', | |
'naics_description' => 'Wood Kitchen Cabinet and Countertop Manufacturing', | |
], | |
[ | |
'sic_code' => '2541', | |
'sic_description' => 'Wood Partitions and Fixtures', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2541', | |
'sic_description' => 'Wood Partitions and Fixtures', | |
'naics_code' => '337212', | |
'naics_description' => 'Custom Architectural Woodwork and Millwork Manufacturing', | |
], | |
[ | |
'sic_code' => '2541', | |
'sic_description' => 'Wood Partitions and Fixtures', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '2542', | |
'sic_description' => 'Partitions and Fixtures, Except Wood', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2542', | |
'sic_description' => 'Partitions and Fixtures, Except Wood', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '2591', | |
'sic_description' => 'Drapery Hardware and Blinds and Shades', | |
'naics_code' => '337920', | |
'naics_description' => 'Blind and Shade Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '333994', | |
'naics_description' => 'Industrial Process Furnace and Oven Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '333997', | |
'naics_description' => 'Scale and Balance Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '333999', | |
'naics_description' => 'All Other Miscellaneous General Purpose Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '2599', | |
'sic_description' => 'Furniture and Fixtures, Nec', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '2611', | |
'sic_description' => 'Pulp Mills', | |
'naics_code' => '322110', | |
'naics_description' => 'Pulp Mills', | |
], | |
[ | |
'sic_code' => '2611', | |
'sic_description' => 'Pulp Mills', | |
'naics_code' => '322121', | |
'naics_description' => 'Paper (except Newsprint) Mills', | |
], | |
[ | |
'sic_code' => '2611', | |
'sic_description' => 'Pulp Mills', | |
'naics_code' => '322122', | |
'naics_description' => 'Newsprint Mills', | |
], | |
[ | |
'sic_code' => '2611', | |
'sic_description' => 'Pulp Mills', | |
'naics_code' => '322130', | |
'naics_description' => 'Paperboard Mills', | |
], | |
[ | |
'sic_code' => '2621', | |
'sic_description' => 'Paper Mills', | |
'naics_code' => '322121', | |
'naics_description' => 'Paper (except Newsprint) Mills', | |
], | |
[ | |
'sic_code' => '2621', | |
'sic_description' => 'Paper Mills', | |
'naics_code' => '322122', | |
'naics_description' => 'Newsprint Mills', | |
], | |
[ | |
'sic_code' => '2631', | |
'sic_description' => 'Paperboard Mills', | |
'naics_code' => '322130', | |
'naics_description' => 'Paperboard Mills', | |
], | |
[ | |
'sic_code' => '2652', | |
'sic_description' => 'Setup Paperboard Boxes', | |
'naics_code' => '322219', | |
'naics_description' => 'Other Paperboard Container Manufacturing', | |
], | |
[ | |
'sic_code' => '2653', | |
'sic_description' => 'Corrugated and Solid Fiber Boxes', | |
'naics_code' => '322211', | |
'naics_description' => 'Corrugated and Solid Fiber Box Manufacturing', | |
], | |
[ | |
'sic_code' => '2655', | |
'sic_description' => 'Fiber Cans, Drums, and Similar Products', | |
'naics_code' => '322219', | |
'naics_description' => 'Other Paperboard Container Manufacturing', | |
], | |
[ | |
'sic_code' => '2656', | |
'sic_description' => 'Sanitary Food Containers', | |
'naics_code' => '322219', | |
'naics_description' => 'Other Paperboard Container Manufacturing', | |
], | |
[ | |
'sic_code' => '2657', | |
'sic_description' => 'Folding Paperboard Boxes', | |
'naics_code' => '322212', | |
'naics_description' => 'Folding Paperboard Box Manufacturing', | |
], | |
[ | |
'sic_code' => '2671', | |
'sic_description' => 'Paper; Coated and Laminated Packaging', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2671', | |
'sic_description' => 'Paper; Coated and Laminated Packaging', | |
'naics_code' => '326112', | |
'naics_description' => 'Plastics Packaging Film and Sheet (including Laminated) Manufacturing', | |
], | |
[ | |
'sic_code' => '2672', | |
'sic_description' => 'Paper; Coated and Laminated, Nec', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2673', | |
'sic_description' => 'Bags: Plastic, Laminated, and Coated', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2673', | |
'sic_description' => 'Bags: Plastic, Laminated, and Coated', | |
'naics_code' => '326111', | |
'naics_description' => 'Plastics Bag and Pouch Manufacturing', | |
], | |
[ | |
'sic_code' => '2674', | |
'sic_description' => 'Bags: Uncoated Paper and Multiwall', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2675', | |
'sic_description' => 'Die-cut Paper and Board', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2675', | |
'sic_description' => 'Die-cut Paper and Board', | |
'naics_code' => '322230', | |
'naics_description' => 'Stationery Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2675', | |
'sic_description' => 'Die-cut Paper and Board', | |
'naics_code' => '322299', | |
'naics_description' => 'All Other Converted Paper Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2676', | |
'sic_description' => 'Sanitary Paper Products', | |
'naics_code' => '322291', | |
'naics_description' => 'Sanitary Paper Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2677', | |
'sic_description' => 'Envelopes', | |
'naics_code' => '322230', | |
'naics_description' => 'Stationery Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2678', | |
'sic_description' => 'Stationery Products', | |
'naics_code' => '322230', | |
'naics_description' => 'Stationery Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2679', | |
'sic_description' => 'Converted Paper Products, Nec', | |
'naics_code' => '322211', | |
'naics_description' => 'Corrugated and Solid Fiber Box Manufacturing', | |
], | |
[ | |
'sic_code' => '2679', | |
'sic_description' => 'Converted Paper Products, Nec', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '2679', | |
'sic_description' => 'Converted Paper Products, Nec', | |
'naics_code' => '322230', | |
'naics_description' => 'Stationery Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2679', | |
'sic_description' => 'Converted Paper Products, Nec', | |
'naics_code' => '322299', | |
'naics_description' => 'All Other Converted Paper Product Manufacturing', | |
], | |
[ | |
'sic_code' => '2711', | |
'sic_description' => 'Newspapers', | |
'naics_code' => '511110', | |
'naics_description' => 'Newspaper Publishers', | |
], | |
[ | |
'sic_code' => '2711', | |
'sic_description' => 'Newspapers', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '2721', | |
'sic_description' => 'Periodicals', | |
'naics_code' => '511120', | |
'naics_description' => 'Periodical Publishers', | |
], | |
[ | |
'sic_code' => '2721', | |
'sic_description' => 'Periodicals', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '2731', | |
'sic_description' => 'Book Publishing', | |
'naics_code' => '511130', | |
'naics_description' => 'Book Publishers', | |
], | |
[ | |
'sic_code' => '2731', | |
'sic_description' => 'Book Publishing', | |
'naics_code' => '512230', | |
'naics_description' => 'Music Publishers', | |
], | |
[ | |
'sic_code' => '2731', | |
'sic_description' => 'Book Publishing', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '2732', | |
'sic_description' => 'Book Printing', | |
'naics_code' => '323117', | |
'naics_description' => 'Books Printing', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '511120', | |
'naics_description' => 'Periodical Publishers', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '511130', | |
'naics_description' => 'Book Publishers', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '511140', | |
'naics_description' => 'Directory and Mailing List Publishers', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '511199', | |
'naics_description' => 'All Other Publishers', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '512230', | |
'naics_description' => 'Music Publishers', | |
], | |
[ | |
'sic_code' => '2741', | |
'sic_description' => 'Miscellaneous Publishing', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '2752', | |
'sic_description' => 'Commercial Printing, Lithographic', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2754', | |
'sic_description' => 'Commercial Printing, Gravure', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2759', | |
'sic_description' => 'Commercial Printing, Nec', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2759', | |
'sic_description' => 'Commercial Printing, Nec', | |
'naics_code' => '323113', | |
'naics_description' => 'Commercial Screen Printing', | |
], | |
[ | |
'sic_code' => '2761', | |
'sic_description' => 'Manifold Business Forms', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2771', | |
'sic_description' => 'Greeting Cards', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2771', | |
'sic_description' => 'Greeting Cards', | |
'naics_code' => '323113', | |
'naics_description' => 'Commercial Screen Printing', | |
], | |
[ | |
'sic_code' => '2771', | |
'sic_description' => 'Greeting Cards', | |
'naics_code' => '511191', | |
'naics_description' => 'Greeting Card Publishers', | |
], | |
[ | |
'sic_code' => '2771', | |
'sic_description' => 'Greeting Cards', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '2782', | |
'sic_description' => 'Blankbooks and Looseleaf Binders', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '2789', | |
'sic_description' => 'Bookbinding and Related Work', | |
'naics_code' => '323120', | |
'naics_description' => 'Support Activities for Printing', | |
], | |
[ | |
'sic_code' => '2791', | |
'sic_description' => 'Typesetting', | |
'naics_code' => '323120', | |
'naics_description' => 'Support Activities for Printing', | |
], | |
[ | |
'sic_code' => '2796', | |
'sic_description' => 'Platemaking Services', | |
'naics_code' => '323120', | |
'naics_description' => 'Support Activities for Printing', | |
], | |
[ | |
'sic_code' => '2812', | |
'sic_description' => 'Alkalies and Chlorine', | |
'naics_code' => '325180', | |
'naics_description' => 'Other Basic Inorganic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2813', | |
'sic_description' => 'Industrial Gases', | |
'naics_code' => '325120', | |
'naics_description' => 'Industrial Gas Manufacturing', | |
], | |
[ | |
'sic_code' => '2816', | |
'sic_description' => 'Inorganic Pigments', | |
'naics_code' => '325130', | |
'naics_description' => 'Synthetic Dye and Pigment Manufacturing', | |
], | |
[ | |
'sic_code' => '2816', | |
'sic_description' => 'Inorganic Pigments', | |
'naics_code' => '325180', | |
'naics_description' => 'Other Basic Inorganic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2819', | |
'sic_description' => 'Industrial Inorganic Chemicals, Nec', | |
'naics_code' => '211130', | |
'naics_description' => 'Natural Gas Extraction', | |
], | |
[ | |
'sic_code' => '2819', | |
'sic_description' => 'Industrial Inorganic Chemicals, Nec', | |
'naics_code' => '325130', | |
'naics_description' => 'Synthetic Dye and Pigment Manufacturing', | |
], | |
[ | |
'sic_code' => '2819', | |
'sic_description' => 'Industrial Inorganic Chemicals, Nec', | |
'naics_code' => '325180', | |
'naics_description' => 'Other Basic Inorganic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2819', | |
'sic_description' => 'Industrial Inorganic Chemicals, Nec', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2819', | |
'sic_description' => 'Industrial Inorganic Chemicals, Nec', | |
'naics_code' => '331313', | |
'naics_description' => 'Alumina Refining and Primary Aluminum Production', | |
], | |
[ | |
'sic_code' => '2821', | |
'sic_description' => 'Plastics Materials and Resins', | |
'naics_code' => '325211', | |
'naics_description' => 'Plastics Material and Resin Manufacturing', | |
], | |
[ | |
'sic_code' => '2822', | |
'sic_description' => 'Synthetic Rubber', | |
'naics_code' => '325212', | |
'naics_description' => 'Synthetic Rubber Manufacturing', | |
], | |
[ | |
'sic_code' => '2823', | |
'sic_description' => 'Cellulosic Manmade Fibers', | |
'naics_code' => '325220', | |
'naics_description' => 'Artificial and Synthetic Fibers and Filaments Manufacturing', | |
], | |
[ | |
'sic_code' => '2824', | |
'sic_description' => 'Organic Fibers, Noncellulosic', | |
'naics_code' => '325220', | |
'naics_description' => 'Artificial and Synthetic Fibers and Filaments Manufacturing', | |
], | |
[ | |
'sic_code' => '2833', | |
'sic_description' => 'Medicinals and Botanicals', | |
'naics_code' => '325411', | |
'naics_description' => 'Medicinal and Botanical Manufacturing', | |
], | |
[ | |
'sic_code' => '2834', | |
'sic_description' => 'Pharmaceutical Preparations', | |
'naics_code' => '325412', | |
'naics_description' => 'Pharmaceutical Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2835', | |
'sic_description' => 'Diagnostic Substances', | |
'naics_code' => '325412', | |
'naics_description' => 'Pharmaceutical Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2835', | |
'sic_description' => 'Diagnostic Substances', | |
'naics_code' => '325413', | |
'naics_description' => 'In-Vitro Diagnostic Substance Manufacturing', | |
], | |
[ | |
'sic_code' => '2836', | |
'sic_description' => 'Biological Products, Except Diagnostic', | |
'naics_code' => '325414', | |
'naics_description' => 'Biological Product (except Diagnostic) Manufacturing', | |
], | |
[ | |
'sic_code' => '2841', | |
'sic_description' => 'Soap and Other Detergents', | |
'naics_code' => '325611', | |
'naics_description' => 'Soap and Other Detergent Manufacturing', | |
], | |
[ | |
'sic_code' => '2842', | |
'sic_description' => 'Polishes and Sanitation Goods', | |
'naics_code' => '325612', | |
'naics_description' => 'Polish and Other Sanitation Good Manufacturing', | |
], | |
[ | |
'sic_code' => '2843', | |
'sic_description' => 'Surface Active Agents', | |
'naics_code' => '325613', | |
'naics_description' => 'Surface Active Agent Manufacturing', | |
], | |
[ | |
'sic_code' => '2844', | |
'sic_description' => 'Toilet Preparations', | |
'naics_code' => '325611', | |
'naics_description' => 'Soap and Other Detergent Manufacturing', | |
], | |
[ | |
'sic_code' => '2844', | |
'sic_description' => 'Toilet Preparations', | |
'naics_code' => '325620', | |
'naics_description' => 'Toilet Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2851', | |
'sic_description' => 'Paints and Allied Products', | |
'naics_code' => '325510', | |
'naics_description' => 'Paint and Coating Manufacturing', | |
], | |
[ | |
'sic_code' => '2861', | |
'sic_description' => 'Gum and Wood Chemicals', | |
'naics_code' => '325194', | |
'naics_description' => 'Cyclic Crude, Intermediate, and Gum and Wood Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2865', | |
'sic_description' => 'Cyclic Crudes and Intermediates', | |
'naics_code' => '325110', | |
'naics_description' => 'Petrochemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2865', | |
'sic_description' => 'Cyclic Crudes and Intermediates', | |
'naics_code' => '325130', | |
'naics_description' => 'Synthetic Dye and Pigment Manufacturing', | |
], | |
[ | |
'sic_code' => '2865', | |
'sic_description' => 'Cyclic Crudes and Intermediates', | |
'naics_code' => '325194', | |
'naics_description' => 'Cyclic Crude, Intermediate, and Gum and Wood Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325110', | |
'naics_description' => 'Petrochemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325120', | |
'naics_description' => 'Industrial Gas Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325180', | |
'naics_description' => 'Other Basic Inorganic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325193', | |
'naics_description' => 'Ethyl Alcohol Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325194', | |
'naics_description' => 'Cyclic Crude, Intermediate, and Gum and Wood Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325199', | |
'naics_description' => 'All Other Basic Organic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2869', | |
'sic_description' => 'Industrial Organic Chemicals, Nec', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2873', | |
'sic_description' => 'Nitrogenous Fertilizers', | |
'naics_code' => '325311', | |
'naics_description' => 'Nitrogenous Fertilizer Manufacturing', | |
], | |
[ | |
'sic_code' => '2874', | |
'sic_description' => 'Phosphatic Fertilizers', | |
'naics_code' => '325312', | |
'naics_description' => 'Phosphatic Fertilizer Manufacturing', | |
], | |
[ | |
'sic_code' => '2875', | |
'sic_description' => 'Fertilizers, Mixing Only', | |
'naics_code' => '325314', | |
'naics_description' => 'Fertilizer (Mixing Only) Manufacturing', | |
], | |
[ | |
'sic_code' => '2879', | |
'sic_description' => 'Agricultural Chemicals, Nec', | |
'naics_code' => '325320', | |
'naics_description' => 'Pesticide and Other Agricultural Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2891', | |
'sic_description' => 'Adhesives and Sealants', | |
'naics_code' => '325520', | |
'naics_description' => 'Adhesive Manufacturing', | |
], | |
[ | |
'sic_code' => '2892', | |
'sic_description' => 'Explosives', | |
'naics_code' => '325920', | |
'naics_description' => 'Explosives Manufacturing', | |
], | |
[ | |
'sic_code' => '2893', | |
'sic_description' => 'Printing Ink', | |
'naics_code' => '325910', | |
'naics_description' => 'Printing Ink Manufacturing', | |
], | |
[ | |
'sic_code' => '2895', | |
'sic_description' => 'Carbon Black', | |
'naics_code' => '325180', | |
'naics_description' => 'Other Basic Inorganic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2899', | |
'sic_description' => 'Chemical Preparations, Nec', | |
'naics_code' => '311942', | |
'naics_description' => 'Spice and Extract Manufacturing', | |
], | |
[ | |
'sic_code' => '2899', | |
'sic_description' => 'Chemical Preparations, Nec', | |
'naics_code' => '325199', | |
'naics_description' => 'All Other Basic Organic Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '2899', | |
'sic_description' => 'Chemical Preparations, Nec', | |
'naics_code' => '325510', | |
'naics_description' => 'Paint and Coating Manufacturing', | |
], | |
[ | |
'sic_code' => '2899', | |
'sic_description' => 'Chemical Preparations, Nec', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '2911', | |
'sic_description' => 'Petroleum Refining', | |
'naics_code' => '324110', | |
'naics_description' => 'Petroleum Refineries', | |
], | |
[ | |
'sic_code' => '2951', | |
'sic_description' => 'Asphalt Paving Mixtures and Blocks', | |
'naics_code' => '324121', | |
'naics_description' => 'Asphalt Paving Mixture and Block Manufacturing', | |
], | |
[ | |
'sic_code' => '2952', | |
'sic_description' => 'Asphalt Felts and Coatings', | |
'naics_code' => '324122', | |
'naics_description' => 'Asphalt Shingle and Coating Materials Manufacturing', | |
], | |
[ | |
'sic_code' => '2992', | |
'sic_description' => 'Lubricating Oils and Greases', | |
'naics_code' => '324191', | |
'naics_description' => 'Petroleum Lubricating Oil and Grease Manufacturing', | |
], | |
[ | |
'sic_code' => '2999', | |
'sic_description' => 'Petroleum and Coal Products, Nec', | |
'naics_code' => '324199', | |
'naics_description' => 'All Other Petroleum and Coal Products Manufacturing', | |
], | |
[ | |
'sic_code' => '3011', | |
'sic_description' => 'Tires and Inner Tubes', | |
'naics_code' => '326211', | |
'naics_description' => 'Tire Manufacturing (except Retreading)', | |
], | |
[ | |
'sic_code' => '3021', | |
'sic_description' => 'Rubber and Plastics Footwear', | |
'naics_code' => '316210', | |
'naics_description' => 'Footwear Manufacturing', | |
], | |
[ | |
'sic_code' => '3052', | |
'sic_description' => 'Rubber and Plastics Hose and Beltings', | |
'naics_code' => '326220', | |
'naics_description' => 'Rubber and Plastics Hoses and Belting Manufacturing', | |
], | |
[ | |
'sic_code' => '3053', | |
'sic_description' => 'Gaskets; Packing and Sealing Devices', | |
'naics_code' => '339991', | |
'naics_description' => 'Gasket, Packing, and Sealing Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3061', | |
'sic_description' => 'Mechanical Rubber Goods', | |
'naics_code' => '326291', | |
'naics_description' => 'Rubber Product Manufacturing for Mechanical Use', | |
], | |
[ | |
'sic_code' => '3061', | |
'sic_description' => 'Mechanical Rubber Goods', | |
'naics_code' => '326299', | |
'naics_description' => 'All Other Rubber Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '313320', | |
'naics_description' => 'Fabric Coating Mills', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '314910', | |
'naics_description' => 'Textile Bag and Canvas Mills', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '315280', | |
'naics_description' => 'Other Cut and Sew Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '326199', | |
'naics_description' => 'All Other Plastics Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '326299', | |
'naics_description' => 'All Other Rubber Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '336612', | |
'naics_description' => 'Boat Building', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '339920', | |
'naics_description' => 'Sporting and Athletic Goods Manufacturing', | |
], | |
[ | |
'sic_code' => '3069', | |
'sic_description' => 'Fabricated Rubber Products, Nec', | |
'naics_code' => '339930', | |
'naics_description' => 'Doll, Toy, and Game Manufacturing', | |
], | |
[ | |
'sic_code' => '3081', | |
'sic_description' => 'Unsupported Plastics Film and Sheet', | |
'naics_code' => '326113', | |
'naics_description' => 'Unlaminated Plastics Film and Sheet (except Packaging) Manufacturing', | |
], | |
[ | |
'sic_code' => '3082', | |
'sic_description' => 'Unsupported Plastics Profile Shapes', | |
'naics_code' => '326121', | |
'naics_description' => 'Unlaminated Plastics Profile Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3083', | |
'sic_description' => 'Laminated Plastics Plate and Sheet', | |
'naics_code' => '326130', | |
'naics_description' => 'Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3084', | |
'sic_description' => 'Plastics Pipe', | |
'naics_code' => '326122', | |
'naics_description' => 'Plastics Pipe and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3085', | |
'sic_description' => 'Plastics Bottles', | |
'naics_code' => '326160', | |
'naics_description' => 'Plastics Bottle Manufacturing', | |
], | |
[ | |
'sic_code' => '3086', | |
'sic_description' => 'Plastics Foam Products', | |
'naics_code' => '326140', | |
'naics_description' => 'Polystyrene Foam Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3086', | |
'sic_description' => 'Plastics Foam Products', | |
'naics_code' => '326150', | |
'naics_description' => 'Urethane and Other Foam Product (except Polystyrene) Manufacturing', | |
], | |
[ | |
'sic_code' => '3087', | |
'sic_description' => 'Custom Compound Purchased Resins', | |
'naics_code' => '325991', | |
'naics_description' => 'Custom Compounding of Purchased Resins', | |
], | |
[ | |
'sic_code' => '3088', | |
'sic_description' => 'Plastics Plumbing Fixtures', | |
'naics_code' => '326191', | |
'naics_description' => 'Plastics Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '326121', | |
'naics_description' => 'Unlaminated Plastics Profile Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '326122', | |
'naics_description' => 'Plastics Pipe and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '326199', | |
'naics_description' => 'All Other Plastics Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '336612', | |
'naics_description' => 'Boat Building', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '3089', | |
'sic_description' => 'Plastics Products, Nec', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3111', | |
'sic_description' => 'Leather Tanning and Finishing', | |
'naics_code' => '316110', | |
'naics_description' => 'Leather and Hide Tanning and Finishing', | |
], | |
[ | |
'sic_code' => '3131', | |
'sic_description' => 'Footwear Cut Stock', | |
'naics_code' => '316998', | |
'naics_description' => 'All Other Leather Good and Allied Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3131', | |
'sic_description' => 'Footwear Cut Stock', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3131', | |
'sic_description' => 'Footwear Cut Stock', | |
'naics_code' => '339993', | |
'naics_description' => 'Fastener, Button, Needle, and Pin Manufacturing', | |
], | |
[ | |
'sic_code' => '3142', | |
'sic_description' => 'House Slippers', | |
'naics_code' => '316210', | |
'naics_description' => 'Footwear Manufacturing', | |
], | |
[ | |
'sic_code' => '3143', | |
'sic_description' => "Men\'s Footwear, Except athletic", | |
'naics_code' => '316210', | |
'naics_description' => 'Footwear Manufacturing', | |
], | |
[ | |
'sic_code' => '3144', | |
'sic_description' => "Women\'s Footwear, Except athletic", | |
'naics_code' => '316210', | |
'naics_description' => 'Footwear Manufacturing', | |
], | |
[ | |
'sic_code' => '3149', | |
'sic_description' => 'Footwear, Except Rubber, Nec', | |
'naics_code' => '316210', | |
'naics_description' => 'Footwear Manufacturing', | |
], | |
[ | |
'sic_code' => '3151', | |
'sic_description' => 'Leather Gloves and Mittens', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '3151', | |
'sic_description' => 'Leather Gloves and Mittens', | |
'naics_code' => '315210', | |
'naics_description' => 'Cut and Sew Apparel Contractors', | |
], | |
[ | |
'sic_code' => '3151', | |
'sic_description' => 'Leather Gloves and Mittens', | |
'naics_code' => '315990', | |
'naics_description' => 'Apparel Accessories and Other Apparel Manufacturing', | |
], | |
[ | |
'sic_code' => '3161', | |
'sic_description' => 'Luggage', | |
'naics_code' => '316998', | |
'naics_description' => 'All Other Leather Good and Allied Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3171', | |
'sic_description' => "Women\'s Handbags and Purses", | |
'naics_code' => '316992', | |
'naics_description' => "Women\'s Handbag and Purse Manufacturing", | |
], | |
[ | |
'sic_code' => '3172', | |
'sic_description' => 'Personal Leather Goods, Nec', | |
'naics_code' => '316998', | |
'naics_description' => 'All Other Leather Good and Allied Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3172', | |
'sic_description' => 'Personal Leather Goods, Nec', | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3199', | |
'sic_description' => 'Leather Goods, Nec', | |
'naics_code' => '316998', | |
'naics_description' => 'All Other Leather Good and Allied Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3211', | |
'sic_description' => 'Flat Glass', | |
'naics_code' => '327211', | |
'naics_description' => 'Flat Glass Manufacturing', | |
], | |
[ | |
'sic_code' => '3221', | |
'sic_description' => 'Glass Containers', | |
'naics_code' => '327213', | |
'naics_description' => 'Glass Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3229', | |
'sic_description' => 'Pressed and Blown Glass, Nec', | |
'naics_code' => '327212', | |
'naics_description' => 'Other Pressed and Blown Glass and Glassware Manufacturing', | |
], | |
[ | |
'sic_code' => '3231', | |
'sic_description' => 'Products of Purchased Glass', | |
'naics_code' => '327215', | |
'naics_description' => 'Glass Product Manufacturing Made of Purchased Glass', | |
], | |
[ | |
'sic_code' => '3241', | |
'sic_description' => 'Cement, Hydraulic', | |
'naics_code' => '327310', | |
'naics_description' => 'Cement Manufacturing', | |
], | |
[ | |
'sic_code' => '3251', | |
'sic_description' => 'Brick and Structural Clay Tile', | |
'naics_code' => '327120', | |
'naics_description' => 'Clay Building Material and Refractories Manufacturing', | |
], | |
[ | |
'sic_code' => '3251', | |
'sic_description' => 'Brick and Structural Clay Tile', | |
'naics_code' => '327331', | |
'naics_description' => 'Concrete Block and Brick Manufacturing', | |
], | |
[ | |
'sic_code' => '3253', | |
'sic_description' => 'Ceramic Wall and Floor Tile', | |
'naics_code' => '327120', | |
'naics_description' => 'Clay Building Material and Refractories Manufacturing', | |
], | |
[ | |
'sic_code' => '3255', | |
'sic_description' => 'Clay Refractories', | |
'naics_code' => '327120', | |
'naics_description' => 'Clay Building Material and Refractories Manufacturing', | |
], | |
[ | |
'sic_code' => '3259', | |
'sic_description' => 'Structural Clay Products, Nec', | |
'naics_code' => '327120', | |
'naics_description' => 'Clay Building Material and Refractories Manufacturing', | |
], | |
[ | |
'sic_code' => '3261', | |
'sic_description' => 'Vitreous Plumbing Fixtures', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3262', | |
'sic_description' => 'Vitreous China Table and Kitchenware', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3263', | |
'sic_description' => 'Semivitreous Table and Kitchenware', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3264', | |
'sic_description' => 'Porcelain Electrical Supplies', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3269', | |
'sic_description' => 'Pottery Products, Nec', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3271', | |
'sic_description' => 'Concrete Block and Brick', | |
'naics_code' => '327331', | |
'naics_description' => 'Concrete Block and Brick Manufacturing', | |
], | |
[ | |
'sic_code' => '3272', | |
'sic_description' => 'Concrete Products, Nec', | |
'naics_code' => '327332', | |
'naics_description' => 'Concrete Pipe Manufacturing', | |
], | |
[ | |
'sic_code' => '3272', | |
'sic_description' => 'Concrete Products, Nec', | |
'naics_code' => '327390', | |
'naics_description' => 'Other Concrete Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3272', | |
'sic_description' => 'Concrete Products, Nec', | |
'naics_code' => '327999', | |
'naics_description' => 'All Other Miscellaneous Nonmetallic Mineral Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3273', | |
'sic_description' => 'Ready-mixed Concrete', | |
'naics_code' => '327320', | |
'naics_description' => 'Ready-Mix Concrete Manufacturing', | |
], | |
[ | |
'sic_code' => '3274', | |
'sic_description' => 'Lime', | |
'naics_code' => '327410', | |
'naics_description' => 'Lime Manufacturing', | |
], | |
[ | |
'sic_code' => '3275', | |
'sic_description' => 'Gypsum Products', | |
'naics_code' => '327420', | |
'naics_description' => 'Gypsum Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3281', | |
'sic_description' => 'Cut Stone and Stone Products', | |
'naics_code' => '327991', | |
'naics_description' => 'Cut Stone and Stone Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3291', | |
'sic_description' => 'Abrasive Products', | |
'naics_code' => '327910', | |
'naics_description' => 'Abrasive Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3291', | |
'sic_description' => 'Abrasive Products', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3292', | |
'sic_description' => 'Asbestos Products', | |
'naics_code' => '327999', | |
'naics_description' => 'All Other Miscellaneous Nonmetallic Mineral Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3292', | |
'sic_description' => 'Asbestos Products', | |
'naics_code' => '336340', | |
'naics_description' => 'Motor Vehicle Brake System Manufacturing', | |
], | |
[ | |
'sic_code' => '3292', | |
'sic_description' => 'Asbestos Products', | |
'naics_code' => '336350', | |
'naics_description' => 'Motor Vehicle Transmission and Power Train Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3295', | |
'sic_description' => 'Minerals, Ground or Treated', | |
'naics_code' => '212324', | |
'naics_description' => 'Kaolin and Ball Clay Mining', | |
], | |
[ | |
'sic_code' => '3295', | |
'sic_description' => 'Minerals, Ground or Treated', | |
'naics_code' => '212325', | |
'naics_description' => 'Clay and Ceramic and Refractory Minerals Mining', | |
], | |
[ | |
'sic_code' => '3295', | |
'sic_description' => 'Minerals, Ground or Treated', | |
'naics_code' => '212393', | |
'naics_description' => 'Other Chemical and Fertilizer Mineral Mining', | |
], | |
[ | |
'sic_code' => '3295', | |
'sic_description' => 'Minerals, Ground or Treated', | |
'naics_code' => '212399', | |
'naics_description' => 'All Other Nonmetallic Mineral Mining', | |
], | |
[ | |
'sic_code' => '3295', | |
'sic_description' => 'Minerals, Ground or Treated', | |
'naics_code' => '327992', | |
'naics_description' => 'Ground or Treated Mineral and Earth Manufacturing', | |
], | |
[ | |
'sic_code' => '3296', | |
'sic_description' => 'Mineral Wool', | |
'naics_code' => '327993', | |
'naics_description' => 'Mineral Wool Manufacturing', | |
], | |
[ | |
'sic_code' => '3297', | |
'sic_description' => 'Nonclay Refractories', | |
'naics_code' => '327120', | |
'naics_description' => 'Clay Building Material and Refractories Manufacturing', | |
], | |
[ | |
'sic_code' => '3299', | |
'sic_description' => 'Nonmetallic Mineral Products,', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3299', | |
'sic_description' => 'Nonmetallic Mineral Products,', | |
'naics_code' => '327420', | |
'naics_description' => 'Gypsum Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3299', | |
'sic_description' => 'Nonmetallic Mineral Products,', | |
'naics_code' => '327999', | |
'naics_description' => 'All Other Miscellaneous Nonmetallic Mineral Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3312', | |
'sic_description' => 'Blast Furnaces and Steel Mills', | |
'naics_code' => '324199', | |
'naics_description' => 'All Other Petroleum and Coal Products Manufacturing', | |
], | |
[ | |
'sic_code' => '3312', | |
'sic_description' => 'Blast Furnaces and Steel Mills', | |
'naics_code' => '331110', | |
'naics_description' => 'Iron and Steel Mills and Ferroalloy Manufacturing', | |
], | |
[ | |
'sic_code' => '3312', | |
'sic_description' => 'Blast Furnaces and Steel Mills', | |
'naics_code' => '331221', | |
'naics_description' => 'Rolled Steel Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3313', | |
'sic_description' => 'Electrometallurgical Products', | |
'naics_code' => '331110', | |
'naics_description' => 'Iron and Steel Mills and Ferroalloy Manufacturing', | |
], | |
[ | |
'sic_code' => '3315', | |
'sic_description' => 'Steel Wire and Related Products', | |
'naics_code' => '331222', | |
'naics_description' => 'Steel Wire Drawing', | |
], | |
[ | |
'sic_code' => '3315', | |
'sic_description' => 'Steel Wire and Related Products', | |
'naics_code' => '332618', | |
'naics_description' => 'Other Fabricated Wire Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3316', | |
'sic_description' => 'Cold Finishing of Steel Shapes', | |
'naics_code' => '331221', | |
'naics_description' => 'Rolled Steel Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3317', | |
'sic_description' => 'Steel Pipe and Tubes', | |
'naics_code' => '331210', | |
'naics_description' => 'Iron and Steel Pipe and Tube Manufacturing from Purchased Steel', | |
], | |
[ | |
'sic_code' => '3321', | |
'sic_description' => 'Gray and Ductile Iron Foundries', | |
'naics_code' => '331511', | |
'naics_description' => 'Iron Foundries', | |
], | |
[ | |
'sic_code' => '3322', | |
'sic_description' => 'Malleable Iron Foundries', | |
'naics_code' => '331511', | |
'naics_description' => 'Iron Foundries', | |
], | |
[ | |
'sic_code' => '3324', | |
'sic_description' => 'Steel Investment Foundries', | |
'naics_code' => '331512', | |
'naics_description' => 'Steel Investment Foundries', | |
], | |
[ | |
'sic_code' => '3325', | |
'sic_description' => 'Steel Foundries, Nec', | |
'naics_code' => '331513', | |
'naics_description' => 'Steel Foundries (except Investment)', | |
], | |
[ | |
'sic_code' => '3331', | |
'sic_description' => 'Primary Copper', | |
'naics_code' => '331410', | |
'naics_description' => 'Nonferrous Metal (except Aluminum) Smelting and Refining', | |
], | |
[ | |
'sic_code' => '3334', | |
'sic_description' => 'Primary Aluminum', | |
'naics_code' => '331313', | |
'naics_description' => 'Alumina Refining and Primary Aluminum Production', | |
], | |
[ | |
'sic_code' => '3339', | |
'sic_description' => 'Primary Nonferrous Metals, Nec', | |
'naics_code' => '331410', | |
'naics_description' => 'Nonferrous Metal (except Aluminum) Smelting and Refining', | |
], | |
[ | |
'sic_code' => '3341', | |
'sic_description' => 'Secondary Nonferrous Metals', | |
'naics_code' => '331314', | |
'naics_description' => 'Secondary Smelting and Alloying of Aluminum', | |
], | |
[ | |
'sic_code' => '3341', | |
'sic_description' => 'Secondary Nonferrous Metals', | |
'naics_code' => '331420', | |
'naics_description' => 'Copper Rolling, Drawing, Extruding, and Alloying', | |
], | |
[ | |
'sic_code' => '3341', | |
'sic_description' => 'Secondary Nonferrous Metals', | |
'naics_code' => '331492', | |
'naics_description' => 'Secondary Smelting, Refining, and Alloying of Nonferrous Metal (except Copper and Aluminum)', | |
], | |
[ | |
'sic_code' => '3351', | |
'sic_description' => 'Copper Rolling and Drawing', | |
'naics_code' => '331420', | |
'naics_description' => 'Copper Rolling, Drawing, Extruding, and Alloying', | |
], | |
[ | |
'sic_code' => '3353', | |
'sic_description' => 'Aluminum Sheet, Plate, and Foil', | |
'naics_code' => '331315', | |
'naics_description' => 'Aluminum Sheet, Plate, and Foil Manufacturing', | |
], | |
[ | |
'sic_code' => '3354', | |
'sic_description' => 'Aluminum Extruded Products', | |
'naics_code' => '331318', | |
'naics_description' => 'Other Aluminum Rolling, Drawing, and Extruding', | |
], | |
[ | |
'sic_code' => '3355', | |
'sic_description' => 'Aluminum Rolling and Drawing, Nec', | |
'naics_code' => '331318', | |
'naics_description' => 'Other Aluminum Rolling, Drawing, and Extruding', | |
], | |
[ | |
'sic_code' => '3356', | |
'sic_description' => 'Nonferrous Rolling and Drawing, Nec', | |
'naics_code' => '331491', | |
'naics_description' => 'Nonferrous Metal (except Copper and Aluminum) Rolling, Drawing, and Extruding', | |
], | |
[ | |
'sic_code' => '3357', | |
'sic_description' => 'Nonferrous Wiredrawing and Insulating', | |
'naics_code' => '331318', | |
'naics_description' => 'Other Aluminum Rolling, Drawing, and Extruding', | |
], | |
[ | |
'sic_code' => '3357', | |
'sic_description' => 'Nonferrous Wiredrawing and Insulating', | |
'naics_code' => '331420', | |
'naics_description' => 'Copper Rolling, Drawing, Extruding, and Alloying', | |
], | |
[ | |
'sic_code' => '3357', | |
'sic_description' => 'Nonferrous Wiredrawing and Insulating', | |
'naics_code' => '331491', | |
'naics_description' => 'Nonferrous Metal (except Copper and Aluminum) Rolling, Drawing, and Extruding', | |
], | |
[ | |
'sic_code' => '3357', | |
'sic_description' => 'Nonferrous Wiredrawing and Insulating', | |
'naics_code' => '335921', | |
'naics_description' => 'Fiber Optic Cable Manufacturing', | |
], | |
[ | |
'sic_code' => '3357', | |
'sic_description' => 'Nonferrous Wiredrawing and Insulating', | |
'naics_code' => '335929', | |
'naics_description' => 'Other Communication and Energy Wire Manufacturing', | |
], | |
[ | |
'sic_code' => '3363', | |
'sic_description' => 'Aluminum Die-castings', | |
'naics_code' => '331523', | |
'naics_description' => 'Nonferrous Metal Die-Casting Foundries', | |
], | |
[ | |
'sic_code' => '3364', | |
'sic_description' => 'Nonferrous Die-castings Except Aluminum', | |
'naics_code' => '331523', | |
'naics_description' => 'Nonferrous Metal Die-Casting Foundries', | |
], | |
[ | |
'sic_code' => '3365', | |
'sic_description' => 'Aluminum Foundries', | |
'naics_code' => '331524', | |
'naics_description' => 'Aluminum Foundries (except Die-Casting)', | |
], | |
[ | |
'sic_code' => '3366', | |
'sic_description' => 'Copper Foundries', | |
'naics_code' => '331529', | |
'naics_description' => 'Other Nonferrous Metal Foundries (except Die-Casting)', | |
], | |
[ | |
'sic_code' => '3369', | |
'sic_description' => 'Nonferrous Foundries, Nec', | |
'naics_code' => '331529', | |
'naics_description' => 'Other Nonferrous Metal Foundries (except Die-Casting)', | |
], | |
[ | |
'sic_code' => '3398', | |
'sic_description' => 'Metal Heat Treating', | |
'naics_code' => '332811', | |
'naics_description' => 'Metal Heat Treating', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '331110', | |
'naics_description' => 'Iron and Steel Mills and Ferroalloy Manufacturing', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '331221', | |
'naics_description' => 'Rolled Steel Shape Manufacturing', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '331314', | |
'naics_description' => 'Secondary Smelting and Alloying of Aluminum', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '331420', | |
'naics_description' => 'Copper Rolling, Drawing, Extruding, and Alloying', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '331492', | |
'naics_description' => 'Secondary Smelting, Refining, and Alloying of Nonferrous Metal (except Copper and Aluminum)', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '332618', | |
'naics_description' => 'Other Fabricated Wire Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3399', | |
'sic_description' => 'Primary Metal Products', | |
'naics_code' => '332813', | |
'naics_description' => 'Electroplating, Plating, Polishing, Anodizing, and Coloring', | |
], | |
[ | |
'sic_code' => '3411', | |
'sic_description' => 'Metal Cans', | |
'naics_code' => '332431', | |
'naics_description' => 'Metal Can Manufacturing', | |
], | |
[ | |
'sic_code' => '3412', | |
'sic_description' => 'Metal Barrels, Drums, and Pails', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3421', | |
'sic_description' => 'Cutlery', | |
'naics_code' => '332215', | |
'naics_description' => 'Metal Kitchen Cookware, Utensil, Cutlery, and Flatware (except Precious) Manufacturing', | |
], | |
[ | |
'sic_code' => '3421', | |
'sic_description' => 'Cutlery', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3423', | |
'sic_description' => 'Hand and Edge Tools, Nec', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3425', | |
'sic_description' => 'Saw Blades and Handsaws', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '332510', | |
'naics_description' => 'Hardware Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '332722', | |
'naics_description' => 'Bolt, Nut, Screw, Rivet, and Washer Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '332919', | |
'naics_description' => 'Other Metal Valve and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '333923', | |
'naics_description' => 'Overhead Traveling Crane, Hoist, and Monorail System Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3429', | |
'sic_description' => 'Hardware, Nec', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '3431', | |
'sic_description' => 'Metal Sanitary Ware', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3432', | |
'sic_description' => 'Plumbing Fixture Fittings and Trim', | |
'naics_code' => '332913', | |
'naics_description' => 'Plumbing Fixture Fitting and Trim Manufacturing', | |
], | |
[ | |
'sic_code' => '3432', | |
'sic_description' => 'Plumbing Fixture Fittings and Trim', | |
'naics_code' => '332919', | |
'naics_description' => 'Other Metal Valve and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3432', | |
'sic_description' => 'Plumbing Fixture Fittings and Trim', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3433', | |
'sic_description' => 'Heating Equipment, Except Electric', | |
'naics_code' => '333414', | |
'naics_description' => 'Heating Equipment (except Warm Air Furnaces) Manufacturing', | |
], | |
[ | |
'sic_code' => '3441', | |
'sic_description' => 'Fabricated Structural Metal', | |
'naics_code' => '332312', | |
'naics_description' => 'Fabricated Structural Metal Manufacturing', | |
], | |
[ | |
'sic_code' => '3442', | |
'sic_description' => 'Metal Doors, Sash, and Trim', | |
'naics_code' => '332321', | |
'naics_description' => 'Metal Window and Door Manufacturing', | |
], | |
[ | |
'sic_code' => '3443', | |
'sic_description' => 'Fabricated Plate Work (boiler Shop)', | |
'naics_code' => '332313', | |
'naics_description' => 'Plate Work Manufacturing', | |
], | |
[ | |
'sic_code' => '3443', | |
'sic_description' => 'Fabricated Plate Work (boiler Shop)', | |
'naics_code' => '332410', | |
'naics_description' => 'Power Boiler and Heat Exchanger Manufacturing', | |
], | |
[ | |
'sic_code' => '3443', | |
'sic_description' => 'Fabricated Plate Work (boiler Shop)', | |
'naics_code' => '332420', | |
'naics_description' => 'Metal Tank (Heavy Gauge) Manufacturing', | |
], | |
[ | |
'sic_code' => '3443', | |
'sic_description' => 'Fabricated Plate Work (boiler Shop)', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3444', | |
'sic_description' => 'Sheet Metalwork', | |
'naics_code' => '332321', | |
'naics_description' => 'Metal Window and Door Manufacturing', | |
], | |
[ | |
'sic_code' => '3444', | |
'sic_description' => 'Sheet Metalwork', | |
'naics_code' => '332322', | |
'naics_description' => 'Sheet Metal Work Manufacturing', | |
], | |
[ | |
'sic_code' => '3444', | |
'sic_description' => 'Sheet Metalwork', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3444', | |
'sic_description' => 'Sheet Metalwork', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3446', | |
'sic_description' => 'Architectural Metalwork', | |
'naics_code' => '332323', | |
'naics_description' => 'Ornamental and Architectural Metal Work Manufacturing', | |
], | |
[ | |
'sic_code' => '3448', | |
'sic_description' => 'Prefabricated Metal Buildings', | |
'naics_code' => '332311', | |
'naics_description' => 'Prefabricated Metal Building and Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3449', | |
'sic_description' => 'Miscellaneous Metalwork', | |
'naics_code' => '332114', | |
'naics_description' => 'Custom Roll Forming', | |
], | |
[ | |
'sic_code' => '3449', | |
'sic_description' => 'Miscellaneous Metalwork', | |
'naics_code' => '332312', | |
'naics_description' => 'Fabricated Structural Metal Manufacturing', | |
], | |
[ | |
'sic_code' => '3449', | |
'sic_description' => 'Miscellaneous Metalwork', | |
'naics_code' => '332323', | |
'naics_description' => 'Ornamental and Architectural Metal Work Manufacturing', | |
], | |
[ | |
'sic_code' => '3451', | |
'sic_description' => 'Screw Machine Products', | |
'naics_code' => '332721', | |
'naics_description' => 'Precision Turned Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3452', | |
'sic_description' => 'Bolts, Nuts, Rivets, and Washers', | |
'naics_code' => '332722', | |
'naics_description' => 'Bolt, Nut, Screw, Rivet, and Washer Manufacturing', | |
], | |
[ | |
'sic_code' => '3462', | |
'sic_description' => 'Iron and Steel Forgings', | |
'naics_code' => '332111', | |
'naics_description' => 'Iron and Steel Forging', | |
], | |
[ | |
'sic_code' => '3463', | |
'sic_description' => 'Nonferrous Forgings', | |
'naics_code' => '332112', | |
'naics_description' => 'Nonferrous Forging', | |
], | |
[ | |
'sic_code' => '3465', | |
'sic_description' => 'Automotive Stampings', | |
'naics_code' => '336370', | |
'naics_description' => 'Motor Vehicle Metal Stamping', | |
], | |
[ | |
'sic_code' => '3466', | |
'sic_description' => 'Crowns and Closures', | |
'naics_code' => '332119', | |
'naics_description' => 'Metal Crown, Closure, and Other Metal Stamping (except Automotive)', | |
], | |
[ | |
'sic_code' => '3469', | |
'sic_description' => 'Metal Stampings, Nec', | |
'naics_code' => '332119', | |
'naics_description' => 'Metal Crown, Closure, and Other Metal Stamping (except Automotive)', | |
], | |
[ | |
'sic_code' => '3469', | |
'sic_description' => 'Metal Stampings, Nec', | |
'naics_code' => '332215', | |
'naics_description' => 'Metal Kitchen Cookware, Utensil, Cutlery, and Flatware (except Precious) Manufacturing', | |
], | |
[ | |
'sic_code' => '3469', | |
'sic_description' => 'Metal Stampings, Nec', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3471', | |
'sic_description' => 'Plating and Polishing', | |
'naics_code' => '332813', | |
'naics_description' => 'Electroplating, Plating, Polishing, Anodizing, and Coloring', | |
], | |
[ | |
'sic_code' => '3479', | |
'sic_description' => 'Metal Coating and Allied Services', | |
'naics_code' => '332812', | |
'naics_description' => 'Metal Coating, Engraving (except Jewelry and Silverware), and Allied Services to Manufacturers', | |
], | |
[ | |
'sic_code' => '3479', | |
'sic_description' => 'Metal Coating and Allied Services', | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3482', | |
'sic_description' => 'Small Arms Ammunition', | |
'naics_code' => '332992', | |
'naics_description' => 'Small Arms Ammunition Manufacturing', | |
], | |
[ | |
'sic_code' => '3483', | |
'sic_description' => 'Ammunition, Except For Small Arms, Nec', | |
'naics_code' => '332993', | |
'naics_description' => 'Ammunition (except Small Arms) Manufacturing', | |
], | |
[ | |
'sic_code' => '3484', | |
'sic_description' => 'Small Arms', | |
'naics_code' => '332994', | |
'naics_description' => 'Small Arms, Ordnance, and Ordnance Accessories Manufacturing', | |
], | |
[ | |
'sic_code' => '3489', | |
'sic_description' => 'Ordnance and Accessories, Nec', | |
'naics_code' => '332994', | |
'naics_description' => 'Small Arms, Ordnance, and Ordnance Accessories Manufacturing', | |
], | |
[ | |
'sic_code' => '3491', | |
'sic_description' => 'Industrial Valves', | |
'naics_code' => '332911', | |
'naics_description' => 'Industrial Valve Manufacturing', | |
], | |
[ | |
'sic_code' => '3492', | |
'sic_description' => 'Fluid Power Valves and Hose Fittings', | |
'naics_code' => '332912', | |
'naics_description' => 'Fluid Power Valve and Hose Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3493', | |
'sic_description' => 'Steel Springs, Except Wire', | |
'naics_code' => '332613', | |
'naics_description' => 'Spring Manufacturing', | |
], | |
[ | |
'sic_code' => '3494', | |
'sic_description' => 'Valves and Pipe Fittings, Nec', | |
'naics_code' => '332919', | |
'naics_description' => 'Other Metal Valve and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3494', | |
'sic_description' => 'Valves and Pipe Fittings, Nec', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3495', | |
'sic_description' => 'Wire Springs', | |
'naics_code' => '332613', | |
'naics_description' => 'Spring Manufacturing', | |
], | |
[ | |
'sic_code' => '3495', | |
'sic_description' => 'Wire Springs', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3496', | |
'sic_description' => 'Miscellaneous Fabricated Wire Products', | |
'naics_code' => '332215', | |
'naics_description' => 'Metal Kitchen Cookware, Utensil, Cutlery, and Flatware (except Precious) Manufacturing', | |
], | |
[ | |
'sic_code' => '3496', | |
'sic_description' => 'Miscellaneous Fabricated Wire Products', | |
'naics_code' => '332618', | |
'naics_description' => 'Other Fabricated Wire Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3496', | |
'sic_description' => 'Miscellaneous Fabricated Wire Products', | |
'naics_code' => '333924', | |
'naics_description' => 'Industrial Truck, Tractor, Trailer, and Stacker Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3497', | |
'sic_description' => 'Metal Foil and Leaf', | |
'naics_code' => '322220', | |
'naics_description' => 'Paper Bag and Coated and Treated Paper Manufacturing', | |
], | |
[ | |
'sic_code' => '3497', | |
'sic_description' => 'Metal Foil and Leaf', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3498', | |
'sic_description' => 'Fabricated Pipe and Fittings', | |
'naics_code' => '332996', | |
'naics_description' => 'Fabricated Pipe and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '332117', | |
'naics_description' => 'Powder Metallurgy Part Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '332510', | |
'naics_description' => 'Hardware Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '332919', | |
'naics_description' => 'Other Metal Valve and Pipe Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '336360', | |
'naics_description' => 'Motor Vehicle Seating and Interior Trim Manufacturing', | |
], | |
[ | |
'sic_code' => '3499', | |
'sic_description' => 'Fabricated Metal Products, Nec', | |
'naics_code' => '337215', | |
'naics_description' => 'Showcase, Partition, Shelving, and Locker Manufacturing', | |
], | |
[ | |
'sic_code' => '3511', | |
'sic_description' => 'Turbines and Turbine Generator Sets', | |
'naics_code' => '333611', | |
'naics_description' => 'Turbine and Turbine Generator Set Units Manufacturing', | |
], | |
[ | |
'sic_code' => '3519', | |
'sic_description' => 'Internal Combustion Engines, Nec', | |
'naics_code' => '333618', | |
'naics_description' => 'Other Engine Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3519', | |
'sic_description' => 'Internal Combustion Engines, Nec', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3523', | |
'sic_description' => 'Farm Machinery and Equipment', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3523', | |
'sic_description' => 'Farm Machinery and Equipment', | |
'naics_code' => '332323', | |
'naics_description' => 'Ornamental and Architectural Metal Work Manufacturing', | |
], | |
[ | |
'sic_code' => '3523', | |
'sic_description' => 'Farm Machinery and Equipment', | |
'naics_code' => '333111', | |
'naics_description' => 'Farm Machinery and Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3523', | |
'sic_description' => 'Farm Machinery and Equipment', | |
'naics_code' => '333922', | |
'naics_description' => 'Conveyor and Conveying Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3524', | |
'sic_description' => 'Lawn and Garden Equipment', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3524', | |
'sic_description' => 'Lawn and Garden Equipment', | |
'naics_code' => '333112', | |
'naics_description' => 'Lawn and Garden Tractor and Home Lawn and Garden Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3531', | |
'sic_description' => 'Construction Machinery', | |
'naics_code' => '333120', | |
'naics_description' => 'Construction Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3531', | |
'sic_description' => 'Construction Machinery', | |
'naics_code' => '333923', | |
'naics_description' => 'Overhead Traveling Crane, Hoist, and Monorail System Manufacturing', | |
], | |
[ | |
'sic_code' => '3531', | |
'sic_description' => 'Construction Machinery', | |
'naics_code' => '336510', | |
'naics_description' => 'Railroad Rolling Stock Manufacturing', | |
], | |
[ | |
'sic_code' => '3532', | |
'sic_description' => 'Mining Machinery', | |
'naics_code' => '333131', | |
'naics_description' => 'Mining Machinery and Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3533', | |
'sic_description' => 'Oil and Gas Field Machinery', | |
'naics_code' => '333132', | |
'naics_description' => 'Oil and Gas Field Machinery and Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3534', | |
'sic_description' => 'Elevators and Moving Stairways', | |
'naics_code' => '333921', | |
'naics_description' => 'Elevator and Moving Stairway Manufacturing', | |
], | |
[ | |
'sic_code' => '3535', | |
'sic_description' => 'Conveyors and Conveying Equipment', | |
'naics_code' => '333922', | |
'naics_description' => 'Conveyor and Conveying Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3536', | |
'sic_description' => 'Hoists, Cranes, and Monorails', | |
'naics_code' => '333923', | |
'naics_description' => 'Overhead Traveling Crane, Hoist, and Monorail System Manufacturing', | |
], | |
[ | |
'sic_code' => '3537', | |
'sic_description' => 'Industrial Trucks and Tractors', | |
'naics_code' => '332439', | |
'naics_description' => 'Other Metal Container Manufacturing', | |
], | |
[ | |
'sic_code' => '3537', | |
'sic_description' => 'Industrial Trucks and Tractors', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3537', | |
'sic_description' => 'Industrial Trucks and Tractors', | |
'naics_code' => '333924', | |
'naics_description' => 'Industrial Truck, Tractor, Trailer, and Stacker Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3541', | |
'sic_description' => 'Machine Tools, Metal Cutting Type', | |
'naics_code' => '333517', | |
'naics_description' => 'Machine Tool Manufacturing', | |
], | |
[ | |
'sic_code' => '3542', | |
'sic_description' => 'Machine Tools, Metal Forming Type', | |
'naics_code' => '333517', | |
'naics_description' => 'Machine Tool Manufacturing', | |
], | |
[ | |
'sic_code' => '3543', | |
'sic_description' => 'Industrial Patterns', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3544', | |
'sic_description' => 'Special Dies, Tools, Jigs, and Fixtures', | |
'naics_code' => '333511', | |
'naics_description' => 'Industrial Mold Manufacturing', | |
], | |
[ | |
'sic_code' => '3544', | |
'sic_description' => 'Special Dies, Tools, Jigs, and Fixtures', | |
'naics_code' => '333514', | |
'naics_description' => 'Special Die and Tool, Die Set, Jig, and Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3545', | |
'sic_description' => 'Machine Tool Accessories', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3545', | |
'sic_description' => 'Machine Tool Accessories', | |
'naics_code' => '333515', | |
'naics_description' => 'Cutting Tool and Machine Tool Accessory Manufacturing', | |
], | |
[ | |
'sic_code' => '3546', | |
'sic_description' => 'Power-driven Handtools', | |
'naics_code' => '333991', | |
'naics_description' => 'Power-Driven Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3547', | |
'sic_description' => 'Rolling Mill Machinery', | |
'naics_code' => '333519', | |
'naics_description' => 'Rolling Mill and Other Metalworking Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3548', | |
'sic_description' => 'Welding Apparatus', | |
'naics_code' => '333992', | |
'naics_description' => 'Welding and Soldering Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3548', | |
'sic_description' => 'Welding Apparatus', | |
'naics_code' => '335311', | |
'naics_description' => 'Power, Distribution, and Specialty Transformer Manufacturing', | |
], | |
[ | |
'sic_code' => '3549', | |
'sic_description' => 'Metalworking Machinery, Nec', | |
'naics_code' => '333519', | |
'naics_description' => 'Rolling Mill and Other Metalworking Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3552', | |
'sic_description' => 'Textile Machinery', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3553', | |
'sic_description' => 'Woodworking Machinery', | |
'naics_code' => '333243', | |
'naics_description' => 'Sawmill, Woodworking, and Paper Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3554', | |
'sic_description' => 'Paper Industries Machinery', | |
'naics_code' => '333243', | |
'naics_description' => 'Sawmill, Woodworking, and Paper Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3555', | |
'sic_description' => 'Printing Trades Machinery', | |
'naics_code' => '333244', | |
'naics_description' => 'Printing Machinery and Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3556', | |
'sic_description' => 'Food Products Machinery', | |
'naics_code' => '333241', | |
'naics_description' => 'Food Product Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3559', | |
'sic_description' => 'Special Industry Machinery, Nec', | |
'naics_code' => '332410', | |
'naics_description' => 'Power Boiler and Heat Exchanger Manufacturing', | |
], | |
[ | |
'sic_code' => '3559', | |
'sic_description' => 'Special Industry Machinery, Nec', | |
'naics_code' => '333111', | |
'naics_description' => 'Farm Machinery and Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3559', | |
'sic_description' => 'Special Industry Machinery, Nec', | |
'naics_code' => '333242', | |
'naics_description' => 'Semiconductor Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3559', | |
'sic_description' => 'Special Industry Machinery, Nec', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3559', | |
'sic_description' => 'Special Industry Machinery, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3561', | |
'sic_description' => 'Pumps and Pumping Equipment', | |
'naics_code' => '333914', | |
'naics_description' => 'Measuring, Dispensing, and Other Pumping Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3562', | |
'sic_description' => 'Ball and Roller Bearings', | |
'naics_code' => '332991', | |
'naics_description' => 'Ball and Roller Bearing Manufacturing', | |
], | |
[ | |
'sic_code' => '3563', | |
'sic_description' => 'Air and Gas Compressors', | |
'naics_code' => '333912', | |
'naics_description' => 'Air and Gas Compressor Manufacturing', | |
], | |
[ | |
'sic_code' => '3564', | |
'sic_description' => 'Blowers and Fans', | |
'naics_code' => '333413', | |
'naics_description' => 'Industrial and Commercial Fan and Blower and Air Purification Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3565', | |
'sic_description' => 'Packaging Machinery', | |
'naics_code' => '333993', | |
'naics_description' => 'Packaging Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3566', | |
'sic_description' => 'Speed Changers, Drives, and Gears', | |
'naics_code' => '333612', | |
'naics_description' => 'Speed Changer, Industrial High-Speed Drive, and Gear Manufacturing', | |
], | |
[ | |
'sic_code' => '3567', | |
'sic_description' => 'Industrial Furnaces and Ovens', | |
'naics_code' => '333994', | |
'naics_description' => 'Industrial Process Furnace and Oven Manufacturing', | |
], | |
[ | |
'sic_code' => '3568', | |
'sic_description' => 'Power Transmission Equipment, Nec', | |
'naics_code' => '333613', | |
'naics_description' => 'Mechanical Power Transmission Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3569', | |
'sic_description' => 'General Industrial Machinery,', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '3569', | |
'sic_description' => 'General Industrial Machinery,', | |
'naics_code' => '333414', | |
'naics_description' => 'Heating Equipment (except Warm Air Furnaces) Manufacturing', | |
], | |
[ | |
'sic_code' => '3569', | |
'sic_description' => 'General Industrial Machinery,', | |
'naics_code' => '333999', | |
'naics_description' => 'All Other Miscellaneous General Purpose Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3571', | |
'sic_description' => 'Electronic Computers', | |
'naics_code' => '334111', | |
'naics_description' => 'Electronic Computer Manufacturing', | |
], | |
[ | |
'sic_code' => '3572', | |
'sic_description' => 'Computer Storage Devices', | |
'naics_code' => '334112', | |
'naics_description' => 'Computer Storage Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3575', | |
'sic_description' => 'Computer Terminals', | |
'naics_code' => '334118', | |
'naics_description' => 'Computer Terminal and Other Computer Peripheral Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3577', | |
'sic_description' => 'Computer Peripheral Equipment, Nec', | |
'naics_code' => '333316', | |
'naics_description' => 'Photographic and Photocopying Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3577', | |
'sic_description' => 'Computer Peripheral Equipment, Nec', | |
'naics_code' => '334118', | |
'naics_description' => 'Computer Terminal and Other Computer Peripheral Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3577', | |
'sic_description' => 'Computer Peripheral Equipment, Nec', | |
'naics_code' => '334418', | |
'naics_description' => 'Printed Circuit Assembly (Electronic Assembly) Manufacturing', | |
], | |
[ | |
'sic_code' => '3577', | |
'sic_description' => 'Computer Peripheral Equipment, Nec', | |
'naics_code' => '334613', | |
'naics_description' => 'Blank Magnetic and Optical Recording Media Manufacturing', | |
], | |
[ | |
'sic_code' => '3578', | |
'sic_description' => 'Calculating and Accounting Equipment', | |
'naics_code' => '333316', | |
'naics_description' => 'Photographic and Photocopying Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3578', | |
'sic_description' => 'Calculating and Accounting Equipment', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3578', | |
'sic_description' => 'Calculating and Accounting Equipment', | |
'naics_code' => '334118', | |
'naics_description' => 'Computer Terminal and Other Computer Peripheral Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3579', | |
'sic_description' => 'Office Machines, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3579', | |
'sic_description' => 'Office Machines, Nec', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3579', | |
'sic_description' => 'Office Machines, Nec', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '3581', | |
'sic_description' => 'Automatic Vending Machines', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3582', | |
'sic_description' => 'Commercial Laundry Equipment', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3585', | |
'sic_description' => 'Refrigeration and Heating Equipment', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3585', | |
'sic_description' => 'Refrigeration and Heating Equipment', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3586', | |
'sic_description' => 'Measuring and Dispensing Pumps', | |
'naics_code' => '333914', | |
'naics_description' => 'Measuring, Dispensing, and Other Pumping Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3589', | |
'sic_description' => 'Service Industry Machinery, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3592', | |
'sic_description' => 'Carburetors, Pistons, Rings, Valves', | |
'naics_code' => '336310', | |
'naics_description' => 'Motor Vehicle Gasoline Engine and Engine Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3593', | |
'sic_description' => 'Fluid Power Cylinders and Actuators', | |
'naics_code' => '333995', | |
'naics_description' => 'Fluid Power Cylinder and Actuator Manufacturing', | |
], | |
[ | |
'sic_code' => '3594', | |
'sic_description' => 'Fluid Power Pumps and Motors', | |
'naics_code' => '333996', | |
'naics_description' => 'Fluid Power Pump and Motor Manufacturing', | |
], | |
[ | |
'sic_code' => '3596', | |
'sic_description' => 'Scales and Balances, Except Laboratory', | |
'naics_code' => '333997', | |
'naics_description' => 'Scale and Balance Manufacturing', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '332710', | |
'naics_description' => 'Machine Shops', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '332813', | |
'naics_description' => 'Electroplating, Plating, Polishing, Anodizing, and Coloring', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '333999', | |
'naics_description' => 'All Other Miscellaneous General Purpose Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3599', | |
'sic_description' => 'Industrial Machinery, Nec', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3612', | |
'sic_description' => 'Power, Distribution and Specialty Transformers', | |
'naics_code' => '335311', | |
'naics_description' => 'Power, Distribution, and Specialty Transformer Manufacturing', | |
], | |
[ | |
'sic_code' => '3613', | |
'sic_description' => 'Switchgear and Switchboard Apparatus', | |
'naics_code' => '335313', | |
'naics_description' => 'Switchgear and Switchboard Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3621', | |
'sic_description' => 'Motors and Generators', | |
'naics_code' => '335312', | |
'naics_description' => 'Motor and Generator Manufacturing', | |
], | |
[ | |
'sic_code' => '3624', | |
'sic_description' => 'Carbon and Graphite Products', | |
'naics_code' => '335991', | |
'naics_description' => 'Carbon and Graphite Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3625', | |
'sic_description' => 'Relays and Industrial Controls', | |
'naics_code' => '335314', | |
'naics_description' => 'Relay and Industrial Control Manufacturing', | |
], | |
[ | |
'sic_code' => '3629', | |
'sic_description' => 'Electrical Industrial Apparatus', | |
'naics_code' => '335999', | |
'naics_description' => 'All Other Miscellaneous Electrical Equipment and Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3631', | |
'sic_description' => 'Household Cooking Equipment', | |
'naics_code' => '335220', | |
'naics_description' => 'Major Household Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3632', | |
'sic_description' => 'Household Refrigerators and Freezers', | |
'naics_code' => '335220', | |
'naics_description' => 'Major Household Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3633', | |
'sic_description' => 'Household Laundry Equipment', | |
'naics_code' => '335220', | |
'naics_description' => 'Major Household Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3634', | |
'sic_description' => 'Electric Housewares and Fans', | |
'naics_code' => '333414', | |
'naics_description' => 'Heating Equipment (except Warm Air Furnaces) Manufacturing', | |
], | |
[ | |
'sic_code' => '3634', | |
'sic_description' => 'Electric Housewares and Fans', | |
'naics_code' => '335210', | |
'naics_description' => 'Small Electrical Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3634', | |
'sic_description' => 'Electric Housewares and Fans', | |
'naics_code' => '339999', | |
'naics_description' => 'All Other Miscellaneous Manufacturing', | |
], | |
[ | |
'sic_code' => '3635', | |
'sic_description' => 'Household Vacuum Cleaners', | |
'naics_code' => '335210', | |
'naics_description' => 'Small Electrical Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3639', | |
'sic_description' => 'Household Appliances, Nec', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3639', | |
'sic_description' => 'Household Appliances, Nec', | |
'naics_code' => '335210', | |
'naics_description' => 'Small Electrical Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3639', | |
'sic_description' => 'Household Appliances, Nec', | |
'naics_code' => '335220', | |
'naics_description' => 'Major Household Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3641', | |
'sic_description' => 'Electric Lamps', | |
'naics_code' => '335110', | |
'naics_description' => 'Electric Lamp Bulb and Part Manufacturing', | |
], | |
[ | |
'sic_code' => '3643', | |
'sic_description' => 'Current-carrying Wiring Devices', | |
'naics_code' => '335931', | |
'naics_description' => 'Current-Carrying Wiring Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3644', | |
'sic_description' => 'Noncurrent-carrying Wiring Devices', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3644', | |
'sic_description' => 'Noncurrent-carrying Wiring Devices', | |
'naics_code' => '335932', | |
'naics_description' => 'Noncurrent-Carrying Wiring Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3645', | |
'sic_description' => 'Residential Lighting Fixtures', | |
'naics_code' => '335121', | |
'naics_description' => 'Residential Electric Lighting Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3646', | |
'sic_description' => 'Commercial Lighting Fixtures', | |
'naics_code' => '335122', | |
'naics_description' => 'Commercial, Industrial, and Institutional Electric Lighting Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3647', | |
'sic_description' => 'Vehicular Lighting Equipment', | |
'naics_code' => '336320', | |
'naics_description' => 'Motor Vehicle Electrical and Electronic Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3648', | |
'sic_description' => 'Lighting Equipment, Nec', | |
'naics_code' => '335129', | |
'naics_description' => 'Other Lighting Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3651', | |
'sic_description' => 'Household Audio and Video Equipment', | |
'naics_code' => '334310', | |
'naics_description' => 'Audio and Video Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3652', | |
'sic_description' => 'Prerecorded Records and Tapes', | |
'naics_code' => '334614', | |
'naics_description' => 'Software and Other Prerecorded Compact Disc, Tape, and Record Reproducing', | |
], | |
[ | |
'sic_code' => '3652', | |
'sic_description' => 'Prerecorded Records and Tapes', | |
'naics_code' => '512250', | |
'naics_description' => 'Record Production and Distribution', | |
], | |
[ | |
'sic_code' => '3661', | |
'sic_description' => 'Telephone and Telegraph Apparatus', | |
'naics_code' => '334210', | |
'naics_description' => 'Telephone Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3661', | |
'sic_description' => 'Telephone and Telegraph Apparatus', | |
'naics_code' => '334418', | |
'naics_description' => 'Printed Circuit Assembly (Electronic Assembly) Manufacturing', | |
], | |
[ | |
'sic_code' => '3663', | |
'sic_description' => 'Radio and T.v. Communications Equipment', | |
'naics_code' => '334220', | |
'naics_description' => 'Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3663', | |
'sic_description' => 'Radio and T.v. Communications Equipment', | |
'naics_code' => '334515', | |
'naics_description' => 'Instrument Manufacturing for Measuring and Testing Electricity and Electrical Signals', | |
], | |
[ | |
'sic_code' => '3669', | |
'sic_description' => 'Communications Equipment, Nec', | |
'naics_code' => '334290', | |
'naics_description' => 'Other Communications Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3671', | |
'sic_description' => 'Electron Tubes', | |
'naics_code' => '334419', | |
'naics_description' => 'Other Electronic Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3672', | |
'sic_description' => 'Printed Circuit Boards', | |
'naics_code' => '334412', | |
'naics_description' => 'Bare Printed Circuit Board Manufacturing', | |
], | |
[ | |
'sic_code' => '3674', | |
'sic_description' => 'Semiconductors and Related Devices', | |
'naics_code' => '334413', | |
'naics_description' => 'Semiconductor and Related Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3675', | |
'sic_description' => 'Electronic Capacitors', | |
'naics_code' => '334416', | |
'naics_description' => 'Capacitor, Resistor, Coil, Transformer, and Other Inductor Manufacturing', | |
], | |
[ | |
'sic_code' => '3676', | |
'sic_description' => 'Electronic Resistors', | |
'naics_code' => '334416', | |
'naics_description' => 'Capacitor, Resistor, Coil, Transformer, and Other Inductor Manufacturing', | |
], | |
[ | |
'sic_code' => '3677', | |
'sic_description' => 'Electronic Coils and Transformers', | |
'naics_code' => '334416', | |
'naics_description' => 'Capacitor, Resistor, Coil, Transformer, and Other Inductor Manufacturing', | |
], | |
[ | |
'sic_code' => '3678', | |
'sic_description' => 'Electronic Connectors', | |
'naics_code' => '334417', | |
'naics_description' => 'Electronic Connector Manufacturing', | |
], | |
[ | |
'sic_code' => '3679', | |
'sic_description' => 'Electronic Components, Nec', | |
'naics_code' => '334220', | |
'naics_description' => 'Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3679', | |
'sic_description' => 'Electronic Components, Nec', | |
'naics_code' => '334310', | |
'naics_description' => 'Audio and Video Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3679', | |
'sic_description' => 'Electronic Components, Nec', | |
'naics_code' => '334418', | |
'naics_description' => 'Printed Circuit Assembly (Electronic Assembly) Manufacturing', | |
], | |
[ | |
'sic_code' => '3679', | |
'sic_description' => 'Electronic Components, Nec', | |
'naics_code' => '334419', | |
'naics_description' => 'Other Electronic Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3679', | |
'sic_description' => 'Electronic Components, Nec', | |
'naics_code' => '334515', | |
'naics_description' => 'Instrument Manufacturing for Measuring and Testing Electricity and Electrical Signals', | |
], | |
[ | |
'sic_code' => '3691', | |
'sic_description' => 'Storage Batteries', | |
'naics_code' => '335911', | |
'naics_description' => 'Storage Battery Manufacturing', | |
], | |
[ | |
'sic_code' => '3692', | |
'sic_description' => 'Primary Batteries, Dry and Wet', | |
'naics_code' => '335912', | |
'naics_description' => 'Primary Battery Manufacturing', | |
], | |
[ | |
'sic_code' => '3694', | |
'sic_description' => 'Engine Electrical Equipment', | |
'naics_code' => '336320', | |
'naics_description' => 'Motor Vehicle Electrical and Electronic Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3695', | |
'sic_description' => 'Magnetic and Optical Recording Media', | |
'naics_code' => '334613', | |
'naics_description' => 'Blank Magnetic and Optical Recording Media Manufacturing', | |
], | |
[ | |
'sic_code' => '3699', | |
'sic_description' => 'Electrical Equipment and Supplies, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3699', | |
'sic_description' => 'Electrical Equipment and Supplies, Nec', | |
'naics_code' => '333618', | |
'naics_description' => 'Other Engine Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3699', | |
'sic_description' => 'Electrical Equipment and Supplies, Nec', | |
'naics_code' => '333992', | |
'naics_description' => 'Welding and Soldering Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3699', | |
'sic_description' => 'Electrical Equipment and Supplies, Nec', | |
'naics_code' => '335129', | |
'naics_description' => 'Other Lighting Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3699', | |
'sic_description' => 'Electrical Equipment and Supplies, Nec', | |
'naics_code' => '335999', | |
'naics_description' => 'All Other Miscellaneous Electrical Equipment and Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3711', | |
'sic_description' => 'Motor Vehicles and Car Bodies', | |
'naics_code' => '336111', | |
'naics_description' => 'Automobile Manufacturing', | |
], | |
[ | |
'sic_code' => '3711', | |
'sic_description' => 'Motor Vehicles and Car Bodies', | |
'naics_code' => '336112', | |
'naics_description' => 'Light Truck and Utility Vehicle Manufacturing', | |
], | |
[ | |
'sic_code' => '3711', | |
'sic_description' => 'Motor Vehicles and Car Bodies', | |
'naics_code' => '336120', | |
'naics_description' => 'Heavy Duty Truck Manufacturing', | |
], | |
[ | |
'sic_code' => '3711', | |
'sic_description' => 'Motor Vehicles and Car Bodies', | |
'naics_code' => '336211', | |
'naics_description' => 'Motor Vehicle Body Manufacturing', | |
], | |
[ | |
'sic_code' => '3711', | |
'sic_description' => 'Motor Vehicles and Car Bodies', | |
'naics_code' => '336992', | |
'naics_description' => 'Military Armored Vehicle, Tank, and Tank Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3713', | |
'sic_description' => 'Truck and Bus Bodies', | |
'naics_code' => '336211', | |
'naics_description' => 'Motor Vehicle Body Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336211', | |
'naics_description' => 'Motor Vehicle Body Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336310', | |
'naics_description' => 'Motor Vehicle Gasoline Engine and Engine Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336320', | |
'naics_description' => 'Motor Vehicle Electrical and Electronic Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336330', | |
'naics_description' => 'Motor Vehicle Steering and Suspension Components (except Spring) Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336340', | |
'naics_description' => 'Motor Vehicle Brake System Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336350', | |
'naics_description' => 'Motor Vehicle Transmission and Power Train Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3714', | |
'sic_description' => 'Motor Vehicle Parts and Accessories', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3715', | |
'sic_description' => 'Truck Trailers', | |
'naics_code' => '336212', | |
'naics_description' => 'Truck Trailer Manufacturing', | |
], | |
[ | |
'sic_code' => '3716', | |
'sic_description' => 'Motor Homes', | |
'naics_code' => '336213', | |
'naics_description' => 'Motor Home Manufacturing', | |
], | |
[ | |
'sic_code' => '3721', | |
'sic_description' => 'Aircraft', | |
'naics_code' => '336411', | |
'naics_description' => 'Aircraft Manufacturing', | |
], | |
[ | |
'sic_code' => '3721', | |
'sic_description' => 'Aircraft', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3724', | |
'sic_description' => 'Aircraft Engines and Engine Parts', | |
'naics_code' => '336412', | |
'naics_description' => 'Aircraft Engine and Engine Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3724', | |
'sic_description' => 'Aircraft Engines and Engine Parts', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3728', | |
'sic_description' => 'Aircraft Parts and Equipment, Nec', | |
'naics_code' => '332912', | |
'naics_description' => 'Fluid Power Valve and Hose Fitting Manufacturing', | |
], | |
[ | |
'sic_code' => '3728', | |
'sic_description' => 'Aircraft Parts and Equipment, Nec', | |
'naics_code' => '336411', | |
'naics_description' => 'Aircraft Manufacturing', | |
], | |
[ | |
'sic_code' => '3728', | |
'sic_description' => 'Aircraft Parts and Equipment, Nec', | |
'naics_code' => '336413', | |
'naics_description' => 'Other Aircraft Parts and Auxiliary Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3728', | |
'sic_description' => 'Aircraft Parts and Equipment, Nec', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3731', | |
'sic_description' => 'Shipbuilding and Repairing', | |
'naics_code' => '336611', | |
'naics_description' => 'Ship Building and Repairing', | |
], | |
[ | |
'sic_code' => '3731', | |
'sic_description' => 'Shipbuilding and Repairing', | |
'naics_code' => '488390', | |
'naics_description' => 'Other Support Activities for Water Transportation', | |
], | |
[ | |
'sic_code' => '3732', | |
'sic_description' => 'Boatbuilding and Repairing', | |
'naics_code' => '336612', | |
'naics_description' => 'Boat Building', | |
], | |
[ | |
'sic_code' => '3732', | |
'sic_description' => 'Boatbuilding and Repairing', | |
'naics_code' => '811490', | |
'naics_description' => 'Other Personal and Household Goods Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '3743', | |
'sic_description' => 'Railroad Equipment', | |
'naics_code' => '333914', | |
'naics_description' => 'Measuring, Dispensing, and Other Pumping Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3743', | |
'sic_description' => 'Railroad Equipment', | |
'naics_code' => '336510', | |
'naics_description' => 'Railroad Rolling Stock Manufacturing', | |
], | |
[ | |
'sic_code' => '3751', | |
'sic_description' => 'Motorcycles, Bicycles, and Parts', | |
'naics_code' => '336991', | |
'naics_description' => 'Motorcycle, Bicycle, and Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3761', | |
'sic_description' => 'Guided Missiles and Space Vehicles', | |
'naics_code' => '336414', | |
'naics_description' => 'Guided Missile and Space Vehicle Manufacturing', | |
], | |
[ | |
'sic_code' => '3761', | |
'sic_description' => 'Guided Missiles and Space Vehicles', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3764', | |
'sic_description' => 'Space Propulsion Units and Parts', | |
'naics_code' => '336415', | |
'naics_description' => 'Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3764', | |
'sic_description' => 'Space Propulsion Units and Parts', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3769', | |
'sic_description' => 'Space Vehicle Equipment, Nec', | |
'naics_code' => '336419', | |
'naics_description' => 'Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3769', | |
'sic_description' => 'Space Vehicle Equipment, Nec', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '3792', | |
'sic_description' => 'Travel Trailers and Campers', | |
'naics_code' => '336214', | |
'naics_description' => 'Travel Trailer and Camper Manufacturing', | |
], | |
[ | |
'sic_code' => '3795', | |
'sic_description' => 'Tanks and Tank Components', | |
'naics_code' => '336992', | |
'naics_description' => 'Military Armored Vehicle, Tank, and Tank Component Manufacturing', | |
], | |
[ | |
'sic_code' => '3799', | |
'sic_description' => 'Transportation Equipment, Nec', | |
'naics_code' => '333924', | |
'naics_description' => 'Industrial Truck, Tractor, Trailer, and Stacker Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3799', | |
'sic_description' => 'Transportation Equipment, Nec', | |
'naics_code' => '336214', | |
'naics_description' => 'Travel Trailer and Camper Manufacturing', | |
], | |
[ | |
'sic_code' => '3799', | |
'sic_description' => 'Transportation Equipment, Nec', | |
'naics_code' => '336390', | |
'naics_description' => 'Other Motor Vehicle Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3799', | |
'sic_description' => 'Transportation Equipment, Nec', | |
'naics_code' => '336999', | |
'naics_description' => 'All Other Transportation Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3812', | |
'sic_description' => 'Search and Navigation Equipment', | |
'naics_code' => '334511', | |
'naics_description' => 'Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '333994', | |
'naics_description' => 'Industrial Process Furnace and Oven Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '333997', | |
'naics_description' => 'Scale and Balance Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '333999', | |
'naics_description' => 'All Other Miscellaneous General Purpose Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '3821', | |
'sic_description' => 'Laboratory Apparatus and Furniture', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3822', | |
'sic_description' => 'Environmental Controls', | |
'naics_code' => '334512', | |
'naics_description' => 'Automatic Environmental Control Manufacturing for Residential, Commercial, and Appliance Use', | |
], | |
[ | |
'sic_code' => '3823', | |
'sic_description' => 'Process Control Instruments', | |
'naics_code' => '334513', | |
'naics_description' => 'Instruments and Related Products Manufacturing for Measuring, Displaying, and Controlling Industrial Process Variables', | |
], | |
[ | |
'sic_code' => '3824', | |
'sic_description' => 'Fluid Meters and Counting Devices', | |
'naics_code' => '334514', | |
'naics_description' => 'Totalizing Fluid Meter and Counting Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3825', | |
'sic_description' => 'Instruments To Measure Electricity', | |
'naics_code' => '334514', | |
'naics_description' => 'Totalizing Fluid Meter and Counting Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3825', | |
'sic_description' => 'Instruments To Measure Electricity', | |
'naics_code' => '334515', | |
'naics_description' => 'Instrument Manufacturing for Measuring and Testing Electricity and Electrical Signals', | |
], | |
[ | |
'sic_code' => '3826', | |
'sic_description' => 'Analytical Instruments', | |
'naics_code' => '334516', | |
'naics_description' => 'Analytical Laboratory Instrument Manufacturing', | |
], | |
[ | |
'sic_code' => '3827', | |
'sic_description' => 'Optical Instruments and Lenses', | |
'naics_code' => '333314', | |
'naics_description' => 'Optical Instrument and Lens Manufacturing', | |
], | |
[ | |
'sic_code' => '3829', | |
'sic_description' => 'Measuring and Controlling Devices, Nec', | |
'naics_code' => '334514', | |
'naics_description' => 'Totalizing Fluid Meter and Counting Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3829', | |
'sic_description' => 'Measuring and Controlling Devices, Nec', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3829', | |
'sic_description' => 'Measuring and Controlling Devices, Nec', | |
'naics_code' => '339112', | |
'naics_description' => 'Surgical and Medical Instrument Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '332994', | |
'naics_description' => 'Small Arms, Ordnance, and Ordnance Accessories Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '333249', | |
'naics_description' => 'Other Industrial Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '333415', | |
'naics_description' => 'Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '333994', | |
'naics_description' => 'Industrial Process Furnace and Oven Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '333997', | |
'naics_description' => 'Scale and Balance Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '333999', | |
'naics_description' => 'All Other Miscellaneous General Purpose Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '339112', | |
'naics_description' => 'Surgical and Medical Instrument Manufacturing', | |
], | |
[ | |
'sic_code' => '3841', | |
'sic_description' => 'Surgical and Medical Instruments', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3842', | |
'sic_description' => 'Surgical Appliances and Supplies', | |
'naics_code' => '322291', | |
'naics_description' => 'Sanitary Paper Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3842', | |
'sic_description' => 'Surgical Appliances and Supplies', | |
'naics_code' => '334510', | |
'naics_description' => 'Electromedical and Electrotherapeutic Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3842', | |
'sic_description' => 'Surgical Appliances and Supplies', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3842', | |
'sic_description' => 'Surgical Appliances and Supplies', | |
'naics_code' => '339999', | |
'naics_description' => 'All Other Miscellaneous Manufacturing', | |
], | |
[ | |
'sic_code' => '3843', | |
'sic_description' => 'Dental Equipment and Supplies', | |
'naics_code' => '339114', | |
'naics_description' => 'Dental Equipment and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3844', | |
'sic_description' => 'X-ray Apparatus and Tubes', | |
'naics_code' => '334517', | |
'naics_description' => 'Irradiation Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3845', | |
'sic_description' => 'Electromedical Equipment', | |
'naics_code' => '334510', | |
'naics_description' => 'Electromedical and Electrotherapeutic Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3845', | |
'sic_description' => 'Electromedical Equipment', | |
'naics_code' => '334517', | |
'naics_description' => 'Irradiation Apparatus Manufacturing', | |
], | |
[ | |
'sic_code' => '3851', | |
'sic_description' => 'Ophthalmic Goods', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '3851', | |
'sic_description' => 'Ophthalmic Goods', | |
'naics_code' => '339115', | |
'naics_description' => 'Ophthalmic Goods Manufacturing', | |
], | |
[ | |
'sic_code' => '3861', | |
'sic_description' => 'Photographic Equipment and Supplies', | |
'naics_code' => '325992', | |
'naics_description' => 'Photographic Film, Paper, Plate, and Chemical Manufacturing', | |
], | |
[ | |
'sic_code' => '3861', | |
'sic_description' => 'Photographic Equipment and Supplies', | |
'naics_code' => '333316', | |
'naics_description' => 'Photographic and Photocopying Equipment Manufacturing', | |
], | |
[ | |
'sic_code' => '3873', | |
'sic_description' => 'Watches, Clocks, Watchcases, and Parts', | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3911', | |
'sic_description' => 'Jewelry, Precious Metal', | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3914', | |
'sic_description' => 'Silverware and Plated Ware', | |
'naics_code' => '332215', | |
'naics_description' => 'Metal Kitchen Cookware, Utensil, Cutlery, and Flatware (except Precious) Manufacturing', | |
], | |
[ | |
'sic_code' => '3914', | |
'sic_description' => 'Silverware and Plated Ware', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3914', | |
'sic_description' => 'Silverware and Plated Ware', | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3915', | |
'sic_description' => "Jewelers\' Materials and Lapidary Work", | |
'naics_code' => '334519', | |
'naics_description' => 'Other Measuring and Controlling Device Manufacturing', | |
], | |
[ | |
'sic_code' => '3915', | |
'sic_description' => "Jewelers\' Materials and Lapidary Work", | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3931', | |
'sic_description' => 'Musical Instruments', | |
'naics_code' => '339992', | |
'naics_description' => 'Musical Instrument Manufacturing', | |
], | |
[ | |
'sic_code' => '3942', | |
'sic_description' => 'Dolls and Stuffed Toys', | |
'naics_code' => '339930', | |
'naics_description' => 'Doll, Toy, and Game Manufacturing', | |
], | |
[ | |
'sic_code' => '3944', | |
'sic_description' => "Games, Toys, and Children\'s Vehicles", | |
'naics_code' => '336991', | |
'naics_description' => 'Motorcycle, Bicycle, and Parts Manufacturing', | |
], | |
[ | |
'sic_code' => '3944', | |
'sic_description' => "Games, Toys, and Children\'s Vehicles", | |
'naics_code' => '339930', | |
'naics_description' => 'Doll, Toy, and Game Manufacturing', | |
], | |
[ | |
'sic_code' => '3949', | |
'sic_description' => 'Sporting and athletic Goods, Nec', | |
'naics_code' => '339920', | |
'naics_description' => 'Sporting and Athletic Goods Manufacturing', | |
], | |
[ | |
'sic_code' => '3951', | |
'sic_description' => 'Pens and Mechanical Pencils', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '3952', | |
'sic_description' => 'Lead Pencils and Art Goods', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '3952', | |
'sic_description' => 'Lead Pencils and Art Goods', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '3952', | |
'sic_description' => 'Lead Pencils and Art Goods', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '3953', | |
'sic_description' => 'Marking Devices', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '3955', | |
'sic_description' => 'Carbon Paper and Inked Ribbons', | |
'naics_code' => '339940', | |
'naics_description' => 'Office Supplies (except Paper) Manufacturing', | |
], | |
[ | |
'sic_code' => '3961', | |
'sic_description' => 'Costume Jewelry', | |
'naics_code' => '339910', | |
'naics_description' => 'Jewelry and Silverware Manufacturing', | |
], | |
[ | |
'sic_code' => '3961', | |
'sic_description' => 'Costume Jewelry', | |
'naics_code' => '339993', | |
'naics_description' => 'Fastener, Button, Needle, and Pin Manufacturing', | |
], | |
[ | |
'sic_code' => '3965', | |
'sic_description' => 'Fasteners, Buttons, Needles, and Pins', | |
'naics_code' => '339993', | |
'naics_description' => 'Fastener, Button, Needle, and Pin Manufacturing', | |
], | |
[ | |
'sic_code' => '3991', | |
'sic_description' => 'Brooms and Brushes', | |
'naics_code' => '339994', | |
'naics_description' => 'Broom, Brush, and Mop Manufacturing', | |
], | |
[ | |
'sic_code' => '3993', | |
'sic_description' => 'Signs and Advertising Specialties', | |
'naics_code' => '323113', | |
'naics_description' => 'Commercial Screen Printing', | |
], | |
[ | |
'sic_code' => '3993', | |
'sic_description' => 'Signs and Advertising Specialties', | |
'naics_code' => '339950', | |
'naics_description' => 'Sign Manufacturing', | |
], | |
[ | |
'sic_code' => '3995', | |
'sic_description' => 'Burial Caskets', | |
'naics_code' => '339995', | |
'naics_description' => 'Burial Casket Manufacturing', | |
], | |
[ | |
'sic_code' => '3996', | |
'sic_description' => 'Hard Surface Floor Coverings, Nec', | |
'naics_code' => '326199', | |
'naics_description' => 'All Other Plastics Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '316110', | |
'naics_description' => 'Leather and Hide Tanning and Finishing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '321999', | |
'naics_description' => 'All Other Miscellaneous Wood Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '326199', | |
'naics_description' => 'All Other Plastics Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '332215', | |
'naics_description' => 'Metal Kitchen Cookware, Utensil, Cutlery, and Flatware (except Precious) Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '332216', | |
'naics_description' => 'Saw Blade and Handtool Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '332812', | |
'naics_description' => 'Metal Coating, Engraving (except Jewelry and Silverware), and Allied Services to Manufacturers', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '332999', | |
'naics_description' => 'All Other Miscellaneous Fabricated Metal Product Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '333318', | |
'naics_description' => 'Other Commercial and Service Industry Machinery Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '335121', | |
'naics_description' => 'Residential Electric Lighting Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '335210', | |
'naics_description' => 'Small Electrical Appliance Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '336612', | |
'naics_description' => 'Boat Building', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '337127', | |
'naics_description' => 'Institutional Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '339930', | |
'naics_description' => 'Doll, Toy, and Game Manufacturing', | |
], | |
[ | |
'sic_code' => '3999', | |
'sic_description' => 'Manufacturing Industries, Nec', | |
'naics_code' => '339999', | |
'naics_description' => 'All Other Miscellaneous Manufacturing', | |
], | |
[ | |
'sic_code' => '4011', | |
'sic_description' => 'Railroads, Line-haul Operating', | |
'naics_code' => '482111', | |
'naics_description' => 'Line-Haul Railroads', | |
], | |
[ | |
'sic_code' => '4013', | |
'sic_description' => 'Switching and Terminal Services', | |
'naics_code' => '482112', | |
'naics_description' => 'Short Line Railroads', | |
], | |
[ | |
'sic_code' => '4013', | |
'sic_description' => 'Switching and Terminal Services', | |
'naics_code' => '488210', | |
'naics_description' => 'Support Activities for Rail Transportation', | |
], | |
[ | |
'sic_code' => '4111', | |
'sic_description' => 'Local and Suburban Transit', | |
'naics_code' => '485111', | |
'naics_description' => 'Mixed Mode Transit Systems', | |
], | |
[ | |
'sic_code' => '4111', | |
'sic_description' => 'Local and Suburban Transit', | |
'naics_code' => '485112', | |
'naics_description' => 'Commuter Rail Systems', | |
], | |
[ | |
'sic_code' => '4111', | |
'sic_description' => 'Local and Suburban Transit', | |
'naics_code' => '485113', | |
'naics_description' => 'Bus and Other Motor Vehicle Transit Systems', | |
], | |
[ | |
'sic_code' => '4111', | |
'sic_description' => 'Local and Suburban Transit', | |
'naics_code' => '485119', | |
'naics_description' => 'Other Urban Transit Systems', | |
], | |
[ | |
'sic_code' => '4111', | |
'sic_description' => 'Local and Suburban Transit', | |
'naics_code' => '485999', | |
'naics_description' => 'All Other Transit and Ground Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '485320', | |
'naics_description' => 'Limousine Service', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '485410', | |
'naics_description' => 'School and Employee Bus Transportation', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '485991', | |
'naics_description' => 'Special Needs Transportation', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '485999', | |
'naics_description' => 'All Other Transit and Ground Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '487110', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Land', | |
], | |
[ | |
'sic_code' => '4119', | |
'sic_description' => 'Local Passenger Transportation, Nec', | |
'naics_code' => '621910', | |
'naics_description' => 'Ambulance Services', | |
], | |
[ | |
'sic_code' => '4121', | |
'sic_description' => 'Taxicabs', | |
'naics_code' => '485310', | |
'naics_description' => 'Taxi Service', | |
], | |
[ | |
'sic_code' => '4131', | |
'sic_description' => 'Intercity and Rural Bus Transportation', | |
'naics_code' => '485210', | |
'naics_description' => 'Interurban and Rural Bus Transportation', | |
], | |
[ | |
'sic_code' => '4141', | |
'sic_description' => 'Local Bus Charter Service', | |
'naics_code' => '485510', | |
'naics_description' => 'Charter Bus Industry', | |
], | |
[ | |
'sic_code' => '4142', | |
'sic_description' => 'Bus Charter Service, Except Local', | |
'naics_code' => '485510', | |
'naics_description' => 'Charter Bus Industry', | |
], | |
[ | |
'sic_code' => '4151', | |
'sic_description' => 'School Buses', | |
'naics_code' => '485410', | |
'naics_description' => 'School and Employee Bus Transportation', | |
], | |
[ | |
'sic_code' => '4173', | |
'sic_description' => 'Bus Terminal and Service Facilities', | |
'naics_code' => '488490', | |
'naics_description' => 'Other Support Activities for Road Transportation', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '484110', | |
'naics_description' => 'General Freight Trucking, Local', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '484210', | |
'naics_description' => 'Used Household and Office Goods Moving', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '484220', | |
'naics_description' => 'Specialized Freight (except Used Goods) Trucking, Local', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '562111', | |
'naics_description' => 'Solid Waste Collection', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '562112', | |
'naics_description' => 'Hazardous Waste Collection', | |
], | |
[ | |
'sic_code' => '4212', | |
'sic_description' => 'Local Trucking, Without Storage', | |
'naics_code' => '562119', | |
'naics_description' => 'Other Waste Collection', | |
], | |
[ | |
'sic_code' => '4213', | |
'sic_description' => 'Trucking, Except Local', | |
'naics_code' => '484121', | |
'naics_description' => 'General Freight Trucking, Long-Distance, Truckload', | |
], | |
[ | |
'sic_code' => '4213', | |
'sic_description' => 'Trucking, Except Local', | |
'naics_code' => '484122', | |
'naics_description' => 'General Freight Trucking, Long-Distance, Less Than Truckload', | |
], | |
[ | |
'sic_code' => '4213', | |
'sic_description' => 'Trucking, Except Local', | |
'naics_code' => '484210', | |
'naics_description' => 'Used Household and Office Goods Moving', | |
], | |
[ | |
'sic_code' => '4213', | |
'sic_description' => 'Trucking, Except Local', | |
'naics_code' => '484230', | |
'naics_description' => 'Specialized Freight (except Used Goods) Trucking, Long-Distance', | |
], | |
[ | |
'sic_code' => '4214', | |
'sic_description' => 'Local Trucking With Storage', | |
'naics_code' => '484110', | |
'naics_description' => 'General Freight Trucking, Local', | |
], | |
[ | |
'sic_code' => '4214', | |
'sic_description' => 'Local Trucking With Storage', | |
'naics_code' => '484210', | |
'naics_description' => 'Used Household and Office Goods Moving', | |
], | |
[ | |
'sic_code' => '4214', | |
'sic_description' => 'Local Trucking With Storage', | |
'naics_code' => '484220', | |
'naics_description' => 'Specialized Freight (except Used Goods) Trucking, Local', | |
], | |
[ | |
'sic_code' => '4215', | |
'sic_description' => 'Courier Services, Except By Air', | |
'naics_code' => '492110', | |
'naics_description' => 'Couriers and Express Delivery Services', | |
], | |
[ | |
'sic_code' => '4215', | |
'sic_description' => 'Courier Services, Except By Air', | |
'naics_code' => '492210', | |
'naics_description' => 'Local Messengers and Local Delivery', | |
], | |
[ | |
'sic_code' => '4221', | |
'sic_description' => 'Farm Product Warehousing and Storage', | |
'naics_code' => '493130', | |
'naics_description' => 'Farm Product Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4222', | |
'sic_description' => 'Refrigerated Warehousing and Storage', | |
'naics_code' => '493120', | |
'naics_description' => 'Refrigerated Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4225', | |
'sic_description' => 'General Warehousing and Storage', | |
'naics_code' => '493110', | |
'naics_description' => 'General Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4225', | |
'sic_description' => 'General Warehousing and Storage', | |
'naics_code' => '531130', | |
'naics_description' => 'Lessors of Miniwarehouses and Self-Storage Units', | |
], | |
[ | |
'sic_code' => '4226', | |
'sic_description' => 'Special Warehousing and Storage, Nec', | |
'naics_code' => '493110', | |
'naics_description' => 'General Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4226', | |
'sic_description' => 'Special Warehousing and Storage, Nec', | |
'naics_code' => '493120', | |
'naics_description' => 'Refrigerated Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4226', | |
'sic_description' => 'Special Warehousing and Storage, Nec', | |
'naics_code' => '493190', | |
'naics_description' => 'Other Warehousing and Storage', | |
], | |
[ | |
'sic_code' => '4231', | |
'sic_description' => 'Trucking Terminal Facilities', | |
'naics_code' => '488490', | |
'naics_description' => 'Other Support Activities for Road Transportation', | |
], | |
[ | |
'sic_code' => '4311', | |
'sic_description' => 'U.S. Postal Service', | |
'naics_code' => '491110', | |
'naics_description' => 'Postal Service', | |
], | |
[ | |
'sic_code' => '4412', | |
'sic_description' => 'Deep Sea Foreign Transportation of Freight', | |
'naics_code' => '483111', | |
'naics_description' => 'Deep Sea Freight Transportation', | |
], | |
[ | |
'sic_code' => '4424', | |
'sic_description' => 'Deep Sea Domestic Transportation of Freight', | |
'naics_code' => '483113', | |
'naics_description' => 'Coastal and Great Lakes Freight Transportation', | |
], | |
[ | |
'sic_code' => '4432', | |
'sic_description' => 'Freight Transportation On The Great Lakes', | |
'naics_code' => '483113', | |
'naics_description' => 'Coastal and Great Lakes Freight Transportation', | |
], | |
[ | |
'sic_code' => '4449', | |
'sic_description' => 'Water Transportation of Freight', | |
'naics_code' => '483211', | |
'naics_description' => 'Inland Water Freight Transportation', | |
], | |
[ | |
'sic_code' => '4481', | |
'sic_description' => 'Deep Sea Passenger Transportation, Except Ferry', | |
'naics_code' => '483112', | |
'naics_description' => 'Deep Sea Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4481', | |
'sic_description' => 'Deep Sea Passenger Transportation, Except Ferry', | |
'naics_code' => '483114', | |
'naics_description' => 'Coastal and Great Lakes Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4482', | |
'sic_description' => 'Ferries', | |
'naics_code' => '483114', | |
'naics_description' => 'Coastal and Great Lakes Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4482', | |
'sic_description' => 'Ferries', | |
'naics_code' => '483212', | |
'naics_description' => 'Inland Water Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4489', | |
'sic_description' => 'Water Passenger Transportation', | |
'naics_code' => '483212', | |
'naics_description' => 'Inland Water Passenger Transportation', | |
], | |
[ | |
'sic_code' => '4489', | |
'sic_description' => 'Water Passenger Transportation', | |
'naics_code' => '487210', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Water', | |
], | |
[ | |
'sic_code' => '4491', | |
'sic_description' => 'Marine Cargo Handling', | |
'naics_code' => '488310', | |
'naics_description' => 'Port and Harbor Operations', | |
], | |
[ | |
'sic_code' => '4491', | |
'sic_description' => 'Marine Cargo Handling', | |
'naics_code' => '488320', | |
'naics_description' => 'Marine Cargo Handling', | |
], | |
[ | |
'sic_code' => '4492', | |
'sic_description' => 'Towing and Tugboat Service', | |
'naics_code' => '488330', | |
'naics_description' => 'Navigational Services to Shipping', | |
], | |
[ | |
'sic_code' => '4493', | |
'sic_description' => 'Marinas', | |
'naics_code' => '713930', | |
'naics_description' => 'Marinas', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '483211', | |
'naics_description' => 'Inland Water Freight Transportation', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '488310', | |
'naics_description' => 'Port and Harbor Operations', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '488330', | |
'naics_description' => 'Navigational Services to Shipping', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '488390', | |
'naics_description' => 'Other Support Activities for Water Transportation', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '532411', | |
'naics_description' => 'Commercial Air, Rail, and Water Transportation Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '4499', | |
'sic_description' => 'Water Transportation Services, Nec', | |
'naics_code' => '541990', | |
'naics_description' => 'All Other Professional, Scientific, and Technical Services', | |
], | |
[ | |
'sic_code' => '4512', | |
'sic_description' => 'Air Transportation, Scheduled', | |
'naics_code' => '481111', | |
'naics_description' => 'Scheduled Passenger Air Transportation', | |
], | |
[ | |
'sic_code' => '4512', | |
'sic_description' => 'Air Transportation, Scheduled', | |
'naics_code' => '481112', | |
'naics_description' => 'Scheduled Freight Air Transportation', | |
], | |
[ | |
'sic_code' => '4513', | |
'sic_description' => 'Air Courier Services', | |
'naics_code' => '492110', | |
'naics_description' => 'Couriers and Express Delivery Services', | |
], | |
[ | |
'sic_code' => '4522', | |
'sic_description' => 'Air Transportation, Nonscheduled', | |
'naics_code' => '481211', | |
'naics_description' => 'Nonscheduled Chartered Passenger Air Transportation', | |
], | |
[ | |
'sic_code' => '4522', | |
'sic_description' => 'Air Transportation, Nonscheduled', | |
'naics_code' => '481212', | |
'naics_description' => 'Nonscheduled Chartered Freight Air Transportation', | |
], | |
[ | |
'sic_code' => '4522', | |
'sic_description' => 'Air Transportation, Nonscheduled', | |
'naics_code' => '481219', | |
'naics_description' => 'Other Nonscheduled Air Transportation', | |
], | |
[ | |
'sic_code' => '4522', | |
'sic_description' => 'Air Transportation, Nonscheduled', | |
'naics_code' => '487990', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Other', | |
], | |
[ | |
'sic_code' => '4522', | |
'sic_description' => 'Air Transportation, Nonscheduled', | |
'naics_code' => '621910', | |
'naics_description' => 'Ambulance Services', | |
], | |
[ | |
'sic_code' => '4581', | |
'sic_description' => 'Airports, Flying Fields, and Services', | |
'naics_code' => '488111', | |
'naics_description' => 'Air Traffic Control', | |
], | |
[ | |
'sic_code' => '4581', | |
'sic_description' => 'Airports, Flying Fields, and Services', | |
'naics_code' => '488119', | |
'naics_description' => 'Other Airport Operations', | |
], | |
[ | |
'sic_code' => '4581', | |
'sic_description' => 'Airports, Flying Fields, and Services', | |
'naics_code' => '488190', | |
'naics_description' => 'Other Support Activities for Air Transportation', | |
], | |
[ | |
'sic_code' => '4581', | |
'sic_description' => 'Airports, Flying Fields, and Services', | |
'naics_code' => '561720', | |
'naics_description' => 'Janitorial Services', | |
], | |
[ | |
'sic_code' => '4581', | |
'sic_description' => 'Airports, Flying Fields, and Services', | |
'naics_code' => '811420', | |
'naics_description' => 'Reupholstery and Furniture Repair', | |
], | |
[ | |
'sic_code' => '4612', | |
'sic_description' => 'Crude Petroleum Pipelines', | |
'naics_code' => '486110', | |
'naics_description' => 'Pipeline Transportation of Crude Oil', | |
], | |
[ | |
'sic_code' => '4613', | |
'sic_description' => 'Refined Petroleum Pipelines', | |
'naics_code' => '486910', | |
'naics_description' => 'Pipeline Transportation of Refined Petroleum Products', | |
], | |
[ | |
'sic_code' => '4619', | |
'sic_description' => 'Pipelines, Nec', | |
'naics_code' => '486990', | |
'naics_description' => 'All Other Pipeline Transportation', | |
], | |
[ | |
'sic_code' => '4724', | |
'sic_description' => 'Travel Agencies', | |
'naics_code' => '561510', | |
'naics_description' => 'Travel Agencies', | |
], | |
[ | |
'sic_code' => '4725', | |
'sic_description' => 'Tour Operators', | |
'naics_code' => '561520', | |
'naics_description' => 'Tour Operators', | |
], | |
[ | |
'sic_code' => '4729', | |
'sic_description' => 'Passenger Transportation Arrangement', | |
'naics_code' => '488999', | |
'naics_description' => 'All Other Support Activities for Transportation', | |
], | |
[ | |
'sic_code' => '4729', | |
'sic_description' => 'Passenger Transportation Arrangement', | |
'naics_code' => '561599', | |
'naics_description' => 'All Other Travel Arrangement and Reservation Services', | |
], | |
[ | |
'sic_code' => '4731', | |
'sic_description' => 'Freight Transportation Arrangement', | |
'naics_code' => '488510', | |
'naics_description' => 'Freight Transportation Arrangement', | |
], | |
[ | |
'sic_code' => '4731', | |
'sic_description' => 'Freight Transportation Arrangement', | |
'naics_code' => '541614', | |
'naics_description' => 'Process, Physical Distribution, and Logistics Consulting Services', | |
], | |
[ | |
'sic_code' => '4741', | |
'sic_description' => 'Rental of Railroad Cars', | |
'naics_code' => '488210', | |
'naics_description' => 'Support Activities for Rail Transportation', | |
], | |
[ | |
'sic_code' => '4741', | |
'sic_description' => 'Rental of Railroad Cars', | |
'naics_code' => '532411', | |
'naics_description' => 'Commercial Air, Rail, and Water Transportation Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '4783', | |
'sic_description' => 'Packing and Crating', | |
'naics_code' => '488991', | |
'naics_description' => 'Packing and Crating', | |
], | |
[ | |
'sic_code' => '4785', | |
'sic_description' => 'Inspection and Fixed Facilities', | |
'naics_code' => '488390', | |
'naics_description' => 'Other Support Activities for Water Transportation', | |
], | |
[ | |
'sic_code' => '4785', | |
'sic_description' => 'Inspection and Fixed Facilities', | |
'naics_code' => '488490', | |
'naics_description' => 'Other Support Activities for Road Transportation', | |
], | |
[ | |
'sic_code' => '4789', | |
'sic_description' => 'Transportation Services, Nec', | |
'naics_code' => '487110', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Land', | |
], | |
[ | |
'sic_code' => '4789', | |
'sic_description' => 'Transportation Services, Nec', | |
'naics_code' => '488210', | |
'naics_description' => 'Support Activities for Rail Transportation', | |
], | |
[ | |
'sic_code' => '4789', | |
'sic_description' => 'Transportation Services, Nec', | |
'naics_code' => '488999', | |
'naics_description' => 'All Other Support Activities for Transportation', | |
], | |
[ | |
'sic_code' => '4789', | |
'sic_description' => 'Transportation Services, Nec', | |
'naics_code' => '722310', | |
'naics_description' => 'Food Service Contractors', | |
], | |
[ | |
'sic_code' => '4812', | |
'sic_description' => 'Radiotelephone Communication', | |
'naics_code' => '517312', | |
'naics_description' => 'Wireless Telecommunications Carriers (except Satellite)', | |
], | |
[ | |
'sic_code' => '4812', | |
'sic_description' => 'Radiotelephone Communication', | |
'naics_code' => '517911', | |
'naics_description' => 'Telecommunications Resellers', | |
], | |
[ | |
'sic_code' => '4813', | |
'sic_description' => 'Telephone Communication, Except Radio', | |
'naics_code' => '517311', | |
'naics_description' => 'Wired Telecommunications Carriers', | |
], | |
[ | |
'sic_code' => '4813', | |
'sic_description' => 'Telephone Communication, Except Radio', | |
'naics_code' => '517911', | |
'naics_description' => 'Telecommunications Resellers', | |
], | |
[ | |
'sic_code' => '4822', | |
'sic_description' => 'Telegraph and Other Communications', | |
'naics_code' => '517311', | |
'naics_description' => 'Wired Telecommunications Carriers', | |
], | |
[ | |
'sic_code' => '4832', | |
'sic_description' => 'Radio Broadcasting Stations', | |
'naics_code' => '515111', | |
'naics_description' => 'Radio Networks', | |
], | |
[ | |
'sic_code' => '4832', | |
'sic_description' => 'Radio Broadcasting Stations', | |
'naics_code' => '515112', | |
'naics_description' => 'Radio Stations', | |
], | |
[ | |
'sic_code' => '4833', | |
'sic_description' => 'Television Broadcasting Stations', | |
'naics_code' => '515120', | |
'naics_description' => 'Television Broadcasting', | |
], | |
[ | |
'sic_code' => '4841', | |
'sic_description' => 'Cable and Other Pay Television Services', | |
'naics_code' => '515210', | |
'naics_description' => 'Cable and Other Subscription Programming', | |
], | |
[ | |
'sic_code' => '4841', | |
'sic_description' => 'Cable and Other Pay Television Services', | |
'naics_code' => '517311', | |
'naics_description' => 'Wired Telecommunications Carriers', | |
], | |
[ | |
'sic_code' => '4899', | |
'sic_description' => 'Communication Services, Nec', | |
'naics_code' => '485310', | |
'naics_description' => 'Taxi Service', | |
], | |
[ | |
'sic_code' => '4899', | |
'sic_description' => 'Communication Services, Nec', | |
'naics_code' => '517312', | |
'naics_description' => 'Wireless Telecommunications Carriers (except Satellite)', | |
], | |
[ | |
'sic_code' => '4899', | |
'sic_description' => 'Communication Services, Nec', | |
'naics_code' => '517410', | |
'naics_description' => 'Satellite Telecommunications', | |
], | |
[ | |
'sic_code' => '4899', | |
'sic_description' => 'Communication Services, Nec', | |
'naics_code' => '517919', | |
'naics_description' => 'All Other Telecommunications', | |
], | |
[ | |
'sic_code' => '4899', | |
'sic_description' => 'Communication Services, Nec', | |
'naics_code' => '812990', | |
'naics_description' => 'All Other Personal Services', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221111', | |
'naics_description' => 'Hydroelectric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221112', | |
'naics_description' => 'Fossil Fuel Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221113', | |
'naics_description' => 'Nuclear Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221114', | |
'naics_description' => 'Solar Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221115', | |
'naics_description' => 'Wind Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221116', | |
'naics_description' => 'Geothermal Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221117', | |
'naics_description' => 'Biomass Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221118', | |
'naics_description' => 'Other Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221121', | |
'naics_description' => 'Electric Bulk Power Transmission and Control', | |
], | |
[ | |
'sic_code' => '4911', | |
'sic_description' => 'Electric Services', | |
'naics_code' => '221122', | |
'naics_description' => 'Electric Power Distribution', | |
], | |
[ | |
'sic_code' => '4922', | |
'sic_description' => 'Natural Gas Transmission', | |
'naics_code' => '486210', | |
'naics_description' => 'Pipeline Transportation of Natural Gas', | |
], | |
[ | |
'sic_code' => '4923', | |
'sic_description' => 'Gas Transmission and Distribution', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4923', | |
'sic_description' => 'Gas Transmission and Distribution', | |
'naics_code' => '486210', | |
'naics_description' => 'Pipeline Transportation of Natural Gas', | |
], | |
[ | |
'sic_code' => '4924', | |
'sic_description' => 'Natural Gas Distribution', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4925', | |
'sic_description' => 'Gas Production and/or Distribution', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221111', | |
'naics_description' => 'Hydroelectric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221112', | |
'naics_description' => 'Fossil Fuel Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221113', | |
'naics_description' => 'Nuclear Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221114', | |
'naics_description' => 'Solar Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221115', | |
'naics_description' => 'Wind Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221116', | |
'naics_description' => 'Geothermal Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221117', | |
'naics_description' => 'Biomass Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221118', | |
'naics_description' => 'Other Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221121', | |
'naics_description' => 'Electric Bulk Power Transmission and Control', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221122', | |
'naics_description' => 'Electric Power Distribution', | |
], | |
[ | |
'sic_code' => '4931', | |
'sic_description' => 'Electric and Other Services Combined', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4932', | |
'sic_description' => 'Gas and Other Services Combined', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221111', | |
'naics_description' => 'Hydroelectric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221112', | |
'naics_description' => 'Fossil Fuel Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221113', | |
'naics_description' => 'Nuclear Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221114', | |
'naics_description' => 'Solar Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221115', | |
'naics_description' => 'Wind Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221116', | |
'naics_description' => 'Geothermal Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221117', | |
'naics_description' => 'Biomass Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221118', | |
'naics_description' => 'Other Electric Power Generation', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221121', | |
'naics_description' => 'Electric Bulk Power Transmission and Control', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221122', | |
'naics_description' => 'Electric Power Distribution', | |
], | |
[ | |
'sic_code' => '4939', | |
'sic_description' => 'Combination Utilities, Nec', | |
'naics_code' => '221210', | |
'naics_description' => 'Natural Gas Distribution', | |
], | |
[ | |
'sic_code' => '4941', | |
'sic_description' => 'Water Supply', | |
'naics_code' => '221310', | |
'naics_description' => 'Water Supply and Irrigation Systems', | |
], | |
[ | |
'sic_code' => '4952', | |
'sic_description' => 'Sewerage Systems', | |
'naics_code' => '221320', | |
'naics_description' => 'Sewage Treatment Facilities', | |
], | |
[ | |
'sic_code' => '4953', | |
'sic_description' => 'Refuse Systems', | |
'naics_code' => '562211', | |
'naics_description' => 'Hazardous Waste Treatment and Disposal', | |
], | |
[ | |
'sic_code' => '4953', | |
'sic_description' => 'Refuse Systems', | |
'naics_code' => '562212', | |
'naics_description' => 'Solid Waste Landfill', | |
], | |
[ | |
'sic_code' => '4953', | |
'sic_description' => 'Refuse Systems', | |
'naics_code' => '562213', | |
'naics_description' => 'Solid Waste Combustors and Incinerators', | |
], | |
[ | |
'sic_code' => '4953', | |
'sic_description' => 'Refuse Systems', | |
'naics_code' => '562219', | |
'naics_description' => 'Other Nonhazardous Waste Treatment and Disposal', | |
], | |
[ | |
'sic_code' => '4953', | |
'sic_description' => 'Refuse Systems', | |
'naics_code' => '562920', | |
'naics_description' => 'Materials Recovery Facilities', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '488119', | |
'naics_description' => 'Other Airport Operations', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '488490', | |
'naics_description' => 'Other Support Activities for Road Transportation', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '561710', | |
'naics_description' => 'Exterminating and Pest Control Services', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '561790', | |
'naics_description' => 'Other Services to Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '562910', | |
'naics_description' => 'Remediation Services', | |
], | |
[ | |
'sic_code' => '4959', | |
'sic_description' => 'Sanitary Services, Nec', | |
'naics_code' => '562998', | |
'naics_description' => 'All Other Miscellaneous Waste Management Services', | |
], | |
[ | |
'sic_code' => '4961', | |
'sic_description' => 'Steam and Air-conditioning Supply', | |
'naics_code' => '221330', | |
'naics_description' => 'Steam and Air-Conditioning Supply', | |
], | |
[ | |
'sic_code' => '4971', | |
'sic_description' => 'Irrigation Systems', | |
'naics_code' => '221310', | |
'naics_description' => 'Water Supply and Irrigation Systems', | |
], | |
[ | |
'sic_code' => '5012', | |
'sic_description' => 'Automobiles and Other Motor Vehicles', | |
'naics_code' => '423110', | |
'naics_description' => 'Automobile and Other Motor Vehicle Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5012', | |
'sic_description' => 'Automobiles and Other Motor Vehicles', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5012', | |
'sic_description' => 'Automobiles and Other Motor Vehicles', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5013', | |
'sic_description' => 'Motor Vehicle Supplies and New Parts', | |
'naics_code' => '423120', | |
'naics_description' => 'Motor Vehicle Supplies and New Parts Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5013', | |
'sic_description' => 'Motor Vehicle Supplies and New Parts', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5013', | |
'sic_description' => 'Motor Vehicle Supplies and New Parts', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5013', | |
'sic_description' => 'Motor Vehicle Supplies and New Parts', | |
'naics_code' => '441310', | |
'naics_description' => 'Automotive Parts and Accessories Stores', | |
], | |
[ | |
'sic_code' => '5014', | |
'sic_description' => 'Tires and Tubes', | |
'naics_code' => '423130', | |
'naics_description' => 'Tire and Tube Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5014', | |
'sic_description' => 'Tires and Tubes', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5014', | |
'sic_description' => 'Tires and Tubes', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5014', | |
'sic_description' => 'Tires and Tubes', | |
'naics_code' => '441320', | |
'naics_description' => 'Tire Dealers', | |
], | |
[ | |
'sic_code' => '5015', | |
'sic_description' => 'Motor Vehicle Parts, Used', | |
'naics_code' => '423140', | |
'naics_description' => 'Motor Vehicle Parts (Used) Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5015', | |
'sic_description' => 'Motor Vehicle Parts, Used', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5015', | |
'sic_description' => 'Motor Vehicle Parts, Used', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5015', | |
'sic_description' => 'Motor Vehicle Parts, Used', | |
'naics_code' => '441310', | |
'naics_description' => 'Automotive Parts and Accessories Stores', | |
], | |
[ | |
'sic_code' => '5021', | |
'sic_description' => 'Furniture', | |
'naics_code' => '423210', | |
'naics_description' => 'Furniture Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5021', | |
'sic_description' => 'Furniture', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5021', | |
'sic_description' => 'Furniture', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5021', | |
'sic_description' => 'Furniture', | |
'naics_code' => '442110', | |
'naics_description' => 'Furniture Stores', | |
], | |
[ | |
'sic_code' => '5023', | |
'sic_description' => 'Homefurnishings', | |
'naics_code' => '423220', | |
'naics_description' => 'Home Furnishing Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5023', | |
'sic_description' => 'Homefurnishings', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5023', | |
'sic_description' => 'Homefurnishings', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5023', | |
'sic_description' => 'Homefurnishings', | |
'naics_code' => '442210', | |
'naics_description' => 'Floor Covering Stores', | |
], | |
[ | |
'sic_code' => '5031', | |
'sic_description' => 'Lumber, Plywood, and Millwork', | |
'naics_code' => '423310', | |
'naics_description' => 'Lumber, Plywood, Millwork, and Wood Panel Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5031', | |
'sic_description' => 'Lumber, Plywood, and Millwork', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5031', | |
'sic_description' => 'Lumber, Plywood, and Millwork', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5031', | |
'sic_description' => 'Lumber, Plywood, and Millwork', | |
'naics_code' => '444110', | |
'naics_description' => 'Home Centers', | |
], | |
[ | |
'sic_code' => '5032', | |
'sic_description' => 'Brick, Stone, and Related Material', | |
'naics_code' => '423320', | |
'naics_description' => 'Brick, Stone, and Related Construction Material Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5032', | |
'sic_description' => 'Brick, Stone, and Related Material', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5032', | |
'sic_description' => 'Brick, Stone, and Related Material', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5032', | |
'sic_description' => 'Brick, Stone, and Related Material', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5033', | |
'sic_description' => 'Roofing, Siding, and Insulation', | |
'naics_code' => '423330', | |
'naics_description' => 'Roofing, Siding, and Insulation Material Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5033', | |
'sic_description' => 'Roofing, Siding, and Insulation', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5033', | |
'sic_description' => 'Roofing, Siding, and Insulation', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5033', | |
'sic_description' => 'Roofing, Siding, and Insulation', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5039', | |
'sic_description' => 'Construction Materials, Nec', | |
'naics_code' => '423310', | |
'naics_description' => 'Lumber, Plywood, Millwork, and Wood Panel Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5039', | |
'sic_description' => 'Construction Materials, Nec', | |
'naics_code' => '423390', | |
'naics_description' => 'Other Construction Material Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5039', | |
'sic_description' => 'Construction Materials, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5039', | |
'sic_description' => 'Construction Materials, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5039', | |
'sic_description' => 'Construction Materials, Nec', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5043', | |
'sic_description' => 'Photographic Equipment and Supplies', | |
'naics_code' => '423410', | |
'naics_description' => 'Photographic Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5043', | |
'sic_description' => 'Photographic Equipment and Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5043', | |
'sic_description' => 'Photographic Equipment and Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5044', | |
'sic_description' => 'Office Equipment', | |
'naics_code' => '423420', | |
'naics_description' => 'Office Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5044', | |
'sic_description' => 'Office Equipment', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5044', | |
'sic_description' => 'Office Equipment', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5044', | |
'sic_description' => 'Office Equipment', | |
'naics_code' => '453210', | |
'naics_description' => 'Office Supplies and Stationery Stores', | |
], | |
[ | |
'sic_code' => '5045', | |
'sic_description' => 'Computers, Peripherals, and Software', | |
'naics_code' => '423430', | |
'naics_description' => 'Computer and Computer Peripheral Equipment and Software Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5045', | |
'sic_description' => 'Computers, Peripherals, and Software', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5045', | |
'sic_description' => 'Computers, Peripherals, and Software', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5045', | |
'sic_description' => 'Computers, Peripherals, and Software', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5046', | |
'sic_description' => 'Commercial Equipment, Nec', | |
'naics_code' => '423440', | |
'naics_description' => 'Other Commercial Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5046', | |
'sic_description' => 'Commercial Equipment, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5046', | |
'sic_description' => 'Commercial Equipment, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5047', | |
'sic_description' => 'Medical and Hospital Equipment', | |
'naics_code' => '423450', | |
'naics_description' => 'Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5047', | |
'sic_description' => 'Medical and Hospital Equipment', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5047', | |
'sic_description' => 'Medical and Hospital Equipment', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5047', | |
'sic_description' => 'Medical and Hospital Equipment', | |
'naics_code' => '446199', | |
'naics_description' => 'All Other Health and Personal Care Stores', | |
], | |
[ | |
'sic_code' => '5048', | |
'sic_description' => 'Ophthalmic Goods', | |
'naics_code' => '423460', | |
'naics_description' => 'Ophthalmic Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5048', | |
'sic_description' => 'Ophthalmic Goods', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5048', | |
'sic_description' => 'Ophthalmic Goods', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5049', | |
'sic_description' => 'Professional Equipment, Nec', | |
'naics_code' => '423490', | |
'naics_description' => 'Other Professional Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5049', | |
'sic_description' => 'Professional Equipment, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5049', | |
'sic_description' => 'Professional Equipment, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5049', | |
'sic_description' => 'Professional Equipment, Nec', | |
'naics_code' => '453210', | |
'naics_description' => 'Office Supplies and Stationery Stores', | |
], | |
[ | |
'sic_code' => '5051', | |
'sic_description' => 'Metals Service Centers and Offices', | |
'naics_code' => '423510', | |
'naics_description' => 'Metal Service Centers and Other Metal Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5051', | |
'sic_description' => 'Metals Service Centers and Offices', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5051', | |
'sic_description' => 'Metals Service Centers and Offices', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5052', | |
'sic_description' => 'Coal and Other Minerals and Ores', | |
'naics_code' => '423520', | |
'naics_description' => 'Coal and Other Mineral and Ore Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5052', | |
'sic_description' => 'Coal and Other Minerals and Ores', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5052', | |
'sic_description' => 'Coal and Other Minerals and Ores', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5063', | |
'sic_description' => 'Electrical Apparatus and Equipment', | |
'naics_code' => '423610', | |
'naics_description' => 'Electrical Apparatus and Equipment, Wiring Supplies, and Related Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5063', | |
'sic_description' => 'Electrical Apparatus and Equipment', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5063', | |
'sic_description' => 'Electrical Apparatus and Equipment', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5063', | |
'sic_description' => 'Electrical Apparatus and Equipment', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '423620', | |
'naics_description' => 'Household Appliances, Electric Housewares, and Consumer Electronics Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '423720', | |
'naics_description' => 'Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '443141', | |
'naics_description' => 'Household Appliance Stores', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5064', | |
'sic_description' => 'Electrical Appliances, Television and Radio', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5065', | |
'sic_description' => 'Electronic Parts and Equipment, Nec', | |
'naics_code' => '423690', | |
'naics_description' => 'Other Electronic Parts and Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5065', | |
'sic_description' => 'Electronic Parts and Equipment, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5065', | |
'sic_description' => 'Electronic Parts and Equipment, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5065', | |
'sic_description' => 'Electronic Parts and Equipment, Nec', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5072', | |
'sic_description' => 'Hardware', | |
'naics_code' => '423710', | |
'naics_description' => 'Hardware Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5072', | |
'sic_description' => 'Hardware', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5072', | |
'sic_description' => 'Hardware', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5072', | |
'sic_description' => 'Hardware', | |
'naics_code' => '444130', | |
'naics_description' => 'Hardware Stores', | |
], | |
[ | |
'sic_code' => '5074', | |
'sic_description' => 'Plumbing and Hydronic Heating Supplies', | |
'naics_code' => '423620', | |
'naics_description' => 'Household Appliances, Electric Housewares, and Consumer Electronics Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5074', | |
'sic_description' => 'Plumbing and Hydronic Heating Supplies', | |
'naics_code' => '423720', | |
'naics_description' => 'Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5074', | |
'sic_description' => 'Plumbing and Hydronic Heating Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5074', | |
'sic_description' => 'Plumbing and Hydronic Heating Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5074', | |
'sic_description' => 'Plumbing and Hydronic Heating Supplies', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5075', | |
'sic_description' => 'Warm Air Heating and Air Conditioning', | |
'naics_code' => '423730', | |
'naics_description' => 'Warm Air Heating and Air-Conditioning Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5075', | |
'sic_description' => 'Warm Air Heating and Air Conditioning', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5075', | |
'sic_description' => 'Warm Air Heating and Air Conditioning', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5078', | |
'sic_description' => 'Refrigeration Equipment and Supplies', | |
'naics_code' => '423740', | |
'naics_description' => 'Refrigeration Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5078', | |
'sic_description' => 'Refrigeration Equipment and Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5078', | |
'sic_description' => 'Refrigeration Equipment and Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5082', | |
'sic_description' => 'Construction and Mining Machinery', | |
'naics_code' => '423810', | |
'naics_description' => 'Construction and Mining (except Oil Well) Machinery and Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5082', | |
'sic_description' => 'Construction and Mining Machinery', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5082', | |
'sic_description' => 'Construction and Mining Machinery', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5083', | |
'sic_description' => 'Farm and Garden Machinery', | |
'naics_code' => '423820', | |
'naics_description' => 'Farm and Garden Machinery and Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5083', | |
'sic_description' => 'Farm and Garden Machinery', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5083', | |
'sic_description' => 'Farm and Garden Machinery', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5083', | |
'sic_description' => 'Farm and Garden Machinery', | |
'naics_code' => '444210', | |
'naics_description' => 'Outdoor Power Equipment Stores', | |
], | |
[ | |
'sic_code' => '5084', | |
'sic_description' => 'Industrial Machinery and Equipment', | |
'naics_code' => '423830', | |
'naics_description' => 'Industrial Machinery and Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5084', | |
'sic_description' => 'Industrial Machinery and Equipment', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5084', | |
'sic_description' => 'Industrial Machinery and Equipment', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5085', | |
'sic_description' => 'Industrial Supplies', | |
'naics_code' => '423830', | |
'naics_description' => 'Industrial Machinery and Equipment Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5085', | |
'sic_description' => 'Industrial Supplies', | |
'naics_code' => '423840', | |
'naics_description' => 'Industrial Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5085', | |
'sic_description' => 'Industrial Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5085', | |
'sic_description' => 'Industrial Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5085', | |
'sic_description' => 'Industrial Supplies', | |
'naics_code' => '453998', | |
'naics_description' => 'All Other Miscellaneous Store Retailers (except Tobacco Stores)', | |
], | |
[ | |
'sic_code' => '5087', | |
'sic_description' => 'Service Establishment Equipment', | |
'naics_code' => '423850', | |
'naics_description' => 'Service Establishment Equipment and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5087', | |
'sic_description' => 'Service Establishment Equipment', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5087', | |
'sic_description' => 'Service Establishment Equipment', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5087', | |
'sic_description' => 'Service Establishment Equipment', | |
'naics_code' => '446120', | |
'naics_description' => 'Cosmetics, Beauty Supplies, and Perfume Stores', | |
], | |
[ | |
'sic_code' => '5088', | |
'sic_description' => 'Transportation Equipment and Supplies', | |
'naics_code' => '423860', | |
'naics_description' => 'Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5088', | |
'sic_description' => 'Transportation Equipment and Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5088', | |
'sic_description' => 'Transportation Equipment and Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5091', | |
'sic_description' => 'Sporting and Recreation Goods', | |
'naics_code' => '423910', | |
'naics_description' => 'Sporting and Recreational Goods and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5091', | |
'sic_description' => 'Sporting and Recreation Goods', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5091', | |
'sic_description' => 'Sporting and Recreation Goods', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5091', | |
'sic_description' => 'Sporting and Recreation Goods', | |
'naics_code' => '451110', | |
'naics_description' => 'Sporting Goods Stores', | |
], | |
[ | |
'sic_code' => '5092', | |
'sic_description' => 'Toys and Hobby Goods and Supplies', | |
'naics_code' => '423920', | |
'naics_description' => 'Toy and Hobby Goods and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5092', | |
'sic_description' => 'Toys and Hobby Goods and Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5092', | |
'sic_description' => 'Toys and Hobby Goods and Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5092', | |
'sic_description' => 'Toys and Hobby Goods and Supplies', | |
'naics_code' => '451120', | |
'naics_description' => 'Hobby, Toy, and Game Stores', | |
], | |
[ | |
'sic_code' => '5093', | |
'sic_description' => 'Scrap and Waste Materials', | |
'naics_code' => '423930', | |
'naics_description' => 'Recyclable Material Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5093', | |
'sic_description' => 'Scrap and Waste Materials', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5093', | |
'sic_description' => 'Scrap and Waste Materials', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5094', | |
'sic_description' => 'Jewelry and Precious Stones', | |
'naics_code' => '423940', | |
'naics_description' => 'Jewelry, Watch, Precious Stone, and Precious Metal Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5094', | |
'sic_description' => 'Jewelry and Precious Stones', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5094', | |
'sic_description' => 'Jewelry and Precious Stones', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5094', | |
'sic_description' => 'Jewelry and Precious Stones', | |
'naics_code' => '448310', | |
'naics_description' => 'Jewelry Stores', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '423990', | |
'naics_description' => 'Other Miscellaneous Durable Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '451110', | |
'naics_description' => 'Sporting Goods Stores', | |
], | |
[ | |
'sic_code' => '5099', | |
'sic_description' => 'Durable Goods, Nec', | |
'naics_code' => '451120', | |
'naics_description' => 'Hobby, Toy, and Game Stores', | |
], | |
[ | |
'sic_code' => '5111', | |
'sic_description' => 'Printing and Writing Paper', | |
'naics_code' => '424110', | |
'naics_description' => 'Printing and Writing Paper Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5111', | |
'sic_description' => 'Printing and Writing Paper', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5111', | |
'sic_description' => 'Printing and Writing Paper', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5111', | |
'sic_description' => 'Printing and Writing Paper', | |
'naics_code' => '453210', | |
'naics_description' => 'Office Supplies and Stationery Stores', | |
], | |
[ | |
'sic_code' => '5112', | |
'sic_description' => 'Stationery and Office Supplies', | |
'naics_code' => '424120', | |
'naics_description' => 'Stationery and Office Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5112', | |
'sic_description' => 'Stationery and Office Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5112', | |
'sic_description' => 'Stationery and Office Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5112', | |
'sic_description' => 'Stationery and Office Supplies', | |
'naics_code' => '453210', | |
'naics_description' => 'Office Supplies and Stationery Stores', | |
], | |
[ | |
'sic_code' => '5113', | |
'sic_description' => 'Industrial and Personal Service Paper', | |
'naics_code' => '424130', | |
'naics_description' => 'Industrial and Personal Service Paper Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5113', | |
'sic_description' => 'Industrial and Personal Service Paper', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5113', | |
'sic_description' => 'Industrial and Personal Service Paper', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5113', | |
'sic_description' => 'Industrial and Personal Service Paper', | |
'naics_code' => '453998', | |
'naics_description' => 'All Other Miscellaneous Store Retailers (except Tobacco Stores)', | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '424210', | |
'naics_description' => "Drugs and Druggists\' Sundries Merchant Wholesalers", | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '446110', | |
'naics_description' => 'Pharmacies and Drug Stores', | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '446120', | |
'naics_description' => 'Cosmetics, Beauty Supplies, and Perfume Stores', | |
], | |
[ | |
'sic_code' => '5122', | |
'sic_description' => 'Drugs, Proprietaries, and Sundries', | |
'naics_code' => '446191', | |
'naics_description' => 'Food (Health) Supplement Stores', | |
], | |
[ | |
'sic_code' => '5131', | |
'sic_description' => 'Piece Goods and Notions', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '5131', | |
'sic_description' => 'Piece Goods and Notions', | |
'naics_code' => '424310', | |
'naics_description' => 'Piece Goods, Notions, and Other Dry Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5131', | |
'sic_description' => 'Piece Goods and Notions', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5131', | |
'sic_description' => 'Piece Goods and Notions', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5131', | |
'sic_description' => 'Piece Goods and Notions', | |
'naics_code' => '451130', | |
'naics_description' => 'Sewing, Needlework, and Piece Goods Stores', | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '423910', | |
'naics_description' => 'Sporting and Recreational Goods and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '424320', | |
'naics_description' => "Men\'s and Boys\' Clothing and Furnishings Merchant Wholesalers", | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '448110', | |
'naics_description' => "Men\'s Clothing Stores", | |
], | |
[ | |
'sic_code' => '5136', | |
'sic_description' => "Men\'s and Boy\'s Clothing", | |
'naics_code' => '448190', | |
'naics_description' => 'Other Clothing Stores', | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '423910', | |
'naics_description' => 'Sporting and Recreational Goods and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '424330', | |
'naics_description' => "Women\'s, Children\'s, and Infants\' Clothing and Accessories Merchant Wholesalers", | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '448120', | |
'naics_description' => "Women\'s Clothing Stores", | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '448130', | |
'naics_description' => "Children\'s and Infants\' Clothing Stores", | |
], | |
[ | |
'sic_code' => '5137', | |
'sic_description' => "Women\'s and Children\'s Clothing", | |
'naics_code' => '448190', | |
'naics_description' => 'Other Clothing Stores', | |
], | |
[ | |
'sic_code' => '5139', | |
'sic_description' => 'Footwear', | |
'naics_code' => '424340', | |
'naics_description' => 'Footwear Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5139', | |
'sic_description' => 'Footwear', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5139', | |
'sic_description' => 'Footwear', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5139', | |
'sic_description' => 'Footwear', | |
'naics_code' => '448210', | |
'naics_description' => 'Shoe Stores', | |
], | |
[ | |
'sic_code' => '5141', | |
'sic_description' => 'Groceries, General Line', | |
'naics_code' => '424410', | |
'naics_description' => 'General Line Grocery Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5141', | |
'sic_description' => 'Groceries, General Line', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5141', | |
'sic_description' => 'Groceries, General Line', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5141', | |
'sic_description' => 'Groceries, General Line', | |
'naics_code' => '445110', | |
'naics_description' => 'Supermarkets and Other Grocery (except Convenience) Stores', | |
], | |
[ | |
'sic_code' => '5142', | |
'sic_description' => 'Packaged Frozen Goods', | |
'naics_code' => '424420', | |
'naics_description' => 'Packaged Frozen Food Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5142', | |
'sic_description' => 'Packaged Frozen Goods', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5142', | |
'sic_description' => 'Packaged Frozen Goods', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5142', | |
'sic_description' => 'Packaged Frozen Goods', | |
'naics_code' => '454390', | |
'naics_description' => 'Other Direct Selling Establishments', | |
], | |
[ | |
'sic_code' => '5143', | |
'sic_description' => 'Dairy Products, Except Dried or Canned', | |
'naics_code' => '424430', | |
'naics_description' => 'Dairy Product (except Dried or Canned) Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5143', | |
'sic_description' => 'Dairy Products, Except Dried or Canned', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5143', | |
'sic_description' => 'Dairy Products, Except Dried or Canned', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5143', | |
'sic_description' => 'Dairy Products, Except Dried or Canned', | |
'naics_code' => '445299', | |
'naics_description' => 'All Other Specialty Food Stores', | |
], | |
[ | |
'sic_code' => '5144', | |
'sic_description' => 'Poultry and Poultry Products', | |
'naics_code' => '424440', | |
'naics_description' => 'Poultry and Poultry Product Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5144', | |
'sic_description' => 'Poultry and Poultry Products', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5144', | |
'sic_description' => 'Poultry and Poultry Products', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5144', | |
'sic_description' => 'Poultry and Poultry Products', | |
'naics_code' => '445210', | |
'naics_description' => 'Meat Markets', | |
], | |
[ | |
'sic_code' => '5145', | |
'sic_description' => 'Confectionery', | |
'naics_code' => '424450', | |
'naics_description' => 'Confectionery Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5145', | |
'sic_description' => 'Confectionery', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5145', | |
'sic_description' => 'Confectionery', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5145', | |
'sic_description' => 'Confectionery', | |
'naics_code' => '445292', | |
'naics_description' => 'Confectionery and Nut Stores', | |
], | |
[ | |
'sic_code' => '5146', | |
'sic_description' => 'Fish and Seafoods', | |
'naics_code' => '424460', | |
'naics_description' => 'Fish and Seafood Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5146', | |
'sic_description' => 'Fish and Seafoods', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5146', | |
'sic_description' => 'Fish and Seafoods', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5146', | |
'sic_description' => 'Fish and Seafoods', | |
'naics_code' => '445220', | |
'naics_description' => 'Fish and Seafood Markets', | |
], | |
[ | |
'sic_code' => '5147', | |
'sic_description' => 'Meats and Meat Products', | |
'naics_code' => '311612', | |
'naics_description' => 'Meat Processed from Carcasses', | |
], | |
[ | |
'sic_code' => '5147', | |
'sic_description' => 'Meats and Meat Products', | |
'naics_code' => '424470', | |
'naics_description' => 'Meat and Meat Product Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5147', | |
'sic_description' => 'Meats and Meat Products', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5147', | |
'sic_description' => 'Meats and Meat Products', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5147', | |
'sic_description' => 'Meats and Meat Products', | |
'naics_code' => '445210', | |
'naics_description' => 'Meat Markets', | |
], | |
[ | |
'sic_code' => '5148', | |
'sic_description' => 'Fresh Fruits and Vegetables', | |
'naics_code' => '424480', | |
'naics_description' => 'Fresh Fruit and Vegetable Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5148', | |
'sic_description' => 'Fresh Fruits and Vegetables', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5148', | |
'sic_description' => 'Fresh Fruits and Vegetables', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5148', | |
'sic_description' => 'Fresh Fruits and Vegetables', | |
'naics_code' => '445230', | |
'naics_description' => 'Fruit and Vegetable Markets', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '312112', | |
'naics_description' => 'Bottled Water Manufacturing', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '424490', | |
'naics_description' => 'Other Grocery and Related Products Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '445299', | |
'naics_description' => 'All Other Specialty Food Stores', | |
], | |
[ | |
'sic_code' => '5149', | |
'sic_description' => 'Groceries and Related Products, Nec', | |
'naics_code' => '453910', | |
'naics_description' => 'Pet and Pet Supplies Stores', | |
], | |
[ | |
'sic_code' => '5153', | |
'sic_description' => 'Grain and Field Beans', | |
'naics_code' => '424510', | |
'naics_description' => 'Grain and Field Bean Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5153', | |
'sic_description' => 'Grain and Field Beans', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5153', | |
'sic_description' => 'Grain and Field Beans', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5153', | |
'sic_description' => 'Grain and Field Beans', | |
'naics_code' => '444220', | |
'naics_description' => 'Nursery, Garden Center, and Farm Supply Stores', | |
], | |
[ | |
'sic_code' => '5154', | |
'sic_description' => 'Livestock', | |
'naics_code' => '424520', | |
'naics_description' => 'Livestock Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5154', | |
'sic_description' => 'Livestock', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5154', | |
'sic_description' => 'Livestock', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5159', | |
'sic_description' => 'Farm-product Raw Materials, Nec', | |
'naics_code' => '424590', | |
'naics_description' => 'Other Farm Product Raw Material Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5159', | |
'sic_description' => 'Farm-product Raw Materials, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5159', | |
'sic_description' => 'Farm-product Raw Materials, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5159', | |
'sic_description' => 'Farm-product Raw Materials, Nec', | |
'naics_code' => '444220', | |
'naics_description' => 'Nursery, Garden Center, and Farm Supply Stores', | |
], | |
[ | |
'sic_code' => '5162', | |
'sic_description' => 'Plastics Materials and Basic Shapes', | |
'naics_code' => '424610', | |
'naics_description' => 'Plastics Materials and Basic Forms and Shapes Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5162', | |
'sic_description' => 'Plastics Materials and Basic Shapes', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5162', | |
'sic_description' => 'Plastics Materials and Basic Shapes', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5162', | |
'sic_description' => 'Plastics Materials and Basic Shapes', | |
'naics_code' => '453998', | |
'naics_description' => 'All Other Miscellaneous Store Retailers (except Tobacco Stores)', | |
], | |
[ | |
'sic_code' => '5169', | |
'sic_description' => 'Chemicals and Allied Products, Nec', | |
'naics_code' => '424690', | |
'naics_description' => 'Other Chemical and Allied Products Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5169', | |
'sic_description' => 'Chemicals and Allied Products, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5169', | |
'sic_description' => 'Chemicals and Allied Products, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5171', | |
'sic_description' => 'Petroleum Bulk Stations and Terminals', | |
'naics_code' => '424710', | |
'naics_description' => 'Petroleum Bulk Stations and Terminals', | |
], | |
[ | |
'sic_code' => '5171', | |
'sic_description' => 'Petroleum Bulk Stations and Terminals', | |
'naics_code' => '454310', | |
'naics_description' => 'Fuel Dealers', | |
], | |
[ | |
'sic_code' => '5172', | |
'sic_description' => 'Petroleum Products, Nec', | |
'naics_code' => '424720', | |
'naics_description' => 'Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)', | |
], | |
[ | |
'sic_code' => '5172', | |
'sic_description' => 'Petroleum Products, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5172', | |
'sic_description' => 'Petroleum Products, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5181', | |
'sic_description' => 'Beer and Ale', | |
'naics_code' => '424810', | |
'naics_description' => 'Beer and Ale Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5181', | |
'sic_description' => 'Beer and Ale', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5181', | |
'sic_description' => 'Beer and Ale', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5181', | |
'sic_description' => 'Beer and Ale', | |
'naics_code' => '445310', | |
'naics_description' => 'Beer, Wine, and Liquor Stores', | |
], | |
[ | |
'sic_code' => '5182', | |
'sic_description' => 'Wine and Distilled Beverages', | |
'naics_code' => '424820', | |
'naics_description' => 'Wine and Distilled Alcoholic Beverage Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5182', | |
'sic_description' => 'Wine and Distilled Beverages', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5182', | |
'sic_description' => 'Wine and Distilled Beverages', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5182', | |
'sic_description' => 'Wine and Distilled Beverages', | |
'naics_code' => '445310', | |
'naics_description' => 'Beer, Wine, and Liquor Stores', | |
], | |
[ | |
'sic_code' => '5191', | |
'sic_description' => 'Farm Supplies', | |
'naics_code' => '424910', | |
'naics_description' => 'Farm Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5191', | |
'sic_description' => 'Farm Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5191', | |
'sic_description' => 'Farm Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5191', | |
'sic_description' => 'Farm Supplies', | |
'naics_code' => '444220', | |
'naics_description' => 'Nursery, Garden Center, and Farm Supply Stores', | |
], | |
[ | |
'sic_code' => '5192', | |
'sic_description' => 'Books, Periodicals, and Newspapers', | |
'naics_code' => '424920', | |
'naics_description' => 'Book, Periodical, and Newspaper Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5192', | |
'sic_description' => 'Books, Periodicals, and Newspapers', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5192', | |
'sic_description' => 'Books, Periodicals, and Newspapers', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5192', | |
'sic_description' => 'Books, Periodicals, and Newspapers', | |
'naics_code' => '451211', | |
'naics_description' => 'Book Stores', | |
], | |
[ | |
'sic_code' => '5193', | |
'sic_description' => 'Flowers and Florists Supplies', | |
'naics_code' => '424930', | |
'naics_description' => "Flower, Nursery Stock, and Florists\' Supplies Merchant Wholesalers", | |
], | |
[ | |
'sic_code' => '5193', | |
'sic_description' => 'Flowers and Florists Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5193', | |
'sic_description' => 'Flowers and Florists Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5193', | |
'sic_description' => 'Flowers and Florists Supplies', | |
'naics_code' => '444220', | |
'naics_description' => 'Nursery, Garden Center, and Farm Supply Stores', | |
], | |
[ | |
'sic_code' => '5194', | |
'sic_description' => 'Tobacco and Tobacco Products', | |
'naics_code' => '424940', | |
'naics_description' => 'Tobacco and Tobacco Product Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5194', | |
'sic_description' => 'Tobacco and Tobacco Products', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5194', | |
'sic_description' => 'Tobacco and Tobacco Products', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5194', | |
'sic_description' => 'Tobacco and Tobacco Products', | |
'naics_code' => '453991', | |
'naics_description' => 'Tobacco Stores', | |
], | |
[ | |
'sic_code' => '5198', | |
'sic_description' => 'Paints, Varnishes, and Supplies', | |
'naics_code' => '424950', | |
'naics_description' => 'Paint, Varnish, and Supplies Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5198', | |
'sic_description' => 'Paints, Varnishes, and Supplies', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5198', | |
'sic_description' => 'Paints, Varnishes, and Supplies', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '424310', | |
'naics_description' => 'Piece Goods, Notions, and Other Dry Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '424340', | |
'naics_description' => 'Footwear Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '424610', | |
'naics_description' => 'Plastics Materials and Basic Forms and Shapes Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '424990', | |
'naics_description' => 'Other Miscellaneous Nondurable Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '425110', | |
'naics_description' => 'Business to Business Electronic Markets', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '453220', | |
'naics_description' => 'Gift, Novelty, and Souvenir Stores', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '453910', | |
'naics_description' => 'Pet and Pet Supplies Stores', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '453991', | |
'naics_description' => 'Tobacco Stores', | |
], | |
[ | |
'sic_code' => '5199', | |
'sic_description' => 'Nondurable Goods, Nec', | |
'naics_code' => '541890', | |
'naics_description' => 'Other Services Related to Advertising', | |
], | |
[ | |
'sic_code' => '5211', | |
'sic_description' => 'Lumber and Other Building Materials', | |
'naics_code' => '444110', | |
'naics_description' => 'Home Centers', | |
], | |
[ | |
'sic_code' => '5211', | |
'sic_description' => 'Lumber and Other Building Materials', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5231', | |
'sic_description' => 'Paint, Glass, and Wallpaper Stores', | |
'naics_code' => '444120', | |
'naics_description' => 'Paint and Wallpaper Stores', | |
], | |
[ | |
'sic_code' => '5231', | |
'sic_description' => 'Paint, Glass, and Wallpaper Stores', | |
'naics_code' => '444190', | |
'naics_description' => 'Other Building Material Dealers', | |
], | |
[ | |
'sic_code' => '5251', | |
'sic_description' => 'Hardware Stores', | |
'naics_code' => '444130', | |
'naics_description' => 'Hardware Stores', | |
], | |
[ | |
'sic_code' => '5261', | |
'sic_description' => 'Retail Nurseries and Garden Stores', | |
'naics_code' => '444210', | |
'naics_description' => 'Outdoor Power Equipment Stores', | |
], | |
[ | |
'sic_code' => '5261', | |
'sic_description' => 'Retail Nurseries and Garden Stores', | |
'naics_code' => '444220', | |
'naics_description' => 'Nursery, Garden Center, and Farm Supply Stores', | |
], | |
[ | |
'sic_code' => '5271', | |
'sic_description' => 'Mobile Home Dealers', | |
'naics_code' => '453930', | |
'naics_description' => 'Manufactured (Mobile) Home Dealers', | |
], | |
[ | |
'sic_code' => '5311', | |
'sic_description' => 'Department Stores', | |
'naics_code' => '452210', | |
'naics_description' => 'Department Stores', | |
], | |
[ | |
'sic_code' => '5311', | |
'sic_description' => 'Department Stores', | |
'naics_code' => '452311', | |
'naics_description' => 'Warehouse Clubs and Supercenters', | |
], | |
[ | |
'sic_code' => '5331', | |
'sic_description' => 'Variety Stores', | |
'naics_code' => '452319', | |
'naics_description' => 'All Other General Merchandise Stores', | |
], | |
[ | |
'sic_code' => '5399', | |
'sic_description' => 'Miscellaneous General Merchandise', | |
'naics_code' => '452210', | |
'naics_description' => 'Department Stores', | |
], | |
[ | |
'sic_code' => '5399', | |
'sic_description' => 'Miscellaneous General Merchandise', | |
'naics_code' => '452311', | |
'naics_description' => 'Warehouse Clubs and Supercenters', | |
], | |
[ | |
'sic_code' => '5399', | |
'sic_description' => 'Miscellaneous General Merchandise', | |
'naics_code' => '452319', | |
'naics_description' => 'All Other General Merchandise Stores', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '445110', | |
'naics_description' => 'Supermarkets and Other Grocery (except Convenience) Stores', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '445120', | |
'naics_description' => 'Convenience Stores', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '447110', | |
'naics_description' => 'Gasoline Stations with Convenience Stores', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '452210', | |
'naics_description' => 'Department Stores', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '452311', | |
'naics_description' => 'Warehouse Clubs and Supercenters', | |
], | |
[ | |
'sic_code' => '5411', | |
'sic_description' => 'Grocery Stores', | |
'naics_code' => '454390', | |
'naics_description' => 'Other Direct Selling Establishments', | |
], | |
[ | |
'sic_code' => '5421', | |
'sic_description' => 'Meat and Fish Markets', | |
'naics_code' => '445210', | |
'naics_description' => 'Meat Markets', | |
], | |
[ | |
'sic_code' => '5421', | |
'sic_description' => 'Meat and Fish Markets', | |
'naics_code' => '445220', | |
'naics_description' => 'Fish and Seafood Markets', | |
], | |
[ | |
'sic_code' => '5421', | |
'sic_description' => 'Meat and Fish Markets', | |
'naics_code' => '454390', | |
'naics_description' => 'Other Direct Selling Establishments', | |
], | |
[ | |
'sic_code' => '5431', | |
'sic_description' => 'Fruit and Vegetable Markets', | |
'naics_code' => '445230', | |
'naics_description' => 'Fruit and Vegetable Markets', | |
], | |
[ | |
'sic_code' => '5431', | |
'sic_description' => 'Fruit and Vegetable Markets', | |
'naics_code' => '454390', | |
'naics_description' => 'Other Direct Selling Establishments', | |
], | |
[ | |
'sic_code' => '5441', | |
'sic_description' => 'Candy, Nut, and Confectionery Stores', | |
'naics_code' => '311340', | |
'naics_description' => 'Nonchocolate Confectionery Manufacturing', | |
], | |
[ | |
'sic_code' => '5441', | |
'sic_description' => 'Candy, Nut, and Confectionery Stores', | |
'naics_code' => '311352', | |
'naics_description' => 'Confectionery Manufacturing from Purchased Chocolate', | |
], | |
[ | |
'sic_code' => '5441', | |
'sic_description' => 'Candy, Nut, and Confectionery Stores', | |
'naics_code' => '445292', | |
'naics_description' => 'Confectionery and Nut Stores', | |
], | |
[ | |
'sic_code' => '5451', | |
'sic_description' => 'Dairy Products Stores', | |
'naics_code' => '445299', | |
'naics_description' => 'All Other Specialty Food Stores', | |
], | |
[ | |
'sic_code' => '5461', | |
'sic_description' => 'Retail Bakeries', | |
'naics_code' => '311811', | |
'naics_description' => 'Retail Bakeries', | |
], | |
[ | |
'sic_code' => '5461', | |
'sic_description' => 'Retail Bakeries', | |
'naics_code' => '445291', | |
'naics_description' => 'Baked Goods Stores', | |
], | |
[ | |
'sic_code' => '5461', | |
'sic_description' => 'Retail Bakeries', | |
'naics_code' => '722515', | |
'naics_description' => 'Snack and Nonalcoholic Beverage Bars', | |
], | |
[ | |
'sic_code' => '5499', | |
'sic_description' => 'Miscellaneous Food Stores', | |
'naics_code' => '445210', | |
'naics_description' => 'Meat Markets', | |
], | |
[ | |
'sic_code' => '5499', | |
'sic_description' => 'Miscellaneous Food Stores', | |
'naics_code' => '445299', | |
'naics_description' => 'All Other Specialty Food Stores', | |
], | |
[ | |
'sic_code' => '5499', | |
'sic_description' => 'Miscellaneous Food Stores', | |
'naics_code' => '446191', | |
'naics_description' => 'Food (Health) Supplement Stores', | |
], | |
[ | |
'sic_code' => '5511', | |
'sic_description' => 'New and Used Car Dealers', | |
'naics_code' => '441110', | |
'naics_description' => 'New Car Dealers', | |
], | |
[ | |
'sic_code' => '5521', | |
'sic_description' => 'Used Car Dealers', | |
'naics_code' => '441120', | |
'naics_description' => 'Used Car Dealers', | |
], | |
[ | |
'sic_code' => '5531', | |
'sic_description' => 'Auto and Home Supply Stores', | |
'naics_code' => '441310', | |
'naics_description' => 'Automotive Parts and Accessories Stores', | |
], | |
[ | |
'sic_code' => '5531', | |
'sic_description' => 'Auto and Home Supply Stores', | |
'naics_code' => '441320', | |
'naics_description' => 'Tire Dealers', | |
], | |
[ | |
'sic_code' => '5531', | |
'sic_description' => 'Auto and Home Supply Stores', | |
'naics_code' => '452319', | |
'naics_description' => 'All Other General Merchandise Stores', | |
], | |
[ | |
'sic_code' => '5541', | |
'sic_description' => 'Gasoline Service Stations', | |
'naics_code' => '447110', | |
'naics_description' => 'Gasoline Stations with Convenience Stores', | |
], | |
[ | |
'sic_code' => '5541', | |
'sic_description' => 'Gasoline Service Stations', | |
'naics_code' => '447190', | |
'naics_description' => 'Other Gasoline Stations', | |
], | |
[ | |
'sic_code' => '5551', | |
'sic_description' => 'Boat Dealers', | |
'naics_code' => '441222', | |
'naics_description' => 'Boat Dealers', | |
], | |
[ | |
'sic_code' => '5561', | |
'sic_description' => 'Recreational Vehicle Dealers', | |
'naics_code' => '441210', | |
'naics_description' => 'Recreational Vehicle Dealers', | |
], | |
[ | |
'sic_code' => '5571', | |
'sic_description' => 'Motorcycle Dealers', | |
'naics_code' => '441228', | |
'naics_description' => 'Motorcycle, ATV, and All Other Motor Vehicle Dealers', | |
], | |
[ | |
'sic_code' => '5599', | |
'sic_description' => 'Automotive Dealers, Nec', | |
'naics_code' => '441228', | |
'naics_description' => 'Motorcycle, ATV, and All Other Motor Vehicle Dealers', | |
], | |
[ | |
'sic_code' => '5611', | |
'sic_description' => "Men\'s and Boys\' Clothing Stores", | |
'naics_code' => '448110', | |
'naics_description' => "Men\'s Clothing Stores", | |
], | |
[ | |
'sic_code' => '5611', | |
'sic_description' => "Men\'s and Boys\' Clothing Stores", | |
'naics_code' => '448150', | |
'naics_description' => 'Clothing Accessories Stores', | |
], | |
[ | |
'sic_code' => '5621', | |
'sic_description' => "Women\'s Clothing Stores", | |
'naics_code' => '448120', | |
'naics_description' => "Women\'s Clothing Stores", | |
], | |
[ | |
'sic_code' => '5621', | |
'sic_description' => "Women\'s Clothing Stores", | |
'naics_code' => '448190', | |
'naics_description' => 'Other Clothing Stores', | |
], | |
[ | |
'sic_code' => '5632', | |
'sic_description' => "Women\'s Accessory and Specialty Stores", | |
'naics_code' => '448150', | |
'naics_description' => 'Clothing Accessories Stores', | |
], | |
[ | |
'sic_code' => '5632', | |
'sic_description' => "Women\'s Accessory and Specialty Stores", | |
'naics_code' => '448190', | |
'naics_description' => 'Other Clothing Stores', | |
], | |
[ | |
'sic_code' => '5641', | |
'sic_description' => "Children\'s and Infants\' Wear Stores", | |
'naics_code' => '448130', | |
'naics_description' => "Children\'s and Infants\' Clothing Stores", | |
], | |
[ | |
'sic_code' => '5651', | |
'sic_description' => 'Family Clothing Stores', | |
'naics_code' => '448140', | |
'naics_description' => 'Family Clothing Stores', | |
], | |
[ | |
'sic_code' => '5661', | |
'sic_description' => 'Shoe Stores', | |
'naics_code' => '448210', | |
'naics_description' => 'Shoe Stores', | |
], | |
[ | |
'sic_code' => '5699', | |
'sic_description' => 'Miscellaneous Apparel and Accessories', | |
'naics_code' => '315220', | |
'naics_description' => "Men\'s and Boys\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '5699', | |
'sic_description' => 'Miscellaneous Apparel and Accessories', | |
'naics_code' => '315240', | |
'naics_description' => "Women\'s, Girls\', and Infants\' Cut and Sew Apparel Manufacturing", | |
], | |
[ | |
'sic_code' => '5699', | |
'sic_description' => 'Miscellaneous Apparel and Accessories', | |
'naics_code' => '448150', | |
'naics_description' => 'Clothing Accessories Stores', | |
], | |
[ | |
'sic_code' => '5699', | |
'sic_description' => 'Miscellaneous Apparel and Accessories', | |
'naics_code' => '448190', | |
'naics_description' => 'Other Clothing Stores', | |
], | |
[ | |
'sic_code' => '5712', | |
'sic_description' => 'Furniture Stores', | |
'naics_code' => '337110', | |
'naics_description' => 'Wood Kitchen Cabinet and Countertop Manufacturing', | |
], | |
[ | |
'sic_code' => '5712', | |
'sic_description' => 'Furniture Stores', | |
'naics_code' => '337121', | |
'naics_description' => 'Upholstered Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '5712', | |
'sic_description' => 'Furniture Stores', | |
'naics_code' => '337122', | |
'naics_description' => 'Nonupholstered Wood Household Furniture Manufacturing', | |
], | |
[ | |
'sic_code' => '5712', | |
'sic_description' => 'Furniture Stores', | |
'naics_code' => '442110', | |
'naics_description' => 'Furniture Stores', | |
], | |
[ | |
'sic_code' => '5713', | |
'sic_description' => 'Floor Covering Stores', | |
'naics_code' => '442210', | |
'naics_description' => 'Floor Covering Stores', | |
], | |
[ | |
'sic_code' => '5714', | |
'sic_description' => 'Drapery and Upholstery Stores', | |
'naics_code' => '314120', | |
'naics_description' => 'Curtain and Linen Mills', | |
], | |
[ | |
'sic_code' => '5714', | |
'sic_description' => 'Drapery and Upholstery Stores', | |
'naics_code' => '442291', | |
'naics_description' => 'Window Treatment Stores', | |
], | |
[ | |
'sic_code' => '5714', | |
'sic_description' => 'Drapery and Upholstery Stores', | |
'naics_code' => '451130', | |
'naics_description' => 'Sewing, Needlework, and Piece Goods Stores', | |
], | |
[ | |
'sic_code' => '5719', | |
'sic_description' => 'Miscellaneous Homefurnishings', | |
'naics_code' => '327110', | |
'naics_description' => 'Pottery, Ceramics, and Plumbing Fixture Manufacturing', | |
], | |
[ | |
'sic_code' => '5719', | |
'sic_description' => 'Miscellaneous Homefurnishings', | |
'naics_code' => '442291', | |
'naics_description' => 'Window Treatment Stores', | |
], | |
[ | |
'sic_code' => '5719', | |
'sic_description' => 'Miscellaneous Homefurnishings', | |
'naics_code' => '442299', | |
'naics_description' => 'All Other Home Furnishings Stores', | |
], | |
[ | |
'sic_code' => '5722', | |
'sic_description' => 'Household Appliance Stores', | |
'naics_code' => '443141', | |
'naics_description' => 'Household Appliance Stores', | |
], | |
[ | |
'sic_code' => '5731', | |
'sic_description' => 'Radio, Television, and Electronic Stores', | |
'naics_code' => '441310', | |
'naics_description' => 'Automotive Parts and Accessories Stores', | |
], | |
[ | |
'sic_code' => '5731', | |
'sic_description' => 'Radio, Television, and Electronic Stores', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5734', | |
'sic_description' => 'Computer and Software Stores', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5735', | |
'sic_description' => 'Record and Prerecorded Tape Stores', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5736', | |
'sic_description' => 'Musical Instrument Stores', | |
'naics_code' => '451140', | |
'naics_description' => 'Musical Instrument and Supplies Stores', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '711110', | |
'naics_description' => 'Theater Companies and Dinner Theaters', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722310', | |
'naics_description' => 'Food Service Contractors', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722320', | |
'naics_description' => 'Caterers', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722511', | |
'naics_description' => 'Full-Service Restaurants', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722513', | |
'naics_description' => 'Limited-Service Restaurants', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722514', | |
'naics_description' => 'Cafeterias, Grill Buffets, and Buffets', | |
], | |
[ | |
'sic_code' => '5812', | |
'sic_description' => 'Eating Places', | |
'naics_code' => '722515', | |
'naics_description' => 'Snack and Nonalcoholic Beverage Bars', | |
], | |
[ | |
'sic_code' => '5813', | |
'sic_description' => 'Drinking Places', | |
'naics_code' => '722410', | |
'naics_description' => 'Drinking Places (Alcoholic Beverages)', | |
], | |
[ | |
'sic_code' => '5912', | |
'sic_description' => 'Drug Stores and Proprietary Stores', | |
'naics_code' => '446110', | |
'naics_description' => 'Pharmacies and Drug Stores', | |
], | |
[ | |
'sic_code' => '5921', | |
'sic_description' => 'Liquor Stores', | |
'naics_code' => '445310', | |
'naics_description' => 'Beer, Wine, and Liquor Stores', | |
], | |
[ | |
'sic_code' => '5932', | |
'sic_description' => 'Used Merchandise Stores', | |
'naics_code' => '453310', | |
'naics_description' => 'Used Merchandise Stores', | |
], | |
[ | |
'sic_code' => '5932', | |
'sic_description' => 'Used Merchandise Stores', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '5941', | |
'sic_description' => 'Sporting Goods and Bicycle Shops', | |
'naics_code' => '451110', | |
'naics_description' => 'Sporting Goods Stores', | |
], | |
[ | |
'sic_code' => '5942', | |
'sic_description' => 'Book Stores', | |
'naics_code' => '451211', | |
'naics_description' => 'Book Stores', | |
], | |
[ | |
'sic_code' => '5943', | |
'sic_description' => 'Stationery Stores', | |
'naics_code' => '453210', | |
'naics_description' => 'Office Supplies and Stationery Stores', | |
], | |
[ | |
'sic_code' => '5944', | |
'sic_description' => 'Jewelry Stores', | |
'naics_code' => '448310', | |
'naics_description' => 'Jewelry Stores', | |
], | |
[ | |
'sic_code' => '5945', | |
'sic_description' => 'Hobby, Toy, and Game Shops', | |
'naics_code' => '451120', | |
'naics_description' => 'Hobby, Toy, and Game Stores', | |
], | |
[ | |
'sic_code' => '5946', | |
'sic_description' => 'Camera and Photographic Supply Stores', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5947', | |
'sic_description' => 'Gift, Novelty, and Souvenir Shop', | |
'naics_code' => '453220', | |
'naics_description' => 'Gift, Novelty, and Souvenir Stores', | |
], | |
[ | |
'sic_code' => '5948', | |
'sic_description' => 'Luggage and Leather Goods Stores', | |
'naics_code' => '448320', | |
'naics_description' => 'Luggage and Leather Goods Stores', | |
], | |
[ | |
'sic_code' => '5949', | |
'sic_description' => 'Sewing, Needlework, and Piece Goods', | |
'naics_code' => '451130', | |
'naics_description' => 'Sewing, Needlework, and Piece Goods Stores', | |
], | |
[ | |
'sic_code' => '5961', | |
'sic_description' => 'Catalog and Mail-order Houses', | |
'naics_code' => '454110', | |
'naics_description' => 'Electronic Shopping and Mail-Order Houses', | |
], | |
[ | |
'sic_code' => '5962', | |
'sic_description' => 'Merchandising Machine Operators', | |
'naics_code' => '454210', | |
'naics_description' => 'Vending Machine Operators', | |
], | |
[ | |
'sic_code' => '5963', | |
'sic_description' => 'Direct Selling Establishments', | |
'naics_code' => '454390', | |
'naics_description' => 'Other Direct Selling Establishments', | |
], | |
[ | |
'sic_code' => '5963', | |
'sic_description' => 'Direct Selling Establishments', | |
'naics_code' => '722330', | |
'naics_description' => 'Mobile Food Services', | |
], | |
[ | |
'sic_code' => '5983', | |
'sic_description' => 'Fuel Oil Dealers', | |
'naics_code' => '454310', | |
'naics_description' => 'Fuel Dealers', | |
], | |
[ | |
'sic_code' => '5984', | |
'sic_description' => 'Liquefied Petroleum Gas Dealers', | |
'naics_code' => '454310', | |
'naics_description' => 'Fuel Dealers', | |
], | |
[ | |
'sic_code' => '5989', | |
'sic_description' => 'Fuel Dealers, Nec', | |
'naics_code' => '454310', | |
'naics_description' => 'Fuel Dealers', | |
], | |
[ | |
'sic_code' => '5992', | |
'sic_description' => 'Florists', | |
'naics_code' => '453110', | |
'naics_description' => 'Florists', | |
], | |
[ | |
'sic_code' => '5993', | |
'sic_description' => 'Tobacco Stores and Stands', | |
'naics_code' => '453991', | |
'naics_description' => 'Tobacco Stores', | |
], | |
[ | |
'sic_code' => '5994', | |
'sic_description' => 'News Dealers and Newsstands', | |
'naics_code' => '451212', | |
'naics_description' => 'News Dealers and Newsstands', | |
], | |
[ | |
'sic_code' => '5995', | |
'sic_description' => 'Optical Goods Stores', | |
'naics_code' => '339115', | |
'naics_description' => 'Ophthalmic Goods Manufacturing', | |
], | |
[ | |
'sic_code' => '5995', | |
'sic_description' => 'Optical Goods Stores', | |
'naics_code' => '446130', | |
'naics_description' => 'Optical Goods Stores', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '339113', | |
'naics_description' => 'Surgical Appliance and Supplies Manufacturing', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '446120', | |
'naics_description' => 'Cosmetics, Beauty Supplies, and Perfume Stores', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '446199', | |
'naics_description' => 'All Other Health and Personal Care Stores', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '453910', | |
'naics_description' => 'Pet and Pet Supplies Stores', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '453920', | |
'naics_description' => 'Art Dealers', | |
], | |
[ | |
'sic_code' => '5999', | |
'sic_description' => 'Miscellaneous Retail Stores, Nec', | |
'naics_code' => '453998', | |
'naics_description' => 'All Other Miscellaneous Store Retailers (except Tobacco Stores)', | |
], | |
[ | |
'sic_code' => '6011', | |
'sic_description' => 'Federal Reserve Banks', | |
'naics_code' => '521110', | |
'naics_description' => 'Monetary Authorities-Central Bank', | |
], | |
[ | |
'sic_code' => '6019', | |
'sic_description' => 'Central Reserve Depository, Nec', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6021', | |
'sic_description' => 'National Commercial Banks', | |
'naics_code' => '522110', | |
'naics_description' => 'Commercial Banking', | |
], | |
[ | |
'sic_code' => '6021', | |
'sic_description' => 'National Commercial Banks', | |
'naics_code' => '522210', | |
'naics_description' => 'Credit Card Issuing', | |
], | |
[ | |
'sic_code' => '6022', | |
'sic_description' => 'State Commercial Banks', | |
'naics_code' => '522110', | |
'naics_description' => 'Commercial Banking', | |
], | |
[ | |
'sic_code' => '6022', | |
'sic_description' => 'State Commercial Banks', | |
'naics_code' => '522190', | |
'naics_description' => 'Other Depository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6022', | |
'sic_description' => 'State Commercial Banks', | |
'naics_code' => '522210', | |
'naics_description' => 'Credit Card Issuing', | |
], | |
[ | |
'sic_code' => '6029', | |
'sic_description' => 'Commercial Banks, Nec', | |
'naics_code' => '522110', | |
'naics_description' => 'Commercial Banking', | |
], | |
[ | |
'sic_code' => '6035', | |
'sic_description' => 'Federal Savings Institutions', | |
'naics_code' => '522120', | |
'naics_description' => 'Savings Institutions', | |
], | |
[ | |
'sic_code' => '6036', | |
'sic_description' => 'Savings Institutions, Except Federal', | |
'naics_code' => '522120', | |
'naics_description' => 'Savings Institutions', | |
], | |
[ | |
'sic_code' => '6061', | |
'sic_description' => 'Federal Credit Unions', | |
'naics_code' => '522130', | |
'naics_description' => 'Credit Unions', | |
], | |
[ | |
'sic_code' => '6062', | |
'sic_description' => 'State Credit Unions', | |
'naics_code' => '522130', | |
'naics_description' => 'Credit Unions', | |
], | |
[ | |
'sic_code' => '6081', | |
'sic_description' => 'Foreign Bank and Branches and Agencies', | |
'naics_code' => '522110', | |
'naics_description' => 'Commercial Banking', | |
], | |
[ | |
'sic_code' => '6081', | |
'sic_description' => 'Foreign Bank and Branches and Agencies', | |
'naics_code' => '522293', | |
'naics_description' => 'International Trade Financing', | |
], | |
[ | |
'sic_code' => '6081', | |
'sic_description' => 'Foreign Bank and Branches and Agencies', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6082', | |
'sic_description' => 'Foreign Trade and International Banks', | |
'naics_code' => '522293', | |
'naics_description' => 'International Trade Financing', | |
], | |
[ | |
'sic_code' => '6082', | |
'sic_description' => 'Foreign Trade and International Banks', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6091', | |
'sic_description' => 'Nondeposit Trust Facilities', | |
'naics_code' => '523991', | |
'naics_description' => 'Trust, Fiduciary, and Custody Activities', | |
], | |
[ | |
'sic_code' => '6099', | |
'sic_description' => 'Functions Related To Depository Banking', | |
'naics_code' => '522320', | |
'naics_description' => 'Financial Transactions Processing, Reserve, and Clearinghouse Activities', | |
], | |
[ | |
'sic_code' => '6099', | |
'sic_description' => 'Functions Related To Depository Banking', | |
'naics_code' => '522390', | |
'naics_description' => 'Other Activities Related to Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6099', | |
'sic_description' => 'Functions Related To Depository Banking', | |
'naics_code' => '523130', | |
'naics_description' => 'Commodity Contracts Dealing', | |
], | |
[ | |
'sic_code' => '6099', | |
'sic_description' => 'Functions Related To Depository Banking', | |
'naics_code' => '523991', | |
'naics_description' => 'Trust, Fiduciary, and Custody Activities', | |
], | |
[ | |
'sic_code' => '6111', | |
'sic_description' => 'Federal and Federally Sponsored Credit', | |
'naics_code' => '522292', | |
'naics_description' => 'Real Estate Credit', | |
], | |
[ | |
'sic_code' => '6111', | |
'sic_description' => 'Federal and Federally Sponsored Credit', | |
'naics_code' => '522293', | |
'naics_description' => 'International Trade Financing', | |
], | |
[ | |
'sic_code' => '6111', | |
'sic_description' => 'Federal and Federally Sponsored Credit', | |
'naics_code' => '522294', | |
'naics_description' => 'Secondary Market Financing', | |
], | |
[ | |
'sic_code' => '6111', | |
'sic_description' => 'Federal and Federally Sponsored Credit', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6141', | |
'sic_description' => 'Personal Credit Institutions', | |
'naics_code' => '522210', | |
'naics_description' => 'Credit Card Issuing', | |
], | |
[ | |
'sic_code' => '6141', | |
'sic_description' => 'Personal Credit Institutions', | |
'naics_code' => '522220', | |
'naics_description' => 'Sales Financing', | |
], | |
[ | |
'sic_code' => '6141', | |
'sic_description' => 'Personal Credit Institutions', | |
'naics_code' => '522291', | |
'naics_description' => 'Consumer Lending', | |
], | |
[ | |
'sic_code' => '6141', | |
'sic_description' => 'Personal Credit Institutions', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6153', | |
'sic_description' => 'Short-term Business Credit', | |
'naics_code' => '522210', | |
'naics_description' => 'Credit Card Issuing', | |
], | |
[ | |
'sic_code' => '6153', | |
'sic_description' => 'Short-term Business Credit', | |
'naics_code' => '522220', | |
'naics_description' => 'Sales Financing', | |
], | |
[ | |
'sic_code' => '6153', | |
'sic_description' => 'Short-term Business Credit', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6153', | |
'sic_description' => 'Short-term Business Credit', | |
'naics_code' => '522320', | |
'naics_description' => 'Financial Transactions Processing, Reserve, and Clearinghouse Activities', | |
], | |
[ | |
'sic_code' => '6153', | |
'sic_description' => 'Short-term Business Credit', | |
'naics_code' => '523910', | |
'naics_description' => 'Miscellaneous Intermediation', | |
], | |
[ | |
'sic_code' => '6159', | |
'sic_description' => 'Miscellaneous Business Credit', | |
'naics_code' => '522220', | |
'naics_description' => 'Sales Financing', | |
], | |
[ | |
'sic_code' => '6159', | |
'sic_description' => 'Miscellaneous Business Credit', | |
'naics_code' => '522292', | |
'naics_description' => 'Real Estate Credit', | |
], | |
[ | |
'sic_code' => '6159', | |
'sic_description' => 'Miscellaneous Business Credit', | |
'naics_code' => '522293', | |
'naics_description' => 'International Trade Financing', | |
], | |
[ | |
'sic_code' => '6159', | |
'sic_description' => 'Miscellaneous Business Credit', | |
'naics_code' => '522294', | |
'naics_description' => 'Secondary Market Financing', | |
], | |
[ | |
'sic_code' => '6159', | |
'sic_description' => 'Miscellaneous Business Credit', | |
'naics_code' => '522298', | |
'naics_description' => 'All Other Nondepository Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6162', | |
'sic_description' => 'Mortgage Bankers and Correspondents', | |
'naics_code' => '522292', | |
'naics_description' => 'Real Estate Credit', | |
], | |
[ | |
'sic_code' => '6162', | |
'sic_description' => 'Mortgage Bankers and Correspondents', | |
'naics_code' => '522390', | |
'naics_description' => 'Other Activities Related to Credit Intermediation', | |
], | |
[ | |
'sic_code' => '6163', | |
'sic_description' => 'Loan Brokers', | |
'naics_code' => '522310', | |
'naics_description' => 'Mortgage and Nonmortgage Loan Brokers', | |
], | |
[ | |
'sic_code' => '6211', | |
'sic_description' => 'Security Brokers and Dealers', | |
'naics_code' => '523110', | |
'naics_description' => 'Investment Banking and Securities Dealing', | |
], | |
[ | |
'sic_code' => '6211', | |
'sic_description' => 'Security Brokers and Dealers', | |
'naics_code' => '523120', | |
'naics_description' => 'Securities Brokerage', | |
], | |
[ | |
'sic_code' => '6211', | |
'sic_description' => 'Security Brokers and Dealers', | |
'naics_code' => '523910', | |
'naics_description' => 'Miscellaneous Intermediation', | |
], | |
[ | |
'sic_code' => '6211', | |
'sic_description' => 'Security Brokers and Dealers', | |
'naics_code' => '523999', | |
'naics_description' => 'Miscellaneous Financial Investment Activities', | |
], | |
[ | |
'sic_code' => '6221', | |
'sic_description' => 'Commodity Contracts Brokers, Dealers', | |
'naics_code' => '523130', | |
'naics_description' => 'Commodity Contracts Dealing', | |
], | |
[ | |
'sic_code' => '6221', | |
'sic_description' => 'Commodity Contracts Brokers, Dealers', | |
'naics_code' => '523140', | |
'naics_description' => 'Commodity Contracts Brokerage', | |
], | |
[ | |
'sic_code' => '6231', | |
'sic_description' => 'Security and Commodity Exchanges', | |
'naics_code' => '523210', | |
'naics_description' => 'Securities and Commodity Exchanges', | |
], | |
[ | |
'sic_code' => '6282', | |
'sic_description' => 'Investment Advice', | |
'naics_code' => '523920', | |
'naics_description' => 'Portfolio Management', | |
], | |
[ | |
'sic_code' => '6282', | |
'sic_description' => 'Investment Advice', | |
'naics_code' => '523930', | |
'naics_description' => 'Investment Advice', | |
], | |
[ | |
'sic_code' => '6289', | |
'sic_description' => 'Security and Commodity Service', | |
'naics_code' => '523991', | |
'naics_description' => 'Trust, Fiduciary, and Custody Activities', | |
], | |
[ | |
'sic_code' => '6289', | |
'sic_description' => 'Security and Commodity Service', | |
'naics_code' => '523999', | |
'naics_description' => 'Miscellaneous Financial Investment Activities', | |
], | |
[ | |
'sic_code' => '6311', | |
'sic_description' => 'Life Insurance', | |
'naics_code' => '524113', | |
'naics_description' => 'Direct Life Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6311', | |
'sic_description' => 'Life Insurance', | |
'naics_code' => '524128', | |
'naics_description' => 'Other Direct Insurance (except Life, Health, and Medical) Carriers', | |
], | |
[ | |
'sic_code' => '6311', | |
'sic_description' => 'Life Insurance', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6321', | |
'sic_description' => 'Accident and Health Insurance', | |
'naics_code' => '524113', | |
'naics_description' => 'Direct Life Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6321', | |
'sic_description' => 'Accident and Health Insurance', | |
'naics_code' => '524114', | |
'naics_description' => 'Direct Health and Medical Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6321', | |
'sic_description' => 'Accident and Health Insurance', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6321', | |
'sic_description' => 'Accident and Health Insurance', | |
'naics_code' => '525190', | |
'naics_description' => 'Other Insurance Funds', | |
], | |
[ | |
'sic_code' => '6324', | |
'sic_description' => 'Hospital and Medical Service Plans', | |
'naics_code' => '524114', | |
'naics_description' => 'Direct Health and Medical Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6324', | |
'sic_description' => 'Hospital and Medical Service Plans', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6324', | |
'sic_description' => 'Hospital and Medical Service Plans', | |
'naics_code' => '525190', | |
'naics_description' => 'Other Insurance Funds', | |
], | |
[ | |
'sic_code' => '6331', | |
'sic_description' => 'Fire, Marine, and Casualty Insurance', | |
'naics_code' => '524126', | |
'naics_description' => 'Direct Property and Casualty Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6331', | |
'sic_description' => 'Fire, Marine, and Casualty Insurance', | |
'naics_code' => '524128', | |
'naics_description' => 'Other Direct Insurance (except Life, Health, and Medical) Carriers', | |
], | |
[ | |
'sic_code' => '6331', | |
'sic_description' => 'Fire, Marine, and Casualty Insurance', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6331', | |
'sic_description' => 'Fire, Marine, and Casualty Insurance', | |
'naics_code' => '525190', | |
'naics_description' => 'Other Insurance Funds', | |
], | |
[ | |
'sic_code' => '6351', | |
'sic_description' => 'Surety Insurance', | |
'naics_code' => '524126', | |
'naics_description' => 'Direct Property and Casualty Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6351', | |
'sic_description' => 'Surety Insurance', | |
'naics_code' => '524128', | |
'naics_description' => 'Other Direct Insurance (except Life, Health, and Medical) Carriers', | |
], | |
[ | |
'sic_code' => '6351', | |
'sic_description' => 'Surety Insurance', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6361', | |
'sic_description' => 'Title Insurance', | |
'naics_code' => '524127', | |
'naics_description' => 'Direct Title Insurance Carriers', | |
], | |
[ | |
'sic_code' => '6361', | |
'sic_description' => 'Title Insurance', | |
'naics_code' => '524130', | |
'naics_description' => 'Reinsurance Carriers', | |
], | |
[ | |
'sic_code' => '6371', | |
'sic_description' => 'Pension, Health, and Welfare Funds', | |
'naics_code' => '523920', | |
'naics_description' => 'Portfolio Management', | |
], | |
[ | |
'sic_code' => '6371', | |
'sic_description' => 'Pension, Health, and Welfare Funds', | |
'naics_code' => '524292', | |
'naics_description' => 'Third Party Administration of Insurance and Pension Funds', | |
], | |
[ | |
'sic_code' => '6371', | |
'sic_description' => 'Pension, Health, and Welfare Funds', | |
'naics_code' => '525110', | |
'naics_description' => 'Pension Funds', | |
], | |
[ | |
'sic_code' => '6371', | |
'sic_description' => 'Pension, Health, and Welfare Funds', | |
'naics_code' => '525120', | |
'naics_description' => 'Health and Welfare Funds', | |
], | |
[ | |
'sic_code' => '6371', | |
'sic_description' => 'Pension, Health, and Welfare Funds', | |
'naics_code' => '525990', | |
'naics_description' => 'Other Financial Vehicles', | |
], | |
[ | |
'sic_code' => '6399', | |
'sic_description' => 'Insurance Carriers, Nec', | |
'naics_code' => '524128', | |
'naics_description' => 'Other Direct Insurance (except Life, Health, and Medical) Carriers', | |
], | |
[ | |
'sic_code' => '6411', | |
'sic_description' => 'Insurance Agents, Brokers, and Service', | |
'naics_code' => '524210', | |
'naics_description' => 'Insurance Agencies and Brokerages', | |
], | |
[ | |
'sic_code' => '6411', | |
'sic_description' => 'Insurance Agents, Brokers, and Service', | |
'naics_code' => '524291', | |
'naics_description' => 'Claims Adjusting', | |
], | |
[ | |
'sic_code' => '6411', | |
'sic_description' => 'Insurance Agents, Brokers, and Service', | |
'naics_code' => '524292', | |
'naics_description' => 'Third Party Administration of Insurance and Pension Funds', | |
], | |
[ | |
'sic_code' => '6411', | |
'sic_description' => 'Insurance Agents, Brokers, and Service', | |
'naics_code' => '524298', | |
'naics_description' => 'All Other Insurance Related Activities', | |
], | |
[ | |
'sic_code' => '6512', | |
'sic_description' => 'Nonresidential Building Operators', | |
'naics_code' => '531120', | |
'naics_description' => 'Lessors of Nonresidential Buildings (except Miniwarehouses)', | |
], | |
[ | |
'sic_code' => '6512', | |
'sic_description' => 'Nonresidential Building Operators', | |
'naics_code' => '711310', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events with Facilities', | |
], | |
[ | |
'sic_code' => '6513', | |
'sic_description' => 'Apartment Building Operators', | |
'naics_code' => '531110', | |
'naics_description' => 'Lessors of Residential Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '6514', | |
'sic_description' => 'Dwelling Operators, Except Apartments', | |
'naics_code' => '531110', | |
'naics_description' => 'Lessors of Residential Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '6515', | |
'sic_description' => 'Mobile Home Site Operators', | |
'naics_code' => '531190', | |
'naics_description' => 'Lessors of Other Real Estate Property', | |
], | |
[ | |
'sic_code' => '6517', | |
'sic_description' => 'Railroad Property Lessors', | |
'naics_code' => '531190', | |
'naics_description' => 'Lessors of Other Real Estate Property', | |
], | |
[ | |
'sic_code' => '6519', | |
'sic_description' => 'Real Property Lessors, Nec', | |
'naics_code' => '531190', | |
'naics_description' => 'Lessors of Other Real Estate Property', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531110', | |
'naics_description' => 'Lessors of Residential Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531210', | |
'naics_description' => 'Offices of Real Estate Agents and Brokers', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531311', | |
'naics_description' => 'Residential Property Managers', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531312', | |
'naics_description' => 'Nonresidential Property Managers', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531320', | |
'naics_description' => 'Offices of Real Estate Appraisers', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '531390', | |
'naics_description' => 'Other Activities Related to Real Estate', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '812220', | |
'naics_description' => 'Cemeteries and Crematories', | |
], | |
[ | |
'sic_code' => '6531', | |
'sic_description' => 'Real Estate Agents and Managers', | |
'naics_code' => '813990', | |
'naics_description' => 'Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)', | |
], | |
[ | |
'sic_code' => '6541', | |
'sic_description' => 'Title abstract Offices', | |
'naics_code' => '541191', | |
'naics_description' => 'Title Abstract and Settlement Offices', | |
], | |
[ | |
'sic_code' => '6552', | |
'sic_description' => 'Subdividers and Developers, Nec', | |
'naics_code' => '237210', | |
'naics_description' => 'Land Subdivision', | |
], | |
[ | |
'sic_code' => '6553', | |
'sic_description' => 'Cemetery Subdividers and Developers', | |
'naics_code' => '812220', | |
'naics_description' => 'Cemeteries and Crematories', | |
], | |
[ | |
'sic_code' => '6712', | |
'sic_description' => 'Bank Holding Companies', | |
'naics_code' => '551111', | |
'naics_description' => 'Offices of Bank Holding Companies', | |
], | |
[ | |
'sic_code' => '6719', | |
'sic_description' => 'Holding Companies, Nec', | |
'naics_code' => '551112', | |
'naics_description' => 'Offices of Other Holding Companies', | |
], | |
[ | |
'sic_code' => '6722', | |
'sic_description' => 'Management Investment, Open-ended', | |
'naics_code' => '525910', | |
'naics_description' => 'Open-End Investment Funds', | |
], | |
[ | |
'sic_code' => '6726', | |
'sic_description' => 'Investment Offices, Nec', | |
'naics_code' => '525990', | |
'naics_description' => 'Other Financial Vehicles', | |
], | |
[ | |
'sic_code' => '6732', | |
'sic_description' => 'Trusts: Educational, Religious, Etc.', | |
'naics_code' => '813211', | |
'naics_description' => 'Grantmaking Foundations', | |
], | |
[ | |
'sic_code' => '6733', | |
'sic_description' => 'Trusts, Nec', | |
'naics_code' => '523920', | |
'naics_description' => 'Portfolio Management', | |
], | |
[ | |
'sic_code' => '6733', | |
'sic_description' => 'Trusts, Nec', | |
'naics_code' => '523991', | |
'naics_description' => 'Trust, Fiduciary, and Custody Activities', | |
], | |
[ | |
'sic_code' => '6733', | |
'sic_description' => 'Trusts, Nec', | |
'naics_code' => '525190', | |
'naics_description' => 'Other Insurance Funds', | |
], | |
[ | |
'sic_code' => '6733', | |
'sic_description' => 'Trusts, Nec', | |
'naics_code' => '525920', | |
'naics_description' => 'Trusts, Estates, and Agency Accounts', | |
], | |
[ | |
'sic_code' => '6792', | |
'sic_description' => 'Oil Royalty Traders', | |
'naics_code' => '523910', | |
'naics_description' => 'Miscellaneous Intermediation', | |
], | |
[ | |
'sic_code' => '6792', | |
'sic_description' => 'Oil Royalty Traders', | |
'naics_code' => '533110', | |
'naics_description' => 'Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)', | |
], | |
[ | |
'sic_code' => '6794', | |
'sic_description' => 'Patent Owners and Lessors', | |
'naics_code' => '533110', | |
'naics_description' => 'Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)', | |
], | |
[ | |
'sic_code' => '6798', | |
'sic_description' => 'Real Estate Investment Trusts', | |
'naics_code' => '525990', | |
'naics_description' => 'Other Financial Vehicles', | |
], | |
[ | |
'sic_code' => '6798', | |
'sic_description' => 'Real Estate Investment Trusts', | |
'naics_code' => '531110', | |
'naics_description' => 'Lessors of Residential Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '6798', | |
'sic_description' => 'Real Estate Investment Trusts', | |
'naics_code' => '531120', | |
'naics_description' => 'Lessors of Nonresidential Buildings (except Miniwarehouses)', | |
], | |
[ | |
'sic_code' => '6798', | |
'sic_description' => 'Real Estate Investment Trusts', | |
'naics_code' => '531130', | |
'naics_description' => 'Lessors of Miniwarehouses and Self-Storage Units', | |
], | |
[ | |
'sic_code' => '6798', | |
'sic_description' => 'Real Estate Investment Trusts', | |
'naics_code' => '531190', | |
'naics_description' => 'Lessors of Other Real Estate Property', | |
], | |
[ | |
'sic_code' => '6799', | |
'sic_description' => 'Investors, Nec', | |
'naics_code' => '523130', | |
'naics_description' => 'Commodity Contracts Dealing', | |
], | |
[ | |
'sic_code' => '6799', | |
'sic_description' => 'Investors, Nec', | |
'naics_code' => '523910', | |
'naics_description' => 'Miscellaneous Intermediation', | |
], | |
[ | |
'sic_code' => '6799', | |
'sic_description' => 'Investors, Nec', | |
'naics_code' => '523920', | |
'naics_description' => 'Portfolio Management', | |
], | |
[ | |
'sic_code' => '7011', | |
'sic_description' => 'Hotels and Motels', | |
'naics_code' => '721110', | |
'naics_description' => 'Hotels (except Casino Hotels) and Motels', | |
], | |
[ | |
'sic_code' => '7011', | |
'sic_description' => 'Hotels and Motels', | |
'naics_code' => '721120', | |
'naics_description' => 'Casino Hotels', | |
], | |
[ | |
'sic_code' => '7011', | |
'sic_description' => 'Hotels and Motels', | |
'naics_code' => '721191', | |
'naics_description' => 'Bed-and-Breakfast Inns', | |
], | |
[ | |
'sic_code' => '7011', | |
'sic_description' => 'Hotels and Motels', | |
'naics_code' => '721199', | |
'naics_description' => 'All Other Traveler Accommodation', | |
], | |
[ | |
'sic_code' => '7021', | |
'sic_description' => 'Rooming and Boarding Houses', | |
'naics_code' => '721310', | |
'naics_description' => "Rooming and Boarding Houses, Dormitories, and Workers\' Camps", | |
], | |
[ | |
'sic_code' => '7032', | |
'sic_description' => 'Sporting and Recreational Camps', | |
'naics_code' => '721214', | |
'naics_description' => 'Recreational and Vacation Camps (except Campgrounds)', | |
], | |
[ | |
'sic_code' => '7033', | |
'sic_description' => 'Trailer Parks and Campsites', | |
'naics_code' => '721211', | |
'naics_description' => 'RV (Recreational Vehicle) Parks and Campgrounds', | |
], | |
[ | |
'sic_code' => '7041', | |
'sic_description' => 'Membership-basis Organization Hotels', | |
'naics_code' => '721110', | |
'naics_description' => 'Hotels (except Casino Hotels) and Motels', | |
], | |
[ | |
'sic_code' => '7041', | |
'sic_description' => 'Membership-basis Organization Hotels', | |
'naics_code' => '721310', | |
'naics_description' => "Rooming and Boarding Houses, Dormitories, and Workers\' Camps", | |
], | |
[ | |
'sic_code' => '7211', | |
'sic_description' => 'Power Laundries, Family and Commercial', | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7212', | |
'sic_description' => "Garment Pressing and Cleaners\' Agents", | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7213', | |
'sic_description' => 'Linen Supply', | |
'naics_code' => '812331', | |
'naics_description' => 'Linen Supply', | |
], | |
[ | |
'sic_code' => '7215', | |
'sic_description' => 'Coin-operated Laundries and Cleaning', | |
'naics_code' => '812310', | |
'naics_description' => 'Coin-Operated Laundries and Drycleaners', | |
], | |
[ | |
'sic_code' => '7216', | |
'sic_description' => 'Drycleaning Plants, Except Rugs', | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7217', | |
'sic_description' => 'Carpet and Upholstery Cleaning', | |
'naics_code' => '561740', | |
'naics_description' => 'Carpet and Upholstery Cleaning Services', | |
], | |
[ | |
'sic_code' => '7218', | |
'sic_description' => 'Industrial Launderers', | |
'naics_code' => '812332', | |
'naics_description' => 'Industrial Launderers', | |
], | |
[ | |
'sic_code' => '7219', | |
'sic_description' => 'Laundry and Garment Services, Nec', | |
'naics_code' => '811490', | |
'naics_description' => 'Other Personal and Household Goods Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7219', | |
'sic_description' => 'Laundry and Garment Services, Nec', | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7219', | |
'sic_description' => 'Laundry and Garment Services, Nec', | |
'naics_code' => '812331', | |
'naics_description' => 'Linen Supply', | |
], | |
[ | |
'sic_code' => '7221', | |
'sic_description' => 'Photographic Studios, Portrait', | |
'naics_code' => '541921', | |
'naics_description' => 'Photography Studios, Portrait', | |
], | |
[ | |
'sic_code' => '7231', | |
'sic_description' => 'Beauty Shops', | |
'naics_code' => '611511', | |
'naics_description' => 'Cosmetology and Barber Schools', | |
], | |
[ | |
'sic_code' => '7231', | |
'sic_description' => 'Beauty Shops', | |
'naics_code' => '812112', | |
'naics_description' => 'Beauty Salons', | |
], | |
[ | |
'sic_code' => '7231', | |
'sic_description' => 'Beauty Shops', | |
'naics_code' => '812113', | |
'naics_description' => 'Nail Salons', | |
], | |
[ | |
'sic_code' => '7241', | |
'sic_description' => 'Barber Shops', | |
'naics_code' => '611511', | |
'naics_description' => 'Cosmetology and Barber Schools', | |
], | |
[ | |
'sic_code' => '7241', | |
'sic_description' => 'Barber Shops', | |
'naics_code' => '812111', | |
'naics_description' => 'Barber Shops', | |
], | |
[ | |
'sic_code' => '7251', | |
'sic_description' => 'Shoe Repair and Shoeshine Parlors', | |
'naics_code' => '811430', | |
'naics_description' => 'Footwear and Leather Goods Repair', | |
], | |
[ | |
'sic_code' => '7251', | |
'sic_description' => 'Shoe Repair and Shoeshine Parlors', | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7251', | |
'sic_description' => 'Shoe Repair and Shoeshine Parlors', | |
'naics_code' => '812990', | |
'naics_description' => 'All Other Personal Services', | |
], | |
[ | |
'sic_code' => '7261', | |
'sic_description' => 'Funeral Service and Crematories', | |
'naics_code' => '812210', | |
'naics_description' => 'Funeral Homes and Funeral Services', | |
], | |
[ | |
'sic_code' => '7261', | |
'sic_description' => 'Funeral Service and Crematories', | |
'naics_code' => '812220', | |
'naics_description' => 'Cemeteries and Crematories', | |
], | |
[ | |
'sic_code' => '7291', | |
'sic_description' => 'Tax Return Preparation Services', | |
'naics_code' => '541213', | |
'naics_description' => 'Tax Preparation Services', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '532281', | |
'naics_description' => 'Formal Wear and Costume Rental', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '541990', | |
'naics_description' => 'All Other Professional, Scientific, and Technical Services', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '561311', | |
'naics_description' => 'Employment Placement Agencies', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '561990', | |
'naics_description' => 'All Other Support Services', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '812191', | |
'naics_description' => 'Diet and Weight Reducing Centers', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '812199', | |
'naics_description' => 'Other Personal Care Services', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '812930', | |
'naics_description' => 'Parking Lots and Garages', | |
], | |
[ | |
'sic_code' => '7299', | |
'sic_description' => 'Miscellaneous Personal Services', | |
'naics_code' => '812990', | |
'naics_description' => 'All Other Personal Services', | |
], | |
[ | |
'sic_code' => '7311', | |
'sic_description' => 'Advertising Agencies', | |
'naics_code' => '541810', | |
'naics_description' => 'Advertising Agencies', | |
], | |
[ | |
'sic_code' => '7312', | |
'sic_description' => 'Outdoor Advertising Services', | |
'naics_code' => '541850', | |
'naics_description' => 'Outdoor Advertising', | |
], | |
[ | |
'sic_code' => '7313', | |
'sic_description' => 'Radio, Television, Publisher Representatives', | |
'naics_code' => '541840', | |
'naics_description' => 'Media Representatives', | |
], | |
[ | |
'sic_code' => '7319', | |
'sic_description' => 'Advertising, Nec', | |
'naics_code' => '481219', | |
'naics_description' => 'Other Nonscheduled Air Transportation', | |
], | |
[ | |
'sic_code' => '7319', | |
'sic_description' => 'Advertising, Nec', | |
'naics_code' => '541830', | |
'naics_description' => 'Media Buying Agencies', | |
], | |
[ | |
'sic_code' => '7319', | |
'sic_description' => 'Advertising, Nec', | |
'naics_code' => '541850', | |
'naics_description' => 'Outdoor Advertising', | |
], | |
[ | |
'sic_code' => '7319', | |
'sic_description' => 'Advertising, Nec', | |
'naics_code' => '541870', | |
'naics_description' => 'Advertising Material Distribution Services', | |
], | |
[ | |
'sic_code' => '7319', | |
'sic_description' => 'Advertising, Nec', | |
'naics_code' => '541890', | |
'naics_description' => 'Other Services Related to Advertising', | |
], | |
[ | |
'sic_code' => '7322', | |
'sic_description' => 'Adjustment and Collection Services', | |
'naics_code' => '561440', | |
'naics_description' => 'Collection Agencies', | |
], | |
[ | |
'sic_code' => '7323', | |
'sic_description' => 'Credit Reporting Services', | |
'naics_code' => '561450', | |
'naics_description' => 'Credit Bureaus', | |
], | |
[ | |
'sic_code' => '7331', | |
'sic_description' => 'Direct Mail Advertising Services', | |
'naics_code' => '511140', | |
'naics_description' => 'Directory and Mailing List Publishers', | |
], | |
[ | |
'sic_code' => '7331', | |
'sic_description' => 'Direct Mail Advertising Services', | |
'naics_code' => '541860', | |
'naics_description' => 'Direct Mail Advertising', | |
], | |
[ | |
'sic_code' => '7334', | |
'sic_description' => 'Photocopying and Duplicating Services', | |
'naics_code' => '323111', | |
'naics_description' => 'Commercial Printing (except Screen and Books)', | |
], | |
[ | |
'sic_code' => '7334', | |
'sic_description' => 'Photocopying and Duplicating Services', | |
'naics_code' => '561439', | |
'naics_description' => 'Other Business Service Centers (including Copy Shops)', | |
], | |
[ | |
'sic_code' => '7335', | |
'sic_description' => 'Commercial Photography', | |
'naics_code' => '481219', | |
'naics_description' => 'Other Nonscheduled Air Transportation', | |
], | |
[ | |
'sic_code' => '7335', | |
'sic_description' => 'Commercial Photography', | |
'naics_code' => '541922', | |
'naics_description' => 'Commercial Photography', | |
], | |
[ | |
'sic_code' => '7336', | |
'sic_description' => 'Commercial Art and Graphic Design', | |
'naics_code' => '541430', | |
'naics_description' => 'Graphic Design Services', | |
], | |
[ | |
'sic_code' => '7338', | |
'sic_description' => 'Secretarial and Court Reporting', | |
'naics_code' => '561410', | |
'naics_description' => 'Document Preparation Services', | |
], | |
[ | |
'sic_code' => '7338', | |
'sic_description' => 'Secretarial and Court Reporting', | |
'naics_code' => '561492', | |
'naics_description' => 'Court Reporting and Stenotype Services', | |
], | |
[ | |
'sic_code' => '7342', | |
'sic_description' => 'Disinfecting and Pest Control Services', | |
'naics_code' => '561710', | |
'naics_description' => 'Exterminating and Pest Control Services', | |
], | |
[ | |
'sic_code' => '7342', | |
'sic_description' => 'Disinfecting and Pest Control Services', | |
'naics_code' => '561720', | |
'naics_description' => 'Janitorial Services', | |
], | |
[ | |
'sic_code' => '7349', | |
'sic_description' => 'Building Maintenance Services, Nec', | |
'naics_code' => '561720', | |
'naics_description' => 'Janitorial Services', | |
], | |
[ | |
'sic_code' => '7349', | |
'sic_description' => 'Building Maintenance Services, Nec', | |
'naics_code' => '561790', | |
'naics_description' => 'Other Services to Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '7352', | |
'sic_description' => 'Medical Equipment Rental', | |
'naics_code' => '532283', | |
'naics_description' => 'Home Health Equipment Rental', | |
], | |
[ | |
'sic_code' => '7352', | |
'sic_description' => 'Medical Equipment Rental', | |
'naics_code' => '532490', | |
'naics_description' => 'Other Commercial and Industrial Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7353', | |
'sic_description' => 'Heavy Construction Equipment Rental', | |
'naics_code' => '238910', | |
'naics_description' => 'Site Preparation Contractors', | |
], | |
[ | |
'sic_code' => '7353', | |
'sic_description' => 'Heavy Construction Equipment Rental', | |
'naics_code' => '238990', | |
'naics_description' => 'All Other Specialty Trade Contractors', | |
], | |
[ | |
'sic_code' => '7353', | |
'sic_description' => 'Heavy Construction Equipment Rental', | |
'naics_code' => '532412', | |
'naics_description' => 'Construction, Mining, and Forestry Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532210', | |
'naics_description' => 'Consumer Electronics and Appliances Rental', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532289', | |
'naics_description' => 'All Other Consumer Goods Rental', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532310', | |
'naics_description' => 'General Rental Centers', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532411', | |
'naics_description' => 'Commercial Air, Rail, and Water Transportation Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532412', | |
'naics_description' => 'Construction, Mining, and Forestry Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532420', | |
'naics_description' => 'Office Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '532490', | |
'naics_description' => 'Other Commercial and Industrial Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7359', | |
'sic_description' => 'Equipment Rental and Leasing, Nec', | |
'naics_code' => '562991', | |
'naics_description' => 'Septic Tank and Related Services', | |
], | |
[ | |
'sic_code' => '7361', | |
'sic_description' => 'Employment Agencies', | |
'naics_code' => '541612', | |
'naics_description' => 'Human Resources Consulting Services', | |
], | |
[ | |
'sic_code' => '7361', | |
'sic_description' => 'Employment Agencies', | |
'naics_code' => '561311', | |
'naics_description' => 'Employment Placement Agencies', | |
], | |
[ | |
'sic_code' => '7361', | |
'sic_description' => 'Employment Agencies', | |
'naics_code' => '561312', | |
'naics_description' => 'Executive Search Services', | |
], | |
[ | |
'sic_code' => '7363', | |
'sic_description' => 'Help Supply Services', | |
'naics_code' => '561320', | |
'naics_description' => 'Temporary Help Services', | |
], | |
[ | |
'sic_code' => '7363', | |
'sic_description' => 'Help Supply Services', | |
'naics_code' => '561330', | |
'naics_description' => 'Professional Employer Organizations', | |
], | |
[ | |
'sic_code' => '7371', | |
'sic_description' => 'Custom Computer Programming Services', | |
'naics_code' => '541511', | |
'naics_description' => 'Custom Computer Programming Services', | |
], | |
[ | |
'sic_code' => '7372', | |
'sic_description' => 'Prepackaged Software', | |
'naics_code' => '334614', | |
'naics_description' => 'Software and Other Prerecorded Compact Disc, Tape, and Record Reproducing', | |
], | |
[ | |
'sic_code' => '7372', | |
'sic_description' => 'Prepackaged Software', | |
'naics_code' => '511210', | |
'naics_description' => 'Software Publishers', | |
], | |
[ | |
'sic_code' => '7373', | |
'sic_description' => 'Computer Integrated Systems Design', | |
'naics_code' => '541512', | |
'naics_description' => 'Computer Systems Design Services', | |
], | |
[ | |
'sic_code' => '7374', | |
'sic_description' => 'Data Processing and Preparation', | |
'naics_code' => '518210', | |
'naics_description' => 'Data Processing, Hosting, and Related Services', | |
], | |
[ | |
'sic_code' => '7375', | |
'sic_description' => 'Information Retrieval Services', | |
'naics_code' => '517311', | |
'naics_description' => 'Wired Telecommunications Carriers', | |
], | |
[ | |
'sic_code' => '7375', | |
'sic_description' => 'Information Retrieval Services', | |
'naics_code' => '517919', | |
'naics_description' => 'All Other Telecommunications', | |
], | |
[ | |
'sic_code' => '7376', | |
'sic_description' => 'Computer Facilities Management', | |
'naics_code' => '541513', | |
'naics_description' => 'Computer Facilities Management Services', | |
], | |
[ | |
'sic_code' => '7377', | |
'sic_description' => 'Computer Rental and Leasing', | |
'naics_code' => '532420', | |
'naics_description' => 'Office Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7378', | |
'sic_description' => 'Computer Maintenance and Repair', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '7378', | |
'sic_description' => 'Computer Maintenance and Repair', | |
'naics_code' => '811212', | |
'naics_description' => 'Computer and Office Machine Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7379', | |
'sic_description' => 'Computer Related Services, Nec', | |
'naics_code' => '518210', | |
'naics_description' => 'Data Processing, Hosting, and Related Services', | |
], | |
[ | |
'sic_code' => '7379', | |
'sic_description' => 'Computer Related Services, Nec', | |
'naics_code' => '541512', | |
'naics_description' => 'Computer Systems Design Services', | |
], | |
[ | |
'sic_code' => '7379', | |
'sic_description' => 'Computer Related Services, Nec', | |
'naics_code' => '541519', | |
'naics_description' => 'Other Computer Related Services', | |
], | |
[ | |
'sic_code' => '7381', | |
'sic_description' => 'Detective and Armored Car Services', | |
'naics_code' => '561611', | |
'naics_description' => 'Investigation Services', | |
], | |
[ | |
'sic_code' => '7381', | |
'sic_description' => 'Detective and Armored Car Services', | |
'naics_code' => '561612', | |
'naics_description' => 'Security Guards and Patrol Services', | |
], | |
[ | |
'sic_code' => '7381', | |
'sic_description' => 'Detective and Armored Car Services', | |
'naics_code' => '561613', | |
'naics_description' => 'Armored Car Services', | |
], | |
[ | |
'sic_code' => '7382', | |
'sic_description' => 'Security Systems Services', | |
'naics_code' => '561621', | |
'naics_description' => 'Security Systems Services (except Locksmiths)', | |
], | |
[ | |
'sic_code' => '7383', | |
'sic_description' => 'News Syndicates', | |
'naics_code' => '519110', | |
'naics_description' => 'News Syndicates', | |
], | |
[ | |
'sic_code' => '7383', | |
'sic_description' => 'News Syndicates', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '7384', | |
'sic_description' => 'Photofinish Laboratories', | |
'naics_code' => '812921', | |
'naics_description' => 'Photofinishing Laboratories (except One-Hour)', | |
], | |
[ | |
'sic_code' => '7384', | |
'sic_description' => 'Photofinish Laboratories', | |
'naics_code' => '812922', | |
'naics_description' => 'One-Hour Photofinishing', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '312230', | |
'naics_description' => 'Tobacco Manufacturing', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '313310', | |
'naics_description' => 'Textile and Fabric Finishing Mills', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '314999', | |
'naics_description' => 'All Other Miscellaneous Textile Product Mills', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '325998', | |
'naics_description' => 'All Other Miscellaneous Chemical Product and Preparation Manufacturing', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '425120', | |
'naics_description' => 'Wholesale Trade Agents and Brokers', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '488490', | |
'naics_description' => 'Other Support Activities for Road Transportation', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '491110', | |
'naics_description' => 'Postal Service', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '512240', | |
'naics_description' => 'Sound Recording Studios', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '512290', | |
'naics_description' => 'Other Sound Recording Industries', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '518210', | |
'naics_description' => 'Data Processing, Hosting, and Related Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '519190', | |
'naics_description' => 'All Other Information Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '522320', | |
'naics_description' => 'Financial Transactions Processing, Reserve, and Clearinghouse Activities', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541199', | |
'naics_description' => 'All Other Legal Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541340', | |
'naics_description' => 'Drafting Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541350', | |
'naics_description' => 'Building Inspection Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541370', | |
'naics_description' => 'Surveying and Mapping (except Geophysical) Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541410', | |
'naics_description' => 'Interior Design Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541420', | |
'naics_description' => 'Industrial Design Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541490', | |
'naics_description' => 'Other Specialized Design Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541870', | |
'naics_description' => 'Advertising Material Distribution Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541890', | |
'naics_description' => 'Other Services Related to Advertising', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541930', | |
'naics_description' => 'Translation and Interpretation Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '541990', | |
'naics_description' => 'All Other Professional, Scientific, and Technical Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561410', | |
'naics_description' => 'Document Preparation Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561421', | |
'naics_description' => 'Telephone Answering Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561422', | |
'naics_description' => 'Telemarketing Bureaus and Other Contact Centers', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561431', | |
'naics_description' => 'Private Mail Centers', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561439', | |
'naics_description' => 'Other Business Service Centers (including Copy Shops)', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561440', | |
'naics_description' => 'Collection Agencies', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561491', | |
'naics_description' => 'Repossession Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561499', | |
'naics_description' => 'All Other Business Support Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561591', | |
'naics_description' => 'Convention and Visitors Bureaus', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561599', | |
'naics_description' => 'All Other Travel Arrangement and Reservation Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561790', | |
'naics_description' => 'Other Services to Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561910', | |
'naics_description' => 'Packaging and Labeling Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561920', | |
'naics_description' => 'Convention and Trade Show Organizers', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '561990', | |
'naics_description' => 'All Other Support Services', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '711310', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events with Facilities', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '711320', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events without Facilities', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '711410', | |
'naics_description' => 'Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '812320', | |
'naics_description' => 'Drycleaning and Laundry Services (except Coin-Operated)', | |
], | |
[ | |
'sic_code' => '7389', | |
'sic_description' => 'Business Services, Nec', | |
'naics_code' => '812990', | |
'naics_description' => 'All Other Personal Services', | |
], | |
[ | |
'sic_code' => '7513', | |
'sic_description' => 'Truck Rental and Leasing, Without Drivers', | |
'naics_code' => '532120', | |
'naics_description' => 'Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7514', | |
'sic_description' => 'Passenger Car Rental', | |
'naics_code' => '532111', | |
'naics_description' => 'Passenger Car Rental', | |
], | |
[ | |
'sic_code' => '7515', | |
'sic_description' => 'Passenger Car Leasing', | |
'naics_code' => '532112', | |
'naics_description' => 'Passenger Car Leasing', | |
], | |
[ | |
'sic_code' => '7519', | |
'sic_description' => 'Utility Trailer Rental', | |
'naics_code' => '532120', | |
'naics_description' => 'Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7521', | |
'sic_description' => 'Automobile Parking', | |
'naics_code' => '812930', | |
'naics_description' => 'Parking Lots and Garages', | |
], | |
[ | |
'sic_code' => '7532', | |
'sic_description' => 'Top and Body Repair and Paint Shops', | |
'naics_code' => '811121', | |
'naics_description' => 'Automotive Body, Paint, and Interior Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7533', | |
'sic_description' => 'Auto Exhaust System Repair Shops', | |
'naics_code' => '811112', | |
'naics_description' => 'Automotive Exhaust System Repair', | |
], | |
[ | |
'sic_code' => '7534', | |
'sic_description' => 'Tire Retreading and Repair Shops', | |
'naics_code' => '326212', | |
'naics_description' => 'Tire Retreading', | |
], | |
[ | |
'sic_code' => '7534', | |
'sic_description' => 'Tire Retreading and Repair Shops', | |
'naics_code' => '811198', | |
'naics_description' => 'All Other Automotive Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7536', | |
'sic_description' => 'Automotive Glass Replacement Shops', | |
'naics_code' => '811122', | |
'naics_description' => 'Automotive Glass Replacement Shops', | |
], | |
[ | |
'sic_code' => '7537', | |
'sic_description' => 'Automotive Transmission Repair Shops', | |
'naics_code' => '811113', | |
'naics_description' => 'Automotive Transmission Repair', | |
], | |
[ | |
'sic_code' => '7538', | |
'sic_description' => 'General Automotive Repair Shops', | |
'naics_code' => '811111', | |
'naics_description' => 'General Automotive Repair', | |
], | |
[ | |
'sic_code' => '7539', | |
'sic_description' => 'Automotive Repair Shops, Nec', | |
'naics_code' => '811118', | |
'naics_description' => 'Other Automotive Mechanical and Electrical Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7539', | |
'sic_description' => 'Automotive Repair Shops, Nec', | |
'naics_code' => '811198', | |
'naics_description' => 'All Other Automotive Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7542', | |
'sic_description' => 'Carwashes', | |
'naics_code' => '811192', | |
'naics_description' => 'Car Washes', | |
], | |
[ | |
'sic_code' => '7549', | |
'sic_description' => 'Automotive Services, Nec', | |
'naics_code' => '488410', | |
'naics_description' => 'Motor Vehicle Towing', | |
], | |
[ | |
'sic_code' => '7549', | |
'sic_description' => 'Automotive Services, Nec', | |
'naics_code' => '811122', | |
'naics_description' => 'Automotive Glass Replacement Shops', | |
], | |
[ | |
'sic_code' => '7549', | |
'sic_description' => 'Automotive Services, Nec', | |
'naics_code' => '811191', | |
'naics_description' => 'Automotive Oil Change and Lubrication Shops', | |
], | |
[ | |
'sic_code' => '7549', | |
'sic_description' => 'Automotive Services, Nec', | |
'naics_code' => '811198', | |
'naics_description' => 'All Other Automotive Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7622', | |
'sic_description' => 'Radio and Television Repair', | |
'naics_code' => '238290', | |
'naics_description' => 'Other Building Equipment Contractors', | |
], | |
[ | |
'sic_code' => '7622', | |
'sic_description' => 'Radio and Television Repair', | |
'naics_code' => '443142', | |
'naics_description' => 'Electronics Stores', | |
], | |
[ | |
'sic_code' => '7622', | |
'sic_description' => 'Radio and Television Repair', | |
'naics_code' => '811211', | |
'naics_description' => 'Consumer Electronics Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7622', | |
'sic_description' => 'Radio and Television Repair', | |
'naics_code' => '811213', | |
'naics_description' => 'Communication Equipment Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7623', | |
'sic_description' => 'Refrigeration Service and Repair', | |
'naics_code' => '443141', | |
'naics_description' => 'Household Appliance Stores', | |
], | |
[ | |
'sic_code' => '7623', | |
'sic_description' => 'Refrigeration Service and Repair', | |
'naics_code' => '811310', | |
'naics_description' => 'Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7623', | |
'sic_description' => 'Refrigeration Service and Repair', | |
'naics_code' => '811412', | |
'naics_description' => 'Appliance Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '443141', | |
'naics_description' => 'Household Appliance Stores', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '811211', | |
'naics_description' => 'Consumer Electronics Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '811212', | |
'naics_description' => 'Computer and Office Machine Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '811213', | |
'naics_description' => 'Communication Equipment Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '811219', | |
'naics_description' => 'Other Electronic and Precision Equipment Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7629', | |
'sic_description' => 'Electrical Repair Shops', | |
'naics_code' => '811412', | |
'naics_description' => 'Appliance Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7631', | |
'sic_description' => 'Watch, Clock, and Jewelry Repair', | |
'naics_code' => '448310', | |
'naics_description' => 'Jewelry Stores', | |
], | |
[ | |
'sic_code' => '7631', | |
'sic_description' => 'Watch, Clock, and Jewelry Repair', | |
'naics_code' => '811490', | |
'naics_description' => 'Other Personal and Household Goods Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7641', | |
'sic_description' => 'Reupholstery and Furniture Repair', | |
'naics_code' => '811420', | |
'naics_description' => 'Reupholstery and Furniture Repair', | |
], | |
[ | |
'sic_code' => '7692', | |
'sic_description' => 'Welding Repair', | |
'naics_code' => '811310', | |
'naics_description' => 'Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7694', | |
'sic_description' => 'Armature Rewinding Shops', | |
'naics_code' => '335312', | |
'naics_description' => 'Motor and Generator Manufacturing', | |
], | |
[ | |
'sic_code' => '7694', | |
'sic_description' => 'Armature Rewinding Shops', | |
'naics_code' => '811310', | |
'naics_description' => 'Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '115210', | |
'naics_description' => 'Support Activities for Animal Production', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '238220', | |
'naics_description' => 'Plumbing, Heating, and Air-Conditioning Contractors', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '442299', | |
'naics_description' => 'All Other Home Furnishings Stores', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '444130', | |
'naics_description' => 'Hardware Stores', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '444210', | |
'naics_description' => 'Outdoor Power Equipment Stores', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '451110', | |
'naics_description' => 'Sporting Goods Stores', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '488390', | |
'naics_description' => 'Other Support Activities for Water Transportation', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '561622', | |
'naics_description' => 'Locksmiths', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '561790', | |
'naics_description' => 'Other Services to Buildings and Dwellings', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '562991', | |
'naics_description' => 'Septic Tank and Related Services', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '562998', | |
'naics_description' => 'All Other Miscellaneous Waste Management Services', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811211', | |
'naics_description' => 'Consumer Electronics Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811212', | |
'naics_description' => 'Computer and Office Machine Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811219', | |
'naics_description' => 'Other Electronic and Precision Equipment Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811310', | |
'naics_description' => 'Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811411', | |
'naics_description' => 'Home and Garden Equipment Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811412', | |
'naics_description' => 'Appliance Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811430', | |
'naics_description' => 'Footwear and Leather Goods Repair', | |
], | |
[ | |
'sic_code' => '7699', | |
'sic_description' => 'Repair Services, Nec', | |
'naics_code' => '811490', | |
'naics_description' => 'Other Personal and Household Goods Repair and Maintenance', | |
], | |
[ | |
'sic_code' => '7812', | |
'sic_description' => 'Motion Picture and Video Production', | |
'naics_code' => '512110', | |
'naics_description' => 'Motion Picture and Video Production', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '334614', | |
'naics_description' => 'Software and Other Prerecorded Compact Disc, Tape, and Record Reproducing', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '512191', | |
'naics_description' => 'Teleproduction and Other Postproduction Services', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '512199', | |
'naics_description' => 'Other Motion Picture and Video Industries', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '532281', | |
'naics_description' => 'Formal Wear and Costume Rental', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '532490', | |
'naics_description' => 'Other Commercial and Industrial Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '541214', | |
'naics_description' => 'Payroll Services', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '541690', | |
'naics_description' => 'Other Scientific and Technical Consulting Services', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '561311', | |
'naics_description' => 'Employment Placement Agencies', | |
], | |
[ | |
'sic_code' => '7819', | |
'sic_description' => 'Services Allied To Motion Pictures', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '7822', | |
'sic_description' => 'Motion Picture and Tape Distribution', | |
'naics_code' => '423990', | |
'naics_description' => 'Other Miscellaneous Durable Goods Merchant Wholesalers', | |
], | |
[ | |
'sic_code' => '7822', | |
'sic_description' => 'Motion Picture and Tape Distribution', | |
'naics_code' => '512120', | |
'naics_description' => 'Motion Picture and Video Distribution', | |
], | |
[ | |
'sic_code' => '7829', | |
'sic_description' => 'Motion Picture Distribution Services', | |
'naics_code' => '512120', | |
'naics_description' => 'Motion Picture and Video Distribution', | |
], | |
[ | |
'sic_code' => '7829', | |
'sic_description' => 'Motion Picture Distribution Services', | |
'naics_code' => '512199', | |
'naics_description' => 'Other Motion Picture and Video Industries', | |
], | |
[ | |
'sic_code' => '7829', | |
'sic_description' => 'Motion Picture Distribution Services', | |
'naics_code' => '519120', | |
'naics_description' => 'Libraries and Archives', | |
], | |
[ | |
'sic_code' => '7832', | |
'sic_description' => 'Motion Picture Theaters, Except Drive-in', | |
'naics_code' => '512131', | |
'naics_description' => 'Motion Picture Theaters (except Drive-Ins)', | |
], | |
[ | |
'sic_code' => '7833', | |
'sic_description' => 'Drive-in Motion Picture Theaters', | |
'naics_code' => '512132', | |
'naics_description' => 'Drive-In Motion Picture Theaters', | |
], | |
[ | |
'sic_code' => '7841', | |
'sic_description' => 'Video Tape Rental', | |
'naics_code' => '532282', | |
'naics_description' => 'Video Tape and Disc Rental', | |
], | |
[ | |
'sic_code' => '7911', | |
'sic_description' => 'Dance Studios, Schools, and Halls', | |
'naics_code' => '611610', | |
'naics_description' => 'Fine Arts Schools', | |
], | |
[ | |
'sic_code' => '7911', | |
'sic_description' => 'Dance Studios, Schools, and Halls', | |
'naics_code' => '713990', | |
'naics_description' => 'All Other Amusement and Recreation Industries', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '512290', | |
'naics_description' => 'Other Sound Recording Industries', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '532490', | |
'naics_description' => 'Other Commercial and Industrial Machinery and Equipment Rental and Leasing', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '561311', | |
'naics_description' => 'Employment Placement Agencies', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '561599', | |
'naics_description' => 'All Other Travel Arrangement and Reservation Services', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711110', | |
'naics_description' => 'Theater Companies and Dinner Theaters', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711120', | |
'naics_description' => 'Dance Companies', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711310', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events with Facilities', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711320', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events without Facilities', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711410', | |
'naics_description' => 'Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures', | |
], | |
[ | |
'sic_code' => '7922', | |
'sic_description' => 'Theatrical Producers and Services', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '7929', | |
'sic_description' => 'Entertainers and Entertainment Groups', | |
'naics_code' => '711130', | |
'naics_description' => 'Musical Groups and Artists', | |
], | |
[ | |
'sic_code' => '7929', | |
'sic_description' => 'Entertainers and Entertainment Groups', | |
'naics_code' => '711190', | |
'naics_description' => 'Other Performing Arts Companies', | |
], | |
[ | |
'sic_code' => '7929', | |
'sic_description' => 'Entertainers and Entertainment Groups', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '7933', | |
'sic_description' => 'Bowling Centers', | |
'naics_code' => '713950', | |
'naics_description' => 'Bowling Centers', | |
], | |
[ | |
'sic_code' => '7941', | |
'sic_description' => 'Sports Clubs, Managers, and Promoters', | |
'naics_code' => '711211', | |
'naics_description' => 'Sports Teams and Clubs', | |
], | |
[ | |
'sic_code' => '7941', | |
'sic_description' => 'Sports Clubs, Managers, and Promoters', | |
'naics_code' => '711310', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events with Facilities', | |
], | |
[ | |
'sic_code' => '7941', | |
'sic_description' => 'Sports Clubs, Managers, and Promoters', | |
'naics_code' => '711320', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events without Facilities', | |
], | |
[ | |
'sic_code' => '7941', | |
'sic_description' => 'Sports Clubs, Managers, and Promoters', | |
'naics_code' => '711410', | |
'naics_description' => 'Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures', | |
], | |
[ | |
'sic_code' => '7948', | |
'sic_description' => 'Racing, Including Track Operation', | |
'naics_code' => '711212', | |
'naics_description' => 'Racetracks', | |
], | |
[ | |
'sic_code' => '7948', | |
'sic_description' => 'Racing, Including Track Operation', | |
'naics_code' => '711219', | |
'naics_description' => 'Other Spectator Sports', | |
], | |
[ | |
'sic_code' => '7991', | |
'sic_description' => 'Physical Fitness Facilities', | |
'naics_code' => '713940', | |
'naics_description' => 'Fitness and Recreational Sports Centers', | |
], | |
[ | |
'sic_code' => '7992', | |
'sic_description' => 'Public Golf Courses', | |
'naics_code' => '713910', | |
'naics_description' => 'Golf Courses and Country Clubs', | |
], | |
[ | |
'sic_code' => '7993', | |
'sic_description' => 'Coin-operated Amusement Devices', | |
'naics_code' => '713120', | |
'naics_description' => 'Amusement Arcades', | |
], | |
[ | |
'sic_code' => '7993', | |
'sic_description' => 'Coin-operated Amusement Devices', | |
'naics_code' => '713290', | |
'naics_description' => 'Other Gambling Industries', | |
], | |
[ | |
'sic_code' => '7993', | |
'sic_description' => 'Coin-operated Amusement Devices', | |
'naics_code' => '713990', | |
'naics_description' => 'All Other Amusement and Recreation Industries', | |
], | |
[ | |
'sic_code' => '7996', | |
'sic_description' => 'Amusement Parks', | |
'naics_code' => '713110', | |
'naics_description' => 'Amusement and Theme Parks', | |
], | |
[ | |
'sic_code' => '7997', | |
'sic_description' => 'Membership Sports and Recreation Clubs', | |
'naics_code' => '481219', | |
'naics_description' => 'Other Nonscheduled Air Transportation', | |
], | |
[ | |
'sic_code' => '7997', | |
'sic_description' => 'Membership Sports and Recreation Clubs', | |
'naics_code' => '488119', | |
'naics_description' => 'Other Airport Operations', | |
], | |
[ | |
'sic_code' => '7997', | |
'sic_description' => 'Membership Sports and Recreation Clubs', | |
'naics_code' => '713910', | |
'naics_description' => 'Golf Courses and Country Clubs', | |
], | |
[ | |
'sic_code' => '7997', | |
'sic_description' => 'Membership Sports and Recreation Clubs', | |
'naics_code' => '713940', | |
'naics_description' => 'Fitness and Recreational Sports Centers', | |
], | |
[ | |
'sic_code' => '7997', | |
'sic_description' => 'Membership Sports and Recreation Clubs', | |
'naics_code' => '713990', | |
'naics_description' => 'All Other Amusement and Recreation Industries', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '487110', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Land', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '487210', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Water', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '487990', | |
'naics_description' => 'Scenic and Sightseeing Transportation, Other', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '532284', | |
'naics_description' => 'Recreational Goods Rental', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '561599', | |
'naics_description' => 'All Other Travel Arrangement and Reservation Services', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '611620', | |
'naics_description' => 'Sports and Recreation Instruction', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '611699', | |
'naics_description' => 'All Other Miscellaneous Schools and Instruction', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '711190', | |
'naics_description' => 'Other Performing Arts Companies', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '711219', | |
'naics_description' => 'Other Spectator Sports', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '711310', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events with Facilities', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '711320', | |
'naics_description' => 'Promoters of Performing Arts, Sports, and Similar Events without Facilities', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '712190', | |
'naics_description' => 'Nature Parks and Other Similar Institutions', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '713210', | |
'naics_description' => 'Casinos (except Casino Hotels)', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '713290', | |
'naics_description' => 'Other Gambling Industries', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '713920', | |
'naics_description' => 'Skiing Facilities', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '713940', | |
'naics_description' => 'Fitness and Recreational Sports Centers', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '713990', | |
'naics_description' => 'All Other Amusement and Recreation Industries', | |
], | |
[ | |
'sic_code' => '7999', | |
'sic_description' => 'Amusement and Recreation, Nec', | |
'naics_code' => '812990', | |
'naics_description' => 'All Other Personal Services', | |
], | |
[ | |
'sic_code' => '8011', | |
'sic_description' => 'Offices and Clinics of Medical Doctors', | |
'naics_code' => '621111', | |
'naics_description' => 'Offices of Physicians (except Mental Health Specialists)', | |
], | |
[ | |
'sic_code' => '8011', | |
'sic_description' => 'Offices and Clinics of Medical Doctors', | |
'naics_code' => '621112', | |
'naics_description' => 'Offices of Physicians, Mental Health Specialists', | |
], | |
[ | |
'sic_code' => '8011', | |
'sic_description' => 'Offices and Clinics of Medical Doctors', | |
'naics_code' => '621491', | |
'naics_description' => 'HMO Medical Centers', | |
], | |
[ | |
'sic_code' => '8011', | |
'sic_description' => 'Offices and Clinics of Medical Doctors', | |
'naics_code' => '621493', | |
'naics_description' => 'Freestanding Ambulatory Surgical and Emergency Centers', | |
], | |
[ | |
'sic_code' => '8021', | |
'sic_description' => 'Offices and Clinics of Dentists', | |
'naics_code' => '621210', | |
'naics_description' => 'Offices of Dentists', | |
], | |
[ | |
'sic_code' => '8031', | |
'sic_description' => 'Offices and Clinics of Osteopathic Physicians', | |
'naics_code' => '621111', | |
'naics_description' => 'Offices of Physicians (except Mental Health Specialists)', | |
], | |
[ | |
'sic_code' => '8031', | |
'sic_description' => 'Offices and Clinics of Osteopathic Physicians', | |
'naics_code' => '621112', | |
'naics_description' => 'Offices of Physicians, Mental Health Specialists', | |
], | |
[ | |
'sic_code' => '8041', | |
'sic_description' => 'Offices and Clinics of Chiropractors', | |
'naics_code' => '621310', | |
'naics_description' => 'Offices of Chiropractors', | |
], | |
[ | |
'sic_code' => '8042', | |
'sic_description' => 'Offices and Clinics of Optometrists', | |
'naics_code' => '621320', | |
'naics_description' => 'Offices of Optometrists', | |
], | |
[ | |
'sic_code' => '8043', | |
'sic_description' => 'Offices and Clinics of Podiatrists', | |
'naics_code' => '621391', | |
'naics_description' => 'Offices of Podiatrists', | |
], | |
[ | |
'sic_code' => '8049', | |
'sic_description' => 'Offices of Health Practitioner', | |
'naics_code' => '621330', | |
'naics_description' => 'Offices of Mental Health Practitioners (except Physicians)', | |
], | |
[ | |
'sic_code' => '8049', | |
'sic_description' => 'Offices of Health Practitioner', | |
'naics_code' => '621340', | |
'naics_description' => 'Offices of Physical, Occupational and Speech Therapists, and Audiologists', | |
], | |
[ | |
'sic_code' => '8049', | |
'sic_description' => 'Offices of Health Practitioner', | |
'naics_code' => '621399', | |
'naics_description' => 'Offices of All Other Miscellaneous Health Practitioners', | |
], | |
[ | |
'sic_code' => '8051', | |
'sic_description' => 'Skilled Nursing Care Facilities', | |
'naics_code' => '623110', | |
'naics_description' => 'Nursing Care Facilities (Skilled Nursing Facilities)', | |
], | |
[ | |
'sic_code' => '8051', | |
'sic_description' => 'Skilled Nursing Care Facilities', | |
'naics_code' => '623210', | |
'naics_description' => 'Residential Intellectual and Developmental Disability Facilities', | |
], | |
[ | |
'sic_code' => '8051', | |
'sic_description' => 'Skilled Nursing Care Facilities', | |
'naics_code' => '623311', | |
'naics_description' => 'Continuing Care Retirement Communities', | |
], | |
[ | |
'sic_code' => '8052', | |
'sic_description' => 'Intermediate Care Facilities', | |
'naics_code' => '623110', | |
'naics_description' => 'Nursing Care Facilities (Skilled Nursing Facilities)', | |
], | |
[ | |
'sic_code' => '8052', | |
'sic_description' => 'Intermediate Care Facilities', | |
'naics_code' => '623210', | |
'naics_description' => 'Residential Intellectual and Developmental Disability Facilities', | |
], | |
[ | |
'sic_code' => '8052', | |
'sic_description' => 'Intermediate Care Facilities', | |
'naics_code' => '623311', | |
'naics_description' => 'Continuing Care Retirement Communities', | |
], | |
[ | |
'sic_code' => '8059', | |
'sic_description' => 'Nursing and Personal Care, Nec', | |
'naics_code' => '623110', | |
'naics_description' => 'Nursing Care Facilities (Skilled Nursing Facilities)', | |
], | |
[ | |
'sic_code' => '8059', | |
'sic_description' => 'Nursing and Personal Care, Nec', | |
'naics_code' => '623210', | |
'naics_description' => 'Residential Intellectual and Developmental Disability Facilities', | |
], | |
[ | |
'sic_code' => '8059', | |
'sic_description' => 'Nursing and Personal Care, Nec', | |
'naics_code' => '623311', | |
'naics_description' => 'Continuing Care Retirement Communities', | |
], | |
[ | |
'sic_code' => '8062', | |
'sic_description' => 'General Medical and Surgical Hospitals', | |
'naics_code' => '622110', | |
'naics_description' => 'General Medical and Surgical Hospitals', | |
], | |
[ | |
'sic_code' => '8063', | |
'sic_description' => 'Psychiatric Hospitals', | |
'naics_code' => '622210', | |
'naics_description' => 'Psychiatric and Substance Abuse Hospitals', | |
], | |
[ | |
'sic_code' => '8069', | |
'sic_description' => 'Specialty Hospitals, Except Psychiatric', | |
'naics_code' => '622110', | |
'naics_description' => 'General Medical and Surgical Hospitals', | |
], | |
[ | |
'sic_code' => '8069', | |
'sic_description' => 'Specialty Hospitals, Except Psychiatric', | |
'naics_code' => '622210', | |
'naics_description' => 'Psychiatric and Substance Abuse Hospitals', | |
], | |
[ | |
'sic_code' => '8069', | |
'sic_description' => 'Specialty Hospitals, Except Psychiatric', | |
'naics_code' => '622310', | |
'naics_description' => 'Specialty (except Psychiatric and Substance Abuse) Hospitals', | |
], | |
[ | |
'sic_code' => '8071', | |
'sic_description' => 'Medical Laboratories', | |
'naics_code' => '621511', | |
'naics_description' => 'Medical Laboratories', | |
], | |
[ | |
'sic_code' => '8071', | |
'sic_description' => 'Medical Laboratories', | |
'naics_code' => '621512', | |
'naics_description' => 'Diagnostic Imaging Centers', | |
], | |
[ | |
'sic_code' => '8072', | |
'sic_description' => 'Dental Laboratories', | |
'naics_code' => '339116', | |
'naics_description' => 'Dental Laboratories', | |
], | |
[ | |
'sic_code' => '8082', | |
'sic_description' => 'Home Health Care Services', | |
'naics_code' => '621610', | |
'naics_description' => 'Home Health Care Services', | |
], | |
[ | |
'sic_code' => '8092', | |
'sic_description' => 'Kidney Dialysis Centers', | |
'naics_code' => '621492', | |
'naics_description' => 'Kidney Dialysis Centers', | |
], | |
[ | |
'sic_code' => '8093', | |
'sic_description' => 'Specialty Outpatient Clinics, Nec', | |
'naics_code' => '621399', | |
'naics_description' => 'Offices of All Other Miscellaneous Health Practitioners', | |
], | |
[ | |
'sic_code' => '8093', | |
'sic_description' => 'Specialty Outpatient Clinics, Nec', | |
'naics_code' => '621410', | |
'naics_description' => 'Family Planning Centers', | |
], | |
[ | |
'sic_code' => '8093', | |
'sic_description' => 'Specialty Outpatient Clinics, Nec', | |
'naics_code' => '621420', | |
'naics_description' => 'Outpatient Mental Health and Substance Abuse Centers', | |
], | |
[ | |
'sic_code' => '8093', | |
'sic_description' => 'Specialty Outpatient Clinics, Nec', | |
'naics_code' => '621498', | |
'naics_description' => 'All Other Outpatient Care Centers', | |
], | |
[ | |
'sic_code' => '8099', | |
'sic_description' => 'Health and Allied Services, Nec', | |
'naics_code' => '541430', | |
'naics_description' => 'Graphic Design Services', | |
], | |
[ | |
'sic_code' => '8099', | |
'sic_description' => 'Health and Allied Services, Nec', | |
'naics_code' => '541922', | |
'naics_description' => 'Commercial Photography', | |
], | |
[ | |
'sic_code' => '8099', | |
'sic_description' => 'Health and Allied Services, Nec', | |
'naics_code' => '621410', | |
'naics_description' => 'Family Planning Centers', | |
], | |
[ | |
'sic_code' => '8099', | |
'sic_description' => 'Health and Allied Services, Nec', | |
'naics_code' => '621991', | |
'naics_description' => 'Blood and Organ Banks', | |
], | |
[ | |
'sic_code' => '8099', | |
'sic_description' => 'Health and Allied Services, Nec', | |
'naics_code' => '621999', | |
'naics_description' => 'All Other Miscellaneous Ambulatory Health Care Services', | |
], | |
[ | |
'sic_code' => '8111', | |
'sic_description' => 'Legal Services', | |
'naics_code' => '541110', | |
'naics_description' => 'Offices of Lawyers', | |
], | |
[ | |
'sic_code' => '8211', | |
'sic_description' => 'Elementary and Secondary Schools', | |
'naics_code' => '611110', | |
'naics_description' => 'Elementary and Secondary Schools', | |
], | |
[ | |
'sic_code' => '8221', | |
'sic_description' => 'Colleges and Universities', | |
'naics_code' => '611310', | |
'naics_description' => 'Colleges, Universities, and Professional Schools', | |
], | |
[ | |
'sic_code' => '8222', | |
'sic_description' => 'Junior Colleges', | |
'naics_code' => '611210', | |
'naics_description' => 'Junior Colleges', | |
], | |
[ | |
'sic_code' => '8231', | |
'sic_description' => 'Libraries', | |
'naics_code' => '519120', | |
'naics_description' => 'Libraries and Archives', | |
], | |
[ | |
'sic_code' => '8243', | |
'sic_description' => 'Data Processing Schools', | |
'naics_code' => '611420', | |
'naics_description' => 'Computer Training', | |
], | |
[ | |
'sic_code' => '8243', | |
'sic_description' => 'Data Processing Schools', | |
'naics_code' => '611519', | |
'naics_description' => 'Other Technical and Trade Schools', | |
], | |
[ | |
'sic_code' => '8244', | |
'sic_description' => 'Business and Secretarial Schools', | |
'naics_code' => '611410', | |
'naics_description' => 'Business and Secretarial Schools', | |
], | |
[ | |
'sic_code' => '8249', | |
'sic_description' => 'Vocational Schools, Nec', | |
'naics_code' => '611512', | |
'naics_description' => 'Flight Training', | |
], | |
[ | |
'sic_code' => '8249', | |
'sic_description' => 'Vocational Schools, Nec', | |
'naics_code' => '611513', | |
'naics_description' => 'Apprenticeship Training', | |
], | |
[ | |
'sic_code' => '8249', | |
'sic_description' => 'Vocational Schools, Nec', | |
'naics_code' => '611519', | |
'naics_description' => 'Other Technical and Trade Schools', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611430', | |
'naics_description' => 'Professional and Management Development Training', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611512', | |
'naics_description' => 'Flight Training', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611519', | |
'naics_description' => 'Other Technical and Trade Schools', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611610', | |
'naics_description' => 'Fine Arts Schools', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611620', | |
'naics_description' => 'Sports and Recreation Instruction', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611630', | |
'naics_description' => 'Language Schools', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611691', | |
'naics_description' => 'Exam Preparation and Tutoring', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611692', | |
'naics_description' => 'Automobile Driving Schools', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611699', | |
'naics_description' => 'All Other Miscellaneous Schools and Instruction', | |
], | |
[ | |
'sic_code' => '8299', | |
'sic_description' => 'Schools and Educational Services', | |
'naics_code' => '611710', | |
'naics_description' => 'Educational Support Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624110', | |
'naics_description' => 'Child and Youth Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624120', | |
'naics_description' => 'Services for the Elderly and Persons with Disabilities', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624190', | |
'naics_description' => 'Other Individual and Family Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624210', | |
'naics_description' => 'Community Food Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624221', | |
'naics_description' => 'Temporary Shelters', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624229', | |
'naics_description' => 'Other Community Housing Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '624230', | |
'naics_description' => 'Emergency and Other Relief Services', | |
], | |
[ | |
'sic_code' => '8322', | |
'sic_description' => 'Individual and Family Services', | |
'naics_code' => '922150', | |
'naics_description' => 'Parole Offices and Probation Offices', | |
], | |
[ | |
'sic_code' => '8331', | |
'sic_description' => 'Job Training and Related Services', | |
'naics_code' => '624310', | |
'naics_description' => 'Vocational Rehabilitation Services', | |
], | |
[ | |
'sic_code' => '8351', | |
'sic_description' => 'Child Day Care Services', | |
'naics_code' => '624410', | |
'naics_description' => 'Child Day Care Services', | |
], | |
[ | |
'sic_code' => '8361', | |
'sic_description' => 'Residential Care', | |
'naics_code' => '623210', | |
'naics_description' => 'Residential Intellectual and Developmental Disability Facilities', | |
], | |
[ | |
'sic_code' => '8361', | |
'sic_description' => 'Residential Care', | |
'naics_code' => '623220', | |
'naics_description' => 'Residential Mental Health and Substance Abuse Facilities', | |
], | |
[ | |
'sic_code' => '8361', | |
'sic_description' => 'Residential Care', | |
'naics_code' => '623312', | |
'naics_description' => 'Assisted Living Facilities for the Elderly', | |
], | |
[ | |
'sic_code' => '8361', | |
'sic_description' => 'Residential Care', | |
'naics_code' => '623990', | |
'naics_description' => 'Other Residential Care Facilities', | |
], | |
[ | |
'sic_code' => '8399', | |
'sic_description' => 'Social Services, Nec', | |
'naics_code' => '813212', | |
'naics_description' => 'Voluntary Health Organizations', | |
], | |
[ | |
'sic_code' => '8399', | |
'sic_description' => 'Social Services, Nec', | |
'naics_code' => '813219', | |
'naics_description' => 'Other Grantmaking and Giving Services', | |
], | |
[ | |
'sic_code' => '8399', | |
'sic_description' => 'Social Services, Nec', | |
'naics_code' => '813311', | |
'naics_description' => 'Human Rights Organizations', | |
], | |
[ | |
'sic_code' => '8399', | |
'sic_description' => 'Social Services, Nec', | |
'naics_code' => '813312', | |
'naics_description' => 'Environment, Conservation and Wildlife Organizations', | |
], | |
[ | |
'sic_code' => '8399', | |
'sic_description' => 'Social Services, Nec', | |
'naics_code' => '813319', | |
'naics_description' => 'Other Social Advocacy Organizations', | |
], | |
[ | |
'sic_code' => '8412', | |
'sic_description' => 'Museums and Art Galleries', | |
'naics_code' => '712110', | |
'naics_description' => 'Museums', | |
], | |
[ | |
'sic_code' => '8412', | |
'sic_description' => 'Museums and Art Galleries', | |
'naics_code' => '712120', | |
'naics_description' => 'Historical Sites', | |
], | |
[ | |
'sic_code' => '8422', | |
'sic_description' => 'Botanical and Zoological Gardens', | |
'naics_code' => '712130', | |
'naics_description' => 'Zoos and Botanical Gardens', | |
], | |
[ | |
'sic_code' => '8422', | |
'sic_description' => 'Botanical and Zoological Gardens', | |
'naics_code' => '712190', | |
'naics_description' => 'Nature Parks and Other Similar Institutions', | |
], | |
[ | |
'sic_code' => '8611', | |
'sic_description' => 'Business Associations', | |
'naics_code' => '813910', | |
'naics_description' => 'Business Associations', | |
], | |
[ | |
'sic_code' => '8621', | |
'sic_description' => 'Professional Organizations', | |
'naics_code' => '813920', | |
'naics_description' => 'Professional Organizations', | |
], | |
[ | |
'sic_code' => '8631', | |
'sic_description' => 'Labor Organizations', | |
'naics_code' => '813930', | |
'naics_description' => 'Labor Unions and Similar Labor Organizations', | |
], | |
[ | |
'sic_code' => '8641', | |
'sic_description' => 'Civic and Social Associations', | |
'naics_code' => '813319', | |
'naics_description' => 'Other Social Advocacy Organizations', | |
], | |
[ | |
'sic_code' => '8641', | |
'sic_description' => 'Civic and Social Associations', | |
'naics_code' => '813410', | |
'naics_description' => 'Civic and Social Organizations', | |
], | |
[ | |
'sic_code' => '8641', | |
'sic_description' => 'Civic and Social Associations', | |
'naics_code' => '813990', | |
'naics_description' => 'Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)', | |
], | |
[ | |
'sic_code' => '8641', | |
'sic_description' => 'Civic and Social Associations', | |
'naics_code' => '921150', | |
'naics_description' => 'American Indian and Alaska Native Tribal Governments', | |
], | |
[ | |
'sic_code' => '8651', | |
'sic_description' => 'Political Organizations', | |
'naics_code' => '813940', | |
'naics_description' => 'Political Organizations', | |
], | |
[ | |
'sic_code' => '8661', | |
'sic_description' => 'Religious Organizations', | |
'naics_code' => '813110', | |
'naics_description' => 'Religious Organizations', | |
], | |
[ | |
'sic_code' => '8699', | |
'sic_description' => 'Membership Organizations, Nec', | |
'naics_code' => '561599', | |
'naics_description' => 'All Other Travel Arrangement and Reservation Services', | |
], | |
[ | |
'sic_code' => '8699', | |
'sic_description' => 'Membership Organizations, Nec', | |
'naics_code' => '813312', | |
'naics_description' => 'Environment, Conservation and Wildlife Organizations', | |
], | |
[ | |
'sic_code' => '8699', | |
'sic_description' => 'Membership Organizations, Nec', | |
'naics_code' => '813410', | |
'naics_description' => 'Civic and Social Organizations', | |
], | |
[ | |
'sic_code' => '8699', | |
'sic_description' => 'Membership Organizations, Nec', | |
'naics_code' => '813910', | |
'naics_description' => 'Business Associations', | |
], | |
[ | |
'sic_code' => '8699', | |
'sic_description' => 'Membership Organizations, Nec', | |
'naics_code' => '813990', | |
'naics_description' => 'Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)', | |
], | |
[ | |
'sic_code' => '8711', | |
'sic_description' => 'Engineering Services', | |
'naics_code' => '541330', | |
'naics_description' => 'Engineering Services', | |
], | |
[ | |
'sic_code' => '8712', | |
'sic_description' => 'Architectural Services', | |
'naics_code' => '541310', | |
'naics_description' => 'Architectural Services', | |
], | |
[ | |
'sic_code' => '8713', | |
'sic_description' => 'Surveying Services', | |
'naics_code' => '541360', | |
'naics_description' => 'Geophysical Surveying and Mapping Services', | |
], | |
[ | |
'sic_code' => '8713', | |
'sic_description' => 'Surveying Services', | |
'naics_code' => '541370', | |
'naics_description' => 'Surveying and Mapping (except Geophysical) Services', | |
], | |
[ | |
'sic_code' => '8721', | |
'sic_description' => 'Accounting, Auditing, and Bookkeeping', | |
'naics_code' => '541211', | |
'naics_description' => 'Offices of Certified Public Accountants', | |
], | |
[ | |
'sic_code' => '8721', | |
'sic_description' => 'Accounting, Auditing, and Bookkeeping', | |
'naics_code' => '541214', | |
'naics_description' => 'Payroll Services', | |
], | |
[ | |
'sic_code' => '8721', | |
'sic_description' => 'Accounting, Auditing, and Bookkeeping', | |
'naics_code' => '541219', | |
'naics_description' => 'Other Accounting Services', | |
], | |
[ | |
'sic_code' => '8731', | |
'sic_description' => 'Commercial Physical Research', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '8731', | |
'sic_description' => 'Commercial Physical Research', | |
'naics_code' => '541714', | |
'naics_description' => 'Research and Development in Biotechnology (except Nanobiotechnology)', | |
], | |
[ | |
'sic_code' => '8731', | |
'sic_description' => 'Commercial Physical Research', | |
'naics_code' => '541715', | |
'naics_description' => 'Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology)', | |
], | |
[ | |
'sic_code' => '8732', | |
'sic_description' => 'Commercial Nonphysical Research', | |
'naics_code' => '541720', | |
'naics_description' => 'Research and Development in the Social Sciences and Humanities', | |
], | |
[ | |
'sic_code' => '8732', | |
'sic_description' => 'Commercial Nonphysical Research', | |
'naics_code' => '541910', | |
'naics_description' => 'Marketing Research and Public Opinion Polling', | |
], | |
[ | |
'sic_code' => '8733', | |
'sic_description' => 'Noncommercial Research Organizations', | |
'naics_code' => '541713', | |
'naics_description' => 'Research and Development in Nanotechnology', | |
], | |
[ | |
'sic_code' => '8733', | |
'sic_description' => 'Noncommercial Research Organizations', | |
'naics_code' => '541714', | |
'naics_description' => 'Research and Development in Biotechnology (except Nanobiotechnology)', | |
], | |
[ | |
'sic_code' => '8733', | |
'sic_description' => 'Noncommercial Research Organizations', | |
'naics_code' => '541715', | |
'naics_description' => 'Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology)', | |
], | |
[ | |
'sic_code' => '8733', | |
'sic_description' => 'Noncommercial Research Organizations', | |
'naics_code' => '541720', | |
'naics_description' => 'Research and Development in the Social Sciences and Humanities', | |
], | |
[ | |
'sic_code' => '8734', | |
'sic_description' => 'Testing Laboratories', | |
'naics_code' => '541380', | |
'naics_description' => 'Testing Laboratories', | |
], | |
[ | |
'sic_code' => '8734', | |
'sic_description' => 'Testing Laboratories', | |
'naics_code' => '541940', | |
'naics_description' => 'Veterinary Services', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '236115', | |
'naics_description' => 'New Single-Family Housing Construction (except For-Sale Builders)', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '236116', | |
'naics_description' => 'New Multifamily Housing Construction (except For-Sale Builders)', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '236118', | |
'naics_description' => 'Residential Remodelers', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '236210', | |
'naics_description' => 'Industrial Building Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '236220', | |
'naics_description' => 'Commercial and Institutional Building Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '237110', | |
'naics_description' => 'Water and Sewer Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '237120', | |
'naics_description' => 'Oil and Gas Pipeline and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '237130', | |
'naics_description' => 'Power and Communication Line and Related Structures Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '237310', | |
'naics_description' => 'Highway, Street, and Bridge Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '237990', | |
'naics_description' => 'Other Heavy and Civil Engineering Construction', | |
], | |
[ | |
'sic_code' => '8741', | |
'sic_description' => 'Management Services', | |
'naics_code' => '561110', | |
'naics_description' => 'Office Administrative Services', | |
], | |
[ | |
'sic_code' => '8742', | |
'sic_description' => 'Management Consulting Services', | |
'naics_code' => '541611', | |
'naics_description' => 'Administrative Management and General Management Consulting Services', | |
], | |
[ | |
'sic_code' => '8742', | |
'sic_description' => 'Management Consulting Services', | |
'naics_code' => '541612', | |
'naics_description' => 'Human Resources Consulting Services', | |
], | |
[ | |
'sic_code' => '8742', | |
'sic_description' => 'Management Consulting Services', | |
'naics_code' => '541613', | |
'naics_description' => 'Marketing Consulting Services', | |
], | |
[ | |
'sic_code' => '8742', | |
'sic_description' => 'Management Consulting Services', | |
'naics_code' => '541614', | |
'naics_description' => 'Process, Physical Distribution, and Logistics Consulting Services', | |
], | |
[ | |
'sic_code' => '8742', | |
'sic_description' => 'Management Consulting Services', | |
'naics_code' => '561312', | |
'naics_description' => 'Executive Search Services', | |
], | |
[ | |
'sic_code' => '8743', | |
'sic_description' => 'Public Relations Services', | |
'naics_code' => '541820', | |
'naics_description' => 'Public Relations Agencies', | |
], | |
[ | |
'sic_code' => '8744', | |
'sic_description' => 'Facilities Support Services', | |
'naics_code' => '561210', | |
'naics_description' => 'Facilities Support Services', | |
], | |
[ | |
'sic_code' => '8748', | |
'sic_description' => 'Business Consulting, Nec', | |
'naics_code' => '541320', | |
'naics_description' => 'Landscape Architectural Services', | |
], | |
[ | |
'sic_code' => '8748', | |
'sic_description' => 'Business Consulting, Nec', | |
'naics_code' => '541330', | |
'naics_description' => 'Engineering Services', | |
], | |
[ | |
'sic_code' => '8748', | |
'sic_description' => 'Business Consulting, Nec', | |
'naics_code' => '541618', | |
'naics_description' => 'Other Management Consulting Services', | |
], | |
[ | |
'sic_code' => '8748', | |
'sic_description' => 'Business Consulting, Nec', | |
'naics_code' => '541690', | |
'naics_description' => 'Other Scientific and Technical Consulting Services', | |
], | |
[ | |
'sic_code' => '8748', | |
'sic_description' => 'Business Consulting, Nec', | |
'naics_code' => '611710', | |
'naics_description' => 'Educational Support Services', | |
], | |
[ | |
'sic_code' => '8811', | |
'sic_description' => '', | |
'naics_code' => '814110', | |
'naics_description' => 'Private Households', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '512230', | |
'naics_description' => 'Music Publishers', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '512250', | |
'naics_description' => 'Record Production and Distribution', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '519130', | |
'naics_description' => 'Internet Publishing and Broadcasting and Web Search Portals', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '541612', | |
'naics_description' => 'Human Resources Consulting Services', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '541620', | |
'naics_description' => 'Environmental Consulting Services', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '541690', | |
'naics_description' => 'Other Scientific and Technical Consulting Services', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '541990', | |
'naics_description' => 'All Other Professional, Scientific, and Technical Services', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '561312', | |
'naics_description' => 'Executive Search Services', | |
], | |
[ | |
'sic_code' => '8999', | |
'sic_description' => 'Services, Nec', | |
'naics_code' => '711510', | |
'naics_description' => 'Independent Artists, Writers, and Performers', | |
], | |
[ | |
'sic_code' => '9111', | |
'sic_description' => 'Executive Offices', | |
'naics_code' => '921110', | |
'naics_description' => 'Executive Offices', | |
], | |
[ | |
'sic_code' => '9121', | |
'sic_description' => 'Legislative Bodies', | |
'naics_code' => '921120', | |
'naics_description' => 'Legislative Bodies', | |
], | |
[ | |
'sic_code' => '9131', | |
'sic_description' => 'Executive and Legislative Combined', | |
'naics_code' => '921140', | |
'naics_description' => 'Executive and Legislative Offices, Combined', | |
], | |
[ | |
'sic_code' => '9199', | |
'sic_description' => 'General Government, Nec', | |
'naics_code' => '921190', | |
'naics_description' => 'Other General Government Support', | |
], | |
[ | |
'sic_code' => '9211', | |
'sic_description' => 'Courts', | |
'naics_code' => '922110', | |
'naics_description' => 'Courts', | |
], | |
[ | |
'sic_code' => '9221', | |
'sic_description' => 'Police Protection', | |
'naics_code' => '922120', | |
'naics_description' => 'Police Protection', | |
], | |
[ | |
'sic_code' => '9222', | |
'sic_description' => 'Legal Counsel and Prosecution', | |
'naics_code' => '922130', | |
'naics_description' => 'Legal Counsel and Prosecution', | |
], | |
[ | |
'sic_code' => '9223', | |
'sic_description' => 'Correctional Institutions', | |
'naics_code' => '922140', | |
'naics_description' => 'Correctional Institutions', | |
], | |
[ | |
'sic_code' => '9224', | |
'sic_description' => 'Fire Protection', | |
'naics_code' => '922160', | |
'naics_description' => 'Fire Protection', | |
], | |
[ | |
'sic_code' => '9229', | |
'sic_description' => 'Public Order and Safety, Nec', | |
'naics_code' => '922190', | |
'naics_description' => 'Other Justice, Public Order, and Safety Activities', | |
], | |
[ | |
'sic_code' => '9311', | |
'sic_description' => 'Finance, Taxation, and Monetary Policy', | |
'naics_code' => '921130', | |
'naics_description' => 'Public Finance Activities', | |
], | |
[ | |
'sic_code' => '9411', | |
'sic_description' => 'Administration of Educational Programs', | |
'naics_code' => '923110', | |
'naics_description' => 'Administration of Education Programs', | |
], | |
[ | |
'sic_code' => '9431', | |
'sic_description' => 'Administration of Public Health Programs', | |
'naics_code' => '923120', | |
'naics_description' => 'Administration of Public Health Programs', | |
], | |
[ | |
'sic_code' => '9441', | |
'sic_description' => 'Administration of Social and Manpower Programs', | |
'naics_code' => '923130', | |
'naics_description' => "Administration of Human Resource Programs (except Education, Public Health, and Veterans\' Affairs Programs)", | |
], | |
[ | |
'sic_code' => '9451', | |
'sic_description' => "Administration of Veterans\' Affairs", | |
'naics_code' => '923140', | |
'naics_description' => "Administration of Veterans\' Affairs", | |
], | |
[ | |
'sic_code' => '9511', | |
'sic_description' => 'Air, Water, and Solid Waste Management', | |
'naics_code' => '924110', | |
'naics_description' => 'Administration of Air and Water Resource and Solid Waste Management Programs', | |
], | |
[ | |
'sic_code' => '9512', | |
'sic_description' => 'Land, Mineral, and Wildlife Conservation', | |
'naics_code' => '924120', | |
'naics_description' => 'Administration of Conservation Programs', | |
], | |
[ | |
'sic_code' => '9531', | |
'sic_description' => 'Housing Programs', | |
'naics_code' => '925110', | |
'naics_description' => 'Administration of Housing Programs', | |
], | |
[ | |
'sic_code' => '9532', | |
'sic_description' => 'Urban and Community Development', | |
'naics_code' => '925120', | |
'naics_description' => 'Administration of Urban Planning and Community and Rural Development', | |
], | |
[ | |
'sic_code' => '9611', | |
'sic_description' => 'Administration of General Economic Programs', | |
'naics_code' => '926110', | |
'naics_description' => 'Administration of General Economic Programs', | |
], | |
[ | |
'sic_code' => '9621', | |
'sic_description' => 'Regulation, Administration of Transportation', | |
'naics_code' => '488111', | |
'naics_description' => 'Air Traffic Control', | |
], | |
[ | |
'sic_code' => '9621', | |
'sic_description' => 'Regulation, Administration of Transportation', | |
'naics_code' => '926120', | |
'naics_description' => 'Regulation and Administration of Transportation Programs', | |
], | |
[ | |
'sic_code' => '9631', | |
'sic_description' => 'Regulation, Administration of Utilities', | |
'naics_code' => '926130', | |
'naics_description' => 'Regulation and Administration of Communications, Electric, Gas, and Other Utilities', | |
], | |
[ | |
'sic_code' => '9641', | |
'sic_description' => 'Regulation of Agricultural Marketing', | |
'naics_code' => '926140', | |
'naics_description' => 'Regulation of Agricultural Marketing and Commodities', | |
], | |
[ | |
'sic_code' => '9651', | |
'sic_description' => 'Regulation, Miscellaneous Commercial Sectors', | |
'naics_code' => '926150', | |
'naics_description' => 'Regulation, Licensing, and Inspection of Miscellaneous Commercial Sectors', | |
], | |
[ | |
'sic_code' => '9661', | |
'sic_description' => 'Space Research and Technology', | |
'naics_code' => '927110', | |
'naics_description' => 'Space Research and Technology', | |
], | |
[ | |
'sic_code' => '9711', | |
'sic_description' => 'National Security', | |
'naics_code' => '928110', | |
'naics_description' => 'National Security', | |
], | |
[ | |
'sic_code' => '9721', | |
'sic_description' => 'International Affairs', | |
'naics_code' => '928120', | |
'naics_description' => 'International Affairs', | |
], | |
[ | |
'sic_code' => 'Aux', | |
'sic_description' => '', | |
'naics_code' => '112130', | |
'naics_description' => 'Dual-Purpose Cattle Ranching and Farming', | |
], | |
[ | |
'sic_code' => 'Aux', | |
'sic_description' => '', | |
'naics_code' => '541120', | |
'naics_description' => 'Offices of Notaries', | |
], | |
[ | |
'sic_code' => 'Aux', | |
'sic_description' => '', | |
'naics_code' => '551114', | |
'naics_description' => 'Corporate, Subsidiary, and Regional Managing Offices', | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment