Lean  $LEAN_TAG$
AssetClassificationHelper.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
17 {
18  /// <summary>
19  /// Helper class for the AssetClassification's StockType field <see cref="AssetClassification.StockType"/>
20  /// </summary>
21  public static class StockType
22  {
23  /// <summary>
24  /// Companies whose revenues and earnings have both been growing significantly faster than
25  /// the general economy.
26  /// </summary>
27  public readonly static int AggressiveGrowth = 1;
28 
29  /// <summary>
30  /// Companies that are growing respectably faster than the general economy, and often pay a
31  /// steady dividend. They tend to be mature and solidly profitable businesses.
32  /// </summary>
33  public readonly static int ClassicGrowth = 2;
34 
35  /// <summary>
36  /// Companies in the cyclicals and durables sectors, except those in the three types below.
37  /// The profits of cyclicals tend to rise and fall with the general economy.
38  /// </summary>
39  public readonly static int Cyclicals = 3;
40 
41  /// <summary>
42  /// Companies that have had consistently declining cash flows and earnings over the past
43  /// three years, and/or very high debt.
44  /// </summary>
45  public readonly static int Distressed = 4;
46 
47  /// <summary>
48  /// Companies that deal in assets such as oil, metals, and real estate, which tend to do
49  /// well in inflationary environments.
50  /// </summary>
51  public readonly static int HardAsset = 5;
52 
53  /// <summary>
54  /// Companies that have dividend yields at least twice the average for large-cap stocks.
55  /// They tend to be mature, slow-growing companies.
56  /// </summary>
57  public readonly static int HighYield = 6;
58 
59  /// <summary>
60  /// Companies that have shown slow revenue and earnings growth (typically less than the rate
61  /// of GDP growth) over at least three years.
62  /// </summary>
63  public readonly static int SlowGrowth = 7;
64 
65  /// <summary>
66  /// Companies that have shown strong revenue growth but slower or spotty earnings growth.
67  /// Very small or young companies also tend to fall into this class.
68  /// </summary>
69  public readonly static int SpeculativeGrowth = 8;
70  }
71 
72  /// <summary>
73  /// Helper class for the AssetClassification's StyleBox field <see cref="AssetClassification.StyleBox"/>.
74  /// For stocks and stock funds, it classifies securities according to market capitalization and growth and value factor
75  /// </summary>
76  /// <remarks>Please refer to https://www.morningstar.com/InvGlossary/morningstar_style_box.aspx </remarks>
77  public static class StyleBox
78  {
79 #pragma warning disable 1591
80  public readonly static int LargeValue = 1;
81  public readonly static int LargeCore = 2;
82  public readonly static int LargeGrowth = 3;
83  public readonly static int MidValue = 4;
84  public readonly static int MidCore = 5;
85  public readonly static int MidGrowth = 6;
86  public readonly static int SmallValue = 7;
87  public readonly static int SmallCore = 8;
88  public readonly static int SmallGrowth = 9;
89 #pragma warning restore 1591
90  }
91 
92  /// <summary>
93  /// Helper class for the AssetClassification's MorningstarEconomySphereCode field <see cref="AssetClassification.MorningstarEconomySphereCode"/>.
94  /// </summary>
95  public static class MorningstarEconomySphereCode
96  {
97  /// <summary>
98  /// The cyclical Super Sector includes industries significantly affected by economic shifts.
99  /// When the economy is prosperous, these industries tend to expand, and when the economy is
100  /// in a downturn they tend to shrink. In general, the stocks in these industries have betas
101  /// of greater than 1.
102  /// </summary>
103  public readonly static int Cyclical = 1;
104 
105  /// <summary>
106  /// The defensive Super Sector includes industries that are relatively immune to economic
107  /// cycles. These industries provide services that consumers require in both good and bad
108  /// times, such as healthcare and utilities. In general, the stocks in these industries have
109  /// betas of less than 1.
110  /// </summary>
111  public readonly static int Defensive = 2;
112 
113  /// <summary>
114  /// The sensitive Super Sector includes industries that ebb and flow with the overall
115  /// economy, but not severely. Sensitive industries fall between defensive and cyclical, as
116  /// they are not immune to a poor economy, but they also may not be as severely affected as
117  /// industries in the cyclical Super Sector. In general, the stocks in these industries have
118  /// betas that are close to 1.
119  /// </summary>
120  public readonly static int Sensitive = 3;
121  }
122 
123  /// <summary>
124  /// Helper class for the AssetClassification's MorningstarSectorCode field <see cref="AssetClassification.MorningstarSectorCode"/>.
125  /// </summary>
126  public static class MorningstarSectorCode
127  {
128  /// <summary>
129  /// Companies that manufacture chemicals, building materials, and paper products. This
130  /// sector also includes companies engaged in commodities exploration and processing.
131  /// </summary>
132  public readonly static int BasicMaterials = 101;
133 
134  /// <summary>
135  /// This sector includes retail stores, auto and auto-parts manufacturers, restaurants,
136  /// lodging facilities, specialty retail and travel companies.
137  /// </summary>
138  public readonly static int ConsumerCyclical = 102;
139 
140  /// <summary>
141  /// Companies that provide financial services include banks, savings and loans, asset
142  /// management companies, credit services, investment brokerage firms, and insurance companies.
143  /// </summary>
144  public readonly static int FinancialServices = 103;
145 
146  /// <summary>
147  /// This sector includes companies that develop, acquire, manage, and operate real estate properties.
148  /// </summary>
149  public readonly static int RealEstate = 104;
150 
151  /// <summary>
152  /// Companies that manufacture food, beverages, household and personal products, packaging,
153  /// or tobacco. Also includes companies that provide services such as education and training services.
154  /// </summary>
155  public readonly static int ConsumerDefensive = 205;
156 
157  /// <summary>
158  /// This sector includes biotechnology, pharmaceuticals, research services, home healthcare,
159  /// hospitals, long-term-care facilities, and medical equipment and supplies. Also include
160  /// pharmaceutical retailers and companies which provide health information services.
161  /// </summary>
162  public readonly static int Healthcare = 206;
163 
164  /// <summary>
165  /// Electric, gas, and water utilities.
166  /// </summary>
167  public readonly static int Utilities = 207;
168 
169  /// <summary> Companies that provide communication services using fixed-line networks or
170  /// those that provide wireless access and services. Also includes companies that provide
171  /// advertising &amp; marketing services, entertainment content and services, as well as
172  /// interactive media and content provider over internet or through software. </summary>
173  public readonly static int CommunicationServices = 308;
174 
175  /// <summary>
176  /// Companies that produce or refine oil and gas, oilfield-services and equipment companies,
177  /// and pipeline operators. This sector also includes companies that mine thermal coal and uranium.
178  /// </summary>
179  public readonly static int Energy = 309;
180 
181  /// <summary>
182  /// Companies that manufacture machinery, hand-held tools, and industrial products. This
183  /// sector also includes aerospace and defense firms as well as companies engaged in
184  /// transportation services.
185  /// </summary>
186  public readonly static int Industrials = 310;
187 
188  /// <summary>
189  /// Companies engaged in the design, development, and support of computer operating systems
190  /// and applications. This sector also includes companies that make computer equipment, data
191  /// storage products, networking products, semiconductors, and components.
192  /// </summary>
193  public readonly static int Technology = 311;
194  }
195 
196  /// <summary>
197  /// Helper class for the AssetClassification's MorningstarIndustryGroupCode field <see cref="AssetClassification.MorningstarIndustryGroupCode"/>.
198  /// </summary>
199  public static class MorningstarIndustryGroupCode
200  {
201 #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
202  public readonly static int Agriculture = 10110;
203  public readonly static int BuildingMaterials = 10120;
204  public readonly static int Chemicals = 10130;
205  public readonly static int ForestProducts = 10140;
206  public readonly static int MetalsAndMining = 10150;
207  public readonly static int Steel = 10160;
208  public readonly static int VehiclesAndParts = 10200;
209  public readonly static int Furnishings = 10220;
210  public readonly static int FixturesAndAppliances = 10220;
211  public readonly static int HomebuildingAndConstruction = 10230;
212  public readonly static int ManufacturingApparelAndAccessories = 10240;
213  public readonly static int PackagingAndContainers = 10250;
214  public readonly static int PersonalServices = 10260;
215  public readonly static int Restaurants = 10270;
216  public readonly static int RetailCyclical = 10280;
217  public readonly static int TravelAndLeisure = 10290;
218  public readonly static int AssetManagement = 10310;
219  public readonly static int Banks = 10320;
220  public readonly static int CapitalMarkets = 10330;
221  public readonly static int Insurance = 10340;
222  public readonly static int DiversifiedFinancialServices = 10350;
223  public readonly static int CreditServices = 10360;
224  public readonly static int RealEstate = 10410;
225  public readonly static int REITs = 10420;
226  public readonly static int BeveragesAlcoholic = 20510;
227  public readonly static int BeveragesNonAlcoholic = 20520;
228  public readonly static int ConsumerPackagedGoods = 20525;
229  public readonly static int Education = 20540;
230  public readonly static int RetailDefensive = 20550;
231  public readonly static int TobaccoProducts = 20560;
232  public readonly static int Biotechnology = 20610;
233  public readonly static int DrugManufacturers = 20620;
234  public readonly static int HealthcarePlans = 20630;
235  public readonly static int HealthcareProvidersAndServices = 20645;
236  public readonly static int MedicalDevicesAndInstruments = 20650;
237  public readonly static int MedicalDiagnosticsAndResearch = 20660;
238  public readonly static int MedicalDistribution = 20670;
239  public readonly static int UtilitiesIndependentPowerProducers = 20710;
240  public readonly static int UtilitiesRegulated = 20720;
241  public readonly static int TelecommunicationServices = 30810;
242  public readonly static int MediaDiversified = 30820;
243  public readonly static int InteractiveMedia = 30830;
244  public readonly static int OilAndGas = 30910;
245  public readonly static int OtherEnergySources = 30920;
246  public readonly static int AerospaceAndDefense = 31010;
247  public readonly static int BusinessServices = 31020;
248  public readonly static int Conglomerates = 31030;
249  public readonly static int Construction = 31040;
250  public readonly static int FarmAndHeavyConstructionMachinery = 31050;
251  public readonly static int IndustrialDistribution = 31060;
252  public readonly static int IndustrialProducts = 31070;
253  public readonly static int Transportation = 31080;
254  public readonly static int WasteManagement = 31090;
255  public readonly static int Software = 31110;
256  public readonly static int Hardware = 31120;
257  public readonly static int Semiconductors = 31130;
258 #pragma warning restore CS1591
259  }
260 
261  /// <summary>
262  /// Helper class for the AssetClassification's MorningstarIndustryCode field <see cref="AssetClassification.MorningstarIndustryCode"/>.
263  /// </summary>
264  public static class MorningstarIndustryCode
265  {
266  /// <summary>
267  /// Companies that manufacture nitrogenous and phosphatic fertilizers, pesticides, seed, and
268  /// other agricultural chemical products.
269  /// </summary>
270  public readonly static int AgriculturalInputs = 10110010;
271 
272  /// <summary>
273  /// Companies that manufacture construction materials, including stone, clay, and brick
274  /// products, cement, lime, gypsum, and concrete and other construction products. Excludes
275  /// companies that manufacture finished and semi finished building products.
276  /// </summary>
277  public readonly static int BuildingMaterials = 10120010;
278 
279  /// <summary>
280  /// Chemical manufacturing companies engaged in diverse chemical and chemical-related
281  /// operations, and basic chemicals manufacturing.
282  /// </summary>
283  public readonly static int Chemicals = 10130010;
284 
285  /// <summary>
286  /// Companies that use base chemicals to produce value-added chemicals that are used in a
287  /// variety of products. Includes companies that produce polishes, adhesives and sealants,
288  /// explosives, printing ink, paint, carbon black, acids, repellants, and cleaning solutions.
289  /// </summary>
290  public readonly static int SpecialtyChemicals = 10130020;
291 
292  /// <summary>
293  /// Companies that grow timber, mill lumber, and manufacture wood and wood products for construction.
294  /// </summary>
295  public readonly static int LumberAndWoodProduction = 10140010;
296 
297  /// <summary>
298  /// Companies that manufacture and market paper and paper-related products from wood pulp
299  /// and other fibers. Excludes companies that produce paper packaging products and are
300  /// classified in the packaging and containers industry.
301  /// </summary>
302  public readonly static int PaperAndPaperProducts = 10140020;
303 
304  /// <summary>
305  /// Companies that produce, refine, market, and distribute aluminum and related
306  /// aluminum-based products.
307  /// </summary>
308  public readonly static int Aluminum = 10150010;
309 
310  /// <summary>
311  /// Companies engaged in the exploration, mining, smelting, and refining of copper ores and
312  /// related copper products.
313  /// </summary>
314  public readonly static int Copper = 10150020;
315 
316  /// <summary>
317  /// Companies that mine, refine, produce, smelt, and mill industrial ores, including copper,
318  /// lead, zinc, radium, vanadium, nickel, tin, titanium, and other related materials.
319  /// </summary>
320  public readonly static int OtherIndustrialMetalsAndMining = 10150030;
321 
322  /// <summary>
323  /// Companies principally engaged in gold exploration, mining, processing, extraction, and smelting.
324  /// </summary>
325  public readonly static int Gold = 10150040;
326 
327  /// <summary>
328  /// Companies principally engaged in silver exploration, mining, processing, extraction, and smelting.
329  /// </summary>
330  public readonly static int Silver = 10150050;
331 
332  /// <summary>
333  /// Companies that mine, refine, produce, smelt, and mill precious metals, including silver,
334  /// platinum, palladium, diamond, and other related minerals.
335  /// </summary>
336  public readonly static int OtherPreciousMetalsAndMining = 10150060;
337 
338  /// <summary>
339  /// Companies that produce coking coal.
340  /// </summary>
341  public readonly static int CokingCoal = 10160010;
342 
343  /// <summary>
344  /// Companies that produce steel plates, steel sheets, bar and rod materials, structural
345  /// steel, steel pipes and tubes, and stainless steel.
346  /// </summary>
347  public readonly static int Steel = 10160020;
348 
349  /// <summary>
350  /// Companies engaged in the specialty retail of new and used automobiles, trucks, and other
351  /// vehicles through the operation and/or franchising of dealerships.
352  /// </summary>
353  public readonly static int AutoAndTruckDealerships = 10200010;
354 
355  /// <summary>
356  /// Leading worldwide designers and manufacturers of passenger cars and trucks.
357  /// </summary>
358  public readonly static int AutoManufacturers = 10200020;
359 
360  /// <summary>
361  /// Companies that manufacture motor vehicle parts and accessories, including rubber and
362  /// plastic products, such as tires and inner tubes, but do not manufacture complete car bodies.
363  /// </summary>
364  public readonly static int AutoParts = 10200030;
365 
366  /// <summary>
367  /// Companies that manufacture recreational vehicles, including self-contained motor homes,
368  /// campers, all-terrain vehicles, travel/camper trailers, and snowmobiles.
369  /// </summary>
370  public readonly static int RecreationalVehicles = 10200040;
371 
372  /// <summary>
373  /// Companies that manufacture and market wooden, metal, and upholstered furniture,
374  /// mattresses, bedsprings, lighting fixtures, wooden flooring, wallpaper, and household
375  /// products, such as utensils, cutlery, tableware, and appliances.
376  /// </summary>
377  public readonly static int Furnishings = 10220010;
378 
379  /// <summary>
380  /// Companies that manufacture and market wooden, metal, and upholstered furniture,
381  /// mattresses, bedsprings, lighting fixtures, wooden flooring, wallpaper, and household
382  /// products, such as utensils, cutlery, tableware, and appliances.
383  /// </summary>
384  public readonly static int FixturesAndAppliances = 10220010;
385 
386  /// <summary>
387  /// Companies that build and renovate residential buildings, such as single-family houses,
388  /// apartments, and hotels.
389  /// </summary>
390  public readonly static int ResidentialConstruction = 10230010;
391 
392  /// <summary>
393  /// Companies that manufacture and mill textile products, including apparel fabrics, bedding
394  /// and accessories, home furnishing fabrics, carpets and rugs, curtains and drapes, and
395  /// other milled textile products.
396  /// </summary>
397  public readonly static int TextileManufacturing = 10240010;
398 
399  /// <summary>
400  /// Companies that manufacture, design, market, source, and sell all lines of clothing for
401  /// men, women, and children. Also includes companies that manufacture or distribute
402  /// buttons, buckles, and other apparel parts.
403  /// </summary>
404  public readonly static int ApparelManufacturing = 10240020;
405 
406  /// <summary>
407  /// Companies that manufacture, design, market, and sell lines of footwear and luggage,
408  /// handbags and purses, belts, and other leather goods.
409  /// </summary>
410  public readonly static int FootwearAndAccessories = 10240030;
411 
412  /// <summary>
413  /// Companies that manufacture and market paper, plastic, metal, and glass packaging
414  /// products, including corrugated boxes, cardboard containers, bottles, cans, and plastic
415  /// foam and containers.
416  /// </summary>
417  public readonly static int PackagingAndContainers = 10250010;
418 
419  /// <summary>
420  /// Companies that provide services of a personal nature or that are particularly structured
421  /// for the individual or group being served, including veterinary services, funeral and
422  /// cemetery services, child care services, portrait and photo services, tax preparation and
423  /// legal services, and other miscellaneous personal services.
424  /// </summary>
425  public readonly static int PersonalServices = 10260010;
426 
427  /// <summary>
428  /// Companies that own, operate, and franchise full-service restaurants that engage in the
429  /// retail sale of prepared food and drink.
430  /// </summary>
431  public readonly static int Restaurants = 10270010;
432 
433  /// <summary>
434  /// Companies engaged in the retail sale of clothing, shoes, and accessories.
435  /// </summary>
436  public readonly static int ApparelRetail = 10280010;
437 
438  /// <summary>
439  /// Companies engaged in the retail sale of a diverse mix of merchandise, emphasizing
440  /// fashion apparel and accessories, home furnishings, electronics, and cosmetics.
441  /// </summary>
442  public readonly static int DepartmentStores = 10280020;
443 
444  /// <summary>
445  /// Companies engaged in the retail sale of home improvement items, such as lumber, carpets,
446  /// hardware and other building materials, plants and other garden supplies, and various
447  /// other items for the home.
448  /// </summary>
449  public readonly static int HomeImprovementRetail = 10280030;
450 
451  /// <summary>
452  /// Companies engaged in the specialty retail of luxury items, including jewelry, watches,
453  /// crystal, clothing, handbags, and accessories.
454  /// </summary>
455  public readonly static int LuxuryGoods = 10280040;
456 
457  /// <summary>
458  /// Companies engaged in the online retail sale of a diverse mix of merchandise. Excludes
459  /// companies that target the travel industry and are classified in travel services.
460  /// </summary>
461  public readonly static int InternetRetail = 10280050;
462 
463  /// <summary>
464  /// Companies engaged in the specialty retail of various goods and products not covered in a
465  /// specific industry group. This group includes retailers such as bookstores, office-supply
466  /// stores, gas stations, pawn shops, novelty shops, auto-parts stores, electronics stores,
467  /// home furnishing stores, sporting goods stores, toy and hobby stores, music and video
468  /// stores, and many other miscellaneous retailers.
469  /// </summary>
470  public readonly static int SpecialtyRetail = 10280060;
471 
472  /// <summary>
473  /// Companies that own, operate, or manage lawful gaming activities and events, such as
474  /// horse and dog racing, online gaming, bingo, and video lottery, as well as companies that
475  /// supply products or services to gaming operators. It excludes companies operating casinos.
476  /// </summary>
477  public readonly static int Gambling = 10290010;
478 
479  /// <summary>
480  /// Companies that manufacture, design, market, and sell bicycles, sporting goods,
481  /// photographic equipment, recreational equipment, toys, and other leisure products or services.
482  /// </summary>
483  public readonly static int Leisure = 10290020;
484 
485  /// <summary>
486  /// Companies that develop, manage, own, and operate lodging facilities, including motels,
487  /// extended-stay and full-service hotels, and economy hotels and inns.
488  /// </summary>
489  public readonly static int Lodging = 10290030;
490 
491  /// <summary>
492  /// Companies that own, operate, and manage resort properties, including beach clubs,
493  /// time-share properties, and luxury resort hotels and that conduct casino gaming operations.
494  /// </summary>
495  public readonly static int ResortsAndCasinos = 10290040;
496 
497  /// <summary>
498  /// Companies that offer travel-related products or services, including online travel services.
499  /// </summary>
500  public readonly static int TravelServices = 10290050;
501 
502  /// <summary>
503  /// Investment management firms offering diversified services such as asset administration,
504  /// investment advice, portfolio or mutual fund management, money management, and venture capital.
505  /// </summary>
506  public readonly static int AssetManagement = 10310010;
507 
508  /// <summary>
509  /// Global, diverse financial institutions serving the corporate and consumer needs of
510  /// retail banking, investment banking, trust management, credit cards and mortgage banking.
511  /// </summary>
512  public readonly static int BanksDiversified = 10320010;
513 
514  /// <summary>
515  /// Regional, diverse financial institutions serving the corporate, government, and consumer
516  /// needs of retail banking, investment banking, trust management, credit cards, mortgage
517  /// banking, savings and loan associations, building societies, cooperative banks, and homestead.
518  /// </summary>
519  public readonly static int BanksRegional = 10320020;
520 
521  /// <summary>
522  /// Companies that originate, purchase, sell, and service home mortgage and equity loans.
523  /// </summary>
524  public readonly static int MortgageFinance = 10320030;
525 
526  /// <summary>
527  /// Large, major investment houses offering investment banking, merchant banking,
528  /// underwriting, brokerage, research, advisory, and trading services to broad-based
529  /// national and international markets.
530  /// </summary>
531  public readonly static int CapitalMarkets = 10330010;
532 
533  /// <summary>
534  /// Companies that operate security exchanges, including companies that offer financial data
535  /// such as ratings, investment research, and other research solutions.
536  /// </summary>
537  public readonly static int FinancialDataAndStockExchanges = 10330020;
538 
539  /// <summary>
540  /// Companies that underwrite, market, and distribute life insurance and related products to
541  /// individuals and families.
542  /// </summary>
543  public readonly static int InsuranceLife = 10340010;
544 
545  /// <summary>
546  /// Companies that underwrite, market, and distribute fire, marine, and casualty insurance
547  /// for property and other tangible assets.
548  /// </summary>
549  public readonly static int InsurancePropertyAndCasualty = 10340020;
550 
551  /// <summary>
552  /// Companies that underwrite and sell reinsurance.
553  /// </summary>
554  public readonly static int InsuranceReinsurance = 10340030;
555 
556  /// <summary>
557  /// Companies that underwrite, market, and distribute accident and health, sickness,
558  /// mortgage, and other specialty or supplemental insurance to individuals and families.
559  /// </summary>
560  public readonly static int InsuranceSpecialty = 10340040;
561 
562  /// <summary>
563  /// Companies acting primarily as agents or intermediaries in creating insurance contracts
564  /// between clients and insurance companies.
565  /// </summary>
566  public readonly static int InsuranceBrokers = 10340050;
567 
568  /// <summary>
569  /// Insurance companies with diversified interests in life, health, and property and
570  /// casualty insurance.
571  /// </summary>
572  public readonly static int InsuranceDiversified = 10340060;
573 
574  /// <summary>
575  /// A development-stage company with no or minimal revenue. Includes capital pool, blank
576  /// check, shell, and holding companies.
577  /// </summary>
578  public readonly static int ShellCompanies = 10350010;
579 
580  /// <summary>
581  /// Companies that provide financial services, including banking, insurance, and capital
582  /// markets, but with no dominant business line or source of revenue.
583  /// </summary>
584  public readonly static int FinancialConglomerates = 10350020;
585 
586  /// <summary>
587  /// Companies that extend credit and make loans to individuals and businesses through credit
588  /// cards, installment loans, student loans, and business loans that are associated with
589  /// other consumer and business credit instruments.
590  /// </summary>
591  public readonly static int CreditServices = 10360010;
592 
593  /// <summary>
594  /// Companies that develop real estate and same properties held as inventory, or sold to
595  /// others after development, with no specific portfolio composition.
596  /// </summary>
597  public readonly static int RealEstateDevelopment = 10410010;
598 
599  /// <summary>
600  /// Companies that operate, manage, and lease real property with no specific portfolio
601  /// composition. Includes real estate services like brokers and agents but excludes
602  /// companies classified in the real estate – development industry.
603  /// </summary>
604  public readonly static int RealEstateServices = 10410020;
605 
606  /// <summary>
607  /// Companies engaged in multiple real estate activities, including development, sales,
608  /// management, and related services. Excludes companies classified in real estate
609  /// development and real estate services.
610  /// </summary>
611  public readonly static int RealEstateDiversified = 10410030;
612 
613  /// <summary>
614  /// Self-administered real estate investment trusts engaged in the development, acquisition,
615  /// management, and disposition of healthcare properties, including long-term-care
616  /// facilities, acute-care and rehab hospitals, psychiatric facilities, and substance-abuse centers.
617  /// </summary>
618  public readonly static int REITHealthcareFacilities = 10420010;
619 
620  /// <summary>
621  /// Self-administered real estate investment trusts engaged in the development, acquisition,
622  /// management, and disposition of lodging properties, including full- and limited-service
623  /// hotels and motels.
624  /// </summary>
625  public readonly static int REITHotelAndMotel = 10420020;
626 
627  /// <summary>
628  /// Self-administered real estate investment trusts engaged in the development, acquisition,
629  /// management, and disposition of industrial properties, including bulk warehouses,
630  /// self-storage facilities, distribution facilities, and other light industrial facilities.
631  /// </summary>
632  public readonly static int REITIndustrial = 10420030;
633 
634  /// <summary>
635  /// Self-administered real estate investment trusts engaged in the development, acquisition,
636  /// management, and disposition of office properties, including office buildings, complexes,
637  /// and centers.
638  /// </summary>
639  public readonly static int REITOffice = 10420040;
640 
641  /// <summary>
642  /// Self-administered real estate investment trusts engaged in the development, acquisition,
643  /// management, and disposition of residential properties, including apartments, multifamily
644  /// and single-family mortgage loans, manufactured housing, mobile-home parks, and other
645  /// residential properties.
646  /// </summary>
647  public readonly static int REITResidential = 10420050;
648 
649  /// <summary>
650  /// Self-administered real estate investment trusts engaged in the development, acquisition,
651  /// management, and disposition of retail properties, including community shopping centers,
652  /// factory outlet shopping centers, enclosed shopping malls, strip centers, restaurants,
653  /// and other retail properties.
654  /// </summary>
655  public readonly static int REITRetail = 10420060;
656 
657  /// <summary>
658  /// Self-administered real estate investment trusts engaged in the acquisition, management,
659  /// and disposition of mortgage-backed securities. Also includes companies that provide
660  /// financing for income-producing real estate by purchasing or originating mortgages and
661  /// mortgage-backed securities; and earns income from the interest on these investments.
662  /// </summary>
663  public readonly static int REITMortgage = 10420070;
664 
665  /// <summary>
666  /// Self-administered real estate investment trusts engaged in the acquisition, management,
667  /// and disposition of properties not classified elsewhere. Includes trusts that operate,
668  /// lease, and invest in telecom towers, advertising spaces, timberland properties, and
669  /// other properties not classified elsewhere.
670  /// </summary>
671  public readonly static int REITSpecialty = 10420080;
672 
673  /// <summary>
674  /// Self-administered real estate investment trusts engaged in the acquisition, management,
675  /// and disposition of diversified property holdings, with no specific portfolio composition.
676  /// </summary>
677  public readonly static int REITDiversified = 10420090;
678 
679  /// <summary>
680  /// Companies that manufacture, sell, and distribute malt-based beverages, beers, and ales.
681  /// </summary>
682  public readonly static int BeveragesBrewers = 20510010;
683 
684  /// <summary>
685  /// Companies that manufacture, sell, and distribute distilled liquors and wine.
686  /// </summary>
687  public readonly static int BeveragesWineriesAndDistilleries = 20510020;
688 
689  /// <summary>
690  /// Companies that manufacture, sell, and distribute soft drinks, carbonated and spring
691  /// water, fruit juices, and other nonalcoholic beverages.
692  /// </summary>
693  public readonly static int BeveragesNonAlcoholic = 20520010;
694 
695  /// <summary>
696  /// Companies that manufacture and refine raw sugar, syrup or finished cane and beet sugar,
697  /// candy and chewing gum, chocolate, and cocoa products.
698  /// </summary>
699  public readonly static int Confectioners = 20525010;
700 
701  /// <summary>
702  /// Companies that produce, raise, and grow agricultural and farm-based food products,
703  /// including fruits, vegetables, other crop products, cattle, and eggs. Also includes
704  /// seafood products.
705  /// </summary>
706  public readonly static int FarmProducts = 20525020;
707 
708  /// <summary>
709  /// Companies that manufacture and market soaps and other detergents, polishing and
710  /// sanitation goods and produce glycerin from vegetable and animal fats and oils. Also
711  /// includes companies that manufacture and market personal-care products, including
712  /// perfume, cosmetics, and other toilet preparations, infant and adult sanitary paper
713  /// products, shaving razors and blades.
714  /// </summary>
715  public readonly static int HouseholdAndPersonalProducts = 20525030;
716 
717  /// <summary>
718  /// Companies that process and package food products, including frozen foods, grain
719  /// products, canned foods, snack foods, health supplements, vitamins, and pet products.
720  /// </summary>
721  public readonly static int PackagedFoods = 20525040;
722 
723  /// <summary>
724  /// Companies that provide educational and training services, including college and
725  /// junior-college courses, higher-education programs, technical and vocational training,
726  /// and other education services.
727  /// </summary>
728  public readonly static int EducationAndTrainingServices = 20540010;
729 
730  /// <summary>
731  /// Companies engaged in the retail sale of a variety of merchandise at low and discounted prices.
732  /// </summary>
733  public readonly static int DiscountStores = 20550010;
734 
735  /// <summary>
736  /// Companies primarily engaged in the distribution and supply of food products, including
737  /// packaged goods, meat, dairy products, frozen foods, and related groceries to grocery
738  /// stores, restaurants, and other food-service centers.
739  /// </summary>
740  public readonly static int FoodDistribution = 20550020;
741 
742  /// <summary>
743  /// Companies engaged in the retail sale of groceries, including dry goods, meat, produce,
744  /// frozen foods, dairy products, seafood, deli/bakery, and nonfood items.
745  /// </summary>
746  public readonly static int GroceryStores = 20550030;
747 
748  /// <summary>
749  /// Companies that manufacture and market cigarettes, e-cigarettes, snuff, cigars, chewing
750  /// tobacco, and all other tobacco products.
751  /// </summary>
752  public readonly static int Tobacco = 20560010;
753 
754  /// <summary>
755  /// Biotech and biopharmaceutical companies engaged in research, discovery, development, and
756  /// production of innovative drug and drug-related technologies.
757  /// </summary>
758  public readonly static int Biotechnology = 20610010;
759 
760  /// <summary>
761  /// Major, global pharmaceutical manufacturers offering a broad and diverse line of drug and
762  /// healthcare products; industry leaders that have made a significant commitment to the
763  /// research and development of a long pipeline of drugs.
764  /// </summary>
765  public readonly static int DrugManufacturersGeneral = 20620010;
766 
767  /// <summary>
768  /// Companies engaged in development and discovery of branded forms of drug, drug-related
769  /// products, generic drug products, and animal-related drugs. Also includes companies that
770  /// cultivate, process, and farm cannabis or marijuana.
771  /// </summary>
772  public readonly static int DrugManufacturersSpecialtyAndGeneric = 20620020;
773 
774  /// <summary>
775  /// Companies that offer a wide variety of managed health products and services, including
776  /// HMOs, PPOs, and other health insurance plans, and are largely U.S.-domiciled.
777  /// </summary>
778  public readonly static int HealthcarePlans = 20630010;
779 
780  /// <summary>
781  /// Companies that provide medical services through the ownership and operation of
782  /// hospitals, and other auxiliary healthcare-related services, including healthcare
783  /// staffing and ambulatory services. Also, companies that operate long-term-care
784  /// facilities, such as assisted-living centers, nursing and retirement homes,
785  /// substance-abuse centers, and centers for rehabilitation services.
786  /// </summary>
787  public readonly static int MedicalCareFacilities = 20645010;
788 
789  /// <summary>
790  /// Companies engaged in the retail sale of prescription drugs and patent medicines as well
791  /// as a number of related lines, such as cosmetics, toiletries, and novelty merchandise.
792  /// </summary>
793  public readonly static int PharmaceuticalRetailers = 20645020;
794 
795  /// <summary>
796  /// Companies that develop and provide comprehensive physician practice management systems
797  /// and software for hospitals, medical practices, and managed-care organizations.
798  /// </summary>
799  public readonly static int HealthInformationServices = 20645030;
800 
801  /// <summary>
802  /// Companies that develop, manufacture, and market medical and surgical equipment and
803  /// machinery, including orthopedic products, respiratory care equipment, x-ray equipment,
804  /// laser systems, implants, pacemakers, and other major medical machines and apparatus.
805  /// </summary>
806  public readonly static int MedicalDevices = 20650010;
807 
808  /// <summary>
809  /// Companies that develop, design, manufacture, and market medical and dental instruments
810  /// and supplies, including wheelchairs, catheters, needles, syringes, eyewear and eyecare
811  /// products, and other health-related supplies.
812  /// </summary>
813  public readonly static int MedicalInstrumentsAndSupplies = 20650020;
814 
815  /// <summary>
816  /// Companies that provide laboratory testing services through imaging and other diagnostic
817  /// services to the medical industry.
818  /// </summary>
819  public readonly static int DiagnosticsAndResearch = 20660010;
820 
821  /// <summary>
822  /// Companies primarily engaged in the distribution and supply of medical instruments and
823  /// supplies, ophthalmic goods, and other health-related items to the medical and healthcare industry.
824  /// </summary>
825  public readonly static int MedicalDistribution = 20670010;
826 
827  /// <summary>
828  /// Companies that own and operate merchant power generation facilities and sell electricity
829  /// into retail and wholesale markets.
830  /// </summary>
831  public readonly static int UtilitiesIndependentPowerProducers = 20710010;
832 
833  /// <summary>
834  /// Companies that generate, produce, or transmit electric energy from renewable sources,
835  /// including hydropower, wind, geothermal, biomass, solar, tidal, and wave.
836  /// </summary>
837  public readonly static int UtilitiesRenewable = 20710020;
838 
839  /// <summary>
840  /// Companies that distribute water for sale, including water-treatment companies.
841  /// </summary>
842  public readonly static int UtilitiesRegulatedWater = 20720010;
843 
844  /// <summary>
845  /// Companies that generate, transmit, or distribute electric energy for sale.
846  /// </summary>
847  public readonly static int UtilitiesRegulatedElectric = 20720020;
848 
849  /// <summary>
850  /// Companies that transmit, store, or distribute natural gas.
851  /// </summary>
852  public readonly static int UtilitiesRegulatedGas = 20720030;
853 
854  /// <summary>
855  /// Companies engaged in the regulated generation, transmission, or distribution of
856  /// electricity and natural gas, merchant power generation facilities, and energy marketing operations.
857  /// </summary>
858  public readonly static int UtilitiesDiversified = 20720040;
859 
860  /// <summary>
861  /// Companies that provide local, national, international, and long-distance phone services,
862  /// as well as companies offering wireless services. Also includes companies that provide
863  /// services for faxing, prepaid phone cards, pay phones, and directory assistance, or that
864  /// provide Internet access services.
865  /// </summary>
866  public readonly static int TelecomServices = 30810010;
867 
868  /// <summary>
869  /// Companies engaged in full-service advertising operations, including the planning,
870  /// creating, producing, and placing of advertising in media such as TV, radio, and print.
871  /// Also includes companies providing marketing services, including outdoor advertising,
872  /// promotional materials, direct-mail services, digital marketing, event management
873  /// services, and marketing research services.
874  /// </summary>
875  public readonly static int AdvertisingAgencies = 30820010;
876 
877  /// <summary>
878  /// Companies that publish periodicals, such as magazines, comic books, trade journals,
879  /// books, pamphlets, e-publications, and newspapers.
880  /// </summary>
881  public readonly static int Publishing = 30820020;
882 
883  /// <summary>
884  /// Companies that own or operate radio broadcast stations and provide and produce radio
885  /// programming services, television programming services, and television broadcast
886  /// stations. Also includes companies providing Internet-based video on demand and
887  /// pay-per-view programming services.
888  /// </summary>
889  public readonly static int Broadcasting = 30820030;
890 
891  /// <summary>
892  /// Companies primarily operating with diversified holdings in movies, television, and other
893  /// media-based entertainment. Also includes companies that produce and distribute motion
894  /// pictures, television programmers, video, and the operation of movie theaters; and
895  /// provide cable television services.
896  /// </summary>
897  public readonly static int Entertainment = 30820040;
898 
899  /// <summary>
900  /// Companies that provide content, Internet navigation services, and reference guide
901  /// information for the World Wide Web through its platforms, including social media, search
902  /// engines, and networking platform companies.
903  /// </summary>
904  public readonly static int InternetContentAndInformation = 30830010;
905 
906  /// <summary>
907  /// Companies that primarily develop or publish video games and other multimedia software
908  /// applications for devices that include personal computers, video game systems,
909  /// cellphones, tablets, and other portable media players.
910  /// </summary>
911  public readonly static int ElectronicGamingAndMultimedia = 30830020;
912 
913  /// <summary>
914  /// Companies primarily engaged in the drilling for petroleum and natural gas.
915  /// </summary>
916  public readonly static int OilAndGasDrilling = 30910010;
917 
918  /// <summary>
919  /// Energy companies which are primarily engaged in oil and gas exploration and production.
920  /// </summary>
921  public readonly static int OilAndGasEAndP = 30910020;
922 
923  /// <summary>
924  /// Major energy companies engaged in the diverse aspects of oil and gas operations,
925  /// including crude oil and gas exploration, production, manufacturing, refining, marketing,
926  /// and transportation.
927  /// </summary>
928  public readonly static int OilAndGasIntegrated = 30910030;
929 
930  /// <summary>
931  /// Companies that own and operate oilfield pipelines and are involved in the gathering,
932  /// processing, and transportation of natural crude petroleum.
933  /// </summary>
934  public readonly static int OilAndGasMidstream = 30910040;
935 
936  /// <summary>
937  /// Companies that refine, gather, market, and sell petroleum and petroleum products.
938  /// </summary>
939  public readonly static int OilAndGasRefiningAndMarketing = 30910050;
940 
941  /// <summary>
942  /// Companies that provide oilfield services and equipment for activities such as contract
943  /// drilling and seismic surveys. Also includes equipment and tool rental, pumping and
944  /// processing services, and inspection and contracting services.
945  /// </summary>
946  public readonly static int OilAndGasEquipmentAndServices = 30910060;
947 
948  /// <summary>
949  /// Companies that mine thermal coal, which is used for generating energy. Excludes
950  /// companies that mine coking coal to make steel.
951  /// </summary>
952  public readonly static int ThermalCoal = 30920010;
953 
954  /// <summary>
955  /// Companies that mine, refine, produce, and mill uranium and uranium-related materials.
956  /// </summary>
957  public readonly static int Uranium = 30920020;
958 
959  /// <summary>
960  /// Companies that manufacture aerospace and defense products, including aircraft and
961  /// aircraft parts, tanks, guided missiles, space vehicles, ships and marine equipment, and
962  /// other aerospace and defense components and systems, as well as companies supporting
963  /// these products through repair and maintenance services.
964  /// </summary>
965  public readonly static int AerospaceAndDefense = 31010010;
966 
967  /// <summary>
968  /// Companies that provide services to the commercial or business market, including
969  /// information distribution, warehousing, graphic design, accounting, printing, and
970  /// miscellaneous services.
971  /// </summary>
972  public readonly static int SpecialtyBusinessServices = 31020010;
973 
974  /// <summary>
975  /// Companies that provide management, research, and consulting services to businesses and
976  /// other agencies. Includes companies engaged in strategic and management consulting
977  /// services, interior design, and information and analytics.
978  /// </summary>
979  public readonly static int ConsultingServices = 31020020;
980 
981  /// <summary>
982  /// Companies that rent or lease durable goods to the commercial and consumer market,
983  /// including cars and trucks, medical and industrial equipment, appliances and tools, and
984  /// miscellaneous goods.
985  /// </summary>
986  public readonly static int RentalAndLeasingServices = 31020030;
987 
988  /// <summary>
989  /// Companies that provide security and protective services, including protective or
990  /// preventive devices, security guards and inspection services, security alarm and
991  /// monitoring systems, detention and correction facilities, and other security-based services.
992  /// </summary>
993  public readonly static int SecurityAndProtectionServices = 31020040;
994 
995  /// <summary>
996  /// Companies that provide staffing and employment services, including temporary staffing
997  /// and permanent placement, outsources workforce and other employment-related services to
998  /// businesses and government. Also includes companies providing online staffing services.
999  /// </summary>
1000  public readonly static int StaffingAndEmploymentServices = 31020050;
1001 
1002  /// <summary>
1003  /// Companies that are in several separate lines of business with no single line providing
1004  /// the dominant source of revenue or income.
1005  /// </summary>
1006  public readonly static int Conglomerates = 31030010;
1007 
1008  /// <summary>
1009  /// Companies engaged in the design, construction, or contracting of industrial and
1010  /// nonresidential structures, streets and highways, bridges and tunnels, docks and piers,
1011  /// dams and water projects, utility lines, and other large building projects. Also includes
1012  /// companies that provide engineering consulting and architectural services to consumer and
1013  /// commercial clients.
1014  /// </summary>
1015  public readonly static int EngineeringAndConstruction = 31040010;
1016 
1017  /// <summary>
1018  /// Companies that develop, finance, maintain, or manage infrastructure operations such as
1019  /// ports, airports, and roadways.
1020  /// </summary>
1021  public readonly static int InfrastructureOperations = 31040020;
1022 
1023  /// <summary>
1024  /// Companies that manufacture building and construction products and materials, including
1025  /// ceramic floor and wall tiles, plumbing, HVAC, framing structures, and doors. Excludes
1026  /// companies that are classified in the building materials industry.
1027  /// </summary>
1028  public readonly static int BuildingProductsAndEquipment = 31040030;
1029 
1030  /// <summary>
1031  /// Companies that manufacture agricultural and construction machinery, including tractors,
1032  /// planting and harvesting machines, cranes, earthmovers, excavators, and related equipment
1033  /// and machinery. Includes truck manufacturers that provide local and long-haul trucking
1034  /// and transfer services for freight and cargo.
1035  /// </summary>
1036  public readonly static int FarmAndHeavyConstructionMachinery = 31050010;
1037 
1038  /// <summary>
1039  /// Companies primarily engaged in the distribution and supply of industrial equipment,
1040  /// including construction and farming machinery, garden equipment and supplies, and other
1041  /// industrial items to a diversified market of redistributors and end users.
1042  /// </summary>
1043  public readonly static int IndustrialDistribution = 31060010;
1044 
1045  /// <summary>
1046  /// Companies that manufacture and market office and business machines, such as copiers, fax
1047  /// machines, postage meters, point-of-sale terminals, and ATMs.
1048  /// </summary>
1049  public readonly static int BusinessEquipmentAndSupplies = 31070010;
1050 
1051  /// <summary>
1052  /// Companies engaged in diversified machinery manufacturing operations, including paper and
1053  /// food production machines, printing machinery, engines and turbines, air and gas
1054  /// processors, blowers and fans, furnaces and ovens, and other general and special industry machines.
1055  /// </summary>
1056  public readonly static int SpecialtyIndustrialMachinery = 31070020;
1057 
1058  /// <summary>
1059  /// Companies that fabricate, stamp, or form iron, steel, or other metals into products such
1060  /// as structured components by cutting, bending, and assembling processes of basic metals
1061  /// to create a final product.
1062  /// </summary>
1063  public readonly static int MetalFabrication = 31070030;
1064 
1065  /// <summary>
1066  /// Companies that manufacture equipment designed to control pollution, including control
1067  /// systems, hazardous waste disposal systems, recovery systems, treatment processes,
1068  /// filtration systems, cleaning and separation applications, and recycling machinery.
1069  /// </summary>
1070  public readonly static int PollutionAndTreatmentControls = 31070040;
1071 
1072  /// <summary>
1073  /// Companies that manufacture small, hand-held tools, including power-driven drills,
1074  /// welding apparatus, lawn and garden equipment, and other power or manually operated tools
1075  /// and accessories, such as hardware, nuts, bolts, rivets, and other fasteners.
1076  /// </summary>
1077  public readonly static int ToolsAndAccessories = 31070050;
1078 
1079  /// <summary>
1080  /// Companies that manufacture electrical equipment (such as smart-grid electrical
1081  /// equipment, utility metering, high- and low-voltage electrical equipment, transmission
1082  /// control devices, switches, and lighting distribution boxes), batteries, electrical wires
1083  /// and cables, and automation control.
1084  /// </summary>
1085  public readonly static int ElectricalEquipmentAndParts = 31070060;
1086 
1087  /// <summary>
1088  /// Air transportation companies that provide related air services, including helicopter
1089  /// transportation, air-charter services, in-flight catering services, and air emergency and
1090  /// business-related services.
1091  /// </summary>
1092  public readonly static int AirportsAndAirServices = 31080010;
1093 
1094  /// <summary>
1095  /// Major international passenger airline companies that fly a wide range of domestic and
1096  /// international routes.
1097  /// </summary>
1098  public readonly static int Airlines = 31080020;
1099 
1100  /// <summary>
1101  /// Companies that provide transportation of freight by line-haul railroad as well as
1102  /// related railroad equipment and repair services. Includes companies offering passenger
1103  /// services via railway and roadways.
1104  /// </summary>
1105  public readonly static int Railroads = 31080030;
1106 
1107  /// <summary>
1108  /// Companies that transport freight and cargo via water and operate marine ports. Includes
1109  /// companies that provide passenger services via water.
1110  /// </summary>
1111  public readonly static int MarineShipping = 31080040;
1112 
1113  /// <summary>
1114  /// Companies that provide local and long-haul trucking and transfer services for freight
1115  /// and cargo.
1116  /// </summary>
1117  public readonly static int Trucking = 31080050;
1118 
1119  /// <summary>
1120  /// Companies that transport freight and cargo via diversified methods such as railroads,
1121  /// airlines, and waterways.
1122  /// </summary>
1123  public readonly static int IntegratedFreightAndLogistics = 31080060;
1124 
1125  /// <summary>
1126  /// Companies that collect, treat, store, transfer, recycle, and dispose of waste materials,
1127  /// as well as companies that provide supporting environmental, engineering, and consulting services.
1128  /// </summary>
1129  public readonly static int WasteManagement = 31090010;
1130 
1131  /// <summary>
1132  /// Companies that provide computer-system design, network and systems operations, repair
1133  /// services, technical support, computer technology consulting, development, and
1134  /// implementation services.
1135  /// </summary>
1136  public readonly static int InformationTechnologyServices = 31110010;
1137 
1138  /// <summary>
1139  /// Companies that primarily design, develop, market, and support application software
1140  /// programs, including those that are cloud-based, for specific consumer and business functions.
1141  /// </summary>
1142  public readonly static int SoftwareApplication = 31110020;
1143 
1144  /// <summary>
1145  /// Companies that develop, design, support, and provide system software and services,
1146  /// including operating systems, networking software and devices, web portal services, cloud
1147  /// storage, and related services.
1148  /// </summary>
1149  public readonly static int SoftwareInfrastructure = 31110030;
1150 
1151  /// <summary>
1152  /// Companies that design, develop, manufacture, and market equipment for the communication
1153  /// industry, including fiber-optic cable; telecom peripherals; voice and data transmission
1154  /// and processing equipment; satellite products and equipment; video-conferencing systems
1155  /// and equipment; and interactive communication systems. Also includes companies that offer
1156  /// networking products that provide connectivity solutions for multi-use computing environments.
1157  /// </summary>
1158  public readonly static int CommunicationEquipment = 31120010;
1159 
1160  /// <summary>
1161  /// Companies that design, manufacture, and market computer systems, high mainframe servers,
1162  /// supercomputer, and 3D printers and scanners. Also includes companies that manufacture
1163  /// and market data storage products and other storage and backup devices for computers.
1164  /// </summary>
1165  public readonly static int ComputerHardware = 31120020;
1166 
1167  /// <summary>
1168  /// Companies that manufacture and market mobile communication products and household audio
1169  /// and video equipment, including radios, stereos, televisions, DVD player and personal use
1170  /// Drones. Excludes electric household appliances.
1171  /// </summary>
1172  public readonly static int ConsumerElectronics = 31120030;
1173 
1174  /// <summary>
1175  /// Companies that design, develop, manufacture, and market electronic devices, including
1176  /// electron tubes; electronic capacitors; electronic resistors; electronic coil and
1177  /// transformers; sensors; LED, TFT, and LCD displays; electronic connectors; printed
1178  /// circuit boards; circuit assemblies; and other general-purpose electronics components and products.
1179  /// </summary>
1180  public readonly static int ElectronicComponents = 31120040;
1181 
1182  /// <summary>
1183  /// Companies primarily engaged in the distribution, supply, and support of computers and
1184  /// computer systems, peripheral equipment, and software and other technological goods,
1185  /// including electronic equipment and appliances, electrical cable, wires, and other
1186  /// components to various consumer, commercial, and manufacturing customers.
1187  /// </summary>
1188  public readonly static int ElectronicsAndComputerDistribution = 31120050;
1189 
1190  /// <summary>
1191  /// Companies that design, develop, manufacture, and market sophisticated electronics of a
1192  /// technical nature, including lab apparatus, process and flow control devices, precise
1193  /// measurement and signal processing tools, search and navigation equipment, and other
1194  /// scientific or technical analytical or measuring devices.
1195  /// </summary>
1196  public readonly static int ScientificAndTechnicalInstruments = 31120060;
1197 
1198  /// <summary>
1199  /// Companies that design, develop, manufacture, and market equipment, spare parts, tools,
1200  /// cleaning devices, and related materials for the semiconductor industry.
1201  /// </summary>
1202  public readonly static int SemiconductorEquipmentAndMaterials = 31130010;
1203 
1204  /// <summary>
1205  /// Semiconductor companies that design, manufacture, and market integrated circuits,
1206  /// microprocessors, logic devices, chipsets, and memory chips for a wide variety of users.
1207  /// Includes companies that design, manufacture, and market general-application integrated
1208  /// circuits and memory and memory-intensive products.
1209  /// </summary>
1210  public readonly static int Semiconductors = 31130020;
1211 
1212  /// <summary>
1213  /// Companies that design, manufacture, market, or install solar power systems and components.
1214  /// </summary>
1215  public readonly static int Solar = 31130030;
1216  }
1217 }