function resetFormElements(form) {
  var formElements = form.elements;
  for (i=0; i<formElements.length; i++) {
   if (formElements[i].type == "select-one") {
    if (formElements[i].options.length > 0){
		formElements[i].options[0].selected = true;
    }
   }else if (formElements[i].type == "text"){
	formElements[i].value = "";
   }
  }
 }
 
 
 
	function setActiveNAICS3(Naics3Val){
		if(document.SearchForm.NAICS3){
			lengthNAICS3 = document.SearchForm.NAICS3.length;
			for(i=0; i<lengthNAICS3; i++){
				if (document.SearchForm.NAICS3.options[i].value == Naics3Val){
					document.SearchForm.NAICS3.options[i].selected = true;
				}
			}
		}
	}
	function setActiveNAICS4(Naics4Val){
		if(document.SearchForm.NAICS4){
			lengthNAICS4 = document.SearchForm.NAICS4.length;
			for(i=0; i<lengthNAICS4; i++){
				if (document.SearchForm.NAICS4.options[i].value == Naics4Val){
					document.SearchForm.NAICS4.options[i].selected = true;
				}
			}
		}
	}
	
	function setActiveNAICSSection(NaicsSectionVal){
		if(document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION){
			lengthNAICS = document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION.length;
			for(i=0; i<lengthNAICS; i++){
				if (document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION.options[i].value == NaicsSectionVal){
					document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION.options[i].selected = true;
				}
			}
		}
	}
 
 
 
 	function clear3(){
		if(document.SearchForm.NAICS3){
			lengthNAICS3 = document.SearchForm.NAICS3.length;
			for(i=0; i<lengthNAICS3; i++){
				document.SearchForm.NAICS3.options[0] = null;
			}
		}
	}
	function clear4(){
		if(document.SearchForm.NAICS4){
			lengthNAICS4 = document.SearchForm.NAICS4.length;
			for(i=0; i<lengthNAICS4; i++){
				document.SearchForm.NAICS4.options[0] = null;
			}
		}
	}
	function changeNAICS3(Naics2){
		x = 1;
		NewOpt = new Option("----Select One----","");
		document.SearchForm.NAICS3.options[0] =  NewOpt;
		for(i=0;i<NAICSArray.length;i++){
			if(NAICSArray[i].split("|")[0].length == 3){
				if(NAICSArray[i].split("|")[0].substring(0, 2) == Naics2){
					NewOpt = new Option(NAICSArray[i].split("|")[1],NAICSArray[i].split("|")[0]);
					document.SearchForm.NAICS3.options[x] =  NewOpt;
					x++;
				}
			}
		}
	}
	function changeNAICS4(Naics3){
		x = 1;
		NewOpt = new Option("----Select One----","");
		document.SearchForm.NAICS4.options[0] =  NewOpt;
		for(i=0;i<NAICSArray.length;i++){
			if(NAICSArray[i].split("|")[0].length == 4){
				if(NAICSArray[i].split("|")[0].substring(0, 3) == Naics3){
					NewOpt = new Option(NAICSArray[i].split("|")[1],NAICSArray[i].split("|")[0]);
					document.SearchForm.NAICS4.options[x] =  NewOpt;
					x++;
				}
			}
		}
	}
	function loadNAICS2(){
		x = 1;
		NewOpt = new Option("----Select One----","");
		document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION.options[0] =  NewOpt;
		for(i=0;i<NAICSArray.length;i++){
			if(NAICSArray[i].split("|")[0].length == 2){
				NewOpt = new Option(NAICSArray[i].split("|")[1],NAICSArray[i].split("|")[0]);
				document.SearchForm.BUSINESSNORTHAMERICANINDUSTRIALCLASSIFICATIONSTANDARDSSECTION.options[x] =  NewOpt;
				x++;
			}
		}
		if (NaicsSectionVal != ""){
			setActiveNAICSSection(NaicsSectionVal);
			changeNAICS3(NaicsSectionVal);
			setActiveNAICS3(Naics3Val);
			if (Naics3Val != ''){
				changeNAICS4(Naics3Val);
				setActiveNAICS4(Naics4Val);
			}
		}
	}
	var NAICSArray = new Array;
	
	NAICSArray[0] = "11|Agriculture, Forestry, Fishing and Hunting ";
	NAICSArray[1] = "111|Crop Production ";
	NAICSArray[2] = "1111|Oilseed and Grain Farming ";
	NAICSArray[3] = "11111|Soybean Farming ";
	NAICSArray[4] = "111110|Soybean Farming ";
	NAICSArray[5] = "11112|Oilseed (except Soybean) Farming ";
	NAICSArray[6] = "111120|Oilseed (except Soybean) Farming US";
	NAICSArray[7] = "11113|Dry Pea and Bean Farming ";
	NAICSArray[8] = "111130|Dry Pea and Bean Farming US";
	NAICSArray[9] = "11114|Wheat Farming ";
	NAICSArray[10] = "111140|Wheat Farming ";
	NAICSArray[11] = "11115|Corn Farming ";
	NAICSArray[12] = "111150|Corn Farming US";
	NAICSArray[13] = "11116|Rice Farming ";
	NAICSArray[14] = "111160|Rice Farming ";
	NAICSArray[15] = "11119|Other Grain Farming ";
	NAICSArray[16] = "111190|Other Grain Farming CAN";
	NAICSArray[17] = "1112|Vegetable and Melon Farming ";
	NAICSArray[18] = "11121|Vegetable and Melon Farming ";
	NAICSArray[19] = "111211|Potato Farming US";
	NAICSArray[20] = "111219|Other Vegetable (except Potato) and Melon Farming US";
	NAICSArray[21] = "1113|Fruit and Tree Nut Farming ";
	NAICSArray[22] = "11131|Orange Groves ";
	NAICSArray[23] = "111310|Orange Groves ";
	NAICSArray[24] = "11132|Citrus (except Orange) Groves ";
	NAICSArray[25] = "111320|Citrus (except Orange) Groves US";
	NAICSArray[26] = "11133|Non-Citrus Fruit and Tree Nut Farming ";
	NAICSArray[27] = "111330|Non-Citrus Fruit and Tree Nut Farming CAN";
	NAICSArray[28] = "1114|Greenhouse, Nursery and Floriculture Production ";
	NAICSArray[29] = "11141|Food Crops Grown Under Cover ";
	NAICSArray[30] = "111411|Mushroom Production US";
	NAICSArray[31] = "111419|Other Food Crops Grown Under Cover US";
	NAICSArray[32] = "11142|Nursery and Floriculture Production ";
	NAICSArray[33] = "111421|Nursery and Tree Production US";
	NAICSArray[34] = "111422|Floriculture Production US";
	NAICSArray[35] = "1119|Other Crop Farming ";
	NAICSArray[36] = "11191|Tobacco Farming ";
	NAICSArray[37] = "111910|Tobacco Farming ";
	NAICSArray[38] = "11192|Cotton Farming ";
	NAICSArray[39] = "111920|Cotton Farming ";
	NAICSArray[40] = "11193|Sugar-Cane Farming ";
	NAICSArray[41] = "111930|Sugar-Cane Farming ";
	NAICSArray[42] = "11194|Hay Farming ";
	NAICSArray[43] = "111940|Hay Farming US";
	NAICSArray[44] = "11199|All Other Crop Farming ";
	NAICSArray[45] = "111993|Fruit and Vegetable Combination Farming CAN";
	NAICSArray[46] = "111999|All Other Miscellaneous Crop Farming CAN";
	NAICSArray[47] = "112|Animal Production ";
	NAICSArray[48] = "1121|Cattle Ranching and Farming ";
	NAICSArray[49] = "11211|Beef Cattle Ranching and Farming, including Feedlots ";
	NAICSArray[50] = "112110|Beef Cattle Ranching and Farming, including Feedlots CAN";
	NAICSArray[51] = "11212|Dairy Cattle and Milk Production ";
	NAICSArray[52] = "112120|Dairy Cattle and Milk Production ";
	NAICSArray[53] = "1122|Hog and Pig Farming ";
	NAICSArray[54] = "11221|Hog and Pig Farming ";
	NAICSArray[55] = "112210|Hog and Pig Farming US";
	NAICSArray[56] = "1123|Poultry and Egg Production ";
	NAICSArray[57] = "11231|Chicken Egg Production ";
	NAICSArray[58] = "112310|Chicken Egg Production US";
	NAICSArray[59] = "11232|Broiler and Other Meat-Type Chicken Production ";
	NAICSArray[60] = "112320|Broiler and Other Meat-Type Chicken Production ";
	NAICSArray[61] = "11233|Turkey Production ";
	NAICSArray[62] = "112330|Turkey Production ";
	NAICSArray[63] = "11234|Poultry Hatcheries ";
	NAICSArray[64] = "112340|Poultry Hatcheries ";
	NAICSArray[65] = "11239|Other Poultry Production ";
	NAICSArray[66] = "112391|Combination Poultry and Egg Production CAN";
	NAICSArray[67] = "112399|All Other Poultry Production CAN";
	NAICSArray[68] = "1124|Sheep and Goat Farming ";
	NAICSArray[69] = "11241|Sheep Farming ";
	NAICSArray[70] = "112410|Sheep Farming US";
	NAICSArray[71] = "11242|Goat Farming ";
	NAICSArray[72] = "112420|Goat Farming ";
	NAICSArray[73] = "1125|Animal Aquaculture ";
	NAICSArray[74] = "11251|Animal Aquaculture ";
	NAICSArray[75] = "112510|Animal Aquaculture CAN";
	NAICSArray[76] = "1129|Other Animal Production ";
	NAICSArray[77] = "11291|Apiculture ";
	NAICSArray[78] = "112910|Apiculture ";
	NAICSArray[79] = "11292|Horse and Other Equine Production ";
	NAICSArray[80] = "112920|Horse and Other Equine Production ";
	NAICSArray[81] = "11293|Fur-Bearing Animal and Rabbit Production ";
	NAICSArray[82] = "112930|Fur-Bearing Animal and Rabbit Production ";
	NAICSArray[83] = "11299|All Other Animal Production ";
	NAICSArray[84] = "112991|Animal Combination Farming CAN";
	NAICSArray[85] = "112999|All Other Miscellaneous Animal Production CAN";
	NAICSArray[86] = "113|Forestry and Logging ";
	NAICSArray[87] = "1131|Timber Tract Operations ";
	NAICSArray[88] = "11311|Timber Tract Operations ";
	NAICSArray[89] = "113110|Timber Tract Operations ";
	NAICSArray[90] = "1132|Forest Nurseries and Gathering of Forest Products ";
	NAICSArray[91] = "11321|Forest Nurseries and Gathering of Forest Products ";
	NAICSArray[92] = "113210|Forest Nurseries and Gathering of Forest Products US";
	NAICSArray[93] = "1133|Logging ";
	NAICSArray[94] = "11331|Logging ";
	NAICSArray[95] = "113311|Logging (except Contract) CAN";
	NAICSArray[96] = "113312|Contract Logging CAN";
	NAICSArray[97] = "114|Fishing, Hunting and Trapping ";
	NAICSArray[98] = "1141|Fishing ";
	NAICSArray[99] = "11411|Fishing ";
	NAICSArray[100] = "114113|Salt Water Fishing CAN";
	NAICSArray[101] = "114114|Inland Fishing CAN";
	NAICSArray[102] = "1142|Hunting and Trapping ";
	NAICSArray[103] = "11421|Hunting and Trapping ";
	NAICSArray[104] = "114210|Hunting and Trapping ";
	NAICSArray[105] = "115|Support Activities for Agriculture and Forestry ";
	NAICSArray[106] = "1151|Support Activities for Crop Production ";
	NAICSArray[107] = "11511|Support Activities for Crop Production ";
	NAICSArray[108] = "115110|Support Activities for Crop Production CAN";
	NAICSArray[109] = "1152|Support Activities for Animal Production ";
	NAICSArray[110] = "11521|Support Activities for Animal Production ";
	NAICSArray[111] = "115210|Support Activities for Animal Production ";
	NAICSArray[112] = "1153|Support Activities for Forestry ";
	NAICSArray[113] = "11531|Support Activities for Forestry ";
	NAICSArray[114] = "115310|Support Activities for Forestry ";
	NAICSArray[115] = "21|Mining and Oil and Gas Extraction ";
	NAICSArray[116] = "211|Oil and Gas Extraction ";
	NAICSArray[117] = "2111|Oil and Gas Extraction ";
	NAICSArray[118] = "21111|Oil and Gas Extraction ";
	NAICSArray[119] = "211113|Conventional Oil and Gas Extraction CAN";
	NAICSArray[120] = "211114|Non-Conventional Oil Extraction CAN";
	NAICSArray[121] = "212|Mining (except Oil and Gas) ";
	NAICSArray[122] = "2121|Coal Mining ";
	NAICSArray[123] = "21211|Coal Mining ";
	NAICSArray[124] = "212114|Bituminous Coal Mining CAN";
	NAICSArray[125] = "212115|Subbituminous Coal Mining CAN";
	NAICSArray[126] = "212116|Lignite Coal Mining CAN";
	NAICSArray[127] = "2122|Metal Ore Mining ";
	NAICSArray[128] = "21221|Iron Ore Mining ";
	NAICSArray[129] = "212210|Iron Ore Mining ";
	NAICSArray[130] = "21222|Gold and Silver Ore Mining ";
	NAICSArray[131] = "212220|Gold and Silver Ore Mining CAN";
	NAICSArray[132] = "21223|Copper, Nickel, Lead and Zinc Ore Mining ";
	NAICSArray[133] = "212231|Lead-Zinc Ore Mining US";
	NAICSArray[134] = "212232|Nickel-Copper Ore Mining CAN";
	NAICSArray[135] = "212233|Copper-Zinc Ore Mining CAN";
	NAICSArray[136] = "21229|Other Metal Ore Mining ";
	NAICSArray[137] = "212291|Uranium Ore Mining US";
	NAICSArray[138] = "212299|All Other Metal Ore Mining US";
	NAICSArray[139] = "2123|Non-Metallic Mineral Mining and Quarrying ";
	NAICSArray[140] = "21231|Stone Mining and Quarrying ";
	NAICSArray[141] = "212314|Granite Mining and Quarrying CAN";
	NAICSArray[142] = "212315|Limestone Mining and Quarrying CAN";
	NAICSArray[143] = "212316|Marble Mining and Quarrying CAN";
	NAICSArray[144] = "212317|Sandstone Mining and Quarrying CAN";
	NAICSArray[145] = "21232|Sand, Gravel, Clay, and Ceramic and Refractory Minerals Mining and Quarrying ";
	NAICSArray[146] = "212323|Sand and Gravel Mining and Quarrying CAN";
	NAICSArray[147] = "212326|Shale, Clay and Refractory Mineral Mining and Quarrying CAN";
	NAICSArray[148] = "21239|Other Non-Metallic Mineral Mining and Quarrying ";
	NAICSArray[149] = "212392|Diamond Mining CAN";
	NAICSArray[150] = "212393|Salt Mining CAN";
	NAICSArray[151] = "212394|Asbestos Mining CAN";
	NAICSArray[152] = "212395|Gypsum Mining CAN";
	NAICSArray[153] = "212396|Potash Mining CAN";
	NAICSArray[154] = "212397|Peat Extraction CAN";
	NAICSArray[155] = "212398|All Other Non-Metallic Mineral Mining and Quarrying CAN";
	NAICSArray[156] = "213|Support Activities for Mining and Oil and Gas Extraction ";
	NAICSArray[157] = "2131|Support Activities for Mining and Oil and Gas Extraction ";
	NAICSArray[158] = "21311|Support Activities for Mining and Oil and Gas Extraction ";
	NAICSArray[159] = "213111|Oil and Gas Contract Drilling ";
	NAICSArray[160] = "213117|Contract Drilling (except Oil and Gas) CAN";
	NAICSArray[161] = "213118|Services to Oil and Gas Extraction CAN";
	NAICSArray[162] = "213119|Other Support Activities for Mining CAN";
	NAICSArray[163] = "22|Utilities ";
	NAICSArray[164] = "221|Utilities US";
	NAICSArray[165] = "2211|Electric Power Generation, Transmission and Distribution US";
	NAICSArray[166] = "22111|Electric Power Generation US";
	NAICSArray[167] = "221111|Hydro-Electric Power Generation US";
	NAICSArray[168] = "221112|Fossil-Fuel Electric Power Generation US";
	NAICSArray[169] = "221113|Nuclear Electric Power Generation US";
	NAICSArray[170] = "221119|Other Electric Power Generation US";
	NAICSArray[171] = "22112|Electric Power Transmission, Control and Distribution US";
	NAICSArray[172] = "221121|Electric Bulk Power Transmission and Control US";
	NAICSArray[173] = "221122|Electric Power Distribution US";
	NAICSArray[174] = "2212|Natural Gas Distribution US";
	NAICSArray[175] = "22121|Natural Gas Distribution US";
	NAICSArray[176] = "221210|Natural Gas Distribution US";
	NAICSArray[177] = "2213|Water, Sewage and Other Systems US";
	NAICSArray[178] = "22131|Water Supply and Irrigation Systems US";
	NAICSArray[179] = "221310|Water Supply and Irrigation Systems US";
	NAICSArray[180] = "22132|Sewage Treatment Facilities US";
	NAICSArray[181] = "221320|Sewage Treatment Facilities US";
	NAICSArray[182] = "22133|Steam and Air-Conditioning Supply US";
	NAICSArray[183] = "221330|Steam and Air-Conditioning Supply US";
	NAICSArray[184] = "23|Construction ";
	NAICSArray[185] = "236|Construction of Buildings ";
	NAICSArray[186] = "2361|Residential Building Construction ";
	NAICSArray[187] = "23611|Residential Building Construction ";
	NAICSArray[188] = "236110|Residential Building Construction CAN";
	NAICSArray[189] = "2362|Non-residential Building Construction ";
	NAICSArray[190] = "23621|Industrial Building and Structure Construction ";
	NAICSArray[191] = "236210|Industrial Building and Structure Construction ";
	NAICSArray[192] = "23622|Commercial and Institutional Building Construction ";
	NAICSArray[193] = "236220|Commercial and Institutional Building Construction US";
	NAICSArray[194] = "237|Heavy and Civil Engineering Construction ";
	NAICSArray[195] = "2371|Utility System Construction ";
	NAICSArray[196] = "23711|Water and Sewer Line and Related Structures Construction ";
	NAICSArray[197] = "237110|Water and Sewer Line and Related Structures Construction US";
	NAICSArray[198] = "23712|Oil and Gas Pipeline and Related Structures Construction ";
	NAICSArray[199] = "237120|Oil and Gas Pipeline and Related Structures Construction US";
	NAICSArray[200] = "23713|Power and Communication Line and Related Structures Construction ";
	NAICSArray[201] = "237130|Power and Communication Line and Related Structures Construction US";
	NAICSArray[202] = "2372|Land Subdivision ";
	NAICSArray[203] = "23721|Land Subdivision ";
	NAICSArray[204] = "237210|Land Subdivision US";
	NAICSArray[205] = "2373|Highway, Street and Bridge Construction ";
	NAICSArray[206] = "23731|Highway, Street and Bridge Construction ";
	NAICSArray[207] = "237310|Highway, Street and Bridge Construction US";
	NAICSArray[208] = "2379|Other Heavy and Civil Engineering Construction ";
	NAICSArray[209] = "23799|Other Heavy and Civil Engineering Construction ";
	NAICSArray[210] = "237990|Other Heavy and Civil Engineering Construction US";
	NAICSArray[211] = "238|Specialty Trade Contractors ";
	NAICSArray[212] = "2381|Foundation, Structure, and Building Exterior Contractors US";
	NAICSArray[213] = "23811|Poured Concrete Foundation and Structure Contractors ";
	NAICSArray[214] = "238110|Poured Concrete Foundation and Structure Contractors ";
	NAICSArray[215] = "23812|Structural Steel and Precast Concrete Contractors ";
	NAICSArray[216] = "238120|Structural Steel and Precast Concrete Contractors US";
	NAICSArray[217] = "23813|Framing Contractors US";
	NAICSArray[218] = "238130|Framing Contractors US";
	NAICSArray[219] = "23814|Masonry Contractors US";
	NAICSArray[220] = "238140|Masonry Contractors US";
	NAICSArray[221] = "23815|Glass and Glazing Contractors US";
	NAICSArray[222] = "238150|Glass and Glazing Contractors US";
	NAICSArray[223] = "23816|Roofing Contractors US";
	NAICSArray[224] = "238160|Roofing Contractors US";
	NAICSArray[225] = "23817|Siding Contractors US";
	NAICSArray[226] = "238170|Siding Contractors US";
	NAICSArray[227] = "23819|Other Foundation, Structure and Building Exterior Contractors US";
	NAICSArray[228] = "238190|Other Foundation, Structure and Building Exterior Contractors US";
	NAICSArray[229] = "2382|Building Equipment Contractors ";
	NAICSArray[230] = "23821|Electrical Contractors ";
	NAICSArray[231] = "238210|Electrical Contractors ";
	NAICSArray[232] = "23822|Plumbing, Heating and Air-Conditioning Contractors ";
	NAICSArray[233] = "238220|Plumbing, Heating and Air-Conditioning Contractors US";
	NAICSArray[234] = "23829|Other Building Equipment Contractors ";
	NAICSArray[235] = "238291|Elevator and Escalator Installation Contractors CAN";
	NAICSArray[236] = "238299|All Other Building Equipment Contractors CAN";
	NAICSArray[237] = "2383|Building Finishing Contractors ";
	NAICSArray[238] = "23831|Drywall and Insulation Contractors ";
	NAICSArray[239] = "238310|Drywall and Insulation Contractors US";
	NAICSArray[240] = "23832|Painting and Wall Covering Contractors ";
	NAICSArray[241] = "238320|Painting and Wall Covering Contractors US";
	NAICSArray[242] = "23833|Flooring Contractors ";
	NAICSArray[243] = "238330|Flooring Contractors ";
	NAICSArray[244] = "23834|Tile and Terrazzo Contractors ";
	NAICSArray[245] = "238340|Tile and Terrazzo Contractors ";
	NAICSArray[246] = "23835|Finish Carpentry Contractors ";
	NAICSArray[247] = "238350|Finish Carpentry Contractors ";
	NAICSArray[248] = "23839|Other Building Finishing Contractors ";
	NAICSArray[249] = "238390|Other Building Finishing Contractors US";
	NAICSArray[250] = "2389|Other Specialty Trade Contractors ";
	NAICSArray[251] = "23891|Site Preparation Contractors ";
	NAICSArray[252] = "238910|Site Preparation Contractors ";
	NAICSArray[253] = "23899|All Other Specialty Trade Contractors ";
	NAICSArray[254] = "238990|All Other Specialty Trade Contractors US";
	NAICSArray[255] = "31|Manufacturing - Food, Beverage, Textile & Clothing";
	NAICSArray[256] = "311|Food Manufacturing ";
	NAICSArray[257] = "3111|Animal Food Manufacturing ";
	NAICSArray[258] = "31111|Animal Food Manufacturing ";
	NAICSArray[259] = "311111|Dog and Cat Food Manufacturing US";
	NAICSArray[260] = "311119|Other Animal Food Manufacturing US";
	NAICSArray[261] = "3112|Grain and Oilseed Milling ";
	NAICSArray[262] = "31121|Flour Milling and Malt Manufacturing ";
	NAICSArray[263] = "311211|Flour Milling US";
	NAICSArray[264] = "311214|Rice Milling and Malt Manufacturing CAN";
	NAICSArray[265] = "31122|Starch and Vegetable Fat and Oil Manufacturing ";
	NAICSArray[266] = "311221|Wet Corn Milling US";
	NAICSArray[267] = "311224|Oilseed Processing CAN";
	NAICSArray[268] = "311225|Fat and Oil Refining and Blending US";
	NAICSArray[269] = "31123|Breakfast Cereal Manufacturing ";
	NAICSArray[270] = "311230|Breakfast Cereal Manufacturing ";
	NAICSArray[271] = "3113|Sugar and Confectionery Product Manufacturing ";
	NAICSArray[272] = "31131|Sugar Manufacturing ";
	NAICSArray[273] = "311310|Sugar Manufacturing CAN";
	NAICSArray[274] = "31132|Chocolate and Confectionery Manufacturing from Cacao Beans ";
	NAICSArray[275] = "311320|Chocolate and Confectionery Manufacturing from Cacao Beans ";
	NAICSArray[276] = "31133|Confectionery Manufacturing from Purchased Chocolate ";
	NAICSArray[277] = "311330|Confectionery Manufacturing from Purchased Chocolate ";
	NAICSArray[278] = "31134|Non-Chocolate Confectionery Manufacturing ";
	NAICSArray[279] = "311340|Non-Chocolate Confectionery Manufacturing ";
	NAICSArray[280] = "3114|Fruit and Vegetable Preserving and Specialty Food Manufacturing ";
	NAICSArray[281] = "31141|Frozen Food Manufacturing ";
	NAICSArray[282] = "311410|Frozen Food Manufacturing CAN";
	NAICSArray[283] = "31142|Fruit and Vegetable Canning, Pickling and Drying ";
	NAICSArray[284] = "311420|Fruit and Vegetable Canning, Pickling and Drying CAN";
	NAICSArray[285] = "3115|Dairy Product Manufacturing ";
	NAICSArray[286] = "31151|Dairy Product (except Frozen) Manufacturing ";
	NAICSArray[287] = "311511|Fluid Milk Manufacturing US";
	NAICSArray[288] = "311515|Butter, Cheese, and Dry and Condensed Dairy Products Manufacturing CAN";
	NAICSArray[289] = "31152|Ice Cream and Frozen Dessert Manufacturing ";
	NAICSArray[290] = "311520|Ice Cream and Frozen Dessert Manufacturing ";
	NAICSArray[291] = "3116|Meat Product Manufacturing ";
	NAICSArray[292] = "31161|Animal Slaughtering and Processing ";
	NAICSArray[293] = "311611|Animal (except Poultry) Slaughtering US";
	NAICSArray[294] = "311614|Rendering and Meat Processing from Carcasses CAN";
	NAICSArray[295] = "311615|Poultry Processing US";
	NAICSArray[296] = "3117|Seafood Product Preparation and Packaging ";
	NAICSArray[297] = "31171|Seafood Product Preparation and Packaging ";
	NAICSArray[298] = "311710|Seafood Product Preparation and Packaging MEX";
	NAICSArray[299] = "3118|Bakeries and Tortilla Manufacturing ";
	NAICSArray[300] = "31181|Bread and Bakery Product Manufacturing ";
	NAICSArray[301] = "311811|Retail Bakeries US";
	NAICSArray[302] = "311814|Commercial Bakeries and Frozen Bakery Product Manufacturing CAN";
	NAICSArray[303] = "31182|Cookie, Cracker and Pasta Manufacturing ";
	NAICSArray[304] = "311821|Cookie and Cracker Manufacturing US";
	NAICSArray[305] = "311822|Flour Mixes and Dough Manufacturing from Purchased Flour US";
	NAICSArray[306] = "311823|Dry Pasta Manufacturing US";
	NAICSArray[307] = "31183|Tortilla Manufacturing ";
	NAICSArray[308] = "311830|Tortilla Manufacturing ";
	NAICSArray[309] = "3119|Other Food Manufacturing ";
	NAICSArray[310] = "31191|Snack Food Manufacturing ";
	NAICSArray[311] = "311911|Roasted Nut and Peanut Butter Manufacturing US";
	NAICSArray[312] = "311919|Other Snack Food Manufacturing US";
	NAICSArray[313] = "31192|Coffee and Tea Manufacturing ";
	NAICSArray[314] = "311920|Coffee and Tea Manufacturing US";
	NAICSArray[315] = "31193|Flavouring Syrup and Concentrate Manufacturing ";
	NAICSArray[316] = "311930|Flavouring Syrup and Concentrate Manufacturing ";
	NAICSArray[317] = "31194|Seasoning and Dressing Manufacturing ";
	NAICSArray[318] = "311940|Seasoning and Dressing Manufacturing MEX";
	NAICSArray[319] = "31199|All Other Food Manufacturing ";
	NAICSArray[320] = "311990|All Other Food Manufacturing CAN";
	NAICSArray[321] = "312|Beverage and Tobacco Product Manufacturing ";
	NAICSArray[322] = "3121|Beverage Manufacturing ";
	NAICSArray[323] = "31211|Soft Drink and Ice Manufacturing ";
	NAICSArray[324] = "312110|Soft Drink and Ice Manufacturing CAN";
	NAICSArray[325] = "31212|Breweries ";
	NAICSArray[326] = "312120|Breweries ";
	NAICSArray[327] = "31213|Wineries ";
	NAICSArray[328] = "312130|Wineries US";
	NAICSArray[329] = "31214|Distilleries ";
	NAICSArray[330] = "312140|Distilleries US";
	NAICSArray[331] = "3122|Tobacco Manufacturing ";
	NAICSArray[332] = "31221|Tobacco Stemming and Redrying ";
	NAICSArray[333] = "312210|Tobacco Stemming and Redrying ";
	NAICSArray[334] = "31222|Tobacco Product Manufacturing ";
	NAICSArray[335] = "312220|Tobacco Product Manufacturing CAN";
	NAICSArray[336] = "313|Textile Mills ";
	NAICSArray[337] = "3131|Fibre, Yarn and Thread Mills ";
	NAICSArray[338] = "31311|Fibre, Yarn and Thread Mills ";
	NAICSArray[339] = "313110|Fibre, Yarn and Thread Mills CAN";
	NAICSArray[340] = "3132|Fabric Mills ";
	NAICSArray[341] = "31321|Broad-Woven Fabric Mills ";
	NAICSArray[342] = "313210|Broad-Woven Fabric Mills ";
	NAICSArray[343] = "31322|Narrow Fabric Mills and Schiffli Machine Embroidery ";
	NAICSArray[344] = "313220|Narrow Fabric Mills and Schiffli Machine Embroidery MEX";
	NAICSArray[345] = "31323|Nonwoven Fabric Mills ";
	NAICSArray[346] = "313230|Nonwoven Fabric Mills ";
	NAICSArray[347] = "31324|Knit Fabric Mills ";
	NAICSArray[348] = "313240|Knit Fabric Mills MEX";
	NAICSArray[349] = "3133|Textile and Fabric Finishing and Fabric Coating ";
	NAICSArray[350] = "31331|Textile and Fabric Finishing ";
	NAICSArray[351] = "313310|Textile and Fabric Finishing CAN";
	NAICSArray[352] = "31332|Fabric Coating ";
	NAICSArray[353] = "313320|Fabric Coating ";
	NAICSArray[354] = "314|Textile Product Mills ";
	NAICSArray[355] = "3141|Textile Furnishings Mills ";
	NAICSArray[356] = "31411|Carpet and Rug Mills ";
	NAICSArray[357] = "314110|Carpet and Rug Mills ";
	NAICSArray[358] = "31412|Curtain and Linen Mills ";
	NAICSArray[359] = "314120|Curtain and Linen Mills MEX";
	NAICSArray[360] = "3149|Other Textile Product Mills ";
	NAICSArray[361] = "31491|Textile Bag and Canvas Mills ";
	NAICSArray[362] = "314910|Textile Bag and Canvas Mills CAN";
	NAICSArray[363] = "31499|All Other Textile Product Mills ";
	NAICSArray[364] = "314990|All Other Textile Product Mills CAN";
	NAICSArray[365] = "315|Clothing Manufacturing ";
	NAICSArray[366] = "3151|Clothing Knitting Mills ";
	NAICSArray[367] = "31511|Hosiery and Sock Mills ";
	NAICSArray[368] = "315110|Hosiery and Sock Mills MEX";
	NAICSArray[369] = "31519|Other Clothing Knitting Mills ";
	NAICSArray[370] = "315190|Other Clothing Knitting Mills CAN";
	NAICSArray[371] = "3152|Cut and Sew Clothing Manufacturing ";
	NAICSArray[372] = "31521|Cut and Sew Clothing Contracting US";
	NAICSArray[373] = "315210|Cut and Sew Clothing Contracting CAN";
	NAICSArray[374] = "31522|Men's and Boys' Cut and Sew Clothing Manufacturing US";
	NAICSArray[375] = "315221|Men's and Boys' Cut and Sew Underwear and Nightwear Manufacturing US";
	NAICSArray[376] = "315222|Men's and Boys' Cut and Sew Suit, Coat and Overcoat Manufacturing US";
	NAICSArray[377] = "315226|Men's and Boys' Cut and Sew Shirt Manufacturing CAN";
	NAICSArray[378] = "315227|Men's and Boys' Cut and Sew Trouser, Slack and Jean Manufacturing CAN";
	NAICSArray[379] = "315229|Other Men's and Boys' Cut and Sew Clothing Manufacturing CAN";
	NAICSArray[380] = "31523|Women's and Girls' Cut and Sew Clothing Manufacturing US";
	NAICSArray[381] = "315231|Women's and Girls' Cut and Sew Lingerie, Loungewear and Nightwear Manufacturing US";
	NAICSArray[382] = "315232|Women's and Girls' Cut and Sew Blouse and Shirt Manufacturing US";
	NAICSArray[383] = "315233|Women's and Girls' Cut and Sew Dress Manufacturing US";
	NAICSArray[384] = "315234|Women's and Girls' Cut and Sew Suit, Coat, Tailored Jacket and Skirt Manufacturing US";
	NAICSArray[385] = "315239|Other Women's and Girls' Cut and Sew Clothing Manufacturing US";
	NAICSArray[386] = "31529|Other Cut and Sew Clothing Manufacturing US";
	NAICSArray[387] = "315291|Infants' Cut and Sew Clothing Manufacturing US";
	NAICSArray[388] = "315292|Fur and Leather Clothing Manufacturing US";
	NAICSArray[389] = "315299|All Other Cut and Sew Clothing Manufacturing US";
	NAICSArray[390] = "3159|Clothing Accessories and Other Clothing Manufacturing ";
	NAICSArray[391] = "31599|Clothing Accessories and Other Clothing Manufacturing ";
	NAICSArray[392] = "315990|Clothing Accessories and Other Clothing Manufacturing CAN";
	NAICSArray[393] = "316|Leather and Allied Product Manufacturing ";
	NAICSArray[394] = "3161|Leather and Hide Tanning and Finishing ";
	NAICSArray[395] = "31611|Leather and Hide Tanning and Finishing ";
	NAICSArray[396] = "316110|Leather and Hide Tanning and Finishing ";
	NAICSArray[397] = "3162|Footwear Manufacturing ";
	NAICSArray[398] = "31621|Footwear Manufacturing ";
	NAICSArray[399] = "316210|Footwear Manufacturing CAN";
	NAICSArray[400] = "3169|Other Leather and Allied Product Manufacturing ";
	NAICSArray[401] = "31699|Other Leather and Allied Product Manufacturing ";
	NAICSArray[402] = "316990|Other Leather and Allied Product Manufacturing CAN";
	NAICSArray[403] = "321|Wood Product Manufacturing ";
	NAICSArray[404] = "3211|Sawmills and Wood Preservation ";
	NAICSArray[405] = "32111|Sawmills and Wood Preservation ";
	NAICSArray[406] = "321111|Sawmills (except Shingle and Shake Mills) MEX";
	NAICSArray[407] = "321112|Shingle and Shake Mills MEX";
	NAICSArray[408] = "321114|Wood Preservation US";
	NAICSArray[409] = "3212|Veneer, Plywood and Engineered Wood Product Manufacturing ";
	NAICSArray[410] = "32121|Veneer, Plywood and Engineered Wood Product Manufacturing ";
	NAICSArray[411] = "321211|Hardwood Veneer and Plywood Mills US";
	NAICSArray[412] = "321212|Softwood Veneer and Plywood Mills US";
	NAICSArray[413] = "321215|Structural Wood Product Manufacturing CAN";
	NAICSArray[414] = "321216|Particle Board and Fibreboard Mills CAN";
	NAICSArray[415] = "321217|Waferboard Mills CAN";
	NAICSArray[416] = "3219|Other Wood Product Manufacturing ";
	NAICSArray[417] = "32191|Millwork ";
	NAICSArray[418] = "321911|Wood Window and Door Manufacturing US";
	NAICSArray[419] = "321919|Other Millwork CAN";
	NAICSArray[420] = "32192|Wood Container and Pallet Manufacturing ";
	NAICSArray[421] = "321920|Wood Container and Pallet Manufacturing ";
	NAICSArray[422] = "32199|All Other Wood Product Manufacturing ";
	NAICSArray[423] = "321991|Manufactured (Mobile) Home Manufacturing US";
	NAICSArray[424] = "321992|Prefabricated Wood Building Manufacturing US";
	NAICSArray[425] = "321999|All Other Miscellaneous Wood Product Manufacturing US";
	NAICSArray[426] = "32|Manufacturing - Wood, Printing, Chemical & Plastic/Rubber";
	NAICSArray[427] = "322|Paper Manufacturing ";
	NAICSArray[428] = "3221|Pulp, Paper and Paperboard Mills ";
	NAICSArray[429] = "32211|Pulp Mills ";
	NAICSArray[430] = "322111|Mechanical Pulp Mills CAN";
	NAICSArray[431] = "322112|Chemical Pulp Mills CAN";
	NAICSArray[432] = "32212|Paper Mills ";
	NAICSArray[433] = "322121|Paper (except Newsprint) Mills US";
	NAICSArray[434] = "322122|Newsprint Mills US";
	NAICSArray[435] = "32213|Paperboard Mills ";
	NAICSArray[436] = "322130|Paperboard Mills US";
	NAICSArray[437] = "3222|Converted Paper Product Manufacturing ";
	NAICSArray[438] = "32221|Paperboard Container Manufacturing ";
	NAICSArray[439] = "322211|Corrugated and Solid Fibre Box Manufacturing US";
	NAICSArray[440] = "322212|Folding Paperboard Box Manufacturing US";
	NAICSArray[441] = "322219|Other Paperboard Container Manufacturing CAN";
	NAICSArray[442] = "32222|Paper Bag and Coated and Treated Paper Manufacturing ";
	NAICSArray[443] = "322220|Paper Bag and Coated and Treated Paper Manufacturing MEX";
	NAICSArray[444] = "32223|Stationery Product Manufacturing ";
	NAICSArray[445] = "322230|Stationery Product Manufacturing MEX";
	NAICSArray[446] = "32229|Other Converted Paper Product Manufacturing ";
	NAICSArray[447] = "322291|Sanitary Paper Product Manufacturing US";
	NAICSArray[448] = "322299|All Other Converted Paper Product Manufacturing US";
	NAICSArray[449] = "323|Printing and Related Support Activities ";
	NAICSArray[450] = "3231|Printing and Related Support Activities ";
	NAICSArray[451] = "32311|Printing ";
	NAICSArray[452] = "323113|Commercial Screen Printing US";
	NAICSArray[453] = "323114|Quick Printing US";
	NAICSArray[454] = "323115|Digital Printing US";
	NAICSArray[455] = "323116|Manifold Business Forms Printing US";
	NAICSArray[456] = "323119|Other Printing CAN";
	NAICSArray[457] = "32312|Support Activities for Printing ";
	NAICSArray[458] = "323120|Support Activities for Printing MEX";
	NAICSArray[459] = "324|Petroleum and Coal Products Manufacturing ";
	NAICSArray[460] = "3241|Petroleum and Coal Products Manufacturing ";
	NAICSArray[461] = "32411|Petroleum Refineries ";
	NAICSArray[462] = "324110|Petroleum Refineries ";
	NAICSArray[463] = "32412|Asphalt Paving, Roofing and Saturated Materials Manufacturing ";
	NAICSArray[464] = "324121|Asphalt Paving Mixture and Block Manufacturing US";
	NAICSArray[465] = "324122|Asphalt Shingle and Coating Material Manufacturing US";
	NAICSArray[466] = "32419|Other Petroleum and Coal Products Manufacturing ";
	NAICSArray[467] = "324190|Other Petroleum and Coal Products Manufacturing CAN";
	NAICSArray[468] = "325|Chemical Manufacturing ";
	NAICSArray[469] = "3251|Basic Chemical Manufacturing ";
	NAICSArray[470] = "32511|Petrochemical Manufacturing ";
	NAICSArray[471] = "325110|Petrochemical Manufacturing ";
	NAICSArray[472] = "32512|Industrial Gas Manufacturing ";
	NAICSArray[473] = "325120|Industrial Gas Manufacturing ";
	NAICSArray[474] = "32513|Synthetic Dye and Pigment Manufacturing ";
	NAICSArray[475] = "325130|Synthetic Dye and Pigment Manufacturing MEX";
	NAICSArray[476] = "32518|Other Basic Inorganic Chemical Manufacturing ";
	NAICSArray[477] = "325181|Alkali and Chlorine Manufacturing US";
	NAICSArray[478] = "325189|All Other Basic Inorganic Chemical Manufacturing CAN";
	NAICSArray[479] = "32519|Other Basic Organic Chemical Manufacturing ";
	NAICSArray[480] = "325190|Other Basic Organic Chemical Manufacturing MEX";
	NAICSArray[481] = "3252|Resin, Synthetic Rubber, and Artificial and Synthetic Fibres and Filaments Manufacturing ";
	NAICSArray[482] = "32521|Resin and Synthetic Rubber Manufacturing ";
	NAICSArray[483] = "325210|Resin and Synthetic Rubber Manufacturing CAN";
	NAICSArray[484] = "32522|Artificial and Synthetic Fibres and Filaments Manufacturing CAN";
	NAICSArray[485] = "325220|Artificial and Synthetic Fibres and Filaments Manufacturing MEX";
	NAICSArray[486] = "3253|Pesticide, Fertilizer and Other Agricultural Chemical Manufacturing ";
	NAICSArray[487] = "32531|Fertilizer Manufacturing ";
	NAICSArray[488] = "325313|Chemical Fertilizer (except Potash) Manufacturing CAN";
	NAICSArray[489] = "325314|Mixed Fertilizer Manufacturing US";
	NAICSArray[490] = "32532|Pesticide and Other Agricultural Chemical Manufacturing ";
	NAICSArray[491] = "325320|Pesticide and Other Agricultural Chemical Manufacturing ";
	NAICSArray[492] = "3254|Pharmaceutical and Medicine Manufacturing ";
	NAICSArray[493] = "32541|Pharmaceutical and Medicine Manufacturing ";
	NAICSArray[494] = "325410|Pharmaceutical and Medicine Manufacturing CAN";
	NAICSArray[495] = "3255|Paint, Coating and Adhesive Manufacturing ";
	NAICSArray[496] = "32551|Paint and Coating Manufacturing ";
	NAICSArray[497] = "325510|Paint and Coating Manufacturing ";
	NAICSArray[498] = "32552|Adhesive Manufacturing ";
	NAICSArray[499] = "325520|Adhesive Manufacturing ";
	NAICSArray[500] = "3256|Soap, Cleaning Compound and Toilet Preparation Manufacturing ";
	NAICSArray[501] = "32561|Soap and Cleaning Compound Manufacturing ";
	NAICSArray[502] = "325610|Soap and Cleaning Compound Manufacturing MEX";
	NAICSArray[503] = "32562|Toilet Preparation Manufacturing ";
	NAICSArray[504] = "325620|Toilet Preparation Manufacturing ";
	NAICSArray[505] = "3259|Other Chemical Product Manufacturing ";
	NAICSArray[506] = "32591|Printing Ink Manufacturing ";
	NAICSArray[507] = "325910|Printing Ink Manufacturing ";
	NAICSArray[508] = "32592|Explosives Manufacturing ";
	NAICSArray[509] = "325920|Explosives Manufacturing ";
	NAICSArray[510] = "32599|All Other Chemical Product Manufacturing ";
	NAICSArray[511] = "325991|Custom Compounding of Purchased Resins US";
	NAICSArray[512] = "325999|All Other Miscellaneous Chemical Product Manufacturing CAN";
	NAICSArray[513] = "326|Plastics and Rubber Products Manufacturing ";
	NAICSArray[514] = "3261|Plastic Product Manufacturing ";
	NAICSArray[515] = "32611|Plastics Packaging Materials and Unlaminated Film and Sheet Manufacturing ";
	NAICSArray[516] = "326111|Plastics Bag Manufacturing US";
	NAICSArray[517] = "326114|Plastic Film and Sheet Manufacturing CAN";
	NAICSArray[518] = "32612|Plastics Pipe, Pipe Fitting, and Unlaminated Profile Shape Manufacturing ";
	NAICSArray[519] = "326121|Unlaminated Plastics Profile Shape Manufacturing US";
	NAICSArray[520] = "326122|Plastic Pipe and Pipe Fitting Manufacturing US";
	NAICSArray[521] = "32613|Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing ";
	NAICSArray[522] = "326130|Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing ";
	NAICSArray[523] = "32614|Polystyrene Foam Product Manufacturing ";
	NAICSArray[524] = "326140|Polystyrene Foam Product Manufacturing ";
	NAICSArray[525] = "32615|Urethane and Other Foam Product (except Polystyrene) Manufacturing ";
	NAICSArray[526] = "326150|Urethane and Other Foam Product (except Polystyrene) Manufacturing ";
	NAICSArray[527] = "32616|Plastic Bottle Manufacturing ";
	NAICSArray[528] = "326160|Plastic Bottle Manufacturing ";
	NAICSArray[529] = "32619|Other Plastic Product Manufacturing ";
	NAICSArray[530] = "326191|Plastic Plumbing Fixture Manufacturing US";
	NAICSArray[531] = "326193|Motor Vehicle Plastic Parts Manufacturing CAN";
	NAICSArray[532] = "326198|All Other Plastic Product Manufacturing CAN";
	NAICSArray[533] = "3262|Rubber Product Manufacturing ";
	NAICSArray[534] = "32621|Tire Manufacturing ";
	NAICSArray[535] = "326210|Tire Manufacturing CAN";
	NAICSArray[536] = "32622|Rubber and Plastic Hose and Belting Manufacturing ";
	NAICSArray[537] = "326220|Rubber and Plastic Hose and Belting Manufacturing ";
	NAICSArray[538] = "32629|Other Rubber Product Manufacturing ";
	NAICSArray[539] = "326290|Other Rubber Product Manufacturing MEX";
	NAICSArray[540] = "327|Non-Metallic Mineral Product Manufacturing ";
	NAICSArray[541] = "3271|Clay Product and Refractory Manufacturing ";
	NAICSArray[542] = "32711|Pottery, Ceramics and Plumbing Fixture Manufacturing ";
	NAICSArray[543] = "327110|Pottery, Ceramics and Plumbing Fixture Manufacturing CAN";
	NAICSArray[544] = "32712|Clay Building Material and Refractory Manufacturing ";
	NAICSArray[545] = "327120|Clay Building Material and Refractory Manufacturing CAN";
	NAICSArray[546] = "3272|Glass and Glass Product Manufacturing ";
	NAICSArray[547] = "32721|Glass and Glass Product Manufacturing ";
	NAICSArray[548] = "327214|Glass Manufacturing CAN";
	NAICSArray[549] = "327215|Glass Product Manufacturing from Purchased Glass US";
	NAICSArray[550] = "3273|Cement and Concrete Product Manufacturing ";
	NAICSArray[551] = "32731|Cement Manufacturing ";
	NAICSArray[552] = "327310|Cement Manufacturing ";
	NAICSArray[553] = "32732|Ready-Mix Concrete Manufacturing ";
	NAICSArray[554] = "327320|Ready-Mix Concrete Manufacturing ";
	NAICSArray[555] = "32733|Concrete Pipe, Brick and Block Manufacturing ";
	NAICSArray[556] = "327330|Concrete Pipe, Brick and Block Manufacturing MEX";
	NAICSArray[557] = "32739|Other Concrete Product Manufacturing ";
	NAICSArray[558] = "327390|Other Concrete Product Manufacturing US";
	NAICSArray[559] = "3274|Lime and Gypsum Product Manufacturing ";
	NAICSArray[560] = "32741|Lime Manufacturing ";
	NAICSArray[561] = "327410|Lime Manufacturing ";
	NAICSArray[562] = "32742|Gypsum Product Manufacturing ";
	NAICSArray[563] = "327420|Gypsum Product Manufacturing ";
	NAICSArray[564] = "3279|Other Non-Metallic Mineral Product Manufacturing ";
	NAICSArray[565] = "32791|Abrasive Product Manufacturing ";
	NAICSArray[566] = "327910|Abrasive Product Manufacturing ";
	NAICSArray[567] = "32799|All Other Non-Metallic Mineral Product Manufacturing ";
	NAICSArray[568] = "327990|All Other Non-Metallic Mineral Product Manufacturing CAN";
	NAICSArray[569] = "33|Manufacturing - Metal, Machinery, Transportation & Furniture";
	NAICSArray[570] = "331|Primary Metal Manufacturing ";
	NAICSArray[571] = "3311|Iron and Steel Mills and Ferro-Alloy Manufacturing ";
	NAICSArray[572] = "33111|Iron and Steel Mills and Ferro-Alloy Manufacturing ";
	NAICSArray[573] = "331110|Iron and Steel Mills and Ferro-Alloy Manufacturing CAN";
	NAICSArray[574] = "3312|Steel Product Manufacturing from Purchased Steel ";
	NAICSArray[575] = "33121|Iron and Steel Pipes and Tubes Manufacturing from Purchased Steel ";
	NAICSArray[576] = "331210|Iron and Steel Pipes and Tubes Manufacturing from Purchased Steel ";
	NAICSArray[577] = "33122|Rolling and Drawing of Purchased Steel ";
	NAICSArray[578] = "331221|Cold-Rolled Steel Shape Manufacturing US";
	NAICSArray[579] = "331222|Steel Wire Drawing US";
	NAICSArray[580] = "3313|Alumina and Aluminum Production and Processing ";
	NAICSArray[581] = "33131|Alumina and Aluminum Production and Processing ";
	NAICSArray[582] = "331313|Primary Production of Alumina and Aluminum CAN";
	NAICSArray[583] = "331317|Aluminum Rolling, Drawing, Extruding and Alloying CAN";
	NAICSArray[584] = "3314|Non-Ferrous Metal (except Aluminum) Production and Processing ";
	NAICSArray[585] = "33141|Non-Ferrous Metal (except Aluminum) Smelting and Refining ";
	NAICSArray[586] = "331410|Non-Ferrous Metal (except Aluminum) Smelting and Refining CAN";
	NAICSArray[587] = "33142|Copper Rolling, Drawing, Extruding and Alloying ";
	NAICSArray[588] = "331420|Copper Rolling, Drawing, Extruding and Alloying MEX";
	NAICSArray[589] = "33149|Non-Ferrous Metal (except Copper and Aluminum) Rolling, Drawing, Extruding and Alloying ";
	NAICSArray[590] = "331490|Non-Ferrous Metal (except Copper and Aluminum) Rolling, Drawing, Extruding and Alloying CAN";
	NAICSArray[591] = "3315|Foundries ";
	NAICSArray[592] = "33151|Ferrous Metal Foundries ";
	NAICSArray[593] = "331511|Iron Foundries US";
	NAICSArray[594] = "331514|Steel Foundries CAN";
	NAICSArray[595] = "33152|Non-Ferrous Metal Foundries ";
	NAICSArray[596] = "331523|Non-Ferrous Die-Casting Foundries CAN";
	NAICSArray[597] = "331529|Non-Ferrous Foundries (except Die-Casting) CAN";
	NAICSArray[598] = "332|Fabricated Metal Product Manufacturing ";
	NAICSArray[599] = "3321|Forging and Stamping ";
	NAICSArray[600] = "33211|Forging and Stamping ";
	NAICSArray[601] = "332113|Forging CAN";
	NAICSArray[602] = "332118|Stamping CAN";
	NAICSArray[603] = "3322|Cutlery and Hand Tool Manufacturing ";
	NAICSArray[604] = "33221|Cutlery and Hand Tool Manufacturing ";
	NAICSArray[605] = "332210|Cutlery and Hand Tool Manufacturing CAN";
	NAICSArray[606] = "3323|Architectural and Structural Metals Manufacturing ";
	NAICSArray[607] = "33231|Plate Work and Fabricated Structural Product Manufacturing ";
	NAICSArray[608] = "332311|Prefabricated Metal Building and Component Manufacturing US";
	NAICSArray[609] = "332314|Concrete Reinforcing Bar Manufacturing CAN";
	NAICSArray[610] = "332319|Other Plate Work and Fabricated Structural Product Manufacturing CAN";
	NAICSArray[611] = "33232|Ornamental and Architectural Metal Products Manufacturing ";
	NAICSArray[612] = "332321|Metal Window and Door Manufacturing US";
	NAICSArray[613] = "332329|Other Ornamental and Architectural Metal Products Manufacturing CAN";
	NAICSArray[614] = "3324|Boiler, Tank and Shipping Container Manufacturing ";
	NAICSArray[615] = "33241|Power Boiler and Heat Exchanger Manufacturing ";
	NAICSArray[616] = "332410|Power Boiler and Heat Exchanger Manufacturing ";
	NAICSArray[617] = "33242|Metal Tank (Heavy Gauge) Manufacturing ";
	NAICSArray[618] = "332420|Metal Tank (Heavy Gauge) Manufacturing ";
	NAICSArray[619] = "33243|Metal Can, Box and Other Metal Container (Light Gauge) Manufacturing ";
	NAICSArray[620] = "332431|Metal Can Manufacturing US";
	NAICSArray[621] = "332439|Other Metal Container Manufacturing US";
	NAICSArray[622] = "3325|Hardware Manufacturing ";
	NAICSArray[623] = "33251|Hardware Manufacturing ";
	NAICSArray[624] = "332510|Hardware Manufacturing ";
	NAICSArray[625] = "3326|Spring and Wire Product Manufacturing ";
	NAICSArray[626] = "33261|Spring and Wire Product Manufacturing ";
	NAICSArray[627] = "332611|Spring (Heavy Gauge) Manufacturing US";
	NAICSArray[628] = "332619|Other Fabricated Wire Product Manufacturing CAN";
	NAICSArray[629] = "3327|Machine Shops, Turned Product, and Screw, Nut and Bolt Manufacturing ";
	NAICSArray[630] = "33271|Machine Shops ";
	NAICSArray[631] = "332710|Machine Shops ";
	NAICSArray[632] = "33272|Turned Product and Screw, Nut and Bolt Manufacturing ";
	NAICSArray[633] = "332720|Turned Product and Screw, Nut and Bolt Manufacturing MEX";
	NAICSArray[634] = "3328|Coating, Engraving, Heat Treating and Allied Activities ";
	NAICSArray[635] = "33281|Coating, Engraving, Heat Treating and Allied Activities ";
	NAICSArray[636] = "332810|Coating, Engraving, Heat Treating and Allied Activities MEX";
	NAICSArray[637] = "3329|Other Fabricated Metal Product Manufacturing ";
	NAICSArray[638] = "33291|Metal Valve Manufacturing ";
	NAICSArray[639] = "332910|Metal Valve Manufacturing MEX";
	NAICSArray[640] = "33299|All Other Fabricated Metal Product Manufacturing ";
	NAICSArray[641] = "332991|Ball and Roller Bearing Manufacturing ";
	NAICSArray[642] = "332999|All Other Miscellaneous Fabricated Metal Product Manufacturing US";
	NAICSArray[643] = "333|Machinery Manufacturing ";
	NAICSArray[644] = "3331|Agricultural, Construction and Mining Machinery Manufacturing ";
	NAICSArray[645] = "33311|Agricultural Implement Manufacturing ";
	NAICSArray[646] = "333110|Agricultural Implement Manufacturing CAN";
	NAICSArray[647] = "33312|Construction Machinery Manufacturing ";
	NAICSArray[648] = "333120|Construction Machinery Manufacturing ";
	NAICSArray[649] = "33313|Mining and Oil and Gas Field Machinery Manufacturing ";
	NAICSArray[650] = "333130|Mining and Oil and Gas Field Machinery Manufacturing MEX";
	NAICSArray[651] = "3332|Industrial Machinery Manufacturing ";
	NAICSArray[652] = "33321|Sawmill and Woodworking Machinery Manufacturing ";
	NAICSArray[653] = "333210|Sawmill and Woodworking Machinery Manufacturing ";
	NAICSArray[654] = "33322|Rubber and Plastics Industry Machinery Manufacturing ";
	NAICSArray[655] = "333220|Rubber and Plastics Industry Machinery Manufacturing ";
	NAICSArray[656] = "33329|Other Industrial Machinery Manufacturing ";
	NAICSArray[657] = "333291|Paper Industry Machinery Manufacturing US";
	NAICSArray[658] = "333299|All Other Industrial Machinery Manufacturing CAN";
	NAICSArray[659] = "3333|Commercial and Service Industry Machinery Manufacturing ";
	NAICSArray[660] = "33331|Commercial and Service Industry Machinery Manufacturing ";
	NAICSArray[661] = "333310|Commercial and Service Industry Machinery Manufacturing CAN";
	NAICSArray[662] = "3334|Ventilation, Heating, Air-Conditioning and Commercial Refrigeration Equipment Manufacturing ";
	NAICSArray[663] = "33341|Ventilation, Heating, Air-Conditioning and Commercial Refrigeration Equipment Manufacturing ";
	NAICSArray[664] = "333413|Industrial and Commercial Fan and Blower and Air Purification Equipment Manufacturing CAN";
	NAICSArray[665] = "333416|Heating Equipment and Commercial Refrigeration Equipment Manufacturing CAN";
	NAICSArray[666] = "3335|Metalworking Machinery Manufacturing ";
	NAICSArray[667] = "33351|Metalworking Machinery Manufacturing ";
	NAICSArray[668] = "333511|Industrial Mould Manufacturing US";
	NAICSArray[669] = "333519|Other Metalworking Machinery Manufacturing CAN";
	NAICSArray[670] = "3336|Engine, Turbine and Power Transmission Equipment Manufacturing ";
	NAICSArray[671] = "33361|Engine, Turbine and Power Transmission Equipment Manufacturing ";
	NAICSArray[672] = "333611|Turbine and Turbine Generator Set Unit Manufacturing US";
	NAICSArray[673] = "333619|Other Engine and Power Transmission Equipment Manufacturing CAN";
	NAICSArray[674] = "3339|Other General-Purpose Machinery Manufacturing ";
	NAICSArray[675] = "33391|Pump and Compressor Manufacturing ";
	NAICSArray[676] = "333910|Pump and Compressor Manufacturing CAN";
	NAICSArray[677] = "33392|Material Handling Equipment Manufacturing ";
	NAICSArray[678] = "333920|Material Handling Equipment Manufacturing MEX";
	NAICSArray[679] = "33399|All Other General-Purpose Machinery Manufacturing ";
	NAICSArray[680] = "333990|All Other General-Purpose Machinery Manufacturing CAN";
	NAICSArray[681] = "334|Computer and Electronic Product Manufacturing ";
	NAICSArray[682] = "3341|Computer and Peripheral Equipment Manufacturing ";
	NAICSArray[683] = "33411|Computer and Peripheral Equipment Manufacturing ";
	NAICSArray[684] = "334110|Computer and Peripheral Equipment Manufacturing MEX";
	NAICSArray[685] = "3342|Communications Equipment Manufacturing ";
	NAICSArray[686] = "33421|Telephone Apparatus Manufacturing ";
	NAICSArray[687] = "334210|Telephone Apparatus Manufacturing ";
	NAICSArray[688] = "33422|Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing ";
	NAICSArray[689] = "334220|Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing ";
	NAICSArray[690] = "33429|Other Communications Equipment Manufacturing ";
	NAICSArray[691] = "334290|Other Communications Equipment Manufacturing ";
	NAICSArray[692] = "3343|Audio and Video Equipment Manufacturing ";
	NAICSArray[693] = "33431|Audio and Video Equipment Manufacturing ";
	NAICSArray[694] = "334310|Audio and Video Equipment Manufacturing ";
	NAICSArray[695] = "3344|Semiconductor and Other Electronic Component Manufacturing ";
	NAICSArray[696] = "33441|Semiconductor and Other Electronic Component Manufacturing ";
	NAICSArray[697] = "334410|Semiconductor and Other Electronic Component Manufacturing MEX";
	NAICSArray[698] = "3345|Navigational, Measuring, Medical and Control Instruments Manufacturing ";
	NAICSArray[699] = "33451|Navigational, Measuring, Medical and Control Instruments Manufacturing ";
	NAICSArray[700] = "334511|Navigational and Guidance Instruments Manufacturing US";
	NAICSArray[701] = "334512|Measuring, Medical and Controlling Devices Manufacturing CAN";
	NAICSArray[702] = "3346|Manufacturing and Reproducing Magnetic and Optical Media ";
	NAICSArray[703] = "33461|Manufacturing and Reproducing Magnetic and Optical Media ";
	NAICSArray[704] = "334610|Manufacturing and Reproducing Magnetic and Optical Media MEX";
	NAICSArray[705] = "335|Electrical Equipment, Appliance and Component Manufacturing ";
	NAICSArray[706] = "3351|Electric Lighting Equipment Manufacturing ";
	NAICSArray[707] = "33511|Electric Lamp Bulb and Parts Manufacturing ";
	NAICSArray[708] = "335110|Electric Lamp Bulb and Parts Manufacturing ";
	NAICSArray[709] = "33512|Lighting Fixture Manufacturing ";
	NAICSArray[710] = "335120|Lighting Fixture Manufacturing CAN";
	NAICSArray[711] = "3352|Household Appliance Manufacturing ";
	NAICSArray[712] = "33521|Small Electrical Appliance Manufacturing ";
	NAICSArray[713] = "335210|Small Electrical Appliance Manufacturing MEX";
	NAICSArray[714] = "33522|Major Appliance Manufacturing ";
	NAICSArray[715] = "335223|Major Kitchen Appliance Manufacturing CAN";
	NAICSArray[716] = "335229|Other Major Appliance Manufacturing CAN";
	NAICSArray[717] = "3353|Electrical Equipment Manufacturing ";
	NAICSArray[718] = "33531|Electrical Equipment Manufacturing ";
	NAICSArray[719] = "335311|Power, Distribution and Specialty Transformers Manufacturing US";
	NAICSArray[720] = "335312|Motor and Generator Manufacturing US";
	NAICSArray[721] = "335315|Switchgear and Switchboard, and Relay and Industrial Control Apparatus Manufacturing CAN";
	NAICSArray[722] = "3359|Other Electrical Equipment and Component Manufacturing ";
	NAICSArray[723] = "33591|Battery Manufacturing ";
	NAICSArray[724] = "335910|Battery Manufacturing CAN";
	NAICSArray[725] = "33592|Communication and Energy Wire and Cable Manufacturing ";
	NAICSArray[726] = "335920|Communication and Energy Wire and Cable Manufacturing CAN";
	NAICSArray[727] = "33593|Wiring Device Manufacturing ";
	NAICSArray[728] = "335930|Wiring Device Manufacturing CAN";
	NAICSArray[729] = "33599|All Other Electrical Equipment and Component Manufacturing ";
	NAICSArray[730] = "335990|All Other Electrical Equipment and Component Manufacturing CAN";
	NAICSArray[731] = "336|Transportation Equipment Manufacturing ";
	NAICSArray[732] = "3361|Motor Vehicle Manufacturing ";
	NAICSArray[733] = "33611|Automobile and Light-Duty Motor Vehicle Manufacturing ";
	NAICSArray[734] = "336110|Automobile and Light-Duty Motor Vehicle Manufacturing MEX";
	NAICSArray[735] = "33612|Heavy-Duty Truck Manufacturing ";
	NAICSArray[736] = "336120|Heavy-Duty Truck Manufacturing ";
	NAICSArray[737] = "3362|Motor Vehicle Body and Trailer Manufacturing ";
	NAICSArray[738] = "33621|Motor Vehicle Body and Trailer Manufacturing ";
	NAICSArray[739] = "336211|Motor Vehicle Body Manufacturing US";
	NAICSArray[740] = "336212|Truck Trailer Manufacturing US";
	NAICSArray[741] = "336215|Motor Home, Travel Trailer and Camper Manufacturing CAN";
	NAICSArray[742] = "3363|Motor Vehicle Parts Manufacturing ";
	NAICSArray[743] = "33631|Motor Vehicle Gasoline Engine and Engine Parts Manufacturing ";
	NAICSArray[744] = "336310|Motor Vehicle Gasoline Engine and Engine Parts Manufacturing MEX";
	NAICSArray[745] = "33632|Motor Vehicle Electrical and Electronic Equipment Manufacturing ";
	NAICSArray[746] = "336320|Motor Vehicle Electrical and Electronic Equipment Manufacturing MEX";
	NAICSArray[747] = "33633|Motor Vehicle Steering and Suspension Components (except Spring) Manufacturing ";
	NAICSArray[748] = "336330|Motor Vehicle Steering and Suspension Components (except Spring) Manufacturing ";
	NAICSArray[749] = "33634|Motor Vehicle Brake System Manufacturing ";
	NAICSArray[750] = "336340|Motor Vehicle Brake System Manufacturing ";
	NAICSArray[751] = "33635|Motor Vehicle Transmission and Power Train Parts Manufacturing ";
	NAICSArray[752] = "336350|Motor Vehicle Transmission and Power Train Parts Manufacturing ";
	NAICSArray[753] = "33636|Motor Vehicle Seating and Interior Trim Manufacturing ";
	NAICSArray[754] = "336360|Motor Vehicle Seating and Interior Trim Manufacturing ";
	NAICSArray[755] = "33637|Motor Vehicle Metal Stamping ";
	NAICSArray[756] = "336370|Motor Vehicle Metal Stamping ";
	NAICSArray[757] = "33639|Other Motor Vehicle Parts Manufacturing ";
	NAICSArray[758] = "336390|Other Motor Vehicle Parts Manufacturing MEX";
	NAICSArray[759] = "3364|Aerospace Product and Parts Manufacturing ";
	NAICSArray[760] = "33641|Aerospace Product and Parts Manufacturing ";
	NAICSArray[761] = "336410|Aerospace Product and Parts Manufacturing MEX";
	NAICSArray[762] = "3365|Railroad Rolling Stock Manufacturing ";
	NAICSArray[763] = "33651|Railroad Rolling Stock Manufacturing ";
	NAICSArray[764] = "336510|Railroad Rolling Stock Manufacturing ";
	NAICSArray[765] = "3366|Ship and Boat Building ";
	NAICSArray[766] = "33661|Ship and Boat Building ";
	NAICSArray[767] = "336611|Ship Building and Repairing US";
	NAICSArray[768] = "336612|Boat Building US";
	NAICSArray[769] = "3369|Other Transportation Equipment Manufacturing ";
	NAICSArray[770] = "33699|Other Transportation Equipment Manufacturing ";
	NAICSArray[771] = "336990|Other Transportation Equipment Manufacturing CAN";
	NAICSArray[772] = "337|Furniture and Related Product Manufacturing ";
	NAICSArray[773] = "3371|Household and Institutional Furniture and Kitchen Cabinet Manufacturing ";
	NAICSArray[774] = "33711|Wood Kitchen Cabinet and Counter Top Manufacturing ";
	NAICSArray[775] = "337110|Wood Kitchen Cabinet and Counter Top Manufacturing ";
	NAICSArray[776] = "33712|Household and Institutional Furniture Manufacturing ";
	NAICSArray[777] = "337121|Upholstered Household Furniture Manufacturing US";
	NAICSArray[778] = "337123|Other Wood Household Furniture Manufacturing CAN";
	NAICSArray[779] = "337126|Household Furniture (except Wood and Upholstered) Manufacturing CAN";
	NAICSArray[780] = "337127|Institutional Furniture Manufacturing US";
	NAICSArray[781] = "3372|Office Furniture (including Fixtures) Manufacturing ";
	NAICSArray[782] = "33721|Office Furniture (including Fixtures) Manufacturing ";
	NAICSArray[783] = "337213|Wood Office Furniture, including Custom Architectural Woodwork, Manufacturing CAN";
	NAICSArray[784] = "337214|Office Furniture (except Wood) Manufacturing US";
	NAICSArray[785] = "337215|Showcase, Partition, Shelving and Locker Manufacturing US";
	NAICSArray[786] = "3379|Other Furniture-Related Product Manufacturing ";
	NAICSArray[787] = "33791|Mattress Manufacturing ";
	NAICSArray[788] = "337910|Mattress Manufacturing ";
	NAICSArray[789] = "33792|Blind and Shade Manufacturing ";
	NAICSArray[790] = "337920|Blind and Shade Manufacturing ";
	NAICSArray[791] = "339|Miscellaneous Manufacturing ";
	NAICSArray[792] = "3391|Medical Equipment and Supplies Manufacturing ";
	NAICSArray[793] = "33911|Medical Equipment and Supplies Manufacturing ";
	NAICSArray[794] = "339110|Medical Equipment and Supplies Manufacturing CAN";
	NAICSArray[795] = "3399|Other Miscellaneous Manufacturing ";
	NAICSArray[796] = "33991|Jewellery and Silverware Manufacturing ";
	NAICSArray[797] = "339910|Jewellery and Silverware Manufacturing CAN";
	NAICSArray[798] = "33992|Sporting and Athletic Goods Manufacturing ";
	NAICSArray[799] = "339920|Sporting and Athletic Goods Manufacturing ";
	NAICSArray[800] = "33993|Doll, Toy and Game Manufacturing ";
	NAICSArray[801] = "339930|Doll, Toy and Game Manufacturing MEX";
	NAICSArray[802] = "33994|Office Supplies (except Paper) Manufacturing ";
	NAICSArray[803] = "339940|Office Supplies (except Paper) Manufacturing MEX";
	NAICSArray[804] = "33995|Sign Manufacturing ";
	NAICSArray[805] = "339950|Sign Manufacturing ";
	NAICSArray[806] = "33999|All Other Miscellaneous Manufacturing ";
	NAICSArray[807] = "339990|All Other Miscellaneous Manufacturing CAN";
	NAICSArray[808] = "41|Wholesale Trade ";
	NAICSArray[809] = "411|Farm Product Wholesaler-Distributors CAN";
	NAICSArray[810] = "4111|Farm Product Wholesaler-Distributors CAN";
	NAICSArray[811] = "41111|Live Animal Wholesaler-Distributors CAN";
	NAICSArray[812] = "411110|Live Animal Wholesaler-Distributors CAN";
	NAICSArray[813] = "41112|Oilseed and Grain Wholesaler-Distributors CAN";
	NAICSArray[814] = "411120|Oilseed and Grain Wholesaler-Distributors CAN";
	NAICSArray[815] = "41113|Nursery Stock and Plant Wholesaler-Distributors CAN";
	NAICSArray[816] = "411130|Nursery Stock and Plant Wholesaler-Distributors CAN";
	NAICSArray[817] = "41119|Other Farm Product Wholesaler-Distributors CAN";
	NAICSArray[818] = "411190|Other Farm Product Wholesaler-Distributors CAN";
	NAICSArray[819] = "412|Petroleum Product Wholesaler-Distributors CAN";
	NAICSArray[820] = "4121|Petroleum Product Wholesaler-Distributors CAN";
	NAICSArray[821] = "41211|Petroleum Product Wholesaler-Distributors CAN";
	NAICSArray[822] = "412110|Petroleum Product Wholesaler-Distributors CAN";
	NAICSArray[823] = "413|Food, Beverage and Tobacco Wholesaler-Distributors CAN";
	NAICSArray[824] = "4131|Food Wholesaler-Distributors CAN";
	NAICSArray[825] = "41311|General-Line Food Wholesaler-Distributors CAN";
	NAICSArray[826] = "413110|General-Line Food Wholesaler-Distributors CAN";
	NAICSArray[827] = "41312|Dairy and Milk Products Wholesaler-Distributors CAN";
	NAICSArray[828] = "413120|Dairy and Milk Products Wholesaler-Distributors CAN";
	NAICSArray[829] = "41313|Poultry and Egg Wholesaler-Distributors CAN";
	NAICSArray[830] = "413130|Poultry and Egg Wholesaler-Distributors CAN";
	NAICSArray[831] = "41314|Fish and Seafood Product Wholesaler-Distributors CAN";
	NAICSArray[832] = "413140|Fish and Seafood Product Wholesaler-Distributors CAN";
	NAICSArray[833] = "41315|Fresh Fruit and Vegetable Wholesaler-Distributors CAN";
	NAICSArray[834] = "413150|Fresh Fruit and Vegetable Wholesaler-Distributors CAN";
	NAICSArray[835] = "41316|Red Meat and Meat Product Wholesaler-Distributors CAN";
	NAICSArray[836] = "413160|Red Meat and Meat Product Wholesaler-Distributors CAN";
	NAICSArray[837] = "41319|Other Specialty-Line Food Wholesaler-Distributors CAN";
	NAICSArray[838] = "413190|Other Specialty-Line Food Wholesaler-Distributors CAN";
	NAICSArray[839] = "4132|Beverage Wholesaler-Distributors CAN";
	NAICSArray[840] = "41321|Non-Alcoholic Beverage Wholesaler-Distributors CAN";
	NAICSArray[841] = "413210|Non-Alcoholic Beverage Wholesaler-Distributors CAN";
	NAICSArray[842] = "41322|Alcoholic Beverage Wholesaler-Distributors CAN";
	NAICSArray[843] = "413220|Alcoholic Beverage Wholesaler-Distributors CAN";
	NAICSArray[844] = "4133|Cigarette and Tobacco Product Wholesaler-Distributors CAN";
	NAICSArray[845] = "41331|Cigarette and Tobacco Product Wholesaler-Distributors CAN";
	NAICSArray[846] = "413310|Cigarette and Tobacco Product Wholesaler-Distributors CAN";
	NAICSArray[847] = "414|Personal and Household Goods Wholesaler-Distributors CAN";
	NAICSArray[848] = "4141|Textile, Clothing and Footwear Wholesaler-Distributors CAN";
	NAICSArray[849] = "41411|Clothing and Clothing Accessories Wholesaler-Distributors CAN";
	NAICSArray[850] = "414110|Clothing and Clothing Accessories Wholesaler-Distributors CAN";
	NAICSArray[851] = "41412|Footwear Wholesaler-Distributors CAN";
	NAICSArray[852] = "414120|Footwear Wholesaler-Distributors CAN";
	NAICSArray[853] = "41413|Piece Goods, Notions and Other Dry Goods Wholesaler-Distributors CAN";
	NAICSArray[854] = "414130|Piece Goods, Notions and Other Dry Goods Wholesaler-Distributors CAN";
	NAICSArray[855] = "4142|Home Entertainment Equipment and Household Appliance Wholesaler-Distributors CAN";
	NAICSArray[856] = "41421|Home Entertainment Equipment Wholesaler-Distributors CAN";
	NAICSArray[857] = "414210|Home Entertainment Equipment Wholesaler-Distributors CAN";
	NAICSArray[858] = "41422|Household Appliance Wholesaler-Distributors CAN";
	NAICSArray[859] = "414220|Household Appliance Wholesaler-Distributors CAN";
	NAICSArray[860] = "4143|Home Furnishings Wholesaler-Distributors CAN";
	NAICSArray[861] = "41431|China, Glassware, Crockery and Pottery Wholesaler-Distributors CAN";
	NAICSArray[862] = "414310|China, Glassware, Crockery and Pottery Wholesaler-Distributors CAN";
	NAICSArray[863] = "41432|Floor Covering Wholesaler-Distributors CAN";
	NAICSArray[864] = "414320|Floor Covering Wholesaler-Distributors CAN";
	NAICSArray[865] = "41433|Linen, Drapery and Other Textile Furnishings Wholesaler-Distributors CAN";
	NAICSArray[866] = "414330|Linen, Drapery and Other Textile Furnishings Wholesaler-Distributors CAN";
	NAICSArray[867] = "41439|Other Home Furnishings Wholesaler-Distributors CAN";
	NAICSArray[868] = "414390|Other Home Furnishings Wholesaler-Distributors CAN";
	NAICSArray[869] = "4144|Personal Goods Wholesaler-Distributors CAN";
	NAICSArray[870] = "41441|Jewellery and Watch Wholesaler-Distributors CAN";
	NAICSArray[871] = "414410|Jewellery and Watch Wholesaler-Distributors CAN";
	NAICSArray[872] = "41442|Book, Periodical and Newspaper Wholesaler-Distributors CAN";
	NAICSArray[873] = "414420|Book, Periodical and Newspaper Wholesaler-Distributors CAN";
	NAICSArray[874] = "41443|Photographic Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[875] = "414430|Photographic Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[876] = "41444|Sound Recording Wholesalers CAN";
	NAICSArray[877] = "414440|Sound Recording Wholesalers CAN";
	NAICSArray[878] = "41445|Video Cassette Wholesalers CAN";
	NAICSArray[879] = "414450|Video Cassette Wholesalers CAN";
	NAICSArray[880] = "41446|Toy and Hobby Goods Wholesaler-Distributors CAN";
	NAICSArray[881] = "414460|Toy and Hobby Goods Wholesaler-Distributors CAN";
	NAICSArray[882] = "41447|Amusement and Sporting Goods Wholesaler-Distributors CAN";
	NAICSArray[883] = "414470|Amusement and Sporting Goods Wholesaler-Distributors CAN";
	NAICSArray[884] = "4145|Pharmaceuticals, Toiletries, Cosmetics and Sundries Wholesaler-Distributors CAN";
	NAICSArray[885] = "41451|Pharmaceuticals and Pharmacy Supplies Wholesaler-Distributors CAN";
	NAICSArray[886] = "414510|Pharmaceuticals and Pharmacy Supplies Wholesaler-Distributors CAN";
	NAICSArray[887] = "41452|Toiletries, Cosmetics and Sundries Wholesaler-Distributors CAN";
	NAICSArray[888] = "414520|Toiletries, Cosmetics and Sundries Wholesaler-Distributors CAN";
	NAICSArray[889] = "415|Motor Vehicle and Parts Wholesaler-Distributors CAN";
	NAICSArray[890] = "4151|Motor Vehicle Wholesaler-Distributors CAN";
	NAICSArray[891] = "41511|New and Used Automobile and Light-Duty Truck Wholesaler-Distributors CAN";
	NAICSArray[892] = "415110|New and Used Automobile and Light-Duty Truck Wholesaler-Distributors CAN";
	NAICSArray[893] = "41512|Truck, Truck Tractor and Bus Wholesaler-Distributors CAN";
	NAICSArray[894] = "415120|Truck, Truck Tractor and Bus Wholesaler-Distributors CAN";
	NAICSArray[895] = "41519|Recreational and Other Motor Vehicles Wholesaler-Distributors CAN";
	NAICSArray[896] = "415190|Recreational and Other Motor Vehicles Wholesaler-Distributors CAN";
	NAICSArray[897] = "4152|New Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[898] = "41521|Tire Wholesaler-Distributors CAN";
	NAICSArray[899] = "415210|Tire Wholesaler-Distributors CAN";
	NAICSArray[900] = "41529|Other New Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[901] = "415290|Other New Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[902] = "4153|Used Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[903] = "41531|Used Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[904] = "415310|Used Motor Vehicle Parts and Accessories Wholesaler-Distributors CAN";
	NAICSArray[905] = "416|Building Material and Supplies Wholesaler-Distributors CAN";
	NAICSArray[906] = "4161|Electrical, Plumbing, Heating and Air-Conditioning Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[907] = "41611|Electrical Wiring and Construction Supplies Wholesaler-Distributors CAN";
	NAICSArray[908] = "416110|Electrical Wiring and Construction Supplies Wholesaler-Distributors CAN";
	NAICSArray[909] = "41612|Plumbing, Heating and Air-Conditioning Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[910] = "416120|Plumbing, Heating and Air-Conditioning Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[911] = "4162|Metal Service Centres CAN";
	NAICSArray[912] = "41621|Metal Service Centres CAN";
	NAICSArray[913] = "416210|Metal Service Centres CAN";
	NAICSArray[914] = "4163|Lumber, Millwork, Hardware and Other Building Supplies Wholesaler-Distributors CAN";
	NAICSArray[915] = "41631|General-Line Building Supplies Wholesaler-Distributors CAN";
	NAICSArray[916] = "416310|General-Line Building Supplies Wholesaler-Distributors CAN";
	NAICSArray[917] = "41632|Lumber, Plywood and Millwork Wholesaler-Distributors CAN";
	NAICSArray[918] = "416320|Lumber, Plywood and Millwork Wholesaler-Distributors CAN";
	NAICSArray[919] = "41633|Hardware Wholesaler-Distributors CAN";
	NAICSArray[920] = "416330|Hardware Wholesaler-Distributors CAN";
	NAICSArray[921] = "41634|Paint, Glass and Wallpaper Wholesaler-Distributors CAN";
	NAICSArray[922] = "416340|Paint, Glass and Wallpaper Wholesaler-Distributors CAN";
	NAICSArray[923] = "41639|Other Specialty-Line Building Supplies Wholesaler-Distributors CAN";
	NAICSArray[924] = "416390|Other Specialty-Line Building Supplies Wholesaler-Distributors CAN";
	NAICSArray[925] = "417|Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[926] = "4171|Farm, Lawn and Garden Machinery and Equipment Wholesaler-Distributors CAN";
	NAICSArray[927] = "41711|Farm, Lawn and Garden Machinery and Equipment Wholesaler-Distributors CAN";
	NAICSArray[928] = "417110|Farm, Lawn and Garden Machinery and Equipment Wholesaler-Distributors CAN";
	NAICSArray[929] = "4172|Construction, Forestry, Mining, and Industrial Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[930] = "41721|Construction and Forestry Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[931] = "417210|Construction and Forestry Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[932] = "41722|Mining and Oil and Gas Well Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[933] = "417220|Mining and Oil and Gas Well Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[934] = "41723|Industrial Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[935] = "417230|Industrial Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[936] = "4173|Computer and Communications Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[937] = "41731|Computer, Computer Peripheral and Pre-Packaged Software Wholesaler-Distributors CAN";
	NAICSArray[938] = "417310|Computer, Computer Peripheral and Pre-Packaged Software Wholesaler-Distributors CAN";
	NAICSArray[939] = "41732|Electronic Components, Navigational and Communications Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[940] = "417320|Electronic Components, Navigational and Communications Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[941] = "4179|Other Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[942] = "41791|Office and Store Machinery and Equipment Wholesaler-Distributors CAN";
	NAICSArray[943] = "417910|Office and Store Machinery and Equipment Wholesaler-Distributors CAN";
	NAICSArray[944] = "41792|Service Establishment Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[945] = "417920|Service Establishment Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[946] = "41793|Professional Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[947] = "417930|Professional Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[948] = "41799|All Other Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[949] = "417990|All Other Machinery, Equipment and Supplies Wholesaler-Distributors CAN";
	NAICSArray[950] = "418|Miscellaneous Wholesaler-Distributors CAN";
	NAICSArray[951] = "4181|Recyclable Material Wholesaler-Distributors CAN";
	NAICSArray[952] = "41811|Recyclable Metal Wholesaler-Distributors CAN";
	NAICSArray[953] = "418110|Recyclable Metal Wholesaler-Distributors CAN";
	NAICSArray[954] = "41812|Recyclable Paper and Paperboard Wholesaler-Distributors CAN";
	NAICSArray[955] = "418120|Recyclable Paper and Paperboard Wholesaler-Distributors CAN";
	NAICSArray[956] = "41819|Other Recyclable Material Wholesaler-Distributors CAN";
	NAICSArray[957] = "418190|Other Recyclable Material Wholesaler-Distributors CAN";
	NAICSArray[958] = "4182|Paper, Paper Product and Disposable Plastic Product Wholesaler-Distributors CAN";
	NAICSArray[959] = "41821|Stationery and Office Supplies Wholesaler-Distributors CAN";
	NAICSArray[960] = "418210|Stationery and Office Supplies Wholesaler-Distributors CAN";
	NAICSArray[961] = "41822|Other Paper and Disposable Plastic Product Wholesaler-Distributors CAN";
	NAICSArray[962] = "418220|Other Paper and Disposable Plastic Product Wholesaler-Distributors CAN";
	NAICSArray[963] = "4183|Agricultural Supplies Wholesaler-Distributors CAN";
	NAICSArray[964] = "41831|Agricultural Feed Wholesaler-Distributors CAN";
	NAICSArray[965] = "418310|Agricultural Feed Wholesaler-Distributors CAN";
	NAICSArray[966] = "41832|Seed Wholesaler-Distributors CAN";
	NAICSArray[967] = "418320|Seed Wholesaler-Distributors CAN";
	NAICSArray[968] = "41839|Agricultural Chemical and Other Farm Supplies Wholesaler-Distributors CAN";
	NAICSArray[969] = "418390|Agricultural Chemical and Other Farm Supplies Wholesaler-Distributors CAN";
	NAICSArray[970] = "4184|Chemical (except Agricultural) and Allied Product Wholesaler-Distributors CAN";
	NAICSArray[971] = "41841|Chemical (except Agricultural) and Allied Product Wholesaler-Distributors CAN";
	NAICSArray[972] = "418410|Chemical (except Agricultural) and Allied Product Wholesaler-Distributors CAN";
	NAICSArray[973] = "4189|Other Miscellaneous Wholesaler-Distributors CAN";
	NAICSArray[974] = "41891|Log and Wood Chip Wholesaler-Distributors CAN";
	NAICSArray[975] = "418910|Log and Wood Chip Wholesaler-Distributors CAN";
	NAICSArray[976] = "41892|Mineral, Ore and Precious Metal Wholesaler-Distributors CAN";
	NAICSArray[977] = "418920|Mineral, Ore and Precious Metal Wholesaler-Distributors CAN";
	NAICSArray[978] = "41893|Second-Hand Goods (except Machinery and Automotive) Wholesaler-Distributors CAN";
	NAICSArray[979] = "418930|Second-Hand Goods (except Machinery and Automotive) Wholesaler-Distributors CAN";
	NAICSArray[980] = "41899|All Other Wholesaler-Distributors CAN";
	NAICSArray[981] = "418990|All Other Wholesaler-Distributors CAN";
	NAICSArray[982] = "419|Wholesale Agents and Brokers CAN";
	NAICSArray[983] = "4191|Wholesale Agents and Brokers CAN";
	NAICSArray[984] = "41911|Farm Product Agents and Brokers CAN";
	NAICSArray[985] = "419110|Farm Product Agents and Brokers CAN";
	NAICSArray[986] = "41912|Petroleum Product Agents and Brokers CAN";
	NAICSArray[987] = "419120|Petroleum Product Agents and Brokers CAN";
	NAICSArray[988] = "41913|Food, Beverage and Tobacco Agents and Brokers CAN";
	NAICSArray[989] = "419130|Food, Beverage and Tobacco Agents and Brokers CAN";
	NAICSArray[990] = "41914|Personal and Household Goods Agents and Brokers CAN";
	NAICSArray[991] = "419140|Personal and Household Goods Agents and Brokers CAN";
	NAICSArray[992] = "41915|Motor Vehicle and Parts Agents and Brokers CAN";
	NAICSArray[993] = "419150|Motor Vehicle and Parts Agents and Brokers CAN";
	NAICSArray[994] = "41916|Building Material and Supplies Agents and Brokers CAN";
	NAICSArray[995] = "419160|Building Material and Supplies Agents and Brokers CAN";
	NAICSArray[996] = "41917|Machinery, Equipment and Supplies Agents and Brokers CAN";
	NAICSArray[997] = "419170|Machinery, Equipment and Supplies Agents and Brokers CAN";
	NAICSArray[998] = "41919|Other Wholesale Agents and Brokers CAN";
	NAICSArray[999] = "419190|Other Wholesale Agents and Brokers CAN";
	NAICSArray[1000] = "44|Retail Trade - Automotive & Gas, Furniture, Appliances, Building & Gardening, Food & Beverages, Health, Clothing";
	NAICSArray[1001] = "441|Motor Vehicle and Parts Dealers US";
	NAICSArray[1002] = "4411|Automobile Dealers US";
	NAICSArray[1003] = "44111|New Car Dealers US";
	NAICSArray[1004] = "441110|New Car Dealers US";
	NAICSArray[1005] = "44112|Used Car Dealers US";
	NAICSArray[1006] = "441120|Used Car Dealers US";
	NAICSArray[1007] = "4412|Other Motor Vehicle Dealers US";
	NAICSArray[1008] = "44121|Recreational Vehicle Dealers US";
	NAICSArray[1009] = "441210|Recreational Vehicle Dealers US";
	NAICSArray[1010] = "44122|Motorcycle, Boat and Other Motor Vehicle Dealers US";
	NAICSArray[1011] = "441220|Motorcycle, Boat and Other Motor Vehicle Dealers CAN";
	NAICSArray[1012] = "4413|Automotive Parts, Accessories and Tire Stores US";
	NAICSArray[1013] = "44131|Automotive Parts and Accessories Stores US";
	NAICSArray[1014] = "441310|Automotive Parts and Accessories Stores US";
	NAICSArray[1015] = "44132|Tire Dealers US";
	NAICSArray[1016] = "441320|Tire Dealers US";
	NAICSArray[1017] = "442|Furniture and Home Furnishings Stores US";
	NAICSArray[1018] = "4421|Furniture Stores US";
	NAICSArray[1019] = "44211|Furniture Stores US";
	NAICSArray[1020] = "442110|Furniture Stores US";
	NAICSArray[1021] = "4422|Home Furnishings Stores US";
	NAICSArray[1022] = "44221|Floor Covering Stores US";
	NAICSArray[1023] = "442210|Floor Covering Stores US";
	NAICSArray[1024] = "44229|Other Home Furnishings Stores US";
	NAICSArray[1025] = "442291|Window Treatment Stores US";
	NAICSArray[1026] = "442292|Print and Picture Frame Stores CAN";
	NAICSArray[1027] = "442298|All Other Home Furnishings Stores CAN";
	NAICSArray[1028] = "443|Electronics and Appliance Stores US";
	NAICSArray[1029] = "4431|Electronics and Appliance Stores US";
	NAICSArray[1030] = "44311|Appliance, Television and Other Electronics Stores US";
	NAICSArray[1031] = "443110|Appliance, Television and Other Electronics Stores CAN";
	NAICSArray[1032] = "44312|Computer and Software Stores US";
	NAICSArray[1033] = "443120|Computer and Software Stores US";
	NAICSArray[1034] = "44313|Camera and Photographic Supplies Stores US";
	NAICSArray[1035] = "443130|Camera and Photographic Supplies Stores US";
	NAICSArray[1036] = "444|Building Material and Garden Equipment and Supplies Dealers US";
	NAICSArray[1037] = "4441|Building Material and Supplies Dealers US";
	NAICSArray[1038] = "44411|Home Centres US";
	NAICSArray[1039] = "444110|Home Centres US";
	NAICSArray[1040] = "44412|Paint and Wallpaper Stores US";
	NAICSArray[1041] = "444120|Paint and Wallpaper Stores US";
	NAICSArray[1042] = "44413|Hardware Stores US";
	NAICSArray[1043] = "444130|Hardware Stores US";
	NAICSArray[1044] = "44419|Other Building Material Dealers US";
	NAICSArray[1045] = "444190|Other Building Material Dealers US";
	NAICSArray[1046] = "4442|Lawn and Garden Equipment and Supplies Stores US";
	NAICSArray[1047] = "44421|Outdoor Power Equipment Stores US";
	NAICSArray[1048] = "444210|Outdoor Power Equipment Stores US";
	NAICSArray[1049] = "44422|Nursery Stores and Garden Centres US";
	NAICSArray[1050] = "444220|Nursery Stores and Garden Centres US";
	NAICSArray[1051] = "445|Food and Beverage Stores US";
	NAICSArray[1052] = "4451|Grocery Stores US";
	NAICSArray[1053] = "44511|Supermarkets and Other Grocery (except Convenience) Stores US";
	NAICSArray[1054] = "445110|Supermarkets and Other Grocery (except Convenience) Stores US";
	NAICSArray[1055] = "44512|Convenience Stores US";
	NAICSArray[1056] = "445120|Convenience Stores US";
	NAICSArray[1057] = "4452|Specialty Food Stores US";
	NAICSArray[1058] = "44521|Meat Markets US";
	NAICSArray[1059] = "445210|Meat Markets US";
	NAICSArray[1060] = "44522|Fish and Seafood Markets US";
	NAICSArray[1061] = "445220|Fish and Seafood Markets US";
	NAICSArray[1062] = "44523|Fruit and Vegetable Markets US";
	NAICSArray[1063] = "445230|Fruit and Vegetable Markets US";
	NAICSArray[1064] = "44529|Other Specialty Food Stores US";
	NAICSArray[1065] = "445291|Baked Goods Stores US";
	NAICSArray[1066] = "445292|Confectionery and Nut Stores US";
	NAICSArray[1067] = "445299|All Other Specialty Food Stores US";
	NAICSArray[1068] = "4453|Beer, Wine and Liquor Stores US";
	NAICSArray[1069] = "44531|Beer, Wine and Liquor Stores US";
	NAICSArray[1070] = "445310|Beer, Wine and Liquor Stores US";
	NAICSArray[1071] = "446|Health and Personal Care Stores US";
	NAICSArray[1072] = "4461|Health and Personal Care Stores US";
	NAICSArray[1073] = "44611|Pharmacies and Drug Stores US";
	NAICSArray[1074] = "446110|Pharmacies and Drug Stores US";
	NAICSArray[1075] = "44612|Cosmetics, Beauty Supplies and Perfume Stores US";
	NAICSArray[1076] = "446120|Cosmetics, Beauty Supplies and Perfume Stores US";
	NAICSArray[1077] = "44613|Optical Goods Stores US";
	NAICSArray[1078] = "446130|Optical Goods Stores US";
	NAICSArray[1079] = "44619|Other Health and Personal Care Stores US";
	NAICSArray[1080] = "446191|Food (Health) Supplement Stores US";
	NAICSArray[1081] = "446199|All Other Health and Personal Care Stores US";
	NAICSArray[1082] = "447|Gasoline Stations US";
	NAICSArray[1083] = "4471|Gasoline Stations US";
	NAICSArray[1084] = "44711|Gasoline Stations with Convenience Stores US";
	NAICSArray[1085] = "447110|Gasoline Stations with Convenience Stores US";
	NAICSArray[1086] = "44719|Other Gasoline Stations US";
	NAICSArray[1087] = "447190|Other Gasoline Stations US";
	NAICSArray[1088] = "448|Clothing and Clothing Accessories Stores US";
	NAICSArray[1089] = "4481|Clothing Stores US";
	NAICSArray[1090] = "44811|Men's Clothing Stores US";
	NAICSArray[1091] = "448110|Men's Clothing Stores US";
	NAICSArray[1092] = "44812|Women's Clothing Stores US";
	NAICSArray[1093] = "448120|Women's Clothing Stores US";
	NAICSArray[1094] = "44813|Children's and Infants' Clothing Stores US";
	NAICSArray[1095] = "448130|Children's and Infants' Clothing Stores US";
	NAICSArray[1096] = "44814|Family Clothing Stores US";
	NAICSArray[1097] = "448140|Family Clothing Stores US";
	NAICSArray[1098] = "44815|Clothing Accessories Stores US";
	NAICSArray[1099] = "448150|Clothing Accessories Stores US";
	NAICSArray[1100] = "44819|Other Clothing Stores US";
	NAICSArray[1101] = "448191|Fur Stores CAN";
	NAICSArray[1102] = "448199|All Other Clothing Stores CAN";
	NAICSArray[1103] = "4482|Shoe Stores US";
	NAICSArray[1104] = "44821|Shoe Stores US";
	NAICSArray[1105] = "448210|Shoe Stores US";
	NAICSArray[1106] = "4483|Jewellery, Luggage and Leather Goods Stores US";
	NAICSArray[1107] = "44831|Jewellery Stores US";
	NAICSArray[1108] = "448310|Jewellery Stores US";
	NAICSArray[1109] = "44832|Luggage and Leather Goods Stores US";
	NAICSArray[1110] = "448320|Luggage and Leather Goods Stores US";
	NAICSArray[1111] = "45|Retail Trade - Sports & Leisure, General Merchandise, Misc., Non-Store";
	NAICSArray[1112] = "451|Sporting Goods, Hobby, Book and Music Stores US";
	NAICSArray[1113] = "4511|Sporting Goods, Hobby and Musical Instrument Stores US";
	NAICSArray[1114] = "45111|Sporting Goods Stores US";
	NAICSArray[1115] = "451110|Sporting Goods Stores US";
	NAICSArray[1116] = "45112|Hobby, Toy and Game Stores US";
	NAICSArray[1117] = "451120|Hobby, Toy and Game Stores US";
	NAICSArray[1118] = "45113|Sewing, Needlework and Piece Goods Stores US";
	NAICSArray[1119] = "451130|Sewing, Needlework and Piece Goods Stores US";
	NAICSArray[1120] = "45114|Musical Instrument and Supplies Stores US";
	NAICSArray[1121] = "451140|Musical Instrument and Supplies Stores US";
	NAICSArray[1122] = "4512|Book, Periodical and Music Stores US";
	NAICSArray[1123] = "45121|Book Stores and News Dealers US";
	NAICSArray[1124] = "451210|Book Stores and News Dealers CAN";
	NAICSArray[1125] = "45122|Pre-Recorded Tape, Compact Disc and Record Stores US";
	NAICSArray[1126] = "451220|Pre-Recorded Tape, Compact Disc and Record Stores US";
	NAICSArray[1127] = "452|General Merchandise Stores US";
	NAICSArray[1128] = "4521|Department Stores US";
	NAICSArray[1129] = "45211|Department Stores US";
	NAICSArray[1130] = "452110|Department Stores CAN";
	NAICSArray[1131] = "4529|Other General Merchandise Stores US";
	NAICSArray[1132] = "45291|Warehouse Clubs and Superstores US";
	NAICSArray[1133] = "452910|Warehouse Clubs and Superstores US";
	NAICSArray[1134] = "45299|All Other General Merchandise Stores US";
	NAICSArray[1135] = "452991|Home and Auto Supplies Stores CAN";
	NAICSArray[1136] = "452999|All Other Miscellaneous General Merchandise Stores CAN";
	NAICSArray[1137] = "453|Miscellaneous Store Retailers US";
	NAICSArray[1138] = "4531|Florists US";
	NAICSArray[1139] = "45311|Florists US";
	NAICSArray[1140] = "453110|Florists US";
	NAICSArray[1141] = "4532|Office Supplies, Stationery and Gift Stores US";
	NAICSArray[1142] = "45321|Office Supplies and Stationery Stores US";
	NAICSArray[1143] = "453210|Office Supplies and Stationery Stores US";
	NAICSArray[1144] = "45322|Gift, Novelty and Souvenir Stores US";
	NAICSArray[1145] = "453220|Gift, Novelty and Souvenir Stores US";
	NAICSArray[1146] = "4533|Used Merchandise Stores US";
	NAICSArray[1147] = "45331|Used Merchandise Stores US";
	NAICSArray[1148] = "453310|Used Merchandise Stores US";
	NAICSArray[1149] = "4539|Other Miscellaneous Store Retailers US";
	NAICSArray[1150] = "45391|Pet and Pet Supplies Stores US";
	NAICSArray[1151] = "453910|Pet and Pet Supplies Stores US";
	NAICSArray[1152] = "45392|Art Dealers US";
	NAICSArray[1153] = "453920|Art Dealers US";
	NAICSArray[1154] = "45393|Mobile Home Dealers US";
	NAICSArray[1155] = "453930|Mobile Home Dealers US";
	NAICSArray[1156] = "45399|All Other Miscellaneous Store Retailers US";
	NAICSArray[1157] = "453992|Beer and Wine-Making Supplies Stores CAN";
	NAICSArray[1158] = "453999|All Other Miscellaneous Store Retailers (except Beer and Wine-Making Supplies Stores) CAN";
	NAICSArray[1159] = "454|Non-Store Retailers US";
	NAICSArray[1160] = "4541|Electronic Shopping and Mail-Order Houses US";
	NAICSArray[1161] = "45411|Electronic Shopping and Mail-Order Houses US";
	NAICSArray[1162] = "454110|Electronic Shopping and Mail-Order Houses CAN";
	NAICSArray[1163] = "4542|Vending Machine Operators US";
	NAICSArray[1164] = "45421|Vending Machine Operators US";
	NAICSArray[1165] = "454210|Vending Machine Operators US";
	NAICSArray[1166] = "4543|Direct Selling Establishments US";
	NAICSArray[1167] = "45431|Fuel Dealers US";
	NAICSArray[1168] = "454310|Fuel Dealers CAN";
	NAICSArray[1169] = "45439|Other Direct Selling Establishments US";
	NAICSArray[1170] = "454390|Other Direct Selling Establishments US";
	NAICSArray[1171] = "48|Transportation";
	NAICSArray[1172] = "481|Air Transportation ";
	NAICSArray[1173] = "4811|Scheduled Air Transportation ";
	NAICSArray[1174] = "48111|Scheduled Air Transportation ";
	NAICSArray[1175] = "481110|Scheduled Air Transportation CAN";
	NAICSArray[1176] = "4812|Non-Scheduled Air Transportation ";
	NAICSArray[1177] = "48121|Non-Scheduled Air Transportation ";
	NAICSArray[1178] = "481214|Non-Scheduled Chartered Air Transportation CAN";
	NAICSArray[1179] = "481215|Non-Scheduled Specialty Flying Services CAN";
	NAICSArray[1180] = "482|Rail Transportation ";
	NAICSArray[1181] = "4821|Rail Transportation ";
	NAICSArray[1182] = "48211|Rail Transportation ";
	NAICSArray[1183] = "482112|Short-Haul Freight Rail Transportation US";
	NAICSArray[1184] = "482113|Mainline Freight Rail Transportation CAN";
	NAICSArray[1185] = "482114|Passenger Rail Transportation CAN";
	NAICSArray[1186] = "483|Water Transportation ";
	NAICSArray[1187] = "4831|Deep Sea, Coastal and Great Lakes Water Transportation ";
	NAICSArray[1188] = "48311|Deep Sea, Coastal and Great Lakes Water Transportation ";
	NAICSArray[1189] = "483115|Deep Sea, Coastal and Great Lakes Water Transportation (except by Ferries) CAN";
	NAICSArray[1190] = "483116|Deep Sea, Coastal and Great Lakes Water Transportation by Ferries CAN";
	NAICSArray[1191] = "4832|Inland Water Transportation ";
	NAICSArray[1192] = "48321|Inland Water Transportation ";
	NAICSArray[1193] = "483213|Inland Water Transportation (except by Ferries) CAN";
	NAICSArray[1194] = "483214|Inland Water Transportation by Ferries CAN";
	NAICSArray[1195] = "484|Truck Transportation ";
	NAICSArray[1196] = "4841|General Freight Trucking ";
	NAICSArray[1197] = "48411|General Freight Trucking, Local ";
	NAICSArray[1198] = "484110|General Freight Trucking, Local US";
	NAICSArray[1199] = "48412|General Freight Trucking, Long Distance ";
	NAICSArray[1200] = "484121|General Freight Trucking, Long Distance, Truck-Load US";
	NAICSArray[1201] = "484122|General Freight Trucking, Long Distance, Less Than Truck-Load US";
	NAICSArray[1202] = "4842|Specialized Freight Trucking ";
	NAICSArray[1203] = "48421|Used Household and Office Goods Moving ";
	NAICSArray[1204] = "484210|Used Household and Office Goods Moving ";
	NAICSArray[1205] = "48422|Specialized Freight (except Used Goods) Trucking, Local ";
	NAICSArray[1206] = "484221|Bulk Liquids Trucking, Local CAN";
	NAICSArray[1207] = "484222|Dry Bulk Materials Trucking, Local CAN";
	NAICSArray[1208] = "484223|Forest Products Trucking, Local CAN";
	NAICSArray[1209] = "484229|Other Specialized Freight (except Used Goods) Trucking, Local CAN";
	NAICSArray[1210] = "48423|Specialized Freight (except Used Goods) Trucking, Long Distance ";
	NAICSArray[1211] = "484231|Bulk Liquids Trucking, Long Distance CAN";
	NAICSArray[1212] = "484232|Dry Bulk Materials Trucking, Long Distance CAN";
	NAICSArray[1213] = "484233|Forest Products Trucking, Long Distance CAN";
	NAICSArray[1214] = "484239|Other Specialized Freight (except Used Goods) Trucking, Long Distance CAN";
	NAICSArray[1215] = "485|Transit and Ground Passenger Transportation ";
	NAICSArray[1216] = "4851|Urban Transit Systems ";
	NAICSArray[1217] = "48511|Urban Transit Systems ";
	NAICSArray[1218] = "485110|Urban Transit Systems CAN";
	NAICSArray[1219] = "4852|Interurban and Rural Bus Transportation ";
	NAICSArray[1220] = "48521|Interurban and Rural Bus Transportation ";
	NAICSArray[1221] = "485210|Interurban and Rural Bus Transportation ";
	NAICSArray[1222] = "4853|Taxi and Limousine Service ";
	NAICSArray[1223] = "48531|Taxi Service ";
	NAICSArray[1224] = "485310|Taxi Service US";
	NAICSArray[1225] = "48532|Limousine Service ";
	NAICSArray[1226] = "485320|Limousine Service ";
	NAICSArray[1227] = "4854|School and Employee Bus Transportation ";
	NAICSArray[1228] = "48541|School and Employee Bus Transportation ";
	NAICSArray[1229] = "485410|School and Employee Bus Transportation ";
	NAICSArray[1230] = "4855|Charter Bus Industry ";
	NAICSArray[1231] = "48551|Charter Bus Industry ";
	NAICSArray[1232] = "485510|Charter Bus Industry ";
	NAICSArray[1233] = "4859|Other Transit and Ground Passenger Transportation ";
	NAICSArray[1234] = "48599|Other Transit and Ground Passenger Transportation ";
	NAICSArray[1235] = "485990|Other Transit and Ground Passenger Transportation CAN";
	NAICSArray[1236] = "486|Pipeline Transportation ";
	NAICSArray[1237] = "4861|Pipeline Transportation of Crude Oil ";
	NAICSArray[1238] = "48611|Pipeline Transportation of Crude Oil ";
	NAICSArray[1239] = "486110|Pipeline Transportation of Crude Oil ";
	NAICSArray[1240] = "4862|Pipeline Transportation of Natural Gas ";
	NAICSArray[1241] = "48621|Pipeline Transportation of Natural Gas ";
	NAICSArray[1242] = "486210|Pipeline Transportation of Natural Gas ";
	NAICSArray[1243] = "4869|Other Pipeline Transportation ";
	NAICSArray[1244] = "48691|Pipeline Transportation of Refined Petroleum Products ";
	NAICSArray[1245] = "486910|Pipeline Transportation of Refined Petroleum Products ";
	NAICSArray[1246] = "48699|All Other Pipeline Transportation ";
	NAICSArray[1247] = "486990|All Other Pipeline Transportation ";
	NAICSArray[1248] = "487|Scenic and Sightseeing Transportation ";
	NAICSArray[1249] = "4871|Scenic and Sightseeing Transportation, Land ";
	NAICSArray[1250] = "48711|Scenic and Sightseeing Transportation, Land ";
	NAICSArray[1251] = "487110|Scenic and Sightseeing Transportation, Land ";
	NAICSArray[1252] = "4872|Scenic and Sightseeing Transportation, Water ";
	NAICSArray[1253] = "48721|Scenic and Sightseeing Transportation, Water ";
	NAICSArray[1254] = "487210|Scenic and Sightseeing Transportation, Water ";
	NAICSArray[1255] = "4879|Scenic and Sightseeing Transportation, Other ";
	NAICSArray[1256] = "48799|Scenic and Sightseeing Transportation, Other ";
	NAICSArray[1257] = "487990|Scenic and Sightseeing Transportation, Other ";
	NAICSArray[1258] = "488|Support Activities for Transportation ";
	NAICSArray[1259] = "4881|Support Activities for Air Transportation ";
	NAICSArray[1260] = "48811|Airport Operations ";
	NAICSArray[1261] = "488111|Air Traffic Control ";
	NAICSArray[1262] = "488119|Other Airport Operations US";
	NAICSArray[1263] = "48819|Other Support Activities for Air Transportation ";
	NAICSArray[1264] = "488190|Other Support Activities for Air Transportation ";
	NAICSArray[1265] = "4882|Support Activities for Rail Transportation ";
	NAICSArray[1266] = "48821|Support Activities for Rail Transportation ";
	NAICSArray[1267] = "488210|Support Activities for Rail Transportation ";
	NAICSArray[1268] = "4883|Support Activities for Water Transportation ";
	NAICSArray[1269] = "48831|Port and Harbour Operations ";
	NAICSArray[1270] = "488310|Port and Harbour Operations ";
	NAICSArray[1271] = "48832|Marine Cargo Handling ";
	NAICSArray[1272] = "488320|Marine Cargo Handling ";
	NAICSArray[1273] = "48833|Navigational Services to Shipping ";
	NAICSArray[1274] = "488331|Marine Salvage Services CAN";
	NAICSArray[1275] = "488332|Ship Piloting Services CAN";
	NAICSArray[1276] = "488339|Other Navigational Services to Shipping CAN";
	NAICSArray[1277] = "48839|Other Support Activities for Water Transportation ";
	NAICSArray[1278] = "488390|Other Support Activities for Water Transportation ";
	NAICSArray[1279] = "4884|Support Activities for Road Transportation ";
	NAICSArray[1280] = "48841|Motor Vehicle Towing ";
	NAICSArray[1281] = "488410|Motor Vehicle Towing ";
	NAICSArray[1282] = "48849|Other Support Activities for Road Transportation ";
	NAICSArray[1283] = "488490|Other Support Activities for Road Transportation US";
	NAICSArray[1284] = "4885|Freight Transportation Arrangement ";
	NAICSArray[1285] = "48851|Freight Transportation Arrangement ";
	NAICSArray[1286] = "488511|Marine Shipping Agencies CAN";
	NAICSArray[1287] = "488519|Other Freight Transportation Arrangement CAN";
	NAICSArray[1288] = "4889|Other Support Activities for Transportation ";
	NAICSArray[1289] = "48899|Other Support Activities for Transportation ";
	NAICSArray[1290] = "488990|Other Support Activities for Transportation MEX";
	NAICSArray[1291] = "49|Postal Services, Couriers, Warehousing, Storage";
	NAICSArray[1292] = "491|Postal Service ";
	NAICSArray[1293] = "4911|Postal Service ";
	NAICSArray[1294] = "49111|Postal Service ";
	NAICSArray[1295] = "491110|Postal Service ";
	NAICSArray[1296] = "492|Couriers and Messengers ";
	NAICSArray[1297] = "4921|Couriers ";
	NAICSArray[1298] = "49211|Couriers ";
	NAICSArray[1299] = "492110|Couriers ";
	NAICSArray[1300] = "4922|Local Messengers and Local Delivery ";
	NAICSArray[1301] = "49221|Local Messengers and Local Delivery ";
	NAICSArray[1302] = "492210|Local Messengers and Local Delivery ";
	NAICSArray[1303] = "493|Warehousing and Storage ";
	NAICSArray[1304] = "4931|Warehousing and Storage ";
	NAICSArray[1305] = "49311|General Warehousing and Storage ";
	NAICSArray[1306] = "493110|General Warehousing and Storage US";
	NAICSArray[1307] = "49312|Refrigerated Warehousing and Storage ";
	NAICSArray[1308] = "493120|Refrigerated Warehousing and Storage ";
	NAICSArray[1309] = "49313|Farm Product Warehousing and Storage ";
	NAICSArray[1310] = "493130|Farm Product Warehousing and Storage ";
	NAICSArray[1311] = "49319|Other Warehousing and Storage ";
	NAICSArray[1312] = "493190|Other Warehousing and Storage ";
	NAICSArray[1313] = "51|Information and Cultural Industries ";
	NAICSArray[1314] = "511|Publishing Industries (except Internet) ";
	NAICSArray[1315] = "5111|Newspaper, Periodical, Book and Directory Publishers ";
	NAICSArray[1316] = "51111|Newspaper Publishers ";
	NAICSArray[1317] = "511110|Newspaper Publishers US";
	NAICSArray[1318] = "51112|Periodical Publishers ";
	NAICSArray[1319] = "511120|Periodical Publishers US";
	NAICSArray[1320] = "51113|Book Publishers ";
	NAICSArray[1321] = "511130|Book Publishers US";
	NAICSArray[1322] = "51114|Directory and Mailing List Publishers ";
	NAICSArray[1323] = "511140|Directory and Mailing List Publishers US";
	NAICSArray[1324] = "51119|Other Publishers ";
	NAICSArray[1325] = "511190|Other Publishers CAN";
	NAICSArray[1326] = "5112|Software Publishers ";
	NAICSArray[1327] = "51121|Software Publishers ";
	NAICSArray[1328] = "511210|Software Publishers ";
	NAICSArray[1329] = "512|Motion Picture and Sound Recording Industries ";
	NAICSArray[1330] = "5121|Motion Picture and Video Industries ";
	NAICSArray[1331] = "51211|Motion Picture and Video Production ";
	NAICSArray[1332] = "512110|Motion Picture and Video Production US";
	NAICSArray[1333] = "51212|Motion Picture and Video Distribution ";
	NAICSArray[1334] = "512120|Motion Picture and Video Distribution US";
	NAICSArray[1335] = "51213|Motion Picture and Video Exhibition ";
	NAICSArray[1336] = "512130|Motion Picture and Video Exhibition MEX";
	NAICSArray[1337] = "51219|Post-Production and Other Motion Picture and Video Industries ";
	NAICSArray[1338] = "512190|Post-Production and Other Motion Picture and Video Industries MEX";
	NAICSArray[1339] = "5122|Sound Recording Industries ";
	NAICSArray[1340] = "51221|Record Production ";
	NAICSArray[1341] = "512210|Record Production ";
	NAICSArray[1342] = "51222|Integrated Record Production/Distribution ";
	NAICSArray[1343] = "512220|Integrated Record Production/Distribution ";
	NAICSArray[1344] = "51223|Music Publishers ";
	NAICSArray[1345] = "512230|Music Publishers ";
	NAICSArray[1346] = "51224|Sound Recording Studios ";
	NAICSArray[1347] = "512240|Sound Recording Studios ";
	NAICSArray[1348] = "51229|Other Sound Recording Industries ";
	NAICSArray[1349] = "512290|Other Sound Recording Industries ";
	NAICSArray[1350] = "515|Broadcasting (except Internet) ";
	NAICSArray[1351] = "5151|Radio and Television Broadcasting ";
	NAICSArray[1352] = "51511|Radio Broadcasting ";
	NAICSArray[1353] = "515110|Radio Broadcasting MEX";
	NAICSArray[1354] = "51512|Television Broadcasting ";
	NAICSArray[1355] = "515120|Television Broadcasting ";
	NAICSArray[1356] = "5152|Pay and Specialty Television ";
	NAICSArray[1357] = "51521|Pay and Specialty Television ";
	NAICSArray[1358] = "515210|Pay and Specialty Television ";
	NAICSArray[1359] = "516|Internet Publishing and Broadcasting ";
	NAICSArray[1360] = "5161|Internet Publishing and Broadcasting ";
	NAICSArray[1361] = "51611|Internet Publishing and Broadcasting ";
	NAICSArray[1362] = "516110|Internet Publishing and Broadcasting ";
	NAICSArray[1363] = "517|Telecommunications ";
	NAICSArray[1364] = "5171|Wired Telecommunications Carriers ";
	NAICSArray[1365] = "51711|Wired Telecommunications Carriers ";
	NAICSArray[1366] = "517110|Wired Telecommunications Carriers US";
	NAICSArray[1367] = "5172|Wireless Telecommunications Carriers (except Satellite) ";
	NAICSArray[1368] = "51721|Wireless Telecommunications Carriers (except Satellite) ";
	NAICSArray[1369] = "517210|Wireless Telecommunications Carriers (except Satellite) MEX";
	NAICSArray[1370] = "5173|Telecommunications Resellers ";
	NAICSArray[1371] = "51731|Telecommunications Resellers ";
	NAICSArray[1372] = "517310|Telecommunications Resellers US";
	NAICSArray[1373] = "5174|Satellite Telecommunications ";
	NAICSArray[1374] = "51741|Satellite Telecommunications ";
	NAICSArray[1375] = "517410|Satellite Telecommunications MEX";
	NAICSArray[1376] = "5175|Cable and Other Program Distribution ";
	NAICSArray[1377] = "51751|Cable and Other Program Distribution ";
	NAICSArray[1378] = "517510|Cable and Other Program Distribution ";
	NAICSArray[1379] = "5179|Other Telecommunications ";
	NAICSArray[1380] = "51791|Other Telecommunications ";
	NAICSArray[1381] = "517910|Other Telecommunications ";
	NAICSArray[1382] = "518|Internet Service Providers, Web Search Portals, and Data Processing Services ";
	NAICSArray[1383] = "5181|Internet Service Providers, Web Search Portals ";
	NAICSArray[1384] = "51811|Internet Service Providers, Web Search Portals ";
	NAICSArray[1385] = "518111|Internet Service Providers US";
	NAICSArray[1386] = "518112|Web Search Portals US";
	NAICSArray[1387] = "5182|Data Processing, Hosting, and Related Services ";
	NAICSArray[1388] = "51821|Data Processing, Hosting, and Related Services ";
	NAICSArray[1389] = "518210|Data Processing, Hosting, and Related Services ";
	NAICSArray[1390] = "519|Other Information Services ";
	NAICSArray[1391] = "5191|Other Information Services ";
	NAICSArray[1392] = "51911|News Syndicates ";
	NAICSArray[1393] = "519110|News Syndicates ";
	NAICSArray[1394] = "51912|Libraries and Archives ";
	NAICSArray[1395] = "519121|Libraries CAN";
	NAICSArray[1396] = "519122|Archives CAN";
	NAICSArray[1397] = "51919|All Other Information Services ";
	NAICSArray[1398] = "519190|All Other Information Services ";
	NAICSArray[1399] = "52|Finance and Insurance ";
	NAICSArray[1400] = "521|Monetary Authorities - Central Bank ";
	NAICSArray[1401] = "5211|Monetary Authorities - Central Bank ";
	NAICSArray[1402] = "52111|Monetary Authorities - Central Bank ";
	NAICSArray[1403] = "521110|Monetary Authorities - Central Bank ";
	NAICSArray[1404] = "522|Credit Intermediation and Related Activities US";
	NAICSArray[1405] = "5221|Depository Credit Intermediation US";
	NAICSArray[1406] = "52211|Banking CAN";
	NAICSArray[1407] = "522111|Personal and Commercial Banking Industry CAN";
	NAICSArray[1408] = "522112|Corporate and Institutional Banking Industry CAN";
	NAICSArray[1409] = "52213|Local Credit Unions US";
	NAICSArray[1410] = "522130|Local Credit Unions US";
	NAICSArray[1411] = "52219|Other Depository Credit Intermediation US";
	NAICSArray[1412] = "522190|Other Depository Credit Intermediation US";
	NAICSArray[1413] = "5222|Non-Depository Credit Intermediation US";
	NAICSArray[1414] = "52221|Credit Card Issuing US";
	NAICSArray[1415] = "522210|Credit Card Issuing US";
	NAICSArray[1416] = "52222|Sales Financing US";
	NAICSArray[1417] = "522220|Sales Financing US";
	NAICSArray[1418] = "52229|Other Non-Depository Credit Intermediation US";
	NAICSArray[1419] = "522291|Consumer Lending US";
	NAICSArray[1420] = "522299|All Other Non-Depository Credit Intermediation CAN";
	NAICSArray[1421] = "5223|Activities Related to Credit Intermediation US";
	NAICSArray[1422] = "52231|Mortgage and Non-mortgage Loan Brokers US";
	NAICSArray[1423] = "522310|Mortgage and Non-mortgage Loan Brokers US";
	NAICSArray[1424] = "52232|Financial Transactions Processing, Reserve and Clearing House Activities US";
	NAICSArray[1425] = "522321|Central Credit Unions CAN";
	NAICSArray[1426] = "522329|Other Financial Transactions Processing and Clearing House Activities CAN";
	NAICSArray[1427] = "52239|Other Activities Related to Credit Intermediation US";
	NAICSArray[1428] = "522390|Other Activities Related to Credit Intermediation US";
	NAICSArray[1429] = "523|Securities, Commodity Contracts, and Other Financial Investment and Related Activities ";
	NAICSArray[1430] = "5231|Securities and Commodity Contracts Intermediation and Brokerage ";
	NAICSArray[1431] = "52311|Investment Banking and Securities Dealing US";
	NAICSArray[1432] = "523110|Investment Banking and Securities Dealing US";
	NAICSArray[1433] = "52312|Securities Brokerage US";
	NAICSArray[1434] = "523120|Securities Brokerage US";
	NAICSArray[1435] = "52313|Commodity Contracts Dealing US";
	NAICSArray[1436] = "523130|Commodity Contracts Dealing US";
	NAICSArray[1437] = "52314|Commodity Contracts Brokerage US";
	NAICSArray[1438] = "523140|Commodity Contracts Brokerage US";
	NAICSArray[1439] = "5232|Securities and Commodity Exchanges ";
	NAICSArray[1440] = "52321|Securities and Commodity Exchanges ";
	NAICSArray[1441] = "523210|Securities and Commodity Exchanges ";
	NAICSArray[1442] = "5239|Other Financial Investment Activities ";
	NAICSArray[1443] = "52391|Miscellaneous Intermediation US";
	NAICSArray[1444] = "523910|Miscellaneous Intermediation US";
	NAICSArray[1445] = "52392|Portfolio Management US";
	NAICSArray[1446] = "523920|Portfolio Management US";
	NAICSArray[1447] = "52393|Investment Advice US";
	NAICSArray[1448] = "523930|Investment Advice US";
	NAICSArray[1449] = "52399|All Other Financial Investment Activities US";
	NAICSArray[1450] = "523990|All Other Financial Investment Activities CAN";
	NAICSArray[1451] = "524|Insurance Carriers and Related Activities ";
	NAICSArray[1452] = "5241|Insurance Carriers ";
	NAICSArray[1453] = "52411|Direct Life, Health and Medical Insurance Carriers US";
	NAICSArray[1454] = "524111|Direct Individual Life, Health and Medical Insurance Carriers CAN";
	NAICSArray[1455] = "524112|Direct Group Life, Health and Medical Insurance Carriers CAN";
	NAICSArray[1456] = "52412|Direct Insurance (except Life, Health and Medical) Carriers US";
	NAICSArray[1457] = "524121|Direct General Property and Casualty Insurance Carriers CAN";
	NAICSArray[1458] = "524122|Direct, Private, Automobile Insurance Carriers CAN";
	NAICSArray[1459] = "524123|Direct, Public, Automobile Insurance Carriers CAN";
	NAICSArray[1460] = "524124|Direct Property Insurance Carriers CAN";
	NAICSArray[1461] = "524125|Direct Liability Insurance Carriers CAN";
	NAICSArray[1462] = "524129|Other Direct Insurance (except Life, Health and Medical) Carriers CAN";
	NAICSArray[1463] = "52413|Reinsurance Carriers US";
	NAICSArray[1464] = "524131|Life Reinsurance Carriers CAN";
	NAICSArray[1465] = "524132|Accident and Sickness Reinsurance Carriers CAN";
	NAICSArray[1466] = "524133|Automobile Reinsurance Carriers CAN";
	NAICSArray[1467] = "524134|Property Reinsurance Carriers CAN";
	NAICSArray[1468] = "524135|Liability Reinsurance Carriers CAN";
	NAICSArray[1469] = "524139|General and Other Reinsurance Carriers CAN";
	NAICSArray[1470] = "5242|Agencies, Brokerages and Other Insurance Related Activities ";
	NAICSArray[1471] = "52421|Insurance Agencies and Brokerages US";
	NAICSArray[1472] = "524210|Insurance Agencies and Brokerages US";
	NAICSArray[1473] = "52429|Other Insurance Related Activities US";
	NAICSArray[1474] = "524291|Claims Adjusters US";
	NAICSArray[1475] = "524299|All Other Insurance Related Activities CAN";
	NAICSArray[1476] = "526|Funds and Other Financial Vehicles CAN";
	NAICSArray[1477] = "5261|Pension Funds CAN";
	NAICSArray[1478] = "52611|Pension Funds CAN";
	NAICSArray[1479] = "526111|Trusteed Pension Funds CAN";
	NAICSArray[1480] = "526112|Non-Trusteed Pension Funds CAN";
	NAICSArray[1481] = "5269|Other Funds and Financial Vehicles CAN";
	NAICSArray[1482] = "52691|Open-End Investment Funds CAN";
	NAICSArray[1483] = "526911|Equity Funds - Canadian CAN";
	NAICSArray[1484] = "526912|Equity Funds - Foreign CAN";
	NAICSArray[1485] = "526913|Mortgage Funds CAN";
	NAICSArray[1486] = "526914|Money Market Funds CAN";
	NAICSArray[1487] = "526915|Bond and Income / Dividend Funds - Canadian CAN";
	NAICSArray[1488] = "526916|Bond and Income / Dividend Funds - Foreign CAN";
	NAICSArray[1489] = "526917|Balanced Funds / Asset Allocation Funds CAN";
	NAICSArray[1490] = "526919|Other Open-Ended Funds CAN";
	NAICSArray[1491] = "52692|Mortgage Investment Funds CAN";
	NAICSArray[1492] = "526920|Mortgage Investment Funds CAN";
	NAICSArray[1493] = "52693|Segregated (except Pension) Funds CAN";
	NAICSArray[1494] = "526930|Segregated (except Pension) Funds CAN";
	NAICSArray[1495] = "52698|All Other Funds and Financial Vehicles CAN";
	NAICSArray[1496] = "526981|Securitization Vehicles CAN";
	NAICSArray[1497] = "526989|All Other Miscellaneous Funds and Financial Vehicles CAN";
	NAICSArray[1498] = "53|Real Estate and Rental and Leasing ";
	NAICSArray[1499] = "531|Real Estate ";
	NAICSArray[1500] = "5311|Lessors of Real Estate ";
	NAICSArray[1501] = "53111|Lessors of Residential Buildings and Dwellings US";
	NAICSArray[1502] = "531111|Lessors of Residential Buildings and Dwellings (except Social Housing Projects) CAN";
	NAICSArray[1503] = "531112|Lessors of Social Housing Projects CAN";
	NAICSArray[1504] = "53112|Lessors of Non-Residential Buildings (except Mini-Warehouses) US";
	NAICSArray[1505] = "531120|Lessors of Non-Residential Buildings (except Mini-Warehouses) US";
	NAICSArray[1506] = "53113|Self-Storage Mini-Warehouses US";
	NAICSArray[1507] = "531130|Self-Storage Mini-Warehouses US";
	NAICSArray[1508] = "53119|Lessors of Other Real Estate Property US";
	NAICSArray[1509] = "531190|Lessors of Other Real Estate Property US";
	NAICSArray[1510] = "5312|Offices of Real Estate Agents and Brokers ";
	NAICSArray[1511] = "53121|Offices of Real Estate Agents and Brokers ";
	NAICSArray[1512] = "531210|Offices of Real Estate Agents and Brokers ";
	NAICSArray[1513] = "5313|Activities Related to Real Estate ";
	NAICSArray[1514] = "53131|Real Estate Property Managers US";
	NAICSArray[1515] = "531310|Real Estate Property Managers CAN";
	NAICSArray[1516] = "53132|Offices of Real Estate Appraisers US";
	NAICSArray[1517] = "531320|Offices of Real Estate Appraisers US";
	NAICSArray[1518] = "53139|Other Activities Related to Real Estate US";
	NAICSArray[1519] = "531390|Other Activities Related to Real Estate US";
	NAICSArray[1520] = "532|Rental and Leasing Services ";
	NAICSArray[1521] = "5321|Automotive Equipment Rental and Leasing ";
	NAICSArray[1522] = "53211|Passenger Car Rental and Leasing ";
	NAICSArray[1523] = "532111|Passenger Car Rental US";
	NAICSArray[1524] = "532112|Passenger Car Leasing US";
	NAICSArray[1525] = "53212|Truck, Utility Trailer and RV (Recreational Vehicle) Rental and Leasing ";
	NAICSArray[1526] = "532120|Truck, Utility Trailer and RV (Recreational Vehicle) Rental and Leasing US";
	NAICSArray[1527] = "5322|Consumer Goods Rental ";
	NAICSArray[1528] = "53221|Consumer Electronics and Appliance Rental ";
	NAICSArray[1529] = "532210|Consumer Electronics and Appliance Rental ";
	NAICSArray[1530] = "53222|Formal Wear and Costume Rental ";
	NAICSArray[1531] = "532220|Formal Wear and Costume Rental ";
	NAICSArray[1532] = "53223|Video Tape and Disc Rental ";
	NAICSArray[1533] = "532230|Video Tape and Disc Rental ";
	NAICSArray[1534] = "53229|Other Consumer Goods Rental ";
	NAICSArray[1535] = "532290|Other Consumer Goods Rental CAN";
	NAICSArray[1536] = "5323|General Rental Centres ";
	NAICSArray[1537] = "53231|General Rental Centres ";
	NAICSArray[1538] = "532310|General Rental Centres ";
	NAICSArray[1539] = "5324|Commercial and Industrial Machinery and Equipment Rental and Leasing ";
	NAICSArray[1540] = "53241|Construction, Transportation, Mining, and Forestry Machinery and Equipment Rental and Leasing ";
	NAICSArray[1541] = "532410|Construction, Transportation, Mining, and Forestry Machinery and Equipment Rental and Leasing CAN";
	NAICSArray[1542] = "53242|Office Machinery and Equipment Rental and Leasing ";
	NAICSArray[1543] = "532420|Office Machinery and Equipment Rental and Leasing ";
	NAICSArray[1544] = "53249|Other Commercial and Industrial Machinery and Equipment Rental and Leasing ";
	NAICSArray[1545] = "532490|Other Commercial and Industrial Machinery and Equipment Rental and Leasing US";
	NAICSArray[1546] = "533|Lessors of Non-Financial Intangible Assets (Except Copyrighted Works) ";
	NAICSArray[1547] = "5331|Lessors of Non-Financial Intangible Assets (Except Copyrighted Works) ";
	NAICSArray[1548] = "53311|Lessors of Non-Financial Intangible Assets (Except Copyrighted Works) ";
	NAICSArray[1549] = "533110|Lessors of Non-Financial Intangible Assets (Except Copyrighted Works) ";
	NAICSArray[1550] = "54|Professional, Scientific and Technical Services ";
	NAICSArray[1551] = "541|Professional, Scientific and Technical Services ";
	NAICSArray[1552] = "5411|Legal Services ";
	NAICSArray[1553] = "54111|Offices of Lawyers ";
	NAICSArray[1554] = "541110|Offices of Lawyers ";
	NAICSArray[1555] = "54112|Offices of Notaries ";
	NAICSArray[1556] = "541120|Offices of Notaries ";
	NAICSArray[1557] = "54119|Other Legal Services ";
	NAICSArray[1558] = "541190|Other Legal Services MEX";
	NAICSArray[1559] = "5412|Accounting, Tax Preparation, Bookkeeping and Payroll Services ";
	NAICSArray[1560] = "54121|Accounting, Tax Preparation, Bookkeeping and Payroll Services ";
	NAICSArray[1561] = "541212|Offices of Accountants CAN";
	NAICSArray[1562] = "541213|Tax Preparation Services US";
	NAICSArray[1563] = "541215|Bookkeeping, Payroll and Related Services CAN";
	NAICSArray[1564] = "5413|Architectural, Engineering and Related Services ";
	NAICSArray[1565] = "54131|Architectural Services ";
	NAICSArray[1566] = "541310|Architectural Services ";
	NAICSArray[1567] = "54132|Landscape Architectural Services ";
	NAICSArray[1568] = "541320|Landscape Architectural Services ";
	NAICSArray[1569] = "54133|Engineering Services ";
	NAICSArray[1570] = "541330|Engineering Services ";
	NAICSArray[1571] = "54134|Drafting Services ";
	NAICSArray[1572] = "541340|Drafting Services ";
	NAICSArray[1573] = "54135|Building Inspection Services ";
	NAICSArray[1574] = "541350|Building Inspection Services ";
	NAICSArray[1575] = "54136|Geophysical Surveying and Mapping Services ";
	NAICSArray[1576] = "541360|Geophysical Surveying and Mapping Services ";
	NAICSArray[1577] = "54137|Surveying and Mapping (except Geophysical) Services ";
	NAICSArray[1578] = "541370|Surveying and Mapping (except Geophysical) Services ";
	NAICSArray[1579] = "54138|Testing Laboratories ";
	NAICSArray[1580] = "541380|Testing Laboratories ";
	NAICSArray[1581] = "5414|Specialized Design Services ";
	NAICSArray[1582] = "54141|Interior Design Services ";
	NAICSArray[1583] = "541410|Interior Design Services ";
	NAICSArray[1584] = "54142|Industrial Design Services ";
	NAICSArray[1585] = "541420|Industrial Design Services ";
	NAICSArray[1586] = "54143|Graphic Design Services ";
	NAICSArray[1587] = "541430|Graphic Design Services ";
	NAICSArray[1588] = "54149|Other Specialized Design Services ";
	NAICSArray[1589] = "541490|Other Specialized Design Services US";
	NAICSArray[1590] = "5415|Computer Systems Design and Related Services ";
	NAICSArray[1591] = "54151|Computer Systems Design and Related Services ";
	NAICSArray[1592] = "541510|Computer Systems Design and Related Services MEX";
	NAICSArray[1593] = "5416|Management, Scientific and Technical Consulting Services ";
	NAICSArray[1594] = "54161|Management Consulting Services ";
	NAICSArray[1595] = "541611|Administrative Management and General Management Consulting Services US";
	NAICSArray[1596] = "541612|Human Resource and Executive Search Consulting Services US";
	NAICSArray[1597] = "541619|Other Management Consulting Services CAN";
	NAICSArray[1598] = "54162|Environmental Consulting Services ";
	NAICSArray[1599] = "541620|Environmental Consulting Services ";
	NAICSArray[1600] = "54169|Other Scientific and Technical Consulting Services ";
	NAICSArray[1601] = "541690|Other Scientific and Technical Consulting Services ";
	NAICSArray[1602] = "5417|Scientific Research and Development Services ";
	NAICSArray[1603] = "54171|Research and Development in the Physical, Engineering and Life Sciences ";
	NAICSArray[1604] = "541710|Research and Development in the Physical, Engineering and Life Sciences US";
	NAICSArray[1605] = "54172|Research and Development in the Social Sciences and Humanities ";
	NAICSArray[1606] = "541720|Research and Development in the Social Sciences and Humanities US";
	NAICSArray[1607] = "5418|Advertising and Related Services ";
	NAICSArray[1608] = "54181|Advertising Agencies ";
	NAICSArray[1609] = "541810|Advertising Agencies ";
	NAICSArray[1610] = "54182|Public Relations Services ";
	NAICSArray[1611] = "541820|Public Relations Services ";
	NAICSArray[1612] = "54183|Media Buying Agencies ";
	NAICSArray[1613] = "541830|Media Buying Agencies ";
	NAICSArray[1614] = "54184|Media Representatives ";
	NAICSArray[1615] = "541840|Media Representatives ";
	NAICSArray[1616] = "54185|Display Advertising ";
	NAICSArray[1617] = "541850|Display Advertising ";
	NAICSArray[1618] = "54186|Direct Mail Advertising ";
	NAICSArray[1619] = "541860|Direct Mail Advertising ";
	NAICSArray[1620] = "54187|Advertising Material Distribution Services ";
	NAICSArray[1621] = "541870|Advertising Material Distribution Services ";
	NAICSArray[1622] = "54189|Other Services Related to Advertising ";
	NAICSArray[1623] = "541891|Specialty Advertising Distributors CAN";
	NAICSArray[1624] = "541899|All Other Services Related to Advertising CAN";
	NAICSArray[1625] = "5419|Other Professional, Scientific and Technical Services ";
	NAICSArray[1626] = "54191|Marketing Research and Public Opinion Polling ";
	NAICSArray[1627] = "541910|Marketing Research and Public Opinion Polling ";
	NAICSArray[1628] = "54192|Photographic Services ";
	NAICSArray[1629] = "541920|Photographic Services MEX";
	NAICSArray[1630] = "54193|Translation and Interpretation Services ";
	NAICSArray[1631] = "541930|Translation and Interpretation Services ";
	NAICSArray[1632] = "54194|Veterinary Services ";
	NAICSArray[1633] = "541940|Veterinary Services US";
	NAICSArray[1634] = "54199|All Other Professional, Scientific and Technical Services ";
	NAICSArray[1635] = "541990|All Other Professional, Scientific and Technical Services ";
	NAICSArray[1636] = "55|Management of Companies and Enterprises ";
	NAICSArray[1637] = "551|Management of Companies and Enterprises ";
	NAICSArray[1638] = "5511|Management of Companies and Enterprises ";
	NAICSArray[1639] = "55111|Management of Companies and Enterprises ";
	NAICSArray[1640] = "551113|Holding Companies CAN";
	NAICSArray[1641] = "551114|Head Offices US";
	NAICSArray[1642] = "56|Administrative and Support, Waste Management and Remediation Services ";
	NAICSArray[1643] = "561|Administrative and Support Services ";
	NAICSArray[1644] = "5611|Office Administrative Services ";
	NAICSArray[1645] = "56111|Office Administrative Services ";
	NAICSArray[1646] = "561110|Office Administrative Services ";
	NAICSArray[1647] = "5612|Facilities Support Services ";
	NAICSArray[1648] = "56121|Facilities Support Services ";
	NAICSArray[1649] = "561210|Facilities Support Services ";
	NAICSArray[1650] = "5613|Employment Services ";
	NAICSArray[1651] = "56131|Employment Placement Agencies ";
	NAICSArray[1652] = "561310|Employment Placement Agencies ";
	NAICSArray[1653] = "56132|Temporary Help Services ";
	NAICSArray[1654] = "561320|Temporary Help Services ";
	NAICSArray[1655] = "56133|Professional Employer Organizations ";
	NAICSArray[1656] = "561330|Professional Employer Organizations ";
	NAICSArray[1657] = "5614|Business Support Services ";
	NAICSArray[1658] = "56141|Document Preparation Services ";
	NAICSArray[1659] = "561410|Document Preparation Services ";
	NAICSArray[1660] = "56142|Telephone Call Centres ";
	NAICSArray[1661] = "561420|Telephone Call Centres CAN";
	NAICSArray[1662] = "56143|Business Service Centres ";
	NAICSArray[1663] = "561430|Business Service Centres CAN";
	NAICSArray[1664] = "56144|Collection Agencies ";
	NAICSArray[1665] = "561440|Collection Agencies ";
	NAICSArray[1666] = "56145|Credit Bureaus ";
	NAICSArray[1667] = "561450|Credit Bureaus ";
	NAICSArray[1668] = "56149|Other Business Support Services ";
	NAICSArray[1669] = "561490|Other Business Support Services MEX";
	NAICSArray[1670] = "5615|Travel Arrangement and Reservation Services ";
	NAICSArray[1671] = "56151|Travel Agencies ";
	NAICSArray[1672] = "561510|Travel Agencies ";
	NAICSArray[1673] = "56152|Tour Operators ";
	NAICSArray[1674] = "561520|Tour Operators ";
	NAICSArray[1675] = "56159|Other Travel Arrangement and Reservation Services ";
	NAICSArray[1676] = "561590|Other Travel Arrangement and Reservation Services MEX";
	NAICSArray[1677] = "5616|Investigation and Security Services ";
	NAICSArray[1678] = "56161|Investigation, Guard and Armoured Car Services ";
	NAICSArray[1679] = "561611|Investigation Services US";
	NAICSArray[1680] = "561612|Security Guard and Patrol Services US";
	NAICSArray[1681] = "561613|Armoured Car Services US";
	NAICSArray[1682] = "56162|Security Systems Services ";
	NAICSArray[1683] = "561621|Security Systems Services (except Locksmiths) US";
	NAICSArray[1684] = "561622|Locksmiths US";
	NAICSArray[1685] = "5617|Services to Buildings and Dwellings ";
	NAICSArray[1686] = "56171|Exterminating and Pest Control Services ";
	NAICSArray[1687] = "561710|Exterminating and Pest Control Services ";
	NAICSArray[1688] = "56172|Janitorial Services ";
	NAICSArray[1689] = "561721|Window Cleaning Services CAN";
	NAICSArray[1690] = "561722|Janitorial Services (except Window Cleaning) CAN";
	NAICSArray[1691] = "56173|Landscaping Services ";
	NAICSArray[1692] = "561730|Landscaping Services ";
	NAICSArray[1693] = "56174|Carpet and Upholstery Cleaning Services ";
	NAICSArray[1694] = "561740|Carpet and Upholstery Cleaning Services ";
	NAICSArray[1695] = "56179|Other Services to Buildings and Dwellings ";
	NAICSArray[1696] = "561791|Duct and Chimney Cleaning Services CAN";
	NAICSArray[1697] = "561799|All Other Services to Buildings and Dwellings CAN";
	NAICSArray[1698] = "5619|Other Support Services ";
	NAICSArray[1699] = "56191|Packaging and Labelling Services ";
	NAICSArray[1700] = "561910|Packaging and Labelling Services ";
	NAICSArray[1701] = "56192|Convention and Trade Show Organizers ";
	NAICSArray[1702] = "561920|Convention and Trade Show Organizers ";
	NAICSArray[1703] = "56199|All Other Support Services ";
	NAICSArray[1704] = "561990|All Other Support Services ";
	NAICSArray[1705] = "562|Waste Management and Remediation Services ";
	NAICSArray[1706] = "5621|Waste Collection US";
	NAICSArray[1707] = "56211|Waste Collection US";
	NAICSArray[1708] = "562110|Waste Collection CAN";
	NAICSArray[1709] = "5622|Waste Treatment and Disposal US";
	NAICSArray[1710] = "56221|Waste Treatment and Disposal US";
	NAICSArray[1711] = "562210|Waste Treatment and Disposal CAN";
	NAICSArray[1712] = "5629|Remediation and Other Waste Management Services US";
	NAICSArray[1713] = "56291|Remediation Services US";
	NAICSArray[1714] = "562910|Remediation Services US";
	NAICSArray[1715] = "56292|Material Recovery Facilities US";
	NAICSArray[1716] = "562920|Material Recovery Facilities US";
	NAICSArray[1717] = "56299|All Other Waste Management Services US";
	NAICSArray[1718] = "562990|All Other Waste Management Services CAN";
	NAICSArray[1719] = "61|Educational Services ";
	NAICSArray[1720] = "611|Educational Services ";
	NAICSArray[1721] = "6111|Elementary and Secondary Schools ";
	NAICSArray[1722] = "61111|Elementary and Secondary Schools US";
	NAICSArray[1723] = "611110|Elementary and Secondary Schools US";
	NAICSArray[1724] = "6112|Community Colleges and C.E.G.E.P.s ";
	NAICSArray[1725] = "61121|Community Colleges and C.E.G.E.P.s ";
	NAICSArray[1726] = "611210|Community Colleges and C.E.G.E.P.s US";
	NAICSArray[1727] = "6113|Universities US";
	NAICSArray[1728] = "61131|Universities US";
	NAICSArray[1729] = "611310|Universities US";
	NAICSArray[1730] = "6114|Business Schools and Computer and Management Training ";
	NAICSArray[1731] = "61141|Business and Secretarial Schools ";
	NAICSArray[1732] = "611410|Business and Secretarial Schools US";
	NAICSArray[1733] = "61142|Computer Training ";
	NAICSArray[1734] = "611420|Computer Training US";
	NAICSArray[1735] = "61143|Professional and Management Development Training ";
	NAICSArray[1736] = "611430|Professional and Management Development Training US";
	NAICSArray[1737] = "6115|Technical and Trade Schools ";
	NAICSArray[1738] = "61151|Technical and Trade Schools ";
	NAICSArray[1739] = "611510|Technical and Trade Schools CAN";
	NAICSArray[1740] = "6116|Other Schools and Instruction ";
	NAICSArray[1741] = "61161|Fine Arts Schools ";
	NAICSArray[1742] = "611610|Fine Arts Schools US";
	NAICSArray[1743] = "61162|Athletic Instruction ";
	NAICSArray[1744] = "611620|Athletic Instruction US";
	NAICSArray[1745] = "61163|Language Schools ";
	NAICSArray[1746] = "611630|Language Schools US";
	NAICSArray[1747] = "61169|All Other Schools and Instruction ";
	NAICSArray[1748] = "611690|All Other Schools and Instruction CAN";
	NAICSArray[1749] = "6117|Educational Support Services ";
	NAICSArray[1750] = "61171|Educational Support Services ";
	NAICSArray[1751] = "611710|Educational Support Services ";
	NAICSArray[1752] = "62|Health Care and Social Assistance ";
	NAICSArray[1753] = "621|Ambulatory Health Care Services ";
	NAICSArray[1754] = "6211|Offices of Physicians ";
	NAICSArray[1755] = "62111|Offices of Physicians ";
	NAICSArray[1756] = "621110|Offices of Physicians CAN";
	NAICSArray[1757] = "6212|Offices of Dentists ";
	NAICSArray[1758] = "62121|Offices of Dentists ";
	NAICSArray[1759] = "621210|Offices of Dentists US";
	NAICSArray[1760] = "6213|Offices of Other Health Practitioners ";
	NAICSArray[1761] = "62131|Offices of Chiropractors ";
	NAICSArray[1762] = "621310|Offices of Chiropractors US";
	NAICSArray[1763] = "62132|Offices of Optometrists ";
	NAICSArray[1764] = "621320|Offices of Optometrists ";
	NAICSArray[1765] = "62133|Offices of Mental Health Practitioners (except Physicians) ";
	NAICSArray[1766] = "621330|Offices of Mental Health Practitioners (except Physicians) US";
	NAICSArray[1767] = "62134|Offices of Physical, Occupational, and Speech Therapists and Audiologists ";
	NAICSArray[1768] = "621340|Offices of Physical, Occupational, and Speech Therapists and Audiologists US";
	NAICSArray[1769] = "62139|Offices of All Other Health Practitioners ";
	NAICSArray[1770] = "621390|Offices of All Other Health Practitioners CAN";
	NAICSArray[1771] = "6214|Out-Patient Care Centres ";
	NAICSArray[1772] = "62141|Family Planning Centres ";
	NAICSArray[1773] = "621410|Family Planning Centres US";
	NAICSArray[1774] = "62142|Out-Patient Mental Health and Substance Abuse Centres ";
	NAICSArray[1775] = "621420|Out-Patient Mental Health and Substance Abuse Centres US";
	NAICSArray[1776] = "62149|Other Out-Patient Care Centres ";
	NAICSArray[1777] = "621494|Community Health Centres CAN";
	NAICSArray[1778] = "621499|All Other Out-Patient Care Centres CAN";
	NAICSArray[1779] = "6215|Medical and Diagnostic Laboratories ";
	NAICSArray[1780] = "62151|Medical and Diagnostic Laboratories ";
	NAICSArray[1781] = "621510|Medical and Diagnostic Laboratories CAN";
	NAICSArray[1782] = "6216|Home Health Care Services ";
	NAICSArray[1783] = "62161|Home Health Care Services ";
	NAICSArray[1784] = "621610|Home Health Care Services ";
	NAICSArray[1785] = "6219|Other Ambulatory Health Care Services ";
	NAICSArray[1786] = "62191|Ambulance Services ";
	NAICSArray[1787] = "621911|Ambulance (except Air Ambulance) Services CAN";
	NAICSArray[1788] = "621912|Air Ambulance Services CAN";
	NAICSArray[1789] = "62199|All Other Ambulatory Health Care Services ";
	NAICSArray[1790] = "621990|All Other Ambulatory Health Care Services CAN";
	NAICSArray[1791] = "622|Hospitals ";
	NAICSArray[1792] = "6221|General Medical and Surgical Hospitals ";
	NAICSArray[1793] = "62211|General Medical and Surgical Hospitals ";
	NAICSArray[1794] = "622111|General (except Paediatric) Hospitals CAN";
	NAICSArray[1795] = "622112|Paediatric Hospitals CAN";
	NAICSArray[1796] = "6222|Psychiatric and Substance Abuse Hospitals ";
	NAICSArray[1797] = "62221|Psychiatric and Substance Abuse Hospitals ";
	NAICSArray[1798] = "622210|Psychiatric and Substance Abuse Hospitals US";
	NAICSArray[1799] = "6223|Specialty (except Psychiatric and Substance Abuse) Hospitals ";
	NAICSArray[1800] = "62231|Specialty (except Psychiatric and Substance Abuse) Hospitals ";
	NAICSArray[1801] = "622310|Specialty (except Psychiatric and Substance Abuse) Hospitals US";
	NAICSArray[1802] = "623|Nursing and Residential Care Facilities ";
	NAICSArray[1803] = "6231|Nursing Care Facilities ";
	NAICSArray[1804] = "62311|Nursing Care Facilities ";
	NAICSArray[1805] = "623110|Nursing Care Facilities US";
	NAICSArray[1806] = "6232|Residential Developmental Handicap, Mental Health and Substance Abuse Facilities ";
	NAICSArray[1807] = "62321|Residential Developmental Handicap Facilities ";
	NAICSArray[1808] = "623210|Residential Developmental Handicap Facilities US";
	NAICSArray[1809] = "62322|Residential Mental Health and Substance Abuse Facilities ";
	NAICSArray[1810] = "623221|Residential Substance Abuse Facilities CAN";
	NAICSArray[1811] = "623222|Homes for the Psychiatrically Disabled CAN";
	NAICSArray[1812] = "6233|Community Care Facilities for the Elderly ";
	NAICSArray[1813] = "62331|Community Care Facilities for the Elderly ";
	NAICSArray[1814] = "623310|Community Care Facilities for the Elderly CAN";
	NAICSArray[1815] = "6239|Other Residential Care Facilities ";
	NAICSArray[1816] = "62399|Other Residential Care Facilities ";
	NAICSArray[1817] = "623991|Transition Homes for Women CAN";
	NAICSArray[1818] = "623992|Homes for Emotionally Disturbed Children CAN";
	NAICSArray[1819] = "623993|Homes for the Physically Handicapped or Disabled CAN";
	NAICSArray[1820] = "623999|All Other Residential Care Facilities CAN";
	NAICSArray[1821] = "624|Social Assistance ";
	NAICSArray[1822] = "6241|Individual and Family Services ";
	NAICSArray[1823] = "62411|Child and Youth Services ";
	NAICSArray[1824] = "624110|Child and Youth Services US";
	NAICSArray[1825] = "62412|Services for the Elderly and Persons with Disabilities ";
	NAICSArray[1826] = "624120|Services for the Elderly and Persons with Disabilities US";
	NAICSArray[1827] = "62419|Other Individual and Family Services ";
	NAICSArray[1828] = "624190|Other Individual and Family Services US";
	NAICSArray[1829] = "6242|Community Food and Housing, and Emergency and Other Relief Services ";
	NAICSArray[1830] = "62421|Community Food Services ";
	NAICSArray[1831] = "624210|Community Food Services US";
	NAICSArray[1832] = "62422|Community Housing Services ";
	NAICSArray[1833] = "624220|Community Housing Services CAN";
	NAICSArray[1834] = "62423|Emergency and Other Relief Services ";
	NAICSArray[1835] = "624230|Emergency and Other Relief Services US";
	NAICSArray[1836] = "6243|Vocational Rehabilitation Services ";
	NAICSArray[1837] = "62431|Vocational Rehabilitation Services ";
	NAICSArray[1838] = "624310|Vocational Rehabilitation Services US";
	NAICSArray[1839] = "6244|Child Day-Care Services ";
	NAICSArray[1840] = "62441|Child Day-Care Services ";
	NAICSArray[1841] = "624410|Child Day-Care Services US";
	NAICSArray[1842] = "71|Arts, Entertainment and Recreation ";
	NAICSArray[1843] = "711|Performing Arts, Spectator Sports and Related Industries ";
	NAICSArray[1844] = "7111|Performing Arts Companies ";
	NAICSArray[1845] = "71111|Theatre Companies and Dinner Theatres ";
	NAICSArray[1846] = "711111|Theatre (except Musical) Companies CAN";
	NAICSArray[1847] = "711112|Musical Theatre and Opera Companies CAN";
	NAICSArray[1848] = "71112|Dance Companies ";
	NAICSArray[1849] = "711120|Dance Companies US";
	NAICSArray[1850] = "71113|Musical Groups and Artists ";
	NAICSArray[1851] = "711130|Musical Groups and Artists US";
	NAICSArray[1852] = "71119|Other Performing Arts Companies ";
	NAICSArray[1853] = "711190|Other Performing Arts Companies US";
	NAICSArray[1854] = "7112|Spectator Sports ";
	NAICSArray[1855] = "71121|Spectator Sports ";
	NAICSArray[1856] = "711211|Sports Teams and Clubs US";
	NAICSArray[1857] = "711213|Horse Race Tracks CAN";
	NAICSArray[1858] = "711218|Other Spectator Sports CAN";
	NAICSArray[1859] = "7113|Promoters (Presenters) of Performing Arts, Sports and Similar Events ";
	NAICSArray[1860] = "71131|Promoters (Presenters) of Performing Arts, Sports and Similar Events with Facilities ";
	NAICSArray[1861] = "711311|Live Theatres and Other Performing Arts Presenters with Facilities CAN";
	NAICSArray[1862] = "711319|Sports Stadiums and Other Presenters with Facilities CAN";
	NAICSArray[1863] = "71132|Promoters (Presenters) of Performing Arts, Sports and Similar Events without Facilities ";
	NAICSArray[1864] = "711321|Performing Arts Promoters (Presenters) without Facilities CAN";
	NAICSArray[1865] = "711322|Festivals without Facilities CAN";
	NAICSArray[1866] = "711329|Sports Presenters and Other Presenters without Facilities CAN";
	NAICSArray[1867] = "7114|Agents and Managers for Artists, Athletes, Entertainers and Other Public Figures ";
	NAICSArray[1868] = "71141|Agents and Managers for Artists, Athletes, Entertainers and Other Public Figures ";
	NAICSArray[1869] = "711410|Agents and Managers for Artists, Athletes, Entertainers and Other Public Figures ";
	NAICSArray[1870] = "7115|Independent Artists, Writers and Performers ";
	NAICSArray[1871] = "71151|Independent Artists, Writers and Performers ";
	NAICSArray[1872] = "711510|Independent Artists, Writers and Performers ";
	NAICSArray[1873] = "712|Heritage Institutions ";
	NAICSArray[1874] = "7121|Heritage Institutions ";
	NAICSArray[1875] = "71211|Museums ";
	NAICSArray[1876] = "712111|Non-Commercial Art Museums and Galleries CAN";
	NAICSArray[1877] = "712119|Museums (except Art Museums and Galleries) CAN";
	NAICSArray[1878] = "71212|Historic and Heritage Sites ";
	NAICSArray[1879] = "712120|Historic and Heritage Sites ";
	NAICSArray[1880] = "71213|Zoos and Botanical Gardens ";
	NAICSArray[1881] = "712130|Zoos and Botanical Gardens US";
	NAICSArray[1882] = "71219|Other Heritage Institutions ";
	NAICSArray[1883] = "712190|Other Heritage Institutions ";
	NAICSArray[1884] = "713|Amusement, Gambling and Recreation Industries ";
	NAICSArray[1885] = "7131|Amusement Parks and Arcades ";
	NAICSArray[1886] = "71311|Amusement and Theme Parks ";
	NAICSArray[1887] = "713110|Amusement and Theme Parks US";
	NAICSArray[1888] = "71312|Amusement Arcades ";
	NAICSArray[1889] = "713120|Amusement Arcades ";
	NAICSArray[1890] = "7132|Gambling Industries ";
	NAICSArray[1891] = "71321|Casinos (except Casino Hotels) ";
	NAICSArray[1892] = "713210|Casinos (except Casino Hotels) ";
	NAICSArray[1893] = "71329|Other Gambling Industries ";
	NAICSArray[1894] = "713291|Lotteries MEX";
	NAICSArray[1895] = "713299|All Other Gambling Industries MEX";
	NAICSArray[1896] = "7139|Other Amusement and Recreation Industries ";
	NAICSArray[1897] = "71391|Golf Courses and Country Clubs ";
	NAICSArray[1898] = "713910|Golf Courses and Country Clubs ";
	NAICSArray[1899] = "71392|Skiing Facilities ";
	NAICSArray[1900] = "713920|Skiing Facilities ";
	NAICSArray[1901] = "71393|Marinas ";
	NAICSArray[1902] = "713930|Marinas ";
	NAICSArray[1903] = "71394|Fitness and Recreational Sports Centres ";
	NAICSArray[1904] = "713940|Fitness and Recreational Sports Centres US";
	NAICSArray[1905] = "71395|Bowling Centres ";
	NAICSArray[1906] = "713950|Bowling Centres ";
	NAICSArray[1907] = "71399|All Other Amusement and Recreation Industries ";
	NAICSArray[1908] = "713990|All Other Amusement and Recreation Industries US";
	NAICSArray[1909] = "72|Accommodation and Food Services ";
	NAICSArray[1910] = "721|Accommodation Services ";
	NAICSArray[1911] = "7211|Traveler Accommodation ";
	NAICSArray[1912] = "72111|Hotels (except Casino Hotels) and Motels ";
	NAICSArray[1913] = "721111|Hotels CAN";
	NAICSArray[1914] = "721112|Motor Hotels CAN";
	NAICSArray[1915] = "721113|Resorts CAN";
	NAICSArray[1916] = "721114|Motels CAN";
	NAICSArray[1917] = "72112|Casino Hotels ";
	NAICSArray[1918] = "721120|Casino Hotels ";
	NAICSArray[1919] = "72119|Other Traveller Accommodation ";
	NAICSArray[1920] = "721191|Bed and Breakfast US";
	NAICSArray[1921] = "721192|Housekeeping Cottages and Cabins CAN";
	NAICSArray[1922] = "721198|All Other Traveller Accommodation CAN";
	NAICSArray[1923] = "7212|RV (Recreational Vehicle) Parks and Recreational Camps ";
	NAICSArray[1924] = "72121|RV (Recreational Vehicle) Parks and Recreational Camps ";
	NAICSArray[1925] = "721211|RV (Recreational Vehicle) Parks and Campgrounds US";
	NAICSArray[1926] = "721212|Hunting and Fishing Camps CAN";
	NAICSArray[1927] = "721213|Recreational (except Hunting and Fishing) and Vacation Camps CAN";
	NAICSArray[1928] = "7213|Rooming and Boarding Houses ";
	NAICSArray[1929] = "72131|Rooming and Boarding Houses ";
	NAICSArray[1930] = "721310|Rooming and Boarding Houses US";
	NAICSArray[1931] = "722|Food Services and Drinking Places ";
	NAICSArray[1932] = "7221|Full-Service Restaurants ";
	NAICSArray[1933] = "72211|Full-Service Restaurants ";
	NAICSArray[1934] = "722110|Full-Service Restaurants US";
	NAICSArray[1935] = "7222|Limited-Service Eating Places ";
	NAICSArray[1936] = "72221|Limited-Service Eating Places ";
	NAICSArray[1937] = "722210|Limited-Service Eating Places CAN";
	NAICSArray[1938] = "7223|Special Food Services ";
	NAICSArray[1939] = "72231|Food Service Contractors ";
	NAICSArray[1940] = "722310|Food Service Contractors ";
	NAICSArray[1941] = "72232|Caterers ";
	NAICSArray[1942] = "722320|Caterers ";
	NAICSArray[1943] = "72233|Mobile Food Services ";
	NAICSArray[1944] = "722330|Mobile Food Services ";
	NAICSArray[1945] = "7224|Drinking Places (Alcoholic Beverages) ";
	NAICSArray[1946] = "72241|Drinking Places (Alcoholic Beverages) ";
	NAICSArray[1947] = "722410|Drinking Places (Alcoholic Beverages) US";
	NAICSArray[1948] = "81|Other Services (except Public Administration) ";
	NAICSArray[1949] = "811|Repair and Maintenance ";
	NAICSArray[1950] = "8111|Automotive Repair and Maintenance ";
	NAICSArray[1951] = "81111|Automotive Mechanical and Electrical Repair and Maintenance ";
	NAICSArray[1952] = "811111|General Automotive Repair US";
	NAICSArray[1953] = "811112|Automotive Exhaust System Repair US";
	NAICSArray[1954] = "811119|Other Automotive Mechanical and Electrical Repair and Maintenance CAN";
	NAICSArray[1955] = "81112|Automotive Body, Paint, Interior and Glass Repair ";
	NAICSArray[1956] = "811121|Automotive Body, Paint and Interior Repair and Maintenance US";
	NAICSArray[1957] = "811122|Automotive Glass Replacement Shops US";
	NAICSArray[1958] = "81119|Other Automotive Repair and Maintenance ";
	NAICSArray[1959] = "811192|Car Washes US";
	NAICSArray[1960] = "811199|All Other Automotive Repair and Maintenance CAN";
	NAICSArray[1961] = "8112|Electronic and Precision Equipment Repair and Maintenance ";
	NAICSArray[1962] = "81121|Electronic and Precision Equipment Repair and Maintenance ";
	NAICSArray[1963] = "811210|Electronic and Precision Equipment Repair and Maintenance CAN";
	NAICSArray[1964] = "8113|Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance ";
	NAICSArray[1965] = "81131|Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance ";
	NAICSArray[1966] = "811310|Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance US";
	NAICSArray[1967] = "8114|Personal and Household Goods Repair and Maintenance ";
	NAICSArray[1968] = "81141|Home and Garden Equipment and Appliance Repair and Maintenance ";
	NAICSArray[1969] = "811411|Home and Garden Equipment Repair and Maintenance US";
	NAICSArray[1970] = "811412|Appliance Repair and Maintenance US";
	NAICSArray[1971] = "81142|Reupholstery and Furniture Repair ";
	NAICSArray[1972] = "811420|Reupholstery and Furniture Repair ";
	NAICSArray[1973] = "81143|Footwear and Leather Goods Repair ";
	NAICSArray[1974] = "811430|Footwear and Leather Goods Repair ";
	NAICSArray[1975] = "81149|Other Personal and Household Goods Repair and Maintenance ";
	NAICSArray[1976] = "811490|Other Personal and Household Goods Repair and Maintenance US";
	NAICSArray[1977] = "812|Personal and Laundry Services ";
	NAICSArray[1978] = "8121|Personal Care Services US";
	NAICSArray[1979] = "81211|Hair Care and Esthetic Services US";
	NAICSArray[1980] = "812114|Barber Shops CAN";
	NAICSArray[1981] = "812115|Beauty Salons CAN";
	NAICSArray[1982] = "812116|Unisex Hair Salons CAN";
	NAICSArray[1983] = "81219|Other Personal Care Services US";
	NAICSArray[1984] = "812190|Other Personal Care Services CAN";
	NAICSArray[1985] = "8122|Funeral Services US";
	NAICSArray[1986] = "81221|Funeral Homes US";
	NAICSArray[1987] = "812210|Funeral Homes US";
	NAICSArray[1988] = "81222|Cemeteries and Crematoria US";
	NAICSArray[1989] = "812220|Cemeteries and Crematoria US";
	NAICSArray[1990] = "8123|Dry Cleaning and Laundry Services US";
	NAICSArray[1991] = "81231|Coin-Operated Laundries and Dry Cleaners US";
	NAICSArray[1992] = "812310|Coin-Operated Laundries and Dry Cleaners US";
	NAICSArray[1993] = "81232|Dry Cleaning and Laundry Services (except Coin-Operated) US";
	NAICSArray[1994] = "812320|Dry Cleaning and Laundry Services (except Coin-Operated) US";
	NAICSArray[1995] = "81233|Linen and Uniform Supply US";
	NAICSArray[1996] = "812330|Linen and Uniform Supply CAN";
	NAICSArray[1997] = "8129|Other Personal Services US";
	NAICSArray[1998] = "81291|Pet Care (except Veterinary) Services US";
	NAICSArray[1999] = "812910|Pet Care (except Veterinary) Services US";
	NAICSArray[2000] = "81292|Photo Finishing Services US";
	NAICSArray[2001] = "812921|Photo Finishing Laboratories (except One-Hour) US";
	NAICSArray[2002] = "812922|One-Hour Photo Finishing US";
	NAICSArray[2003] = "81293|Parking Lots and Garages US";
	NAICSArray[2004] = "812930|Parking Lots and Garages US";
	NAICSArray[2005] = "81299|All Other Personal Services US";
	NAICSArray[2006] = "812990|All Other Personal Services US";
	NAICSArray[2007] = "813|Religious, Grant-Making, Civic, and Professional and Similar Organizations ";
	NAICSArray[2008] = "8131|Religious Organizations US";
	NAICSArray[2009] = "81311|Religious Organizations US";
	NAICSArray[2010] = "813110|Religious Organizations US";
	NAICSArray[2011] = "8132|Grant-Making and Giving Services US";
	NAICSArray[2012] = "81321|Grant-Making and Giving Services US";
	NAICSArray[2013] = "813210|Grant-Making and Giving Services CAN";
	NAICSArray[2014] = "8133|Social Advocacy Organizations US";
	NAICSArray[2015] = "81331|Social Advocacy Organizations US";
	NAICSArray[2016] = "813310|Social Advocacy Organizations CAN";
	NAICSArray[2017] = "8134|Civic and Social Organizations US";
	NAICSArray[2018] = "81341|Civic and Social Organizations US";
	NAICSArray[2019] = "813410|Civic and Social Organizations US";
	NAICSArray[2020] = "8139|Business, Professional, Labour and Other Membership Organizations US";
	NAICSArray[2021] = "81391|Business Associations US";
	NAICSArray[2022] = "813910|Business Associations US";
	NAICSArray[2023] = "81392|Professional Organizations US";
	NAICSArray[2024] = "813920|Professional Organizations US";
	NAICSArray[2025] = "81393|Labour Organizations US";
	NAICSArray[2026] = "813930|Labour Organizations US";
	NAICSArray[2027] = "81394|Political Organizations US";
	NAICSArray[2028] = "813940|Political Organizations US";
	NAICSArray[2029] = "81399|Other Membership Organizations US";
	NAICSArray[2030] = "813990|Other Membership Organizations US";
	NAICSArray[2031] = "814|Private Households ";
	NAICSArray[2032] = "8141|Private Households ";
	NAICSArray[2033] = "81411|Private Households ";
	NAICSArray[2034] = "814110|Private Households ";
	NAICSArray[2035] = "91|Public Administration ";
	NAICSArray[2036] = "911|Federal Government Public Administration CAN";
	NAICSArray[2037] = "9111|Defence Services CAN";
	NAICSArray[2038] = "91111|Defence Services CAN";
	NAICSArray[2039] = "911110|Defence Services CAN";
	NAICSArray[2040] = "9112|Federal Protective Services CAN";
	NAICSArray[2041] = "91121|Federal Courts of Law CAN";
	NAICSArray[2042] = "911210|Federal Courts of Law CAN";
	NAICSArray[2043] = "91122|Federal Correctional Services CAN";
	NAICSArray[2044] = "911220|Federal Correctional Services CAN";
	NAICSArray[2045] = "91123|Federal Police Services CAN";
	NAICSArray[2046] = "911230|Federal Police Services CAN";
	NAICSArray[2047] = "91124|Federal Regulatory Services CAN";
	NAICSArray[2048] = "911240|Federal Regulatory Services CAN";
	NAICSArray[2049] = "91129|Other Federal Protective Services CAN";
	NAICSArray[2050] = "911290|Other Federal Protective Services CAN";
	NAICSArray[2051] = "9113|Federal Labour, Employment and Immigration Services CAN";
	NAICSArray[2052] = "91131|Federal Labour and Employment Services CAN";
	NAICSArray[2053] = "911310|Federal Labour and Employment Services CAN";
	NAICSArray[2054] = "91132|Immigration Services CAN";
	NAICSArray[2055] = "911320|Immigration Services CAN";
	NAICSArray[2056] = "91139|Other Federal Labour, Employment and Immigration Services CAN";
	NAICSArray[2057] = "911390|Other Federal Labour, Employment and Immigration Services CAN";
	NAICSArray[2058] = "9114|Foreign Affairs and International Assistance CAN";
	NAICSArray[2059] = "91141|Foreign Affairs CAN";
	NAICSArray[2060] = "911410|Foreign Affairs CAN";
	NAICSArray[2061] = "91142|International Assistance CAN";
	NAICSArray[2062] = "911420|International Assistance CAN";
	NAICSArray[2063] = "9119|Other Federal Government Public Administration CAN";
	NAICSArray[2064] = "91191|Other Federal Government Public Administration CAN";
	NAICSArray[2065] = "911910|Other Federal Government Public Administration CAN";
	NAICSArray[2066] = "912|Provincial and Territorial Public Administration CAN";
	NAICSArray[2067] = "9121|Provincial Protective Services CAN";
	NAICSArray[2068] = "91211|Provincial Courts of Law CAN";
	NAICSArray[2069] = "912110|Provincial Courts of Law CAN";
	NAICSArray[2070] = "91212|Provincial Correctional Services CAN";
	NAICSArray[2071] = "912120|Provincial Correctional Services CAN";
	NAICSArray[2072] = "91213|Provincial Police Services CAN";
	NAICSArray[2073] = "912130|Provincial Police Services CAN";
	NAICSArray[2074] = "91214|Provincial Fire-Fighting Services CAN";
	NAICSArray[2075] = "912140|Provincial Fire-Fighting Services CAN";
	NAICSArray[2076] = "91215|Provincial Regulatory Services CAN";
	NAICSArray[2077] = "912150|Provincial Regulatory Services CAN";
	NAICSArray[2078] = "91219|Other Provincial Protective Services CAN";
	NAICSArray[2079] = "912190|Other Provincial Protective Services CAN";
	NAICSArray[2080] = "9122|Provincial Labour and Employment Services CAN";
	NAICSArray[2081] = "91221|Provincial Labour and Employment Services CAN";
	NAICSArray[2082] = "912210|Provincial Labour and Employment Services CAN";
	NAICSArray[2083] = "9129|Other Provincial and Territorial Public Administration CAN";
	NAICSArray[2084] = "91291|Other Provincial and Territorial Public Administration CAN";
	NAICSArray[2085] = "912910|Other Provincial and Territorial Public Administration CAN";
	NAICSArray[2086] = "913|Local, Municipal and Regional Public Administration CAN";
	NAICSArray[2087] = "9131|Municipal Protective Services CAN";
	NAICSArray[2088] = "91311|Municipal Courts of Law CAN";
	NAICSArray[2089] = "913110|Municipal Courts of Law CAN";
	NAICSArray[2090] = "91312|Municipal Correctional Services CAN";
	NAICSArray[2091] = "913120|Municipal Correctional Services CAN";
	NAICSArray[2092] = "91313|Municipal Police Services CAN";
	NAICSArray[2093] = "913130|Municipal Police Services CAN";
	NAICSArray[2094] = "91314|Municipal Fire-Fighting Services CAN";
	NAICSArray[2095] = "913140|Municipal Fire-Fighting Services CAN";
	NAICSArray[2096] = "91315|Municipal Regulatory Services CAN";
	NAICSArray[2097] = "913150|Municipal Regulatory Services CAN";
	NAICSArray[2098] = "91319|Other Municipal Protective Services CAN";
	NAICSArray[2099] = "913190|Other Municipal Protective Services CAN";
	NAICSArray[2100] = "9139|Other Local, Municipal and Regional Public Administration CAN";
	NAICSArray[2101] = "91391|Other Local, Municipal and Regional Public Administration CAN";
	NAICSArray[2102] = "913910|Other Local, Municipal and Regional Public Administration CAN";
	NAICSArray[2103] = "914|Aboriginal Public Administration CAN";
	NAICSArray[2104] = "9141|Aboriginal Public Administration CAN";
	NAICSArray[2105] = "91411|Aboriginal Public Administration CAN";
	NAICSArray[2106] = "914110|Aboriginal Public Administration CAN";
	NAICSArray[2107] = "919|International and Other Extra-Territorial Public Administration CAN";
	NAICSArray[2108] = "9191|International and Other Extra-Territorial Public Administration CAN";
	NAICSArray[2109] = "91911|International and Other Extra-Territorial Public Administration CAN";
	NAICSArray[2110] = "919110|International and Other Extra-Territorial Public Administration CAN";
