diff --git a/ask_chat_gpt.py b/ask_chat_gpt.py
index 9f3a59e..5d1a31f 100644
--- a/ask_chat_gpt.py
+++ b/ask_chat_gpt.py
@@ -2,6 +2,7 @@
import openai
from dotenv import load_dotenv
+
def ask_chat_gpt(question):
try:
# Ensure the OPENAI_API_KEY environment variable is set
@@ -36,10 +37,13 @@ def ask_chat_gpt(question):
except Exception as e:
return f"An error occurred: {e}"
+
def main():
question = input("Ask a question: ")
- answer = ask_chat_gpt("List me all the states in the USA separated by a comma.")
+ # answer = ask_chat_gpt("List me all the states in the USA separated by a comma.")
+ answer = ask_chat_gpt(question)
print(answer)
+
if __name__ == "__main__":
main()
diff --git a/html/app.py b/html/app.py
new file mode 100644
index 0000000..90a4cb6
--- /dev/null
+++ b/html/app.py
@@ -0,0 +1,32 @@
+import json
+
+from flask import Flask, render_template, request
+import os
+
+app = Flask(__name__, template_folder=os.path.abspath('templates'))
+
+
+@app.route('/', methods=['GET', 'POST'])
+def index():
+ if request.method == 'POST':
+ print(request.form)
+ industry = request.form.get('industry', '')
+ location = request.form.get('location', '')
+ revenue = request.form.get('revenue', '')
+ employees = request.form.get('employees', '')
+
+ input = {}
+ input['industry'] = industry
+ input['location'] = location
+ input['revenue'] = revenue
+ input['employees'] = employees
+
+ with open('input.json', 'w') as f:
+ json.dump(input, f, indent=4)
+
+ return f'Industry: {industry}, Location: {location}'
+ return render_template('index.html')
+
+
+if __name__ == '__main__':
+ app.run(debug=True)
\ No newline at end of file
diff --git a/html/fonts/OFL.txt b/html/fonts/OFL.txt
new file mode 100644
index 0000000..d3a046c
--- /dev/null
+++ b/html/fonts/OFL.txt
@@ -0,0 +1,93 @@
+Copyright 2019 The Work Sans Project Authors (https://github.com/weiweihuanghuang/Work-Sans)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/html/fonts/README.txt b/html/fonts/README.txt
new file mode 100644
index 0000000..456e401
--- /dev/null
+++ b/html/fonts/README.txt
@@ -0,0 +1,81 @@
+Work Sans Variable Font
+=======================
+
+This download contains Work Sans as both variable fonts and static fonts.
+
+Work Sans is a variable font with this axis:
+ wght
+
+This means all the styles are contained in these files:
+ WorkSans-VariableFont_wght.ttf
+ WorkSans-Italic-VariableFont_wght.ttf
+
+If your app fully supports variable fonts, you can now pick intermediate styles
+that aren’t available as static fonts. Not all apps support variable fonts, and
+in those cases you can use the static font files for Work Sans:
+ static/WorkSans-Thin.ttf
+ static/WorkSans-ExtraLight.ttf
+ static/WorkSans-Light.ttf
+ static/WorkSans-Regular.ttf
+ static/WorkSans-Medium.ttf
+ static/WorkSans-SemiBold.ttf
+ static/WorkSans-Bold.ttf
+ static/WorkSans-ExtraBold.ttf
+ static/WorkSans-Black.ttf
+ static/WorkSans-ThinItalic.ttf
+ static/WorkSans-ExtraLightItalic.ttf
+ static/WorkSans-LightItalic.ttf
+ static/WorkSans-Italic.ttf
+ static/WorkSans-MediumItalic.ttf
+ static/WorkSans-SemiBoldItalic.ttf
+ static/WorkSans-BoldItalic.ttf
+ static/WorkSans-ExtraBoldItalic.ttf
+ static/WorkSans-BlackItalic.ttf
+
+Get started
+-----------
+
+1. Install the font files you want to use
+
+2. Use your app's font picker to view the font family and all the
+available styles
+
+Learn more about variable fonts
+-------------------------------
+
+ https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
+ https://variablefonts.typenetwork.com
+ https://medium.com/variable-fonts
+
+In desktop apps
+
+ https://theblog.adobe.com/can-variable-fonts-illustrator-cc
+ https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
+
+Online
+
+ https://developers.google.com/fonts/docs/getting_started
+ https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
+ https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
+
+Installing fonts
+
+ MacOS: https://support.apple.com/en-us/HT201749
+ Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
+ Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
+
+Android Apps
+
+ https://developers.google.com/fonts/docs/android
+ https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
+
+License
+-------
+Please read the full license text (OFL.txt) to understand the permissions,
+restrictions and requirements for usage, redistribution, and modification.
+
+You can use them in your products & projects – print or digital,
+commercial or otherwise.
+
+This isn't legal advice, please consider consulting a lawyer and see the full
+license for all details.
diff --git a/html/fonts/WorkSans-Italic-VariableFont_wght.ttf b/html/fonts/WorkSans-Italic-VariableFont_wght.ttf
new file mode 100644
index 0000000..ad92373
Binary files /dev/null and b/html/fonts/WorkSans-Italic-VariableFont_wght.ttf differ
diff --git a/html/fonts/WorkSans-VariableFont_wght.ttf b/html/fonts/WorkSans-VariableFont_wght.ttf
new file mode 100644
index 0000000..9a82798
Binary files /dev/null and b/html/fonts/WorkSans-VariableFont_wght.ttf differ
diff --git a/html/fonts/static/WorkSans-Black.ttf b/html/fonts/static/WorkSans-Black.ttf
new file mode 100644
index 0000000..1cd39e6
Binary files /dev/null and b/html/fonts/static/WorkSans-Black.ttf differ
diff --git a/html/fonts/static/WorkSans-BlackItalic.ttf b/html/fonts/static/WorkSans-BlackItalic.ttf
new file mode 100644
index 0000000..a732803
Binary files /dev/null and b/html/fonts/static/WorkSans-BlackItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-Bold.ttf b/html/fonts/static/WorkSans-Bold.ttf
new file mode 100644
index 0000000..f25a85a
Binary files /dev/null and b/html/fonts/static/WorkSans-Bold.ttf differ
diff --git a/html/fonts/static/WorkSans-BoldItalic.ttf b/html/fonts/static/WorkSans-BoldItalic.ttf
new file mode 100644
index 0000000..b6d245c
Binary files /dev/null and b/html/fonts/static/WorkSans-BoldItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-ExtraBold.ttf b/html/fonts/static/WorkSans-ExtraBold.ttf
new file mode 100644
index 0000000..2db801f
Binary files /dev/null and b/html/fonts/static/WorkSans-ExtraBold.ttf differ
diff --git a/html/fonts/static/WorkSans-ExtraBoldItalic.ttf b/html/fonts/static/WorkSans-ExtraBoldItalic.ttf
new file mode 100644
index 0000000..a33bd56
Binary files /dev/null and b/html/fonts/static/WorkSans-ExtraBoldItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-ExtraLight.ttf b/html/fonts/static/WorkSans-ExtraLight.ttf
new file mode 100644
index 0000000..e32034e
Binary files /dev/null and b/html/fonts/static/WorkSans-ExtraLight.ttf differ
diff --git a/html/fonts/static/WorkSans-ExtraLightItalic.ttf b/html/fonts/static/WorkSans-ExtraLightItalic.ttf
new file mode 100644
index 0000000..54d4437
Binary files /dev/null and b/html/fonts/static/WorkSans-ExtraLightItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-Italic.ttf b/html/fonts/static/WorkSans-Italic.ttf
new file mode 100644
index 0000000..df12e5c
Binary files /dev/null and b/html/fonts/static/WorkSans-Italic.ttf differ
diff --git a/html/fonts/static/WorkSans-Light.ttf b/html/fonts/static/WorkSans-Light.ttf
new file mode 100644
index 0000000..86a9a36
Binary files /dev/null and b/html/fonts/static/WorkSans-Light.ttf differ
diff --git a/html/fonts/static/WorkSans-LightItalic.ttf b/html/fonts/static/WorkSans-LightItalic.ttf
new file mode 100644
index 0000000..28b00c3
Binary files /dev/null and b/html/fonts/static/WorkSans-LightItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-Medium.ttf b/html/fonts/static/WorkSans-Medium.ttf
new file mode 100644
index 0000000..3c3a15a
Binary files /dev/null and b/html/fonts/static/WorkSans-Medium.ttf differ
diff --git a/html/fonts/static/WorkSans-MediumItalic.ttf b/html/fonts/static/WorkSans-MediumItalic.ttf
new file mode 100644
index 0000000..5fa7161
Binary files /dev/null and b/html/fonts/static/WorkSans-MediumItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-Regular.ttf b/html/fonts/static/WorkSans-Regular.ttf
new file mode 100644
index 0000000..1954f4d
Binary files /dev/null and b/html/fonts/static/WorkSans-Regular.ttf differ
diff --git a/html/fonts/static/WorkSans-SemiBold.ttf b/html/fonts/static/WorkSans-SemiBold.ttf
new file mode 100644
index 0000000..24d7ec4
Binary files /dev/null and b/html/fonts/static/WorkSans-SemiBold.ttf differ
diff --git a/html/fonts/static/WorkSans-SemiBoldItalic.ttf b/html/fonts/static/WorkSans-SemiBoldItalic.ttf
new file mode 100644
index 0000000..084a094
Binary files /dev/null and b/html/fonts/static/WorkSans-SemiBoldItalic.ttf differ
diff --git a/html/fonts/static/WorkSans-Thin.ttf b/html/fonts/static/WorkSans-Thin.ttf
new file mode 100644
index 0000000..b9df0c0
Binary files /dev/null and b/html/fonts/static/WorkSans-Thin.ttf differ
diff --git a/html/fonts/static/WorkSans-ThinItalic.ttf b/html/fonts/static/WorkSans-ThinItalic.ttf
new file mode 100644
index 0000000..ae3fb9b
Binary files /dev/null and b/html/fonts/static/WorkSans-ThinItalic.ttf differ
diff --git a/html/input.json b/html/input.json
new file mode 100644
index 0000000..1125808
--- /dev/null
+++ b/html/input.json
@@ -0,0 +1,6 @@
+{
+ "industry": "London Pub",
+ "location": "Constanta",
+ "revenue": "10000",
+ "employees": "50"
+}
\ No newline at end of file
diff --git a/html/map.png b/html/map.png
new file mode 100644
index 0000000..03a78b3
Binary files /dev/null and b/html/map.png differ
diff --git a/html/templates/data.json b/html/templates/data.json
new file mode 100644
index 0000000..2caf166
--- /dev/null
+++ b/html/templates/data.json
@@ -0,0 +1,22 @@
+{
+ "Texas": {
+ "score": 83.89,
+ "avg_salary": "-",
+ "avg_age": "-"
+ },
+ "Illinois": {
+ "score": 38.26,
+ "avg_salary": "-",
+ "avg_age": "-"
+ },
+ "Pennsylvania": {
+ "score": 26.93,
+ "avg_salary": "-",
+ "avg_age": "-"
+ },
+ "Ohio": {
+ "score": 25.66,
+ "avg_salary": "-",
+ "avg_age": "-"
+ }
+}
diff --git a/html/templates/index.html b/html/templates/index.html
new file mode 100644
index 0000000..f9b4092
--- /dev/null
+++ b/html/templates/index.html
@@ -0,0 +1,324 @@
+
+
+
+
+
+ Centered Form with Loading Indicator
+
+
+
+
+
+
+
+
+
+➔
+
+
+
+
+
diff --git a/html/templates/styles.css b/html/templates/styles.css
new file mode 100644
index 0000000..c76b7e9
--- /dev/null
+++ b/html/templates/styles.css
@@ -0,0 +1,51 @@
+body {
+ margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
+ }
+
+ body::before {
+ content: "XS";
+ color: red;
+ font-size: 2rem;
+ font-weight: bold;
+ position: fixed;
+ top: 0;
+ right: 0;
+ }
+
+ /* This box class is purely used for explaining how the bootstrap grid system works. */
+ .box {
+ background-color: lightblue;
+ border: 1px solid blue;
+ min-height: 50px;
+ font-size: 2rem;
+ }
+
+ @media (min-width: 576px) {
+ body::before {
+ content: "SM";
+ }
+ }
+
+ @media (min-width: 768px) {
+ body::before {
+ content: "MD";
+ }
+ }
+
+ @media (min-width: 992px) {
+ body::before {
+ content: "LG";
+ }
+ }
+
+ @media (min-width: 1200px) {
+ body::before {
+ content: "XL";
+ }
+ }
+
+ @media (min-width: 1400px) {
+ body::before {
+ content: "XXL";
+ }
+ }
\ No newline at end of file
diff --git a/state_companies.json b/state_companies.json
index 5ae9947..9e26dfe 100644
--- a/state_companies.json
+++ b/state_companies.json
@@ -1,23388 +1 @@
-{
- "Alabama": {
- "2001-2023 Ingenuity Inc.": 3700000,
- "A & C IMS": 19500000,
- "ACCi - American Computer Consultants Inc.": 55500000,
- "ACGI Software": 9700000,
- "ACS Technologies": 37600000,
- "ACU-Serve": 10000000,
- "ADP Roseland": 16900000000,
- "AEPCO": 13100000,
- "AJ Consulting services Inc.": 23100000,
- "ALEN Inc.": 21400000,
- "AMDAN-Home": 9600000,
- "AO Industries": 25500000,
- "AQ2 Technologies": 33400000,
- "ARMS Courtyard": 59000000,
- "ASTS Inventory": 12100000,
- "Abacus Technologies": 6000000,
- "AbeTech": 4600000,
- "Accellera Solutions": 26400000,
- "Acclaim Software": 7400000,
- "Accu-Tech Corporation": 8500000,
- "AccuReg Software": 22500000,
- "Acextic": 21400000,
- "Action Computer": 13100000,
- "Advanced Information Technologies": 8000000,
- "Advanced Systems Development Inc. ASD": 28300000,
- "Advanced Systems Unlimited": 6000000,
- "AdverNETS": 15300000,
- "Aegis Foundry": 2400000,
- "Agility Technology Group": 2400000,
- "Agilon": 13900000,
- "Airiam": 18000000,
- "Airship": 3200000,
- "Al Keith & Associates Inc.": 18900000,
- "Alabama Department Of Rehabilitation Services": 34300000,
- "Albritton\u2019s Flowers": 52900000,
- "Alden Systems": 10000000,
- "Aleta Technologies": 7400000,
- "Alithya": 389900000,
- "All Native Systems": 22900000,
- "Alliance Renewable Technologies": 32500000,
- "Allied Associates International": 19700000,
- "Alloy Digital": 37500000,
- "Alpha II": 25000000,
- "Alpha Omicron Pi- Delta Delta": 4300000,
- "American Healthtech": 46700000,
- "Ampliz": 8000000,
- "AnaVation": 1000000,
- "Analytic Focus": 10700000,
- "Anovys": 2400000,
- "ApexFocus": 9900000,
- "Appddiction Studio": 3800000,
- "Apple Inc.": null,
- "Applied OLAP": 4300000,
- "Archetype Inc.": 14900000,
- "AristoCAT": 10000000,
- "Around the Loop Designs": 4000000,
- "Art and Science Studios": 22700000,
- "ArtiMinds": 15000000,
- "Asset Management Solutions": 67300000,
- "Assurance Technology": 24000000,
- "Asure Software": 76600000,
- "Athens Intermediate": 23400000,
- "Automation Concepts": 46600000,
- "Avail Company": 4200000,
- "Axim Geospatial": 48500000,
- "BCT Digital": 55000000,
- "BOSS Solutions": 5600000,
- "BTL Technologies": 25000000,
- "Bacheler Technologies": 62100000,
- "Bacheler Technologies - Nashville": 62100000,
- "Bain Designs": 3600000,
- "BamaDigital": 1400000,
- "Barefoot Artists": 11000000,
- "Bart & Associates Inc.": 10900000,
- "Bazzillion": 67600000,
- "Bee Culture": 5500000,
- "Benchmark ITS": 59400000,
- "Bevero": 1000000,
- "Bidsters LLC.": 2400000,
- "Bienville": 1400000,
- "Birmingham Industrial Products Company Inc.": 25300000,
- "Bittner Industries Inc.": 14500000,
- "Black Ice Software": 6000000,
- "BlackDog Recruiting Software": 1400000,
- "Blue Pixel Graphics": 3600000,
- "Boecore": 30500000,
- "Booz Allen": 8800000000,
- "Boulder Technology": 4400000,
- "Bowdoin": 6900000,
- "Brand PDQ": 4300000,
- "Branex": 2400000,
- "Brickle Thumb": 14400000,
- "BridalLive": 10300000,
- "BrokerPro": 7200000,
- "Buchanan & Edwards": 130000000,
- "Build In Motion": 4500000,
- "Building Applications": 2000000,
- "Burgess Consulting": 3400000,
- "Byte Technology": 4400000,
- "C&S LegalTech": 9500000,
- "CABINET VISION": 7800000,
- "CCMJ Consulting": 12700000,
- "CIMSgts": 6700000,
- "CIPPCOM Computer Services": 26600000,
- "CMIT Solutions": 60000000,
- "CODE Plus": 22500000,
- "CRANE TITLE INC.": 24200000,
- "Cahaba Sign & Design": 5900000,
- "CahabaCreek": 3700000,
- "Cambria": 28300000,
- "Camgian": 5800000,
- "CampusPress": 4500000,
- "Capocode": 3600000,
- "Carina Technology": 11400000,
- "Cartridges For Kids": 4500000,
- "Cedar Hills Media & Marketing": 1800000,
- "Century Document Imaging": 44200000,
- "Certified Technical Experts": 3400000,
- "Chad Lightner": 13900000,
- "Charles H Dunn Attorney": 6100000,
- "Chronicle Studio": 6000000,
- "Cinglenet": 7300000,
- "Cintel": 12300000,
- "CipherNova": 2400000,
- "Circlebox": 2400000,
- "ClaKen": 16800000,
- "Clear Image Web Design": 28700000,
- "Clear Marketing and Design": 5800000,
- "Clients First Business Solutions - SAP Business One Consulting": 34300000,
- "Club Prophet": 6400000,
- "Commerce7": 1000000,
- "Community Response Systems": 5400000,
- "Community Tracking Services": 4900000,
- "Company 52": 1400000,
- "Concert IDC": 7200000,
- "Condusiv Technologies": null,
- "Conserv": 2000000,
- "Context A3": 1900000,
- "Contrive Media": 1400000,
- "Core Associates": 32300000,
- "CoreLogic": null,
- "Cornerstone Research": 10800000,
- "Corvid Technologies": 23700000,
- "CostFlex": 20000000,
- "Cotton Pickers's": 21100000,
- "Credit Central Inc.": 20700000,
- "Creek Enterprise": 48500000,
- "Cyber Operations": 20000000,
- "CyberProtex": 7000000,
- "CyberSurfers": 6900000,
- "DC BLOX": 18600000,
- "DGR Systems": 2200000,
- "DIGIIT SOLUTIONS": 6000000,
- "DSD Labs": 38600000,
- "DTN Ag.": 250000000,
- "Data Analyzers Data Recovery Services": 4200000,
- "Data Collection Specialists": 26800000,
- "DataCom Solutions Inc.": 9500000,
- "DataPerk": 1200000,
- "Datacenters": 6200000,
- "Datahouse Inc.": 41400000,
- "Datum Software": 15700000,
- "David McIntyre": 14400000,
- "DeRisk QA": 17500000,
- "Dementia Dynamics": 9700000,
- "DenverDoran": 5500000,
- "DetailCAD": 21200000,
- "DigiFlight": 10500000,
- "Digital Boardwalk - IT Support & Managed IT Services": 2500000,
- "Digital Forensics Team": 4100000,
- "Digital Trends Corporation": 23300000,
- "Directorpoint": 3000000,
- "Diversified": 458900000,
- "Doozer": 4300000,
- "Drawn Design": 4000000,
- "Dropified": 5100000,
- "Dynamic Quest": 11000000,
- "E Tech Group": 200000000,
- "E-RING": 15700000,
- "EAM Masters": 1400000,
- "EBIZDOCS": 25000000,
- "EMUN INC.": 30300000,
- "EOSYS Group": 11000000,
- "EPASS Software": 1400000,
- "EPOWERdoc": 1900000,
- "EarthCam": 15000000,
- "Eastern Shore IT": 2200000,
- "Effortz": 10000000,
- "Elijah LTD.": 5000000,
- "Elixir international": 9900000,
- "Emerald TC": 7700000,
- "Emmaus Road Productions": 3900000,
- "Entech LLC.": 19800000,
- "Entercomp": 26300000,
- "EverView": 280000000,
- "Executive Connection": 4100000,
- "Exeter Government Services": 35000000,
- "F 1 Solutions": 4500000,
- "F3 Solutions": 21300000,
- "FIS": null,
- "FLERT LLC.": 15000000,
- "FX Design Group": 13500000,
- "Faultline Software Group Inc.": 15600000,
- "Fee Simple": 10500000,
- "Fetch Rewards": 150000000,
- "Fidelity Square Marketing": 1400000,
- "Fieldster": 1400000,
- "FishEye Software": 6000000,
- "Flamingo A Friend": 34700000,
- "Fleetio": 7500000,
- "FlexMedical": 2400000,
- "Focus Technologies": 16900000,
- "Fox toolkit": 14100000,
- "G M Technologies": 31500000,
- "GDIT": 7900000000,
- "GLOBAL WINDOWS": 17200000,
- "GMSI": 11300000,
- "Gallus Golf": 3800000,
- "Geeks and Nerds": 7300000,
- "Gene Everette": 12700000,
- "General Informatics": 15200000,
- "GeoCue": 22400000,
- "GoTo Solutions": 32100000,
- "Golamac Inc Creative Services": 13600000,
- "Got-Wifi": 13700000,
- "Gradkell": 13300000,
- "Graphic Technologies Inc. Al": 19800000,
- "Gravic": 5000000,
- "Graze Cart": 5400000,
- "Great New Day Internet Solutions": 31900000,
- "Group Ex PRO": 1000000,
- "Gulf Coast Systems": 17600000,
- "Gulf Coast Technology": 26800000,
- "H2L Solutions": 1000000,
- "HCL Tech": 12000000000,
- "HIGHTOWER ENTERPRISES": 10600000,
- "Hadley Binion": 33300000,
- "Hagerman": 35000000,
- "Harper Technologies": 3000000,
- "Harris School Solutions": 57500000,
- "HeartLegacy": 7000000,
- "Help Lightning": 4000000,
- "Heptagon IT": 39700000,
- "Herald Technology": 23300000,
- "Hexagon US Federal": 7000000,
- "Hill Technical Solutions": 9900000,
- "Hixardt": 26000000,
- "Horizon Associates": 4400000,
- "Host Canyon": 19900000,
- "Huntsville Municipal Golf Course": 11200000,
- "I Q Reseller": 27800000,
- "INDIA Technopark": 3500000,
- "INTEGRATED COMPUTER SOLUTIONS": 45400000,
- "ION 247": 6000000,
- "IPTA": 9500000,
- "IQware": 35000000,
- "ITC Defense": 8500000,
- "ITSworks": 13500000,
- "Icloud": 90000000,
- "Ignition Digital": 5600000,
- "IkeGPS": null,
- "Incsub": 11000000,
- "India Document Solution Private Limited": 3100000,
- "Indian Server Hosting": 3900000,
- "Indus Technology": 36000000,
- "Info Media 18 Limited": 7200000,
- "InfoDrive Systems": 7000000,
- "Integration Revision": 8500000,
- "Intelligent Design Studio": 9000000,
- "Intergraph": null,
- "Intermedia Group": 13400000,
- "Interweave Technologies": 10200000,
- "Invariant": 13000000,
- "Isotope11": 1500000,
- "J. Wiggins Designs": 2400000,
- "JCWD": 24800000,
- "JMF Technologies": 35100000,
- "JMJ Systems": 49800000,
- "JML UAE LLC.": 35000000,
- "Jack Grey IT": 1400000,
- "Jackrabbit": 1700000,
- "Jackson Key & Associates": 25000000,
- "Jackson Thornton Technologies": 4800000,
- "James Jerkins Computer": 8000000,
- "Jean & Sons Upholsteryland": 17500000,
- "Jewels By Rose": 1300000,
- "Jituzu": 2400000,
- "Jolt Productions": 1400000,
- "Joseph Schiavone": 44500000,
- "Jovix": 21400000,
- "JusticeTrax": 5000000,
- "K & C Small Bus Computer Consultants": 8800000,
- "K And K Camping Center": 22800000,
- "K3 Clouds": 17300000,
- "KCC Software": 11900000,
- "KEYSYS": 4600000,
- "KVortex": 5400000,
- "Kaleida Systems": 3800000,
- "Keekee360 Design": 4500000,
- "KingNAMS": 3700000,
- "KnownHost": 1300000,
- "LANSRAD": 16500000,
- "LEAN Frog Digital": 2000000,
- "LaunchTech": 2300000,
- "Launchpad Creatives": 3900000,
- "Lawanda Baker": 35900000,
- "Layer8 Technology": 13100000,
- "Learning Systems Unlimited": 32400000,
- "Lense Consulting Company": 17600000,
- "Level 3 Communications": 17500000000,
- "Libdata": 18100000,
- "Lifeline Management Systems": 45300000,
- "Lift Data Services": 25000000,
- "Lightwire Solutions": 4800000,
- "Link Computer Corporation | Bellwood PA": 5800000,
- "Linnflux Cloud Solutions": 45500000,
- "Lk Distruibutors": 30800000,
- "Loadingdocksouth": 12100000,
- "LogiCore": 7000000,
- "Logical Computer Solutions": 31600000,
- "Logista Solutions": 33100000,
- "Louis' Computer Services": 23000000,
- "M originals": 53200000,
- "MAD Security": 5000000,
- "MCS Rental Software": 4100000,
- "MCSANZ": 5800000,
- "MY Designs Graphic Design & Illustration": 3400000,
- "Magnetic Arrow": 2200000,
- "Magnolia Belle Data Systems Inc.": 10000000,
- "MainSoft-Safe": 12900000,
- "Management Data Inc.": 26400000,
- "Mantissa": 35700000,
- "Manufactured Homes": 5000000,
- "Marcus Dillavou": 25700000,
- "Martin Fed": 16900000,
- "Masters Group Design": 5200000,
- "Matter Creative Studio": 21700000,
- "Mavelo": 1400000,
- "Maximum Technology": 18200000,
- "Mcmtech": 27100000,
- "MeasuredRisk": 1900000,
- "MedConnect Health": 2000000,
- "Media317": 3700000,
- "Meriplex": 20000000,
- "Merit Technologies": 6000000,
- "Merritt Const": 6700000,
- "Method-1": 1900000,
- "Micro Craft": 13000000,
- "Micro-2": 29300000,
- "MicroPulse Technologies": 2600000,
- "Microfit Group": 1400000,
- "Millennium Innovation Group": 47100000,
- "Miller Designs": 17500000,
- "Miovision": 35000000,
- "Mitchell-Wayne Technologies": 30400000,
- "Mobular": 11900000,
- "Montgomery Electronics & Communications": 67600000,
- "MotionMobs": 6000000,
- "Motorola Solutions": null,
- "Moundville Times": 9800000,
- "Mozaik Software": 49400000,
- "Mullins Computer Management": 25500000,
- "My International Connection": 4400000,
- "MyITRocks": 50600000,
- "NASAinc": 26300000,
- "NEARMAP LTD": null,
- "NMGI": 20400000,
- "NRG Edge": 6000000,
- "NXTsoft": 38000000,
- "Net-to-Net": 16900000,
- "NetGain Technologies": 47600000,
- "Netpoint IT": 7600000,
- "Network Solutions": null,
- "New Merkel Consulting Group": 1800000,
- "Next Level Studio": 2400000,
- "Nfina": 15300000,
- "Novation Systems": 1400000,
- "Ntense Media": 23100000,
- "Nterspec Technologies LLC.": 20300000,
- "NuSpatial": 7000000,
- "OCS Solutions": 7300000,
- "OLISTM": 10900000,
- "OPDEC": 15700000,
- "Oak Mountain Software": 31900000,
- "Omicron Research": 7500000,
- "OnTarget Technologies": 31200000,
- "One Hop": 19400000,
- "Onyx Technologies": 9500000,
- "Oracle": null,
- "Orbit GT": 1700000,
- "P C Plus Inc.": 15300000,
- "PBS Systems": null,
- "PCS Simplify with Technology": 25000000,
- "PILEUM": 26800000,
- "PINNACLE BUSINESS SYSTEMS": 26000000,
- "PSIGEN": 25000000,
- "Pacsync": 15600000,
- "Panciera Design": 13300000,
- "Pantheon-Inc The digital Automation Company": 5100000,
- "Paragon Consulting Services": 11400000,
- "Party Center Software": 6000000,
- "Pavo Technologies": 11400000,
- "Pc911biz": 33800000,
- "PencilPoint Software": 26200000,
- "Perspectus Corporation": 45500000,
- "Pinnacle NetworX": 31700000,
- "Planet Technologies": 11600000,
- "Plateau Group": 67600000,
- "Plateau Software": 26200000,
- "Platinum Real Estate Marketing": 1400000,
- "Platypi": 6000000,
- "PlayBig Hosting": 5300000,
- "Pmads": 2400000,
- "PointClear Networks": 6200000,
- "Pomeroy": 850000000,
- "Premier Driving Academy": 5600000,
- "Presidio": 4400000,
- "Print Reach": 6300000,
- "Pro Sys": 12700000,
- "Pro-Computer Services": 13500000,
- "Propelled Technologies": 21400000,
- "Provenance Digital Media": 1400000,
- "PubWorks": 4600000,
- "Qoiza": 1400000,
- "Quality Networks": 11100000,
- "QueCentric": 26800000,
- "RAM Networks": 51000000,
- "RB Retail and Service Solutions": 40500000,
- "RFMS": 3300000,
- "ROM828": 24100000,
- "RapidCast": 14900000,
- "RealTime I.T.": 31800000,
- "RealtySouth-Northern Office": 31300000,
- "Reliant Technologies": 6000000,
- "Reonomy": 18300000,
- "RigidMotion": 32700000,
- "Risingline": 6900000,
- "Riverview Software Solutions": 34800000,
- "Rob Webster": 12400000,
- "Robz Art": 26400000,
- "Rome Technologies Inc.": 19400000,
- "Ronald Bradford": 27200000,
- "RoomKeyPMS": 16000000,
- "Rooster Tail Designs": 1400000,
- "RunSafe Security": 2500000,
- "RunTime Computing": 1400000,
- "Runbiz Industry Company Limited": 37000000,
- "S4 Inc.": 16500000,
- "SGA Software": 31200000,
- "SLK Software": 150000000,
- "SRA International": null,
- "SS&C Technologies": null,
- "SVK Systems": 33800000,
- "Sales Force & Associates": 13400000,
- "Saunders Business Solutions": 4400000,
- "Savvy Otter": 6000000,
- "Script Technology": 5100000,
- "SearchExpress": 7600000,
- "SecurIT360": 1000000,
- "SeekFirst Solutions": 5600000,
- "Sev1Tech": 45600000,
- "ShareSafe Solutions": 16000000,
- "Shaw Technology": 3600000,
- "Shawn Wright Graphic Design": 2400000,
- "Shelby Group": 1400000,
- "Shelbybark": 1800000,
- "Shopworks": 1200000,
- "ShowTech Solutions": 8500000,
- "Silvics": 8300000,
- "Simon Solutions": 14900000,
- "Simple Pixel": 2800000,
- "Site Design Help": 30700000,
- "SmartArt South": 2000000,
- "SoftPlanTuts": 37500000,
- "SoftSages": 3100000,
- "Sounds In Sync": 4600000,
- "Southeastern Telephone": 47600000,
- "Southern Technology Group": 11800000,
- "Space Control": 36800000,
- "Space Genius": 7000000,
- "Sparkhound": 14200000,
- "Splasm": 13600000,
- "Square Root Interactive": 18500000,
- "Stallion is": 1500000000,
- "Star Lab Software": 5700000,
- "Stealth-ISS": 2600000,
- "Stealthsync": 9900000,
- "Storage Commander": 1700000,
- "StratusGrid": 52200000,
- "Stringfellow": 2000000,
- "Stripe King": 35200000,
- "Studio7inc": 44300000,
- "Subsplash": 10000000,
- "Success Products": 20600000,
- "Sumaria Systems": 29000000,
- "Summit 7": 12000000,
- "Sunrise Technology": 27900000,
- "Syncsite": 20000000,
- "Syrasoft": 6200000,
- "System Solutions LLC.": 22100000,
- "T H Creations": 25800000,
- "TATE SOUTHERN COMPUTER SERVICES": 28300000,
- "TEAM Support": 42400000,
- "TEKSystems Global Services Pvt. Ltd.": 7000000000,
- "TFC Services": 2400000,
- "Tabs3": 12200000,
- "Taylor Media": 22800000,
- "TeamLogic Inc.": 7200000,
- "Techni-Core": 32600000,
- "Technical & Scientific Application Inc. TSA Inc.": 15000000,
- "Technology Plus": 15200000,
- "Tek9 Solutions": 22000000,
- "TekFive": 10600000,
- "TekSynap": 15500000,
- "Teksouth": 40000000,
- "TeleVox": 61700000,
- "Telos company": 236800000,
- "Temenos Group": null,
- "Territory 3": 8200000,
- "The Allison Agency": 34500000,
- "The Ant Farm": 7300000,
- "The Grodner Group": 10600000,
- "The Modern Connection LLC.": 1300000,
- "The Net Effect": 11700000,
- "The Rubicon Group": 26100000,
- "The Sasser Group": 5900000,
- "The Uniform Solution": 2400000,
- "TheraNest": 3000000,
- "Think VSS": 80000000,
- "ThinkDataSol": 10000000,
- "ThinkGard": 9000000,
- "ThinkLink": 15700000,
- "ThreatAdvice": 7000000,
- "Thrive NextGen": 150000000,
- "Tiger Tech LLC.": 32500000,
- "Tim Tolleson Design": 2400000,
- "Time Domain": 15000000,
- "Time MD": 1700000,
- "Timeplus": 15700000,
- "TopScore": 6000000,
- "Transcendence Inc.": 32600000,
- "Trident Technologies": 5000000,
- "Trideum": 17400000,
- "Trihedral Engineering": 6000000,
- "Tripoint Solutions": 2400000,
- "TruCode": 12500000,
- "TrustSpot": 1000000,
- "Tshirt Factory Limited": 7900000,
- "TurkReno": 2300000,
- "Two Rivers Technologies": 23800000,
- "Tyler Technologies": null,
- "UDA Technologies": 20700000,
- "UNISULT": 23100000,
- "UP2GeeK": 7700000,
- "UniversityTickets": 10000000,
- "Up and Running": 40500000,
- "Validata Computer & Research": 24900000,
- "Valley of Birmingham": 11900000,
- "Verinext": 83000000,
- "VertiGIS Studio": 7500000,
- "Vertiv": null,
- "Virtual Apexx": 3000000,
- "Virtue Technology": 19100000,
- "Visiology": 22900000,
- "VisionQuest Development": 6200000,
- "Visual Connections": 25600000,
- "Visuex": 1900000,
- "Vizteck": 3400000,
- "WANdisco": 10500000,
- "WPMU DEV": 6200000,
- "Wave6": 4200000,
- "WaveLink Inc.": 19500000,
- "Webn8": 1400000,
- "WeldonWare Labs": 7700000,
- "Wells & Tate Electric Co Inc.": 7600000,
- "Wengert": 19400000,
- "West 7th Design Studio": 5700000,
- "White Feather Software": 54200000,
- "White Plume Technologies": 6000000,
- "Wild Ginger Software Inc.": 39400000,
- "William Delaney": 13500000,
- "Wise Technology": 7000000,
- "WisePoint": 21500000,
- "Wolters Kluwer": 5400000000,
- "Xcase -": 37500000,
- "Xlent Infotech": 3600000,
- "Xtego": 3700000,
- "Yellowhammer IT": 16900000,
- "ZAXIOM": 26000000,
- "Zertis Technologies": 24900000,
- "Zimlich Brothers Florist Inc.": 4500000,
- "Zivaro": 174500000,
- "a.i. solutions Inc.": 3000000,
- "e-Systems Inc.": 31600000,
- "gDocScan": 2400000,
- "imgforge Web & Print": 15200000,
- "laurenmaryDESIGN": 2600000
- },
- "Alaska": {
- "49 Designs": null,
- "5th Avenue Design & Graphics": null,
- "60HERTZ": null,
- "907 Creative": null,
- "A Girl Friday Company": null,
- "A Visual Voice": null,
- "A Zen Say": null,
- "A-Teq": null,
- "AI Smart Art": null,
- "AIRCRAFT INSTRUMENT REPAIR LLC.": 27700000,
- "AKAK": null,
- "ARD STETTS": null,
- "ARZ Host": null,
- "ASSISTE ITEC": null,
- "Ace Delivery & Moving Inc.": null,
- "Adkins Design": null,
- "Ae0n": null,
- "Aegistics": 48800000,
- "Aerospace Safety Software": null,
- "Ajibycanya": null,
- "Ak Creative Design": null,
- "AkWebs": null,
- "AlasConnect": 7600000,
- "AlasKaleidoscope": null,
- "Alaska App Works": 459000,
- "Alaska Challenge Program Inc.": null,
- "Alaska Computer Support": null,
- "Alaska Dancer Emporium": null,
- "Alaska Data Technologies": 10000000,
- "Alaska Dog Wash Resort": 33600000,
- "Alaska Fashion Wigs": null,
- "Alaska I.T. Guys": null,
- "Alaska IT Group": null,
- "Alaska Interstate Construction": 9800000,
- "Alaska Northstar Resources": null,
- "Alaska Rose": null,
- "Alaska SEO True Loyalty Company": null,
- "Alaska Systems and Software": null,
- "Alaska Tech Services": null,
- "Alaska Technical Solutions": null,
- "Alaska Technologies": null,
- "Alaska Web Designs": null,
- "Alaska Web Dynamics": null,
- "Alaska Web Sites": null,
- "Alaska Web Solutions": null,
- "Alaska Web Studio": null,
- "Alaska-WebDesign": null,
- "AlaskaOne": null,
- "Alaskaweb.pro": null,
- "Alejandro Santiago": null,
- "Aleknagik Technology": null,
- "AlertWet": null,
- "Aleutian Islands Guide Service": 13200000,
- "All Things Alaska": null,
- "Allison McIntyre Media": null,
- "Amanda Hatton": null,
- "Amanda Stachowicz": null,
- "Ampersand TECHNOLOGY": null,
- "Amy Julian": null,
- "Anastasia Ward Illustrations": null,
- "Apex IT Services": null,
- "Apex Logic": null,
- "Apple Inc.": null,
- "Applied Microsystems": 10700000,
- "Arctic Design Group": null,
- "Arctic Frontier Hosting & Service": null,
- "Arctic IT": 8000,
- "Arctic Network Solutions": null,
- "Arctic Pixel Digital Solutions": 35400000,
- "Arctic Region Supercomputing Center": 10300000,
- "ArcticCon": null,
- "ArcticShield": null,
- "ArcticSoft": null,
- "Arthepsy": null,
- "Artixan Systems": null,
- "Aryana Solutions": null,
- "Asia Bauzon": null,
- "Astonish Software": null,
- "Atlas Codeworks": null,
- "Attack Company": null,
- "Aurora & Co. Brand Design": null,
- "Avia Design Group": null,
- "AvidXchange": null,
- "Awake Design Studios": null,
- "Axiom Data Science": null,
- "Azavea": 11300000,
- "AzeoTech": 2400000,
- "Azimuth Studio": null,
- "Azure Networks": null,
- "BAK Systems": null,
- "BLUESTONE APPS LLC.": null,
- "BMON Documentation": null,
- "BROCK FORRER": null,
- "Backlink Hero": null,
- "Ballroom Dance Club Of Fairbanks": 16500000,
- "Bandi Signs": 10900000,
- "Baskindigital": null,
- "BebasKertas": null,
- "Best Online Singles": null,
- "Bestvfile": null,
- "Beth Piltz Graphic Design": null,
- "Bianca Frank Design": null,
- "Bindle Binaries": null,
- "Birchtree Studio": 16000000,
- "Bitsynx": null,
- "Blair Castagnetta": null,
- "Blended By Bridget": null,
- "Bold Cape": null,
- "BoogieMan Security": null,
- "Boreal Scientific Computing": null,
- "Brandon Grant": null,
- "Brandon Reid": null,
- "Brianna Reagan Art": null,
- "Brittany Gene": null,
- "Brooke shary": null,
- "Brothers IT Solution": null,
- "Brown Bear Software": null,
- "Brown Graphic Design": null,
- "Brown and Blue": null,
- "Build In Motion": 4500000,
- "Business Application Developers": null,
- "Bymobai": null,
- "Byte Networking": null,
- "C-Fuscator": null,
- "CA Design Studio LLC.": null,
- "CHRISTINE M TAIT": 30800000,
- "CI Consultants": null,
- "CMC-AK": 146000,
- "CP Marine": 7000000,
- "CREATIVE VISUAL MARKETING SOLUTIONS": null,
- "CYBERSOURCE": null,
- "Cade Midyett": null,
- "Calligraphy By Touchstroke": null,
- "CannaTech907": null,
- "Caring Companions": null,
- "Carlisle Graphics": null,
- "Cary M. King": null,
- "Catapult Consulting": 1400000,
- "CaterTrax": 15000000,
- "Chariot Group": null,
- "Check Point Mobile": 9800000,
- "Chenega MIOS": 5900000,
- "Christen Bouffard": null,
- "Christmas Websites": null,
- "Cities Digital Inc.": 4300000,
- "Cloos Creative": null,
- "Cobra IT": null,
- "Cohoe Beach Campground": null,
- "Collaborli": null,
- "Common Access Card": null,
- "Communications Software Inc.": null,
- "CompuNet Inc.": 146600000,
- "Computer Medics of Anchorage": null,
- "Computers Under Control": null,
- "Computing Alternatives": null,
- "Control Alt Delete": null,
- "Copper River Cyber Solutions": null,
- "Copper River Enterprise Services": 11000000,
- "Copper River Technologies": null,
- "Corgi Creatives": null,
- "Corriv": null,
- "CreativeAK": null,
- "Cristina Vergara": null,
- "Crumrine Enterprises": null,
- "Cryeye": null,
- "CuplexUser99": null,
- "Custom Web Domination": null,
- "CyberCoreDefense": null,
- "Cybersecure Alaska": null,
- "D Fields Design": null,
- "D Michael Lewis": null,
- "DHCSTECH": null,
- "DIY Hosts": null,
- "DOCUMENTLY": null,
- "DUBAY": null,
- "Dan Miller Graphics": null,
- "DanTech Services": null,
- "Data Methods": null,
- "DataFlow Alaska": null,
- "Datahead Software Solutions": 29300000,
- "Datapolis": null,
- "Deep Dish Creative": null,
- "Deep Forest Security": 10000000,
- "Deep Tree": null,
- "Deeptree": 12600000,
- "Delana Green": null,
- "Delivago": null,
- "Delres": null,
- "Den Concepts": null,
- "DenaliTEK": 9800000,
- "Denaze Defense": null,
- "Desginmi offical": null,
- "Design Manager": null,
- "Designz Pal": null,
- "Diawai": null,
- "Digital Designing": null,
- "DiscoverNode": null,
- "Discovery Engine": null,
- "Dossco Designs": null,
- "Dragon.codes": null,
- "Dream Net Designs": null,
- "DreamWeavers Cloud Teknologies": null,
- "Dubay Business Services": null,
- "Dug-UK": null,
- "Dumb Blonde Design Studio": null,
- "Dycore Solutions": null,
- "Dynalaska": 10300000,
- "Dynamic Helical Systems": null,
- "E2VE Defense Enterprises": null,
- "ECS Computer Systems Inc.": null,
- "EDUCATIONAL MANAGEMENT": 9300000,
- "EMILY G LONGBRAKE": null,
- "EVEREST OIL & GAS SDN BHD 974467-X": null,
- "Eagle Consulting Group LLC.": null,
- "Eagle Integrated Services": null,
- "Eagle River Anchorage AK - Suzanne Cool": null,
- "Edging Mind": null,
- "Elizabeth Mackey": null,
- "Ellen Wang Design": null,
- "Encinitas Website Designs": 2700000,
- "Enraptored": null,
- "Epricot": null,
- "Equilux": 490000,
- "Erin Cofer": null,
- "Erin Hamilton Design": null,
- "Ewebdubniya": null,
- "ExploitCon": null,
- "Eyaktek": 10000000,
- "Ez Online FFL": null,
- "FLEETPLAN": null,
- "FRANCES L SCHOLZ": null,
- "FREEDOM FROM CHAINS INC.": null,
- "FTF FOUNDATION INC.": 15200000,
- "FabHub": null,
- "Fairbanks Neighbors": null,
- "Fairbanks Tech Support": null,
- "FarShore": 25000000,
- "Fiddlehead creative": null,
- "Finsight LLC.": 50300000,
- "Fireweed Studios": 60600000,
- "Fiveninetydesign": null,
- "Flammes Jumelles": null,
- "Flower-webdesign": null,
- "Flyntlok": null,
- "Forte Systems": 4900000,
- "FractalHome": null,
- "FreshLogoz": null,
- "Friends of Mulesoft": null,
- "Frustration Free IT": 22400000,
- "Fulvia Lowe": null,
- "GCSIT": 3800000,
- "Gamerzgraphics": null,
- "Garryou": null,
- "Gate City Software Solutions": null,
- "GenieTek": null,
- "GeoApt": null,
- "GeoNorth": 1300000,
- "Geodome Shelter Systems": null,
- "Global Reach Technologies LLC.": null,
- "Grant Magdanz": null,
- "Greatbearbrewing": null,
- "Green Martian Design": null,
- "Green Wing Outdoor Safety Solutions": null,
- "Greensparc": null,
- "Gregari": null,
- "Griffith Technologies Alaska": null,
- "Grizzly Peak Software": null,
- "Growth Bounce": null,
- "Gwen Kalve": null,
- "HLT global": null,
- "HTECH Solutions Pvt Ltd.": null,
- "Hansen Gress": 1400000,
- "Hanson Consulting & Accounting": 11800000,
- "Hewitt Technologies": null,
- "HiTech Alaska LLC.": null,
- "Hillbilly Universe": null,
- "Hire Wordpress Developer": null,
- "Hollingsworth Design": null,
- "Homer Web Designs": null,
- "Hordanso": null,
- "Host SMB": null,
- "Hostilike": null,
- "HostingSeekers": null,
- "HuMu Media": null,
- "I am cooley": null,
- "I-drive": null,
- "I3 i7drivers": null,
- "ICAFM": null,
- "ICartApp": null,
- "ILM Designs": null,
- "IN SOMNO": null,
- "IT Alchemy": null,
- "ITEC Alaska": null,
- "IWS Design": 1400000,
- "Icicle Software": null,
- "Icloud": 90000000,
- "Iconif": null,
- "IdealSpot": null,
- "Ideas Box": null,
- "Imagenet LLC.": 38000000,
- "Inaharbor": null,
- "Infolific": null,
- "InteXX": null,
- "Interface Alaska": null,
- "Interior Family Studios": null,
- "International Bicycle Equipment Warehouse LLC.": null,
- "International Data": 14800000,
- "Israel Brewster": null,
- "Ivy & Oak Studios": null,
- "JI Design": null,
- "JOGUMU Marketing and Design": null,
- "JP Technical": 1400000,
- "JSR Business Services": null,
- "Jadin Tech": null,
- "Jeff Quade .Net LLC.": null,
- "Jenna! Fleur Designs": 31200000,
- "Jenness Graphic Design": null,
- "Josh Frontend": null,
- "JusticeTrax": 5000000,
- "K & H Graphics": null,
- "KB Design Photo": null,
- "KGH LLC.": 16100000,
- "KUiBSO": null,
- "Kallensoft": null,
- "Kangaroo IT Services": 2400000,
- "Kartorium": null,
- "Kat Maus": null,
- "Katherine Martin Design": null,
- "Keeni": null,
- "Khan Howe": null,
- "Kierin": null,
- "Kimografix": 1600000,
- "Kinoogeix": null,
- "Knik Country": null,
- "Koniag": null,
- "LAYMON DESIGN LLC.": null,
- "LIAISE STUDIO": null,
- "LMJ Consulting": 7000000,
- "LPLV-SECURED": null,
- "LUCID Digital Marketing Services": 2200000,
- "Landry Conrady": null,
- "Last Frontier Designs": null,
- "Lasvegaslomi": null,
- "LaunchUX": null,
- "Legalverse": null,
- "Leverage Information Systems": null,
- "Levi Oyster Designs": null,
- "Levinology": null,
- "Lexi Macht": null,
- "Little Bird Design Studio": null,
- "Local Data": null,
- "LogicNet": null,
- "Lolihanna Training Co.": null,
- "Lorraine Hebert": null,
- "Lucent Bloom": null,
- "Luciddms": 6300000,
- "Lucie Marche": null,
- "Luminant Data": null,
- "Lunova Studio": null,
- "Lux Technology": null,
- "MAEGIC": null,
- "MARY ANNE WILSON": null,
- "MATTHEW KNUTSON": null,
- "META FREQ": null,
- "MH2X": 191000,
- "MWBAILEY": null,
- "MacFadyen": null,
- "Mad Dog Graphx": null,
- "Martello Design": null,
- "Maxwell IT": null,
- "McGraw IT Services": null,
- "Meg Smith Art Design": null,
- "Merlin Media LLC.": null,
- "Microinriko": null,
- "Middle Rock Designs": null,
- "MilitaryCAC": null,
- "Miner Design LLC.": null,
- "Miovision": 35000000,
- "Mix Fonts": null,
- "Molly Willson Perry": null,
- "Mountainside Solutions": null,
- "Mrcl": null,
- "MyCodeBlock": null,
- "NETDAIS": null,
- "NIUTOUCH": null,
- "NORDLUM F HOLLY": null,
- "NORTH CREATIVE": null,
- "Nanook Innovation": null,
- "Nate Padavick": null,
- "Nelson Kempf": null,
- "Network Business Systems": null,
- "New Age Consulting": null,
- "Nico leffel": null,
- "No Backflow": null,
- "Nodsafe": null,
- "North Star Multimedia": 13000000,
- "North Tech Group": 5900000,
- "NorthWest Data Solutions": 480000,
- "Northern Core": null,
- "Northern DataComm": null,
- "Northern Technologies": null,
- "Northern Vista Designs Alaska Web Development": null,
- "Northern Web Development": null,
- "Nu Solutions Consulting": 27100000,
- "NuTech Solutions": null,
- "Nuvem Apps": null,
- "Nuvem Apps Inc.": 1400000,
- "Nydardoric LLC.": null,
- "Odyssey Tech Solutions": null,
- "OhDeven": null,
- "OmniSIEM": null,
- "OneDollarWebHostings": null,
- "Online Tool Site": null,
- "Open Data Network": null,
- "OpenSARlab-Docs": null,
- "Optimal Results": null,
- "Orbital Studios": null,
- "Order N Development": 1400000,
- "Orr Systems": null,
- "Owldownloading": null,
- "P & S Solutions": null,
- "P.J. Gardner": null,
- "PC Booster": null,
- "PETERSON & ASSOCIATES INC.": null,
- "PNC IT": null,
- "POLARIS GROUP": null,
- "POWTEC": 21000000,
- "Pagesculptor Studios": null,
- "Paladium": null,
- "PaloHaus": null,
- "Pango Technology": 8300000,
- "Paradigm Consulting Co.": 3100000,
- "Pathagoras": 19700000,
- "PhD Code": null,
- "Pixel & Plume Design Co. LLC.": 336000,
- "Poetica": null,
- "PointMan": 13000000,
- "Polaris Design Lab": null,
- "Police Takip": null,
- "Premium Tile and Stone": null,
- "PrismaPixel Studios": null,
- "ProRotator": null,
- "Procrackhub": null,
- "Procurelogic": null,
- "Profesional Computing and Networking": null,
- "Projekt 907": null,
- "Prominent Edge": 2400000,
- "Promotional Products Anchorage": null,
- "Propensa": null,
- "PulseMaps": null,
- "Pure Innovations": null,
- "Quantum Tech Labs": null,
- "Quecon": null,
- "Queryon": null,
- "Quurow": null,
- "RFIVE LLC.": null,
- "RGB Enterprises": null,
- "RNT Professional Services": null,
- "RainMaker Software": 3000000,
- "Real RP": null,
- "RedStar Hospital": null,
- "Rent Manager": 40900000,
- "Res3D": null,
- "Resource Data": 32000000,
- "Richard Stephens": null,
- "Roland Adams2": null,
- "Rsurrency": null,
- "Ryan Nixon": null,
- "SAAFI DESIGN & GRAPHICS LLC.": null,
- "SDSpro": 3200000,
- "SEAK Systems": null,
- "SGV International LLC.": 10000000,
- "SMAKmobi": null,
- "SPOOX INK.": 6800000,
- "STS Systems Integration": 25000000,
- "STS Systems Support": null,
- "SaaS Design": null,
- "Sadli Data Solusindo": null,
- "Samantha Starks": null,
- "San Bernardino Mountain": null,
- "Sandhill Studios": 2400000,
- "Sarah K. Glaser Illustration": null,
- "SaxtonIP": null,
- "Script Technology": 5100000,
- "Security Breach 911": null,
- "Serverion": null,
- "Shashankshetty": null,
- "Signal Associates": null,
- "Signol": null,
- "Sitezly": null,
- "Skunkworks Data Services": null,
- "Sockeye": null,
- "Softmouse 3D": 10000000,
- "Software North": null,
- "Solv Engineering": null,
- "Solve It Alaska": null,
- "Solve Solu-Tech": null,
- "Sorellaweb": null,
- "Southeast Micro Consultants": 25700000,
- "Sparrow Development": null,
- "Spearhead Consulting": 1400000,
- "SpinUp Creative": null,
- "SplatDot Inc.": 374000,
- "Stallion is": 1500000000,
- "Stanifer Designs": null,
- "Stanton Innovation": null,
- "StartAlaska IT": null,
- "Status - UA.": null,
- "Str8Mind Design": null,
- "Stratus Services": null,
- "Stringbin": null,
- "Stroitel'nyi forum Remfor": null,
- "Structured": 15000000,
- "Sugpiat Defense": null,
- "Sugpiat Group": null,
- "Sundog Media": null,
- "Swarm Intel": null,
- "Sydney Cain": null,
- "Synchrony Trust Cyber Security Services": null,
- "THE WRIGHT PERSPECTIVE": null,
- "Tailored Ai": null,
- "Tandem Labs": null,
- "Tangible Technosis": null,
- "Tap Doan Lien Minh Viet": null,
- "Tara Horton": null,
- "TaskKlock": null,
- "Taylor Leasing Trailer Sales": null,
- "Tcayoti": null,
- "Tech Dev Zone": null,
- "Tech Empower Innovations": null,
- "Tech GN": null,
- "Tech Treta": null,
- "Tech Wise Systems": null,
- "TekForge": null,
- "Tex R Us LLC Conference Room": 2000000,
- "The AIRIS Project": null,
- "The Anchor Pub and Club": null,
- "Threat Informant": null,
- "Tiger Eye Studios": null,
- "Todd Savoie": null,
- "Top Art Media": null,
- "Tophat Security": null,
- "TotalView": null,
- "Touch N' Go Systems Inc.": null,
- "Trunk Creative": null,
- "Tundra Technologies": null,
- "Tuuq Drilling LLC.": null,
- "Twiz'd Genetics Technology Network": null,
- "UAA Robotics": null,
- "UKG": null,
- "UP Frame": null,
- "US App Solutions": null,
- "Umnye resheniia": null,
- "Unleash Granite": null,
- "Unlock the Power of AI Tools Your Ultimate Resource Hub": null,
- "VMC Designs": null,
- "Valley Business Machines": null,
- "Valley Records Management LLC.": null,
- "VarPro": null,
- "VerifyLab": null,
- "Vicinity Group LLC.": null,
- "Viraledemo": null,
- "Vista Defense": null,
- "WILLIAM A BARNES": null,
- "WOEHLER AARON": null,
- "WSS Hosts": null,
- "Warweb Designs": 7400000,
- "Wave Financial": null,
- "Weather Data by Zip Code": null,
- "Web Alaska": null,
- "Web Toolkit": null,
- "Web wadih": null,
- "WebSiteManagers": 52000000,
- "WebSmith International": null,
- "WebbRes": null,
- "Webmusher Studio": null,
- "Website Alaska": null,
- "Webthings Solutions": null,
- "Wellspring Data": null,
- "Weston Technology Solutions": 98000,
- "White Boxx Studios": null,
- "Wilford Mynah": null,
- "Windwood Marketing": null,
- "Wolters Kluwer": 5400000000,
- "Wood River Federal": null,
- "Xiologix": 5500000,
- "Xola": 4500000,
- "Yuit": 3800000,
- "Z Squared Studio": null,
- "Zemper Codes": null,
- "Zengage Design": null,
- "Zillion Labs": null,
- "a. SMS Pro": 8000000,
- "eDocsAlaska": 26400000,
- "eWorX": null,
- "iHSOS iHealthCare Software & Office Solutions": null,
- "neXus Data Solutions": null,
- "www.777-Host": null
- },
- "Arizona": {
- "A 2 Z dot ORG": 15400000,
- "A B Hazelton Design": 20900000,
- "A Mix of Pixels": 26300000,
- "ADP Roseland": 16900000000,
- "ARCTEV TECHNOLOGY": 15700000,
- "ARM Holdings": null,
- "ASA Solutions": 11800000,
- "ASUS": 19200000000,
- "AWSMCreative": 21200000,
- "AZ PC Success": 18700000,
- "AZWEB": 25000000,
- "Accram": 20900000,
- "Accscient": 10000000,
- "Acronis": null,
- "Acronymics": 12300000,
- "Actual Metrics": 11300000,
- "Adentro": 35000000,
- "Advanced Logic Systems Inc.": 10900000,
- "Advanced Network Management Inc.": 130000000,
- "Adventure UX": 18800000,
- "Affine Tech Systems": 57100000,
- "Affinity Technology": 10500000,
- "Agent Spam": 10400000,
- "Agilysys": null,
- "Akal Tech": 30200000,
- "Akorn Software": 18000000,
- "Aleksandar Cvetkovic": 21000000,
- "Alltech Solutions AZ": 33200000,
- "Altus Group": null,
- "Ambient Weather": null,
- "Andi West Web and IT Consulting": 32600000,
- "AngelTech Creations": 20300000,
- "Apex Creative": 14600000,
- "Apisero": 45000000,
- "App Game Guide": 29200000,
- "Appcelerator": null,
- "Apple Inc.": null,
- "Applied Computer": 18300000,
- "Apps Associates": 96000000,
- "Apt Mobile Solutions": 19200000,
- "Arizona Burn Center": 10000000,
- "Arizona Consulting": 64800000,
- "Arroyo Design": 15400000,
- "Artful Mouse": 37800000,
- "Asaph Design": 15000000,
- "Ashcraft & Associates LLC.": 14300000,
- "Augeo Sales Consulting": 11900000,
- "Avail Company": 4200000,
- "Avani Technology Solutions": 65000000,
- "Avant Communications": 65000000,
- "Avaya LLC.": null,
- "Avesys Computer": 11400000,
- "Avidex": 27000000,
- "Avolve Software": 23100000,
- "Axway Software": null,
- "B2 Software": 18600000,
- "B2Gnow": 11300000,
- "BASELAYER": 540000000,
- "BTEK Software": 19900000,
- "Barb Swartz Design": 33300000,
- "Barney Davey": 18100000,
- "Bc designs": 19000000,
- "Be By You Health Coaching": 60700000,
- "Beachhead Solutions": null,
- "Below Zero Productions": 33200000,
- "BeyondTrust": null,
- "Big Red Rooster": 25900000,
- "Binary Pulse LLC.": 14900000,
- "Bishop Fox": 26500000,
- "BittyWebs": 20900000,
- "Blase Design": 46800000,
- "Bloom Design & Landscape LLC.": 13600000,
- "Blue Spinner": 10400000,
- "Blue Yonder": null,
- "Brainwave GRC": 13000000,
- "BriComp IT Consulting Services": 21800000,
- "Bright Idea Productions": 10000000,
- "BrightTALK": null,
- "Business Integration Group": 10000000,
- "Bva Technology Services": 14700000,
- "CA Technologies": null,
- "CAMWorks": 10700000,
- "CDN Solutions": 11800000,
- "CDW": 23800000000,
- "CGI Direct ATM": 18500000,
- "CLIN1": 18500000,
- "COLAMCO": 35200000,
- "COMPASS NETWORK SOLUTIONS INC.": 18500000,
- "CSP Technologies": 140000000,
- "CTC Software": 25000000,
- "CXT Software": null,
- "Canyon Software LLC.": 24800000,
- "Capable Software": 13900000,
- "Capgemini": null,
- "Caritor Solutions": 75000000,
- "Catchlight Design": 13400000,
- "Cavecreek": 15500000,
- "Centella Consulting": 11900000,
- "Centrilogic": 20000000,
- "Certified Network Consultants LLC.": 28000000,
- "Cetrom": 26000000,
- "Check Point Software Technologies Ltd.": null,
- "Chetu": null,
- "CityWideHost": 26600000,
- "Clairvoyant": 20000000,
- "ClassicSoft": 10000000,
- "ClearDATA": 16500000,
- "Clearnine": 14600000,
- "Clevart": 20200000,
- "Coderiver": 14700000,
- "Coding Algorithms": 18400000,
- "Column5": 20300000,
- "Colyar Technology Solutions": 12100000,
- "Comlink Southwest LLC.": 29300000,
- "Commerce Server Solutions": 15700000,
- "CompuCom": null,
- "CompuFor": 18300000,
- "CompuNet Inc.": 146600000,
- "Computer Accounting Solutions": 39400000,
- "Computer Dimensions": 23800000,
- "Computer Guidance": 37500000,
- "Computerized Business": 15500000,
- "Computershare": null,
- "Computing Insights": 17600000,
- "Condusiv Technologies": null,
- "Consergius": 11600000,
- "Consys": 21100000,
- "ConvergeOne": 1600000000,
- "CoreCodec": 15600000,
- "Corvid Technologies": 23700000,
- "Covid Watch": null,
- "Creative IT Resources": 21900000,
- "Creative Insanity Designs": 30000000,
- "Crosshatch Media": 23600000,
- "CrystalClear Software": 20900000,
- "Cubex LLC.": 11000000,
- "Cut and Paste Design": 34800000,
- "Cyber Patrol": 24800000,
- "CyrusOne": null,
- "D'pace Digital Media": 31100000,
- "DDC-I": null,
- "DTK Austin Styling": 11800000,
- "Dallenbach Art & Design": 34800000,
- "Daoutova Creative": 15800000,
- "Dapper Gentlemen": 18200000,
- "Dar Zarrouk": 22700000,
- "Darktrace Holdings Limited.": null,
- "DataBits Software": 20400000,
- "Datalink Software Consultants": 15600000,
- "Dataprise": 52100000,
- "Dataworks LLC.": 14500000,
- "DaySmart Appointments": 11100000,
- "Dbhq": 15000000,
- "DeWitt Gibson": 11800000,
- "Deena Warner Design": 35400000,
- "Deft": null,
- "Deluxemodern Design": 24200000,
- "Design Dimension": 31500000,
- "Design Strategics": 31500000,
- "DesktopMates": 39400000,
- "DewNet": 31600000,
- "Digital Dogs": 19100000,
- "Digital Realty": 4700000000,
- "Dimension Data": null,
- "Discoverture": 15700000,
- "Domains By Proxy": 120000000,
- "Doxim": 67000000,
- "Dre Taylor": 33200000,
- "Drink Deal Daily": 10000000,
- "Dry Utility Services": 11000000,
- "Dynamic Services International": 24300000,
- "Dysnomia Systems": 10000000,
- "E3 INFORMATION": 11300000,
- "E360": 162400000,
- "EDGE Communication by Design": 34300000,
- "EDGE3 Technologies": 23600000,
- "EMI Software": 10000000,
- "ERGOS": 10000000,
- "EXB Solutions": 21000000,
- "Edgio": null,
- "Edwards Area Comm Corp": 11800000,
- "Ellamint": 34800000,
- "Emily Peak Photography": 22700000,
- "Emolument": null,
- "Engage3": 35000000,
- "Envox": 15000000,
- "Ephibian": 12200000,
- "Eplus": null,
- "Epps Digital Forensics": 11600000,
- "Ergoweb": 32500000,
- "Esper Media": 20000000,
- "Esser Design": 29500000,
- "Eureka Documentation Systems": 30500000,
- "EverView": 280000000,
- "Evercast": null,
- "Ex Libris": 7000000,
- "Executech": 14800000,
- "Expedient": 200000000,
- "FARNHAM DESIGN": 42100000,
- "FOOD-TRAK": 17000000,
- "FastQ Communications": 20100000,
- "Filjan": 17900000,
- "Fin-Tec Service Corporation": 11400000,
- "Fincomm": 21700000,
- "Fionda": 17500000,
- "First Trace": 15600000,
- "Fiserv": 17700000000,
- "Flori Pate Designs": 39400000,
- "Fluentgrid": 150000000,
- "Focus Web Technologies": 22300000,
- "Foradvice": 28100000,
- "FullContour": 35000000,
- "Furnserve": 45800000,
- "Futurex": 9000000,
- "GDB Software": 20000000,
- "GHA Technologies": 78500000,
- "GMP Networks": 15700000,
- "GOGI Software Solutions": 10700000,
- "Gen Digital": 2900000000,
- "Genesistems": 16800000,
- "Gentech Sh.p.k": 28300000,
- "GeoCivix": 19000000,
- "Gistic": 13100000,
- "GitKraken": null,
- "GlobalMeet": 15300000,
- "Globe Infotech": 18900000,
- "GoStats": 10000000,
- "Graphic Fusion Design": 11700000,
- "Gravity Systems": 46800000,
- "GrokTek": 10000000,
- "Grove Street Design Studio": 34800000,
- "Gust Rosenfeld P.l.c. Recruitment": 19100000,
- "HCL Tech": 12000000000,
- "HDSTOR": 26600000,
- "HOBI International": 36200000,
- "Hagen Business Systems": 19500000,
- "Hallmark Global Technologies Inc.": 60600000,
- "Hamel InfoSystems": 10000000,
- "Hanu": 48000000,
- "Harquahala Fire District": 26300000,
- "Health Care System Images of Arizona": 12600000,
- "HealthTrio": 10200000,
- "Hexagon": null,
- "Higher Logic": 59600000,
- "Holly Holt Design": 12000000,
- "Hoopo": null,
- "HostingChoice": 26000000,
- "Hunt Design": 10000000,
- "Hybrid Domains": 13200000,
- "Hybrid IT Services": 14000000,
- "IBM": null,
- "IDISCOVER Global": 10400000,
- "IIUG": null,
- "IONOS": 617800000,
- "IPX Tech Solutions": 15100000,
- "IQzone Inc.": 9700000,
- "IRAK NEW YORK": 32200000,
- "ISOutsource": 12000000,
- "IT Partners": 23000000,
- "Ignite-the-passion": 16100000,
- "Ima 12": 31400000,
- "Image One": 14200000,
- "Imagenet LLC.": 38000000,
- "Improvement Interactive": 21100000,
- "In2itdesigns": 20300000,
- "InEight": 71000000,
- "Informs": 510000000,
- "Infosys": null,
- "Infosys BPM Limited": 38200000,
- "Ingram Micro": null,
- "Inmass": 16100000,
- "Innosoft": 62900000,
- "Innovsafe": 32100000,
- "Inovalon": 749600000,
- "Insight Enterprises": null,
- "Integra Business Systems": 27000000,
- "Integrated Consulting": 35000000,
- "Intellectual Technology Inc.": 10000000,
- "Internap": null,
- "Intertec International": 90000000,
- "Intouch Technology": 10000000,
- "Intuitive Pear": 30600000,
- "Involta": 60000000,
- "J. H. BARNES & ASSOCIATES": 17500000,
- "J.Powell's Creative Solutions": 33100000,
- "JA Creative Co. - Design | Print | Web": 22000000,
- "Jake's Creative Design": 39400000,
- "Jason Loya - Artist": 16200000,
- "JindalX": 184800000,
- "Jumping Cholla": 26600000,
- "K 2 G Computer Consulting": 10900000,
- "K Frank Designs": 10300000,
- "Keap": null,
- "Keith Fimreite": 20100000,
- "Kersey Scott & Associates": 20900000,
- "Kiddoware": null,
- "Kira Scheck.": 14000000,
- "Kirsten Price": 24800000,
- "Kontron": null,
- "Kudelski Group": null,
- "KwikTag": 10000000,
- "Kyle Phan": 10500000,
- "K\u00eanh T\u1eed Vi": 13400000,
- "L3Harris": null,
- "LIONSITES": 14500000,
- "LVA Urban Design Studio": 19300000,
- "LVM Systems": 12000000,
- "Landon Taylor Design Group": 10200000,
- "Landro": 10700000,
- "LaserVault": 10000000,
- "LeaseWeb Netherlands B.V.": 100000000,
- "LeeShanok Network Solutions": 19900000,
- "Level 3 Audiovisual": 27700000,
- "Level 3 Communications": 17500000000,
- "Lexis Nexis": null,
- "Lifespan Technology": 63900000,
- "Lighthouse Switzerland GmbH": 50000000,
- "Liquid Sky Studio": 27100000,
- "LiveSquare Security": 14200000,
- "Locus Logic": 15300000,
- "Look See Studios": 21800000,
- "Lynk Software": 15600000,
- "M And D Signs & Designs": 64700000,
- "M5 Networking LLC.": 14300000,
- "MAGGEY Child Care Management Software": 20600000,
- "MARDON EDP": 26500000,
- "MB Software Consulting Services": 18300000,
- "MCS ReAnsys": 18600000,
- "MJL Microsystems": 18200000,
- "MODAL Design Works": 17900000,
- "MST Solutions": 15700000,
- "Magellan 21": 14800000,
- "Mahonesa De Mahon": 33500000,
- "Main Advantage": 14900000,
- "ManTech International": null,
- "Managed Care Systems": 17900000,
- "Mann Interactive": 23600000,
- "Manthan": null,
- "Menayas": 13800000,
- "Micro Center": null,
- "MicroAge": null,
- "MicroSupport": 11200000,
- "MicroWorks System Solutions": 17500000,
- "MindScripts Technologies Nigdi": 57700000,
- "Mindtree": null,
- "Mirametrics": 16800000,
- "Mobibrick": 44700000,
- "MoiaGroup": 16700000,
- "More Than Stick Figures": 43400000,
- "Moruga": 15000000,
- "Mosaic451": null,
- "Motorola Solutions": null,
- "Mphasis": null,
- "MrGuy": 17900000,
- "My Graphics Guy": 27600000,
- "MyServer Inc.": 29700000,
- "Myriad Services": 17400000,
- "NET'N COM": 11900000,
- "Namecheap": 149000000,
- "NarrativeWave": 10000000,
- "Natalie Bazaar": 14400000,
- "Neale designs": 33800000,
- "NeoPixel Studio": 14400000,
- "Nerds On Site": 11300000,
- "Net Android": 35000000,
- "NetApp": 6500000000,
- "Nettime solutions": null,
- "Nevrona": 27400000,
- "Newtek Technology Solutions": 14300000,
- "NexStep AZ": 10000000,
- "Nexcess LLC.": 25000000,
- "Nextrio": 10500000,
- "Nfina": 15300000,
- "Nlets": 29500000,
- "Noma Technologies": 16900000,
- "Northstar IT Business Solutions": 11300000,
- "Norton": 1300000000,
- "Norton LifeLock": null,
- "NucleusTeq": 15000000,
- "NuzoTech": 48400000,
- "OPC Foundation": 10000000,
- "ORCAS": 15000000,
- "OXYGEN CORP LTD.": 17600000,
- "Object Computing": 42500000,
- "Omniq": 61200000,
- "Online Service Management Software": 10400000,
- "Open Window": 10000000,
- "OpenText": null,
- "Oracle": null,
- "Orion Health": 150000000,
- "OroGraphics": 12700000,
- "Osorio multimedia": 33000000,
- "Owl Labs": null,
- "PALOMEQ DESIGN": 34800000,
- "PCMRP": 50700000,
- "PHXAD": 13800000,
- "PTC Inc.": null,
- "Papago Painting": 21600000,
- "Paper & Pixels Design": 22700000,
- "Paradox Vietnam": 10000000,
- "Parfait Studio": 45500000,
- "Parity Group": 20300000,
- "Partner Systems": 30300000,
- "Party Track": 18600000,
- "Patron Designs": 37400000,
- "Patterson Designs": 26400000,
- "Paycom": null,
- "Pehnava": 63100000,
- "Penguin Designing": 33200000,
- "Penguin Solutions": 65000000,
- "Perfecto by Perforce": 100000000,
- "Permutations": 40000000,
- "Phoenix NAP": 82500000,
- "Phreedom": 11500000,
- "Pillir": null,
- "Pinnacle Cart": 22300000,
- "Pinnacle Technology": 35000000,
- "Pircle": 55600000,
- "Pixel Farmers": 19400000,
- "Plateau Technical Communication": 10800000,
- "Podium Software": 23100000,
- "PowWow Inc.": 25700000,
- "Precision Computing Arts": 11000000,
- "ProVantage Software": 17300000,
- "Profile Software": null,
- "Progent": 13200000,
- "Projector PSA": null,
- "Proven IT": 60900000,
- "PruTech": 43000000,
- "Q Ware CMMS": 75000000,
- "Q1 Technologies": 12300000,
- "QCM Technologies": 21800000,
- "Quality America": 11900000,
- "Quality Technology Services": null,
- "Quilters Market": 20000000,
- "R B Balch & Associates": 16100000,
- "RWA Graphics": 23800000,
- "Rachel Kim": 21100000,
- "Randen TruckingInc": 15700000,
- "Red Horse Creative": 50700000,
- "Redtail Technology": 26100000,
- "Remedy Creative": 20500000,
- "Reonomy": 18300000,
- "Reputation": 18500000,
- "Reynolds Logistics Corporation": 23700000,
- "Robin Locke Monda": 35200000,
- "RoboVu": 30500000,
- "Rockwell Automation Inc.": null,
- "SAP": 33500000000,
- "SAS - DACH": null,
- "SCAN TOOLS": 14100000,
- "SEDONA'S FINEST INNS": 35400000,
- "SHI International Corp.": null,
- "SOFTWARE QUALITY CENTER": 10000000,
- "SRA International": null,
- "STAND 8": 10600000,
- "STAT Computer Services": 14500000,
- "Safari Micro": 16800000,
- "Safe Communications": 10000000,
- "Sage Group": 2100000000,
- "Sage Logix": 29000000,
- "Sai Software Solutions": 25000000,
- "Scott Sanders": 12300000,
- "Sean M Shields": 28400000,
- "Seidor": 650000000,
- "Sendoso": 42000000,
- "Seventh Street Media": 13000000,
- "ShocksDesign\u54c1\u724c\u5546\u6a19\u8a2d\u8a08": 11000000,
- "Shop Nutritional": 31900000,
- "ShortURL": 28400000,
- "Shotzoom": 24700000,
- "Silent Partner Technologies": 10000000,
- "Siri InfoSolutions": 17500000,
- "SiteLock": 48700000,
- "Smalltimer": 23800000,
- "Smart Data Center": 10000000,
- "Software Development": 27300000,
- "Software Verify": 15000000,
- "SoftwareOne": null,
- "Sogeti": null,
- "Solution54": 10000000,
- "Sona Data Systems": 19600000,
- "Sonatafy": 35000000,
- "Sonora Software": 35000000,
- "SpectraSoft": 14900000,
- "Spireon": 251600000,
- "Sqasquared": 25000000,
- "Sterling Computers": 740000000,
- "Stevens Screen Printing": 22600000,
- "Stoke Interactive": 18100000,
- "StorageRep": 25500000,
- "Stratus Technologies": null,
- "Stream Data Centers": 13600000,
- "Structured": 15000000,
- "Stylups": 33500000,
- "Sublime IT Solutions": 18400000,
- "Sunquest Information Systems": null,
- "Sure IT": 28500000,
- "SurveyMethods": 10200000,
- "Swdoit": 12400000,
- "Symbotic": 30000000,
- "Synel Americas": 25000000,
- "SystemTrends": 39700000,
- "Systems Technology Group": 20600000,
- "TAE Technologies": 21000000,
- "TASC Solutions": 34700000,
- "TBConsulting": 25000000,
- "TEKSystems Global Services Pvt. Ltd.": 7000000000,
- "TIBCO Software": null,
- "TS Communications Associates": 17300000,
- "Tabs3": 12200000,
- "Taetion": 14000000,
- "Teal Tec": 15900000,
- "Tech Data": null,
- "Tech Gird": 16200000,
- "Tech-ease": 32500000,
- "Technology Plus": 15200000,
- "Texrah Designs": 20800000,
- "Tgd Host": 30800000,
- "Thailand Real Estate": 26400000,
- "That Girl Design": 42000000,
- "The Placemag": 33100000,
- "The Rogers Group Inc.": 17800000,
- "The Single Point": 19200000,
- "Theagrellgroup": 16600000,
- "Thin Client Computing": 11600000,
- "Thomas Song Photography": 32100000,
- "TicketManager": 23400000,
- "Times Business Solutions": 28400000,
- "Title21": 11500000,
- "To Di for Design": 11000000,
- "Tomko Design": 18800000,
- "Trace3 LLC.": 1400000000,
- "Treo Design": 24400000,
- "Trimble": null,
- "Trinodus S.l.": 25700000,
- "TrueNorth ITG": 42000000,
- "TruePoint Solutions": 49900000,
- "Trumpet Inc.": 10600000,
- "TurboImageHost": 10000000,
- "Tyler Technologies": null,
- "UTC RETAIL": 10000000,
- "Unwired Revolution": 11100000,
- "Uvation": 62900000,
- "Uzyteczni": 27700000,
- "Valeo Networks": 12100000,
- "Validation": 34200000,
- "Van Smyth Design": 32600000,
- "Vanzoft": 37400000,
- "Varonis": 457600000,
- "Veeam": null,
- "Vensoft Inc.": 16900000,
- "Veras Retail": 10000000,
- "Verint Systems": 899800000,
- "Vertiv": null,
- "Vigilant Technologies": 10700000,
- "VinNOW": 45200000,
- "Vincit": null,
- "VirMedice": 28100000,
- "Vires Media": 13800000,
- "Vision 7 Software": 22100000,
- "Vista Systems": 23000000,
- "Visualize Multimedia": 21700000,
- "Volteo": 12600000,
- "Vtl Consulting": 25000000,
- "WE ARE WILLIAM": 17600000,
- "WEST GRAPHIC DESIGN": 11800000,
- "WP & Associates": 25700000,
- "WWDL": 19600000,
- "Water Weaver": 25000000,
- "Web Design Ledger": 10000000,
- "Web-Horizons Holdings": 17800000,
- "WebPulse": 32500000,
- "Webgility": 15000000,
- "Weidenhammer": 42000000,
- "Well Hello World": 12900000,
- "Wengert": 19400000,
- "Whos.amung": 10000000,
- "Wipro Limited": null,
- "Wireless Trolling Pro": 12100000,
- "Wolters Kluwer": 5400000000,
- "Word of Life Christian Center": 27300000,
- "Workflow By Design": 21800000,
- "Workiva": 468700000,
- "XADEK DESIGN": 26500000,
- "Xcase -": 37500000,
- "Z-Micro Technologies LLC.": 20300000,
- "Zenefits": null,
- "Zensar": null,
- "Zuma Group": 57800000,
- "etoddtDesign": 10000000,
- "ez CPAP LLC.": 18900000,
- "iBit Soft": 11000000,
- "iFancy Media Design Limited.": 26400000,
- "iPage": null,
- "iTRACS": 39400000,
- "kTech Systems": 12700000,
- "nMetric": 19400000,
- "nderson Information Systems LLC.": 10800000
- },
- "Arkansas": {
- "2 Ultra Media": null,
- "3B Cyber": null,
- "479 DESIGN": 25600000,
- "640Square": null,
- "8020Tech": null,
- "A Fearless Venture": 4700000,
- "A Phillips Design": null,
- "AHLSORT": 6000000,
- "AHNI TECH": 13100000,
- "AJB Consulting": null,
- "ANVIRA": null,
- "AS Creative Design": null,
- "ATLAS Technology Group": 6000000,
- "AV SYSTEMS OF ARKANSAS": null,
- "AVI Inc.": null,
- "AVNation TV": null,
- "AccountabilIT": 2000000,
- "Acuit": 2400000,
- "Acxiom Impact": 4200000,
- "Adams Brown Technology Specialists": null,
- "Adroit Worldwide Media": 4000000,
- "Advanced Solutions Inc. - ASI": 6500000,
- "Affirma": null,
- "Alamo Software Inc.": null,
- "Allied Technology Group": 5600000,
- "Alloy OS": null,
- "AllurEssens": null,
- "Almany Designs": 3800000,
- "Americana Corporation": 6000000,
- "Americanbread": null,
- "Amy's Amazing Share Group": null,
- "Anastasia Ad Design": 4100000,
- "AnsenCreative": 3700000,
- "Apex Systems": null,
- "Apollo IT Services": null,
- "Appily App Builder": null,
- "Apple Inc.": null,
- "Apprentice Information Systems": 4000000,
- "Apptegy": 4500000,
- "ArcBest Technologies": 37500000,
- "Archivists' Toolkit": null,
- "Ariamoons": 658000,
- "Arkansas Software Development": null,
- "Arkansas Trading and Loan Inc.": 3800000,
- "Artistik Salon & Sensory Savvy": 435000,
- "Astonished Man Design": 197000,
- "Auben": null,
- "Avani Technology Solutions": 65000000,
- "Avaya LLC.": null,
- "AvidXchange": null,
- "Avionics & Systems Integration Group": null,
- "AzureVantage Hosting": null,
- "BASE2 Software": null,
- "BPSNA": null,
- "BROADY Company": null,
- "BYTEnostic Solutions": null,
- "Barracuda MSP": 19500000,
- "Baugh Chapel Baptist Church -- Austin Arkansas": 17100000,
- "Beckham Squared": null,
- "Bee Culture": 5500000,
- "Believe Branding": null,
- "Big-Bot Design": 3900000,
- "BitPivot": 6300000,
- "Bitech Consulting. Ltd.": null,
- "BizTranSights": null,
- "Black Diamond Apps": null,
- "Black Label Creatives": null,
- "Black Oak Analytics": 6000000,
- "Bloggers Deals": null,
- "Blue Simplific": null,
- "Blue Sky Dogs": null,
- "BlueFish Systems": 7800000,
- "Bluegrass Media": null,
- "Bodark Design": null,
- "BondDotAi": 2400000,
- "Boots 2 Cyber": null,
- "Bpoecell": null,
- "Brian Eller Graphics": 22700000,
- "Brittany Phillips Design": null,
- "Browning Design & Photography": null,
- "Bulk Logic": null,
- "Business Network Solutions": 4600000,
- "Butram": null,
- "By Holguin": null,
- "Byars Hickey & Hall Pllc": 10700000,
- "Byrd Haus": null,
- "CA Technologies": null,
- "CALNOX": null,
- "CAT Squared": 7500000,
- "CCR Computer Consulting & Repair Inc.": 24700000,
- "CEROVO d.o.o.o": null,
- "CHR Solutions": 70000000,
- "CISA": null,
- "CLOUDWHALE": 22200000,
- "CLPSS": null,
- "CNK Computer Service": 14000000,
- "CS2AI": null,
- "CTC Software": 25000000,
- "CUSTOM WEB DESIGN by Jim E. Martin": null,
- "CW Creative Media": null,
- "CYBERSURGE": null,
- "Cahaba Sign & Design": 5900000,
- "Cambria": 28300000,
- "CaterTrax": 15000000,
- "Cedar Technology": null,
- "Cedarview IT Solutions": null,
- "Celerit": null,
- "Central Research": 14500000,
- "Centricity Technologies": 1400000,
- "Chargerback": 2400000,
- "CheckPoint ID": 2100000,
- "Cherwell Software LLC.": null,
- "Choice Solutions": 1900000,
- "Chris Ragan Design": 5800000,
- "Chyve": null,
- "Cignal Tech Solutions": null,
- "Cimco Inc.": null,
- "Citadel Systems": null,
- "Clanwarz": 314000,
- "Cloud Carpenter": 9800000,
- "Cloud Centric Inc.": null,
- "Cloud Media llc.": null,
- "Cloudyboss": 12000000,
- "Code Authority": 3600000,
- "Code Junkiez": null,
- "Code Kindly": null,
- "CodePalma": null,
- "Collab Design": null,
- "Complete Computer Solutions": null,
- "Compsys Inc Bentonville AR": 5400000,
- "Comptek": null,
- "Compunet": 6000000,
- "Condusiv Technologies": null,
- "Confiz": 90000000,
- "Conformance CyberSecurity": null,
- "Continental Computers": null,
- "Continental Utility Solutions": null,
- "CopiedCode": null,
- "Cossey Web Solutions": null,
- "Covalent Designs": null,
- "Cpdigital": 17500000,
- "Creations 4 You": null,
- "Critical Edge": 4000000,
- "CrossFleet": 6000000,
- "Crying Eagle Resort": null,
- "Cumulus Technologies Group": 2400000,
- "Custer Creative": null,
- "Custom A Design": 7000000,
- "CyberSpyder": 244000,
- "Cybersecurity Insiders": null,
- "Cyderes": 300000000,
- "Cypress Technology Group": null,
- "DEPROCESS": null,
- "DSWi": 6000000,
- "Dark Web Security": null,
- "Data by Dobbs": null,
- "DataCom Inc.": null,
- "DataPath": 42700000,
- "DataScout": 12400000,
- "Datacom is": null,
- "Datalink Networks": 2200000,
- "Datametrikacg": null,
- "Dataretrieval": 29800000,
- "Davis IT Solutions": 789000,
- "Dependibot Solutions": null,
- "DesignMatters LLC.": 314000,
- "Designs By A.J.": 9300000,
- "DevOps Live": 189000,
- "Devstruggle": null,
- "Digital Forensics Team": 4100000,
- "Digitalmation": null,
- "Diversified": 458900000,
- "DracoArts Studio": null,
- "Drake White": null,
- "Drupal Soul": 418000,
- "Dsci": 16100000,
- "Duch Computer Consulting": null,
- "DueTrade": null,
- "Dunnhumby": null,
- "Dynamic Domains": 67600000,
- "E2open": null,
- "EK Solutions Group": null,
- "EMH Graphics": null,
- "ER Assist": 4700000,
- "ETHAN O'LESKE": null,
- "EVT Corp": 5000000,
- "Ed4U": 10000000,
- "Edafio": null,
- "Elyxor": 6000000,
- "Emertech": null,
- "EngwIT": 7900000,
- "Enscape": 1200000,
- "Ensono": 650000000,
- "Envision Technologies": null,
- "Evenly Odd Inc.": null,
- "Everything 4 Business": null,
- "Evolve Here": null,
- "Ewys perfomances Lc": null,
- "Excel Nation": 20700000,
- "FI Works": null,
- "FIS": null,
- "FX Design Group": 13500000,
- "Federal Soft Systems": 7000000,
- "Field Agent company": null,
- "Figurattez": null,
- "Fintstudios": null,
- "Fiserv": 17700000000,
- "Fisher Metrical": null,
- "Flatter Files": 207000,
- "Flora Luna Creative": null,
- "Floranext": 4400000,
- "Forecasting A B.": null,
- "Formada Creative": null,
- "Frontier Computer Solutions": null,
- "GA Graphics": null,
- "GOFF Concepts": 2400000,
- "Gainwell Technologies": 1400000000,
- "Gartman": 10000000,
- "GeoConex": 1400000,
- "Gerwitz LLC.": 128000,
- "Go Bizrk": null,
- "Graphic-Worx": 11700000,
- "Graphics Unique": 8200000,
- "Grayce Holcomb Creative": null,
- "Green Lit Hosting": null,
- "Guardian Technology Consultants": null,
- "Gulfwebs": null,
- "Guyer Enterprises": 2700000,
- "HEBCO": 11100000,
- "HIVERY": 7500000,
- "Hammer Solutions": null,
- "Hardwyre": 10000000,
- "Hashku": null,
- "Haven Managed Services": null,
- "Healthstar Physicians Of Hot Springs Pllc": 18200000,
- "Heartland Business Systems": 147300000,
- "Heather Link Designs": null,
- "Henderson Backhoe": null,
- "Hewlett Packard Enterprise": null,
- "High Impact Analytics": 1100000,
- "Hoax Fish": null,
- "Hobart Design Group": 33600000,
- "Horvath Software Solutions": null,
- "Hot Rock Hosting": null,
- "Hotwire Design": 1400000,
- "Hudson Technology Professionals": 19100000,
- "I Am Technology": null,
- "IBM": null,
- "IConnectIT": null,
- "IDM Inc.": 15700000,
- "IFWORLD": null,
- "IMAGEADICTION": 4900000,
- "IMC Technology": 19100000,
- "IPCGPS": null,
- "ISP Canopus": null,
- "IT Savior": null,
- "Idea Creative Services": null,
- "Idestini": 5600000,
- "Imaginnovate": 6400000,
- "Imperial Graphics": null,
- "Incite Local Mobile": 369000,
- "Infiniti Systems": 2400000,
- "Infosys": null,
- "Inkopolis Design Service": 6300000,
- "Innomatiq": null,
- "InnovaSIM": null,
- "Innovative Systems Inc.": 551000,
- "Insight Enterprises": null,
- "Integrated Axis Group": 6000000,
- "Integrated Retail": 10000000,
- "Inteliblue": 6700000,
- "InterNext": 2400000,
- "Invincible Tech Systems": null,
- "JB Fresh Organics": null,
- "JVZOO AARIGO LIVE": null,
- "Jackrabbit": 1700000,
- "Jmz Software LLC.": 605000,
- "Jones Girls 3-Cs LLC.": null,
- "Josh's Web Services": null,
- "Just Your Type Branding": null,
- "JusticeTrax": 5000000,
- "KCI Web Design": 26500000,
- "KEG Media": 3100000,
- "Kalmer Solutions": null,
- "Kara Darling Creative": null,
- "Kate Wells Design & Photography": null,
- "Keetechgroup": 2400000,
- "Keltech Designs": null,
- "Keystone Design": 6300000,
- "Kind Creative Co.": null,
- "Kirkham IronTech": null,
- "Kitestring": 14900000,
- "KlinTech": null,
- "KonBriefing": null,
- "Kristen the Designer": null,
- "Kudzu": null,
- "LBC Studio": null,
- "LOFTY LABS LLC.": 1100000,
- "LaGrone Design": null,
- "Lakeside Technology Services": null,
- "Laravel": 5000000,
- "Len OToole": null,
- "Level 3 Communications": 17500000000,
- "Lexamica": null,
- "Liberty Informatics": null,
- "Libertycom": null,
- "Lightning Hosting": null,
- "Ligohi": null,
- "Lindsey Wilbanks": null,
- "Lingo Technologies": null,
- "Link Light Networking": null,
- "LinkWell Solutions": null,
- "Little Rock Media": 280000,
- "Little Wing": null,
- "LiveRamp": null,
- "Local Data": null,
- "Logarc": null,
- "Loopy Gypsy": null,
- "Lunamark": 1400000,
- "M3 Incorporated": null,
- "MAKE Design Company": null,
- "MAKIRA": null,
- "MANATT WEB": null,
- "MAT Action": null,
- "MORETECH": null,
- "MRI Contract Intelligence": 6400000,
- "Machine Mobile": null,
- "Mainstream Technologies": 3500000,
- "MarDii Dsign": null,
- "Marri Desing": null,
- "Martin Fed": 16900000,
- "Marty Smith Art": null,
- "Mass Vector": null,
- "Matchstick Studio": null,
- "Matters in Motion": 1400000,
- "Medicare Island": 6000000,
- "Meem Health": null,
- "Mentor Technologies - Technology Solutions": 549000,
- "Merchant Labs": null,
- "Metova": 10500000,
- "MicDrop Design Studio": null,
- "Micro Focus": null,
- "Midian Digital Creations": null,
- "Millcreek Software": 629000,
- "Miller Cyber Technologies": null,
- "Miovision": 35000000,
- "Mmhmm": 2100000,
- "Momint": null,
- "Mookstr": 5600000,
- "Moonlight Developments": null,
- "Morgan Horton": null,
- "Movista": 15900000,
- "MyVR": 3100000,
- "NFONICS Solutions": 2200000,
- "NGramdata": null,
- "NOF Technologies": 24100000,
- "NTS Innovations": null,
- "NanoWatt Design": 10000000,
- "Nanomech": 4400000,
- "National Cash Register": null,
- "National Soft Systems": null,
- "Natural Insight": null,
- "Nephos Integration": null,
- "Net Engine": null,
- "NetGain Technologies": 47600000,
- "NetTech IT Support": 1800000,
- "Netsmart": 526000000,
- "New Spark Strategy": null,
- "Nile Tech Innovations": null,
- "NimStudios": null,
- "Niner Consulting": null,
- "Noel Kalmus": null,
- "NonProfit Rate": null,
- "Notably Known Marketing And Design": null,
- "NstefNet": null,
- "OZARK GLOBAL Trade Services": null,
- "Old Fort Software": 861000,
- "Optimal Software Development Group": 3000000,
- "Oracle": null,
- "Orange 42": 1400000,
- "Ordenx": null,
- "Other World Designs and Poodles": null,
- "Outstanding Sites": null,
- "Oxley Art Graphic Design": null,
- "Ozark Analytics": null,
- "Ozark Technology": null,
- "Ozone Techno Services": null,
- "PACid": 366000,
- "PCSI": 4600000,
- "PEAK Solutions - a Technology Solutions Provider": 2400000,
- "PINC AI": null,
- "PINNACLE BUSINESS SYSTEMS": 26000000,
- "PRITNA": null,
- "PXL Business": null,
- "Palumbo.design": null,
- "Patti Worden": null,
- "Pearson-Kelly Technology": 13400000,
- "Perfectly Imperfect Digital": null,
- "Pinnacle IT": 42400000,
- "Pivital": null,
- "Pivotal Concept": 1400000,
- "Pixel Perfect Creative": 4400000,
- "Poly Adaptive": 2400000,
- "PopLabSec": null,
- "Post Noctem": null,
- "Prairie Sky Guide Service": null,
- "Pratum": 11200000,
- "Praxis 8": null,
- "PredictHQ": 2000000,
- "Preferred Office Technologies": 3500000,
- "Present Solutions": null,
- "Presidio": 4400000,
- "Prime Software Solutions": null,
- "ProVision Virtual Solutions": null,
- "Protech Solutions Inc.": 10500000,
- "Pure Heart Studios": 3800000,
- "QMS Digital Design": null,
- "QO BOX": null,
- "QUBICS": null,
- "Qbox": 3000000,
- "Quadrivium": 22300000,
- "Quality Computer Consultants Inc.": null,
- "Quality Global Services Inc.": null,
- "QuikTek": null,
- "Quintergy": 124000,
- "Quintero Solutions": null,
- "R&R Solutions": 75000000,
- "R10 Development": null,
- "R10 Development LLC.": null,
- "RAMP iTech": null,
- "RB Graphic Design": null,
- "RECLAMATION HOUSE": null,
- "RED RIVER LOG CABINS INCORPORATED": null,
- "REPL Group Part of Accenture": 42900000,
- "RICEFW TECH": 464000,
- "Radix Soft": null,
- "RazorCity IT": null,
- "Razorrock": null,
- "Reason Creations": null,
- "Red Letter Solutions": null,
- "RedFoxDS": null,
- "RedLeif Systems": null,
- "Redamancy365": null,
- "Redbeard Creative": null,
- "Reformable": null,
- "Refuge Graphics & Design": null,
- "Registrar . Register your .LTD": 9800000,
- "Reineck Design": null,
- "Relativity Inc.": 10000000,
- "Rental Information Systems": null,
- "ResMan": 16500000,
- "RevUnit": 15200000,
- "Richardson Roofing": 24600000,
- "RoadManTech": null,
- "Robert Lane Design": 7000000,
- "Rock Two Associates": 9700000,
- "Rocket Software": null,
- "Rome Technologies Inc.": 19400000,
- "RoyceFamily Computer Services": 10500000,
- "SBSC": 1800000,
- "SEO for Growth": null,
- "SISCO DESIGN LLC.": null,
- "SMS digital": null,
- "SYS": null,
- "Salesforce in the South": null,
- "SambaPOS": null,
- "Sara Landis - Freelance Marketing Communications": null,
- "Scaled Agile DevOps": null,
- "Scoreboard Buzz": null,
- "ScriptWorks": null,
- "Sebastian Tech Solutions": 7000000,
- "Segra Software Solutions": null,
- "Sequretek": 3500000,
- "Serrabellum": null,
- "ServiceNow Italy": null,
- "Sharefaith": 10000000,
- "Sharp Solutions": null,
- "Sharp Tek Minds": null,
- "ShiftWizard": 29000000,
- "ShilohNEXT": 3100000,
- "Silicon Valley Web Design & Hosting": null,
- "Silverlake Design Studio": null,
- "Simplex Software": null,
- "SimpliField": 3100000,
- "Simplient": null,
- "Softron": 7000000,
- "Softwyre": null,
- "Soltel Tech Network": 6900000,
- "SpartanTec": 6900000,
- "Spinnsol": null,
- "Sprintiva": null,
- "StabiliServers": 2700000,
- "Standard Computer": 1400000,
- "Stefany Web Design": null,
- "Stopwatch": 5600000,
- "Strategic Companies": 7500000,
- "Strato Security": null,
- "Streamline Business Software": null,
- "Stronghold Data": 24800000,
- "Studio 707 Graphic Designs": null,
- "Sugars International": 17500000,
- "Sunday Creative": null,
- "System Visions Web Services": null,
- "Systemtec Information Services & Technology": null,
- "TEKSystems Global Services Pvt. Ltd.": 7000000000,
- "TMarieB DESIGN STUDIO": null,
- "Talent Techies": null,
- "TeamLogic Inc.": 7200000,
- "Techy Junkie": null,
- "Tejas Technologies": 6000000,
- "Tek Trendz": 17000000,
- "Telaid Industries": 80000000,
- "Terrell Rohrbach Photography": null,
- "The 20 MSP": 3300000,
- "The 20.": null,
- "The Accent Group": 346000,
- "The Advanced System Technologies Group": 20000000,
- "The Bausinger Group": 1400000,
- "The Computer Station": null,
- "The Design Verse": null,
- "The Easy Organization": null,
- "The Kendle Touch": null,
- "The MVP Connection": null,
- "The RT Creative": null,
- "The Sage Mages": null,
- "The Sparks Solution": 3700000,
- "The Web Design Crew": null,
- "The Write House": null,
- "Think VSS": 80000000,
- "TierPoint": 405000000,
- "TimesPlusDot": null,
- "Tome Brand Studio": null,
- "Tredence": null,
- "Triple C - Design Agency": null,
- "Trout Media": null,
- "TruPhysics": null,
- "TrueView Cloud Auditing": null,
- "Tuggles Investment Realty And Auction Company": null,
- "Twb Services": 36700000,
- "Tyler Technologies": null,
- "UNITED SOFT SOLUTIONS": null,
- "US-Data Recovery Fort Smith": null,
- "Uncaged Creative": 22700000,
- "Unified Technology Solutions": null,
- "Uniforce Technologies": null,
- "Unique Logic Solutions": null,
- "Uplink Networks": 1400000,
- "V Point Solutions LLC.": null,
- "VACCARO LUMBER COMPANY": null,
- "VITEC": 10600000,
- "ValuePro": null,
- "VanLoon Writing & Design": null,
- "VanderNet": null,
- "Ventress Technologies": null,
- "Venyo App": null,
- "Verto Tech Solutions": null,
- "Vidi Design & Marketing": null,
- "Vijay Software": 19000000,
- "Virtualizor": null,
- "Vision Data Spaces": null,
- "WLR Creative": null,
- "WP Shifu": null,
- "Wave Financial": null,
- "WeDiscoverData": null,
- "Web & Paper Design Co.": null,
- "WebSite Warehouse": 10000000,
- "Webcraft UK.": null,
- "Websani": null,
- "Websbird": null,
- "What If Creative": 8000000,
- "White Rock Technologies": 2400000,
- "WhyteSpyder": 10500000,
- "Wicked Analytics": null,
- "Wifidesigns": null,
- "Wipro Limited": null,
- "Wired Technology Partners": 6000000,
- "Wolters Kluwer": 5400000000,
- "WorkSmart LLC.": null,
- "WrightCore": 8800000,
- "X Legio Partners": null,
- "Xtreme Locator": 5000000,
- "Yaz The Brand": 6100000,
- "Yoder\u2019s Country Cupboard": null,
- "YogiProductions": null,
- "Zapshark Technologies": 26200000,
- "Zencanna": null,
- "a.i. solutions Inc.": 3000000,
- "eMobileCampus": null,
- "eSSETS": 4500000,
- "eUnify": 60400000,
- "iCAT Solutions Inc.": 3900000,
- "iTJames - Web Design & Web Development": null,
- "skippITs": null,
- "validoc. Your digital partner.": null,
- "wpXPRESS": null,
- "za Bungo": null
- },
- "California": {
- "3D International": 4000000000,
- "AAHA": 24000000,
- "ABC Supply": 12100000000,
- "ABS Capital": 65000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "ASUS": 19200000000,
- "AVL List": 2100000000,
- "Abc.xyz": 282100000000,
- "Abcam": 425500000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Acuity Brands": 4000000000,
- "Adventist Health": 4700000000,
- "Aera Energy": 2000000000,
- "Aeroflot": 6600000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air India": 1600000000,
- "Alhambra Unified School District": 31000000,
- "Alkemy X": 32700000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpine Electronics": 2500000000,
- "Altair Engineering": 552600000,
- "AmTrust Financial": 4700000000,
- "American Bookbinders Museum": 13000000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American Greetings": 2000000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anastasia Beverly Hills": 370000000,
- "Andes Technology": 29300000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Applied Materials": 25200000000,
- "Aramex": 1600000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "August Capital": 20000000,
- "Australian Laboratory Services": 6600000000,
- "Avanade": 3900000,
- "Axalta": 4100000000,
- "BBDO": 1800000000,
- "BGW Systems Inc.": 51100000,
- "BTS Group": 232600000,
- "Balyasny Asset Management": 110000000,
- "Barrick": 11900000000,
- "Barry Callebaut": 8400000000,
- "Beach Cities Transit": 10000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berry Corporation bry": 698700000,
- "Bessemer Trust": 682100000,
- "Bird Kingdom": 14200000,
- "Bitmovin": 30000000,
- "BlackBerry": 705000000,
- "Blue California Company": 10000000,
- "Blue Coast Records": 35500000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Brambles": 3300000000,
- "Breather Products Inc.": 15000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "CACI": 6200000000,
- "CCCERA": 33100000,
- "CDW": 23800000000,
- "CH Media": 25000000,
- "CHINT Electric": 11400000000,
- "CRH": 31000000000,
- "CSL": 1900000000,
- "California Water Service Group": 816500000,
- "Callaway Golf": 3700000000,
- "CapitaLand": 1700000000,
- "Capital Impact": 10000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Clariant Ltd.": 5500000000,
- "Clinkle": 35000000,
- "Cobalt Technologies": 21100000,
- "CodeGear": 150000000,
- "Columbia Elementary School District": 16700000,
- "Conduent Business Services LLC.": 3900000000,
- "Conrad N Hilton Foundation": 44600000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "CooperCompanies": 3200000000,
- "CooperVision": 2200000000,
- "CoreCivic": 1900000000,
- "Corning Glass Works": 14500000000,
- "Corteva": 17100000000,
- "County of Santa Clara": 16100000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Creditcall": 100000000,
- "CrossBar Website": 18000000,
- "Cub Cadet": 350000000,
- "Cue Health": 529200000,
- "CyberPowerPC Help Center": 52800000,
- "Cyient Inc.": 575100000,
- "DENSO CORPORATION.": 43500000000,
- "DJI": 2900000000,
- "DKNY": 643000000,
- "DLA": 3600000000,
- "DXC Technology Company": 14800000000,
- "Dahua Technology": 4000000000,
- "Daiwa Securities Group": 6300000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Diageo": 18800000000,
- "Dignity Health": 14200000000,
- "Dimensional Fund Advisors": 200000000,
- "Diodes": 128800000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Dnata": 1500000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Done Dusted": 28700000,
- "Doosan Group": 10500000000,
- "Downey Unified School District": 17400000,
- "Drop": 26400000,
- "Dropbox": 2300000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "EPAM": 4500000000,
- "ESCADA MAINLINE S S.": 122400000,
- "EarnIn": 46800000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edwards Lifesciences": 5400000000,
- "Egnater amps": 45100000,
- "Emerald Cloud Lab": 19300000,
- "Endress": 750000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Etihad Airways": 2700000000,
- "Evolution Fresh": 21700000,
- "Evonik Industries AG": 19700000000,
- "FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmers Business Network": 60000000,
- "Farmers Insurance Group": 8000000000,
- "Fedrigoni": 1800000000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrovial": 7800000000,
- "FilmLight": 22000000,
- "Fincantieri - Cantieri Navali Italiani S.p.A.": 4600000000,
- "Firestone Walker": 29500000,
- "First National Bank": 1300000000,
- "Fiserv": 17700000000,
- "Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Fremont Bank": 269900000,
- "Frette": 55700000,
- "Frontpage Mag": 10000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GILLIG": 475000000,
- "GMAC Ally Financial": 8400000000,
- "Gandi": 42300000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gaumont": 236300000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Getac": 887700000,
- "GiftCards": 78500000,
- "Gilead": 27500000000,
- "Godinez Fundamental High School": 20900000,
- "Graff": 340200000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Groupe SEB": 8800000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guthy-Renker": 350000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Hapoalim Bank": 5100000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hensel Phelps": 5700000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Horizon Therapeutics": 3700000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "IDG Ventures": 15200000,
- "IMG": 375000000,
- "Indaba Music": 14500000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Instructure": 461100000,
- "Integra Technologies": 27300000,
- "Intrepid Travel": 10000000,
- "Intuit": 13300000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Ishida Co. Ltd.": 1200000000,
- "Italian Wikipedia": 91200000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Jewish Partisan Educational Foundation": 10300000,
- "Jinko Solar": 6300000000,
- "John Burroughs High School": 10600000,
- "Jones Day": 2400000000,
- "Journeys company": 8600000,
- "June Oven": 28500000,
- "K&N Engineering": 138700000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Kareo": 71400000,
- "Katerra": 1800000000,
- "Keller Rohrback": 39800000,
- "Kemet Electronics Services": 1600000000,
- "Kennedys Law": 284000000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kmart Corporation": 6000000000,
- "Kongsberg Gruppen": 3200000000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L'Observatoire International": 21700000,
- "L-Acoustics": 202500000,
- "LA Cleantech Incubator": 235000000,
- "LANDBANK": 9000000,
- "LEGO": 8100000000,
- "LGT Bank AG": 2300000000,
- "Ladenburg Thalmann": 1500000000,
- "Lambda Legal": 11600000,
- "Larsen & Toubro Infotech": 2100000000,
- "Last Chance for Animals": 16300000,
- "LeTip International": 12700000,
- "Leaf Group": 231000000,
- "Legend Films Inc.": 11100000,
- "Leggett & Platt": 5300000000,
- "Leica Camera": 429400000,
- "Leidos Holdings Inc.": 13700000000,
- "Lenovo": 66000000000,
- "Leonard Green": 20600000,
- "Leoni Special Cables": 5400000000,
- "Level 3 Communications": 17500000000,
- "Lexar": 456000000,
- "Lexmark": 3600000000,
- "Liberty Mutual": 48200000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Life360": 16100000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Liveops": 80000000,
- "Livestream": 26000000,
- "Llaollao": 12000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Luciano Barbera": 51000000,
- "Lux Capital": 14100000,
- "MODERN TIMES GROUP": 586400000,
- "MOL company": 4900000000,
- "MSA Safety": 1500000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "MUFG": 50700000000,
- "MYKITA": 50000000,
- "Magellan GPS": 26600000,
- "Magnite": 145200000,
- "Mandarin Oriental": 1100000000,
- "Mapp Biopharmaceutical": 10600000,
- "Marlow Industries": 1500000000,
- "Mass Appeal": 22200000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Mechanix Wear Canada Inc.": 12900000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "MegaVision": 100000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Mettler-toledo Inc.": 3900000000,
- "Micron Technology": 30800000000,
- "Mirati": 11800000,
- "Mixografia": 10000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Moloco": 110000000,
- "Monotype": 304000000,
- "Mood Media": 475100000,
- "Morrison Foerster": 1200000000,
- "Mothers2mothers": 10200000,
- "Mountain House High School": 18800000,
- "Move": 473000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NCSOFT": 2200000000,
- "NETSOL Technologies": 56500000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "Nady Systems Inc.": 12000000,
- "Napster": 113000000,
- "National Oilwell Varco": 7200000000,
- "National Steel and Shipbuilding Company": 480000000,
- "Natsume Company": 27400000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "New Harbinger": 14200000,
- "Nikon": 4900000000,
- "Niman Ranch": 65000000,
- "Nium": 14500000,
- "Nobel Biocare": 890100000,
- "Novo Nordisk": 22900000000,
- "ON Semi": 8300000000,
- "OXXO": 150000000,
- "Obihai Technology": 12000000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Omega": 163000000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
- "Orange Business": 9600000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "PACE Anti-Piracy": 20300000,
- "PCB Bank": 105100000,
- "Pacific Dental Services": 1400000000,
- "Pacific Gas": 21600000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Panda Restaurant Group": 3500000000,
- "Paramount": 32300000000,
- "Parker Hannifin": 15900000000,
- "Penzeys": 26000000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "Phillips Edison": 496900000,
- "Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planetary": 12000000,
- "Plum Market Inc.": 26000000,
- "Porsche France SAS.": 34300000000,
- "Premiere Networks Inc.": 30000000,
- "Principal Financial Group": 13900000000,
- "Printronix": 850000000,
- "ProFlowers": 209100000,
- "Proscan": 4000000000,
- "Publicis Sapient": 2700000000,
- "QLogic": 455900000,
- "Qantas": 6300000000,
- "Qatalyst": 100000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "RTL": 7500000000,
- "Rabobank": 11700000000,
- "Radio Flyer": 26100000,
- "RealD": 150000000,
- "Redwood Materials": 35000000,
- "Respawn Entertainment LLC.": 23400000,
- "Rickenbacker": 35000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Rohde & Schwarz": 2600000000,
- "Rolls-Royce": 15300000000,
- "S&P Global": 8200000000,
- "SAP": 33500000000,
- "SC Johnson": 11000000000,
- "SCA Health": 2000000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMBC Group": 40800000,
- "SMUHSD": 21200000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Diego Country Club": 10600000,
- "Santa Barbara Police Department": 17600000,
- "Sapphire Ventures": 78100000,
- "Sauce Labs": 70000000,
- "Save the Children USA": 835900000,
- "Scality": 69000000,
- "Schlumberger Limited": 27800000000,
- "Scotiabank": 14900000,
- "Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Select Medical": 6300000000,
- "Shakey's": 112000000,
- "Sharp Global": 20900000000,
- "Sharp HealthCare": 3800000000,
- "Shiseido": 8200000000,
- "Shopkick": 40000000,
- "Sierra Ventures": 11400000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Skyhook": 17000000,
- "SmartDrive Systems": 120000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
- "Social Capital": 10400000,
- "Sodexo": 22300000000,
- "Solace": 65000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spanx LLC.": 400000000,
- "Stanadyne": 23300000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stitch Fix": 2100000000,
- "Student Transportation of America": 637200000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunCore Corporation": 43400000,
- "Supermicro": 3800000000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
- "Symbotic": 30000000,
- "Syngenta": 16700000000,
- "Synnex": 57900000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "THQ Nordic": 261900000,
- "TP-Link": 2200000000,
- "TVA": 13000000000,
- "Taiwan Daily": 13700000,
- "Tandem Diabetes": 790700000,
- "Tatung": 10000000,
- "Taylor Farms": 2800000000,
- "Technetics Group": 100000000,
- "Teck Resources": 12600000000,
- "Teneo": 400000000,
- "Tessenderlo": 2400000000,
- "Tetra Pak": 11100000000,
- "Thales Group": 18000000000,
- "The Art of Shaving": 45000000,
- "The Hillman Group - Corporate Headquarters": 1500000000,
- "The Legal Aid": 18000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Save Mart Companies": 4800000000,
- "The Scoular Company": 4000000000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thermaltake": 112500000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Toys for Bob Inc.": 21800000,
- "Tracerco": 47500000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "True Digital Security": 14000000,
- "Turtle Beach": 248700000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "USCIS": 15700000,
- "UberConference": 15000000,
- "Ultimate Ears": 47500000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "Upromise Inc.": 10700000,
- "Upwork": 618300000,
- "VCA Inc.": 1800000000,
- "VMware": 13200000000,
- "Valens": 70700000,
- "Vallarta Supermarkets": 24400000,
- "Vantiva": 3500000000,
- "Verifone": 1800000000,
- "Verint Systems": 899800000,
- "Vestas": 15500000000,
- "Victoria's Secret": 5400000000,
- "Videndum": 25000000,
- "Viking Cruises": 1300000000,
- "Virgin Music": 39000000,
- "Virtium": 50000000,
- "Virtusa": 1300000000,
- "Visy": 5000000000,
- "Voya Financial": 6900000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Wahoo's": 69100000,
- "Western Digital": 13000000000,
- "Whalerock Industries": 25000000,
- "Whip Media": 10000000,
- "WinCo Foods": 7700000000,
- "Wine Institute California": 10000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woopra": 11000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "Zoetis Inc.": 8000000000,
- "Zynga": 2900000000,
- "eBay Inc.": 21700000,
- "iHire": 15900000,
- "inDrive": 242000000
- },
- "Colorado": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAHA": 24000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "AC Golden": 10000000,
- "ACE Cash Express": 600000000,
- "ACI Worldwide": 1400000000,
- "ADB": 450000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AIME": 23400000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ARA": 289500000,
- "Accion U.S. Network": 13900000,
- "Ace Hardware": 7800000000,
- "Ack-Mac": 30000000,
- "Active Interest Media": 200000000,
- "Acuity Brands": 4000000000,
- "Adams 14": 58500000,
- "Advantage Rent a Car": 150000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Furniture Warehouse": 648400000,
- "American General Media": 41900000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Apartment List": 37300000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Asian Pacific Development Center": 42700000,
- "Aspen Institute For Behavior": 152100000,
- "At Home store": 1700000000,
- "Ateme S.A.": 91800000,
- "Atlantic Power": 271200000,
- "Atria Senior Living": 778500000,
- "Aurora Organic Dairy": 30100000,
- "Australian Laboratory Services": 6600000000,
- "AvalonBay Communities": 2000000000,
- "Avvo": 29900000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Beckhoff": 1100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berry Corporation bry": 698700000,
- "Bessemer Trust": 682100000,
- "Bio-Rad": 2800000000,
- "Bitmovin": 30000000,
- "Black Bear Diner": 18700000,
- "Bloomfire": 11000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Borro": 20000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Brain Injury Association of America": 10000000,
- "Breckenridge Brewery": 30000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "Burton Snowboards": 400000000,
- "CACI": 6200000000,
- "CBA The Association for Christian Retail": 10000000,
- "CNN Films": 1500000000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Can-Am Off-Road": 6300000000,
- "Candlewick": 15000000,
- "Carroll County Public Schools": 378500000,
- "Cascade Investment Group": 13200000,
- "Cellular Sales": 1700000000,
- "Cerner": 5800000000,
- "Cherry Creek School District": 15000000,
- "Chicago Swordplay Guild": 17600000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clovis Oncology": 145000000,
- "College Hunks Hauling Junk": 100000000,
- "Comfort Dental": 17800000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Core-Mark": 17200000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Craftsy": 26900000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crispin Porter Bogusky": 175000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "D. E. Shaw": 625000000,
- "DFCU Financial": 179900000,
- "DISA": 120000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Davis Graham & Stubbs": 38200000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Deacom LLC an ECI Software Solutions Company": 50000000,
- "Deep Foods": 58000000,
- "Deepwatch": 120000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Denbury": 1700000000,
- "Denver International Airport": 591800000,
- "Department of Energy": 190000000,
- "Dexter Industries": 11400000,
- "Dignity Health": 14200000000,
- "DirecTV Stream": 33300000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "E Trade": 2900000000,
- "EDA": 10000000,
- "EDP Renovaveis": 2100000000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
- "Ecube Labs": 55000000,
- "Edelman Financial Engines": 80000000,
- "Elavon": 550000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elevance Health": 153200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Estes Rockets": 30600000,
- "Ethan Allen": 845000000,
- "Exadel": 194000000,
- "Express Arrow": 12300000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmer Brothers": 469200000,
- "Fathom Events": 80000000,
- "Federal Mine Safety and Health Review Commission": 11300000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fivetran": 100000000,
- "Flexport": 3300000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Formstack": 38000000,
- "Fort Collins Coloradoan": 12000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franco-Nevada": 1300000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "FreeWave": 26600000,
- "Frette": 55700000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G4S Global": 9400000000,
- "Galileo Camps": 21000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gates Family Foundation": 17900000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gibson Brands Inc.": 366600000,
- "Giordanos": 175000000,
- "Glaston Oyj Abp": 206900000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Gogo Inflight Internet": 370100000,
- "Golden Minerals": 28200000,
- "Golder Associates Inc.": 1000000000,
- "Good Sam Club": 19800000,
- "Goodman Global Group Inc.": 1900000000,
- "Graebel": 1500000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Greeley West High School": 24600000,
- "Greeley-Weld County Airport": 13200000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haggar": 300000000,
- "Hall Render": 10700000,
- "Halliburton": 19000000000,
- "Hanmi Bank": 258600000,
- "Harbor Freight": 5000000000,
- "Harkins": 13700000,
- "Haworth": 2300000000,
- "Hawthorne Books": 17200000,
- "Haynes and Boone": 15800000,
- "Hazelden Betty Ford": 186300000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Helmerich & Payne": 1400000000,
- "Hemlock Society": 10000000,
- "Hensel Phelps": 5700000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Honeybee Robotics Spacecraft Mechanisms Corporation": 27000000,
- "Hudson": 2000000000,
- "Hudson River Trading": 35000000,
- "Hunter Douglas Group": 4600000000,
- "Husk Power Systems": 29000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "ILLFONIC Inc.": 23900000,
- "Independent Energy Partners": 19500000,
- "Indiana Public Retirement System": 6200000,
- "Ingredion Incorporated": 7200000000,
- "IntelePeer": 112500000,
- "Inventors": 10000000,
- "Iofina": 29700000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "JUWI": 57500000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jive Software": 250000000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jord International": 97000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan Financial": 12000000,
- "Kemet Electronics Services": 1600000000,
- "Kendall Hunt": 37400000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "L. G. Everist": 10000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Landmark Worldwide": 29100000,
- "Lazy Dog Restaurants": 210000000,
- "LeTip International": 12700000,
- "Leadville Colorado and Southern Railroad": 21900000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Loro Piana": 842800000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Main Event": 678000000,
- "MarkWest": 2400000000,
- "Marlow Industries": 1500000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Meade": 16100000,
- "MediaNews Group": 75100000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Moleskine": 199100000,
- "Molson Coors": 8100000000,
- "Molycorp Inc.": 460400000,
- "Money Management": 30000000,
- "Morrison Foerster": 1200000000,
- "Mountain States Legal Foundation": 15700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NABET-CWA": 13400000,
- "NETSOL Technologies": 56500000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "National Association of Biology Teachers": 20500000,
- "National Christian Foundation": 27800000,
- "National Day of Prayer": 29000000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
- "Nest Seekers": 551700000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "New World Interactive": 50000000,
- "Nikola Corporation": 44000000,
- "Niman Ranch": 65000000,
- "Niner bicycle company": 11000000,
- "NuStar Energy": 3200000000,
- "ON24": 196300000,
- "Odell Brewing": 32000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ogilvy": 387500000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "OtterBox": 650000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "PPLD": 10000000,
- "PRINOTH AG": 76000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Packers Plus": 240000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Partners Group": 2900000000,
- "Patagonia": 1000000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "Perella Weinberg Partners": 631500000,
- "Perkins&Will": 670300000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Publicis Sapient": 2700000000,
- "QAD Allocation": 12000000,
- "Quaker Houghton": 1900000000,
- "Quantum Alliance": 402600000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "RTD - Denver": 1100000000,
- "Rad Power Bikes": 138000000,
- "Rapid City Regional Airport": 23100000,
- "Raven Rotorcraft": 32500000,
- "RealD": 150000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Riverside Partners": 14400000,
- "Rock River Arms": 50200000,
- "Rocky Mountaineer": 185000000,
- "Rosetta Stone": 182700000,
- "Royal Gold": 566700000,
- "S&P Global": 8200000000,
- "SAF Tehnika": 10700000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SM Energy Company": 3500000000,
- "SPACE MICRO INC.": 26000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sapiens": 382000000,
- "Schmitt Music": 20600000,
- "Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shea Properties": 293900000,
- "Shoe Carnival": 1300000000,
- "Shopkick": 40000000,
- "Sibers Group Ltd.": 35000000,
- "Signarama": 55000000,
- "Signifyd": 150000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "SilverDoor Apartments": 35000000,
- "Simplot": 6000000000,
- "Slack": 1100000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snowboard Magazine": 38100000,
- "Snowflake": 1900000000,
- "Sodexo": 22300000000,
- "Sonata Software": 853800000,
- "Sonoco": 6500000000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spire Global": 72900000,
- "Splunk": 3300000000,
- "Sprague Energy": 4300000000,
- "St. Vrain Valley Schools": 25900000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stewart & Stevenson": 367000000,
- "Stoney River": 10300000,
- "Student Transportation of America": 637200000,
- "Suit Supply France SARL": 350000000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sunnova": 346700000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
- "T. Rowe Price": 6500000000,
- "TGS": 716600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Taft Stettinius & Hollister": 100000000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Telluride Regional Airport": 21200000,
- "Telluride School": 19600000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Gores Group": 272000000,
- "The Hillman Group - Corporate Headquarters": 1500000000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "The United Services Automobile Association": 35600000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Trace3 LLC.": 1400000000,
- "TransAlta": 2100000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Mint": 3800000000,
- "University of Colorado Law School": 4200000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VITAC": 63300000,
- "VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Vermilion Energy": 1600000000,
- "Vestas": 15500000000,
- "Viasat": 2800000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Video Professor": 75000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "Volcom": 380000000,
- "Von Roll UK Ltd.": 340700000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "WeatherTech": 500000000,
- "Webroot Inc.": 250000000,
- "Western Sugar": 250000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Dwarf": 17500000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "Wilshire": 100000000,
- "Wilson Sonsini": 860000000,
- "Winchell's Donut House": 16900000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Workiva": 468700000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Wounded Warrior Project": 15300000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Yellow Pages Directory": 15100000,
- "Yext": 399900000,
- "Zumiez": 1100000000
- },
- "Connecticut": {
- "3D International": 4000000000,
- "A&E Television Networks LLC.": 3800000000,
- "A2A Simulations": 8400000000,
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ANSAC": 6000000,
- "AR-15": 6000000,
- "ARRL": 9800000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
- "ASPCA": 260200000,
- "ASSIST Scholars": 30400000,
- "AXA IM": 850000000,
- "AXA XL": 7700000000,
- "Abcam": 425500000,
- "Ace Hardware": 7800000000,
- "Achievement First": 5500000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Alamo Rent a Car": 2900000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "American Academy of Sleep Medicine": 24300000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Trucking Associations": 180900000,
- "Amway North America": 9500000000,
- "ApiJect": 6000000,
- "Apostles of the Sacred Heart of Jesus": 26500000,
- "Archdiocese of Hartford": 28000000,
- "Ardene": 38400000,
- "Armoloy": 49100000,
- "Aspetuck Land": 5100000,
- "At Home store": 1700000000,
- "Athletic Brewing": 70000000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
- "Autocall": 6000000,
- "AvalonBay Communities": 2000000000,
- "BAUSCH STROEBEL": 190000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BUILDON": 20300000,
- "BYK Additives & Instruments": 1200000000,
- "Baird investment bank": 3400000000,
- "Balyasny Asset Management": 110000000,
- "Bankrate": 434200000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baystate Health": 2500000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bessemer Trust": 682100000,
- "Best Buddies": 3600000,
- "BlackLine": 522900000,
- "Blick Art Materials": 245200000,
- "Blue Owl Capital": 991600000,
- "Bluemercury": 918000000,
- "Bob's Stores": 1000000,
- "Bobby's Burger Palace": 10300000,
- "Bonchon": 60000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brynwood Partners": 15500000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CNA": 9100000000,
- "CT Mirror": 4500000,
- "CURTISS-WRIGHT": 2500000000,
- "Caffe Nero": 1500000000,
- "Cannondale": 300000000,
- "Capital Power": 1900000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Central New England Railroad": 18100000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Choate": 5900000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cimbali": 5000000,
- "Circle Commerce": 44200000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Commission on Accreditation for Law Enforcement Agencies": 4100000,
- "Concord's Colonial Inn": 7000000,
- "Conduent Business Services LLC.": 3900000000,
- "Connecticut Audubon": 6200000,
- "Connecticut Food Bank": 69800000,
- "Constellis": 1000000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Control Module": 15000000,
- "Convenience": 12800000,
- "Cooper Robertson": 4100000,
- "CooperCompanies": 3200000000,
- "Coppertone": 8000000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Cumulus Media": 946800000,
- "Current Publishing": 6000000,
- "Cyient Inc.": 575100000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DKNY": 643000000,
- "DRW": 485000000,
- "Dandelion Energy": 4000000,
- "Daniel Hand High School": 6300000,
- "Danske Commodities": 972400000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "Diageo": 18800000000,
- "Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Display Social": 1500000,
- "Distressed Children & Infants International DCI": 18700000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "Doosan Group": 10500000000,
- "Duchess restaurant": 3200000,
- "Dynata": 380300000,
- "D\u2019Angelos": 2400000,
- "E-The Environmental Magazine": 3900000,
- "ECI": 48000000,
- "EMAC website": 5700000,
- "EPAM": 4500000000,
- "EPI": 10000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Eldridge Industries": 8000000,
- "Electric Boat Co.": 10000000000,
- "Element Materials Technology Group Limited": 975000000,
- "Embrace Home Loans": 180600000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Essex Savings": 25000000,
- "Ethan Allen": 845000000,
- "Eucerin": 8000000,
- "Eversource": 11700000000,
- "Evonik Industries AG": 19700000000,
- "FactSet": 1500000000,
- "Fairfield Public Schools": 16600000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Ferrellgas": 2100000000,
- "First Reserve Management L.P.": 17800000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "Fiserv": 17700000000,
- "Forrester": 525100000,
- "Fortress Investment Group": 1200000000,
- "Fox Network": 3000000000,
- "Foxon Park": 31400000,
- "Franklin Electric": 2000000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "FuelCell Energy": 10000000,
- "G&L Guitars": 8000000,
- "GI Partners": 14000000,
- "GP Strategies": 482000000,
- "Gaffney Bennett & Associates": 10900000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gen Re": 9500000000,
- "Gesell Institute of Child Development": 6800000,
- "Gillette Ridge Golf Club": 3700000,
- "Global Infrastructure Partners": 1000000000,
- "Golden Krust": 6100000,
- "Gooseberry Patch": 14100000,
- "Graff": 340200000,
- "GreenPal": 1200000,
- "Greenwich Art Society School of Visual Art": 27600000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H.I.G. Capital": 7000000000,
- "HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hammacher": 180000000,
- "Harbor Freight": 5000000000,
- "HarpWeek": 5000000,
- "Harris Beach": 34600000,
- "Hartford Public Schools": 5500000,
- "Haworth": 2300000000,
- "Haynes International": 490500000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hispanic Federation": 3300000,
- "Hobby Lobby": 5300000000,
- "Homesense": 4100000,
- "Hoosier Tire": 181300000,
- "Hopkins School": 10200000,
- "Housatonicbsa": 22800000,
- "Hunger and Homelessness": 6100000,
- "Hustle Gang": 2800000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IPTP Networks": 22700000,
- "IQOR": 1000000000,
- "Innocence Project Inc.": 10400000,
- "Insurify": 9300000,
- "Integrative Oncology": 4500000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "International Universities Press": 27300000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "JAX": 484600000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jordan's": 1500000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "K2 Advisors": 20000000,
- "KBJ Architects": 19300000,
- "KONE": 10900000000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kent School": 5800000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Knights of Columbus": 10400000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kongsberg Gruppen": 3200000000,
- "Krell Industries": 7000000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "L&T technology Services": 746800000,
- "L.G. Balfour Company": 290000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Lag Guitars": 2400000,
- "Laserperformance": 70000000,
- "Lauralton Hall": 237200000,
- "Leaf Trading Cards": 2400000,
- "Lectra": 188800000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Love146": 4300000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Made Thought": 5000000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Marvelwood": 8700000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Media Storm LLC.": 145400000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Microsemi": 1700000000,
- "Middletown Press": 20000000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Mister Softee": 7000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Morley Companies": 19600000,
- "Motiva Enterprises": 20800000000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBC Sports": 120000000,
- "NBT Bank": 30100000,
- "NEWSru": 17100000,
- "NIDEC": 15600000000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Conference for Community and Justice": 4200000,
- "Naugatuck Railroad": 24200000,
- "Nest Seekers": 551700000,
- "New Canaan High School": 10300000,
- "New England Air Museum": 2400000,
- "News 12 Networks": 10000000,
- "Nikola Corporation": 44000000,
- "Nobel Biocare": 890100000,
- "North Sails": 27500000,
- "North Street Capital LP.": 10000000,
- "Norwalk Public Schools": 3800000,
- "Norwich Bulletin": 35800000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "Ooma": 179000000,
- "Orange County Choppers": 12400000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "Oxxford Clothes": 25000000,
- "P. C. Richard & Son": 15100000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Packaging Corporation of America": 8400000000,
- "Palisades Hudson": 2300000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phibro": 19100000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pomfret School": 6200000,
- "Portmeirion Group": 143000000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reed's": 52100000,
- "Relax The Back": 11600000,
- "RenaissanceRe": 4400000000,
- "Rigibore": 19700000,
- "Ritani": 71500000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robertson Airport": 10000000,
- "Rosetta Stone": 182700000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SAP": 33500000000,
- "SEIU Local 1199NE": 10700000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SJW Corp": 580000000,
- "SKECHERS USA Inc.": 6900000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "San Antonio Shoemakers": 4700000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Santander Bank": 14800000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Save the Children USA": 835900000,
- "Savills North America": 6000000,
- "Scan-Optics": 19200000,
- "Schaeffler Group": 15600000000,
- "SeaQuest aquariums": 2400000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Severud Associates Consulting Engineers P.C.": 7000000,
- "Signarama": 55000000,
- "Sikorsky CU": 15600000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snuggle": 5300000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Sports Mogul": 12500000,
- "Sprague Energy": 4300000000,
- "St. Luke's School": 11300000,
- "Stag Arms LLC.": 16000000,
- "Stanadyne": 23300000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Stericycle": 3600000000,
- "Stew Leonard's": 277000000,
- "Stewart & Stevenson": 367000000,
- "Stokke\u00ae": 90000000,
- "Stone Point": 6900000,
- "Strategic Value Partners": 53400000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "Sulzer": 13800000000,
- "Sun Life": 17200000000,
- "Suominen": 491400000,
- "Sylvan Learning": 12600000,
- "Synapse Group": 35000000,
- "TRUMPF": 10200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tauck": 155000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Hartford": 21400000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The New Journal": 6200000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Org company": 2000000,
- "The Parking Spot": 46000000,
- "The Travelers Companies, Inc.": 31000000000,
- "The Williams School": 3200000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilcon": 23900000,
- "Timbercreek Capital": 80000000,
- "Tomasso Group": 6000000,
- "Torrid": 1300000000,
- "Torrington School District": 19200000,
- "TradeWinds": 5900000,
- "TransRe": 500000000,
- "Translators without Borders": 6300000,
- "Trillium Brewing": 6400000,
- "Tropicana": 8000000,
- "Tuff Shed Incorporated": 300000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Games Systems": 6000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UGG": 35000000,
- "UIL Holdings Corporation": 1500000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "UPS Capital": 50000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "Unite For Sight": 2600000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Upstate New York Collegiate Hockey League UNYCHL": 1500000,
- "Upstream Online": 35000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Virtusa": 1300000000,
- "Vista Outdoor": 3200000000,
- "Volkswagen": 51300000000,
- "Voya Financial": 6900000000,
- "W. R. Berkley Corporation": 7000000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "WWE": 1300000000,
- "Walker Digital": 20900000,
- "Wampanoag Country Club": 27200000,
- "Warby Parker": 573100000,
- "Wassaic Project": 6100000,
- "West Hartford Public Schools": 9200000,
- "Westover School": 37300000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "Wilbraham & Monson Academy": 22100000,
- "Windels Marx": 19500000,
- "Windham Airport": 23600000,
- "Wisk": 7900000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xtralis": 34500000,
- "Yale Daily News": 4900000,
- "Zest": 9900000,
- "Zumiez": 1100000000
- },
- "Delaware": {
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ASI Central": 15000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acorn Energy": 6800000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "American Birding": 4800000,
- "American Eagle Outfitters": 5000000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Arotech": 91300000,
- "Art of Living": 6000000,
- "Ashland Inc.": 2400000000,
- "Atlanta Bread": 5200000,
- "Autocall": 6000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "Barnes & Thornburg": 575500000,
- "Barrett": 2800000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Bessemer Trust": 682100000,
- "Block & Leviton": 18900000,
- "Bonchon": 60000000,
- "Brookdale": 2700000000,
- "Brooklyn Bicycle": 3400000,
- "Bruster's Ice Cream": 2100000,
- "Carvel": 5700000,
- "Catchafire": 6000000,
- "Cellular Sales": 1700000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chesapeake Utilities": 653800000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Constant Contact": 361900000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Coppola Foods": 4400000,
- "Core & Main Inc.": 6100000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DJO Global": 1200000000,
- "DXC Technology Company": 14800000000,
- "Davey Tree": 1500000000,
- "Delaware River and Bay Authority": 10100000,
- "Discover": 12000000000,
- "DistantJ ob": 8000000,
- "Dogfish": 40000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eastern Pennsylvania Rugby Football Union Geographical Union": 108000,
- "Eastman": 10600000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Einstein Healthcare Network": 1200000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "FMC Indonesia": 5400000000,
- "Faegre Drinker": 512900000,
- "Fiksu": 22700000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Forman Mills": 296800000,
- "Fractal Design": 39500000,
- "Franklin Resources Inc.": 2900000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fulton Financial Corporation": 1000000000,
- "G3 Telecom": 3400000,
- "GardaWorld": 3800000000,
- "Gay and Lesbian Activists Alliance": 26900000,
- "Goodman Global Group Inc.": 1900000000,
- "Grant & Eisenhofer": 8600000,
- "Greenberg Traurig": 2000000000,
- "Gripeo": 4000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "High's": 6400000,
- "Hobby Lobby": 5300000000,
- "Homesense": 4100000,
- "Houzz": 500000000,
- "IHEARTMEDIA": 3800000000,
- "ILC Dover": 145000000,
- "IONOS": 617800000,
- "ITILITE TECHNOLOGIES PRIVATE LIMITED": 2900000,
- "Ink Global": 14700000,
- "Inspiration Mars Foundation": 1300000,
- "InterDigital": 481300000,
- "Interesting Engineering": 1000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "JEI Learning": 1300000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jerry's Artarama": 932000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Juan de la Cuesta Hispanic Monographs": 10100000,
- "Junttan": 24000000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Keepgo": 1000000,
- "Kennedys Law": 284000000,
- "Kilwins": 50000000,
- "Knowland": 20000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "LabWare": 150000000,
- "Law Debenture Corporation": 148000000,
- "Let Freedom Ring": 5800000,
- "Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Lokring": 12000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MFJ Enterprises": 7800000,
- "Main Event": 678000000,
- "McCormick Taylor": 83000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Michael-Bruno": 10200000,
- "Middle States Commission on Higher Education": 12500000,
- "Moe's Southwest Grill": 295500000,
- "Mount Pleasant High School": 3800000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "NEMO Equipment": 8000000,
- "New Castle Presbytery": 7200000,
- "Nielsen Norman Group": 2000000,
- "Oak Knoll": 3000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Paxful": 6900000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepco - An Exelon Company": 4700000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Port City Java": 3400000,
- "PrimoHoagies": 2600000,
- "Principal Financial Group": 13900000000,
- "Printify": 10000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reid Collins & Tsai": 6200000,
- "Relax The Back": 11600000,
- "Resideo": 6300000000,
- "Riverside Partners": 14400000,
- "RobotLAB": 190000,
- "Ronald McDonald House Charities": 59500000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Same Sky": 3500000,
- "Santander Bank": 14800000,
- "Sarku Japan": 310000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Serviam Girls Academy": 4900000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Showcase": 2000000,
- "Signarama": 55000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Southern Glazer's": 21000000000,
- "Stanley Steemer": 9500000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tatnall": 2200000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Tenorshare": 4400000,
- "Thales Group": 18000000000,
- "The Fresh Grocer": 2800000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "Things Remembered": 300000000,
- "TigerDirect": 200000000,
- "Toptal": 200000000,
- "Torrid": 1300000000,
- "Tucson Weekly": 8700000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "V2 Cloud": 6000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "Waffle House": 1300000000,
- "West Pharmaceutical Services": 2900000000,
- "Westfield Insurance": 2000000000,
- "Wilson Sonsini": 860000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Photography Organisation": 201000,
- "XPO Logistics": 7700000000,
- "YET2": 20000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zumiez": 1100000000,
- "flyADVANCED": 6300000,
- "iFarm": 2500000
- },
- "Florida": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AACSB": 22500000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "ATR": 1800000000,
- "Academy Sports Outdoors": 6600000000,
- "Accusoft": 27000000,
- "Acron Group": 2400000000,
- "ActionQuest": 15800000,
- "Advantage Rent a Car": 150000000,
- "Aerolineas Argentinas": 1500000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Airlines Reporting Corporation": 150000000,
- "Akerman": 879000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "America's Swimming Pool": 54600000,
- "American Association of Clinical Endocrinologists": 23400000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Momentum Bank": 25000000,
- "American Trucking Associations": 180900000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Aperture": 11800000,
- "Aqua-Aston Hospitality": 43000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Associated Grocers of Florida": 800000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlantic": 59500000,
- "Atria Senior Living": 778500000,
- "Aurubis": 14300000000,
- "Avvo": 29900000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BAUSCH STROEBEL": 190000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "BLU PRODUCTS": 345000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baldwin Middle-Senior High School": 1500000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Bartow Airport": 37300000,
- "Baseball Factory": 10000000,
- "Bebe Stores": 186500000,
- "Beckman Coulter": 2100000000,
- "BeenVerified": 14500000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Bessemer Trust": 682100000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Boeing Store": 13900000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
- "Brookfield Global Integrated Solutions": 17500000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CACI": 6200000000,
- "CDP": 23100000,
- "CDW": 23800000000,
- "CRH": 31000000000,
- "CSL": 1900000000,
- "CVidya": 12100000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Centene": 144500000000,
- "Certegy Payment Solutions LLC.": 25000000,
- "Cheap flights": 135800000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Cloudflare": 894100000,
- "College Hunks Hauling Junk": 100000000,
- "Community Christian Academy": 12100000,
- "Community Christian School": 30000000,
- "Community Coffee": 245000000,
- "Concord entertainment company": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Corgan": 191300000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
- "Cyren": 30000000,
- "DEX Imaging": 284000000,
- "DFCU Financial": 179900000,
- "DISA": 120000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DZS": 373600000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "DirecTV LA": 22400000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Disney Institute": 33800000,
- "Dnata": 1500000000,
- "Dogfish": 40000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "Douglas": 3800000000,
- "Dual Electronics": 11900000,
- "E Trade": 2900000000,
- "ECN Capital Corporation": 256600000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastern Association for the Surgery of Trauma": 34200000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Elavon": 550000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elnec": 12200000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evite": 44400000,
- "Exact Data": 20000000,
- "FLY Leasing": 334400000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmer Brothers": 469200000,
- "Fashionphile": 57200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrari": 8700000000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Choice": 10000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "Flexport": 3300000000,
- "FlixBus": 450000000,
- "Florida Department of Management Services": 150000000,
- "FormFactor": 747900000,
- "Fortinet": 4100000000,
- "Foundever": 4400000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "FreeWave": 26600000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "GP Strategies": 482000000,
- "Gama Aviation": 246800000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "Gas South": 460000000,
- "GasBuddy": 13900000,
- "Gaumard": 120000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Gilead": 27500000000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hallandale Beach FL": 10000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Hazelden Betty Ford": 186300000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Herbalife": 5200000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holland America Line": 300000000,
- "Holy Name of Jesus": 27800000,
- "HomeLight": 300000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "I Squared Capital LLC.": 35000000,
- "I-ON Digital": 35000000,
- "I.U.P.A": 10000000,
- "IBO": 32300000,
- "IMG": 375000000,
- "INSIGHTEC": 72000000,
- "IQOR": 1000000000,
- "Imagine Schools": 14500000,
- "Institute for Supply Management": 35100000,
- "IntelePeer": 112500000,
- "Intetics": 28500000,
- "Iron Mountain Incorporated": 5000000000,
- "Italian Wikipedia": 91200000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jinko Solar": 6300000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Jumeirah": 2000000000,
- "K9s For Warriors": 12900000,
- "KBR": 7700000000,
- "KKR & Co. Inc.": 7400000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Kaplan Financial": 12000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knight Foundation": 12800000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kroll": 3000000000,
- "LAC Group": 60000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LOCMAN": 17500000,
- "La Madeleine": 35200000,
- "Lake County Sheriff's Office": 37900000,
- "Laureate Education": 1200000000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lenovo": 66000000000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Look company": 56000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Technik": 4600000000,
- "MBIA": 124000000,
- "MOOYAH": 11700000,
- "Madison Reed": 100000000,
- "MagicJack": 101000000,
- "Main Event": 678000000,
- "Malaysia Airlines": 461900000,
- "Mandarin Oriental": 1100000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Marriott Vacations Worldwide": 4700000000,
- "Mayo Clinic": 14000000000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Mettler-toledo Inc.": 3900000000,
- "Miami Police": 29000000,
- "Miami-Opa Locka Executive Airport": 10100000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "ModMed": 250000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Mosaic": 7200000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NFTE": 11400000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "National Resilience": 500000000,
- "National Steel and Shipbuilding Company": 480000000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "NextEra Energy Partners": 1200000000,
- "Nikola Corporation": 44000000,
- "ORBCOMM": 255200000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Orange Business": 9600000000,
- "Orange County Choppers": 12400000,
- "Orlando Weekly": 32800000,
- "Outback Steakhouse": 2000000000,
- "Outokumpu": 9800000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "Pacific Dental Services": 1400000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Park 'N Fly": 48500000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "Paulist": 18800000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Pepperidge Farm": 28200000,
- "Perkins&Will": 670300000,
- "Phillips Edison": 496900000,
- "Phocas": 50000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pipedrive": 85000000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Pollo Tropical": 600000000,
- "Porsche France SAS.": 34300000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Proskauer": 38000000,
- "Protective Life": 6700000000,
- "Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "Quanta Services": 17100000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Rad Power Bikes": 138000000,
- "Rainforest Cafe": 10000000,
- "Red Wing Shoes": 700000000,
- "Regal Springs AG": 450500000,
- "Renco Electronics": 28000000,
- "Reputation": 18500000,
- "Rexair": 35000000,
- "Rising Medical Solutions": 26000000,
- "Riverside Health System": 19000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rohde & Schwarz": 2600000000,
- "Ronald McDonald House Charities": 59500000,
- "Roper Technologies": 6200000000,
- "Ryman Hospitality Properties": 1100000000,
- "R\u00f6hlig Logistics": 36500000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SATEL": 46600000,
- "SBA Communications": 2500000000,
- "SGS S.A.": 28000000000,
- "SGTM": 25700000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "STRATEC": 289900000,
- "Saber Interactive": 25000000,
- "Safelite": 2400000000,
- "Safilo": 150000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Samford": 173000000,
- "Santander Bank": 14800000,
- "Sapiens": 382000000,
- "Sawgrass Country Club": 71200000,
- "Scandinavian Tobacco Group": 1200000000,
- "Schmitt Music": 20600000,
- "Seaboard": 11200000000,
- "Seagate Technology": 9400000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Smart Growth America": 10000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snyder's-Lance": 8600000000,
- "SoBe Entertainment": 13300000,
- "Sodexo": 22300000000,
- "SoftServe": 570200000,
- "Solmetric": 19300000,
- "Solomon Partners LP.": 10000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Grocers": 9600000000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spanx LLC.": 400000000,
- "Squire Patton Boggs": 701000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Starr Insurance Companies": 3500000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stride Inc.": 1400000000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Swatch Group": 32000000000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Swire Properties": 14500000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syniverse": 840000000,
- "Synnex": 57900000,
- "TOM FORD": 615000000,
- "Tactical Air Support": 10300000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "TechCrunch": 525000000,
- "Telcel": 2000000000,
- "Telefonica S.A.": 17500000,
- "TelevisaUnivision": 17500000,
- "Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Thales Group": 18000000000,
- "The Hartford": 21400000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Sandspur": 20400000,
- "The Scoular Company": 4000000000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilting Point Media LLC.": 53000000,
- "Time4Learning": 19000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Tree Hill Nature Center": 10900000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Trump Hotels": 75000000,
- "Tupperware Brands Corp": 9900000,
- "Tutor Perini": 10000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UM Motorcycles": 850000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Ultragenyx": 363300000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universa": 14900000,
- "Universal Orlando Resort": 281600000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
- "VMware": 13200000000,
- "VP Records": 50800000,
- "VT M\u00c4K": 100000000,
- "Venus Fashion": 200000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Verifone": 1800000000,
- "Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "VetDepot": 25000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Virtusa": 1300000000,
- "Vistra": 600000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
- "Vuram": 12000000,
- "W. W. Grainger": 15200000000,
- "WP Engine": 200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Western Beef": 220000000,
- "Western Digital": 13000000000,
- "Westfield Insurance": 2000000000,
- "Westminster Christian School": 47800000,
- "Whelen": 500000000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Wilson Sporting Goods": 769700000,
- "Wings Financial": 243000000,
- "Wolters Kluwer": 5400000000,
- "Women In Distress": 10000000,
- "Women's Golf Coaches Association": 20000000,
- "World Golf": 22700000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Zama Group": 14500000,
- "iHire": 15900000
- },
- "Georgia": {
- "3D International": 4000000000,
- "AACSB": 22500000,
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
- "ATF": 1000000000,
- "ATR": 1800000000,
- "AUMUND Fordertechnik GmbH": 15900000,
- "Abeka": 20000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acuant": 58100000,
- "Acuity Brands": 4000000000,
- "Advanced Armament": 15100000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alithya": 389900000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alogent": 50000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Management Association": 21700000,
- "American President Lines": 1300000000,
- "American Trucking Associations": 180900000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Americus Times-Recorder": 28300000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Arconic": 9000000000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Association for Information Systems": 26900000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlanta Gas Light": 500000000,
- "Atlanta Public Schools": 38500000,
- "Atlanta Regional Airport": 19800000,
- "Atria Senior Living": 778500000,
- "Augusta Country Club": 10400000,
- "Australian Laboratory Services": 6600000000,
- "Avanade": 3900000,
- "Awesome Inc.": 29600000,
- "BBDO": 1800000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bessemer Trust": 682100000,
- "BetterCloud": 31400000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bobby's Burger Palace": 10300000,
- "Boehringer Ingelheim": 23300000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Bounce TV": 15300000,
- "Boxlight": 215200000,
- "Boys & Girls Clubs of America": 320000000,
- "Brambles": 3300000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "C3 AI": 12900000,
- "CDP": 23100000,
- "CELINE": 600000000,
- "CRH": 31000000000,
- "Cabot Corporation Foundation": 28000000,
- "Calendly": 80000000,
- "Camden Property Trust": 2000000000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carrs-Safeway": 10400000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Chainalytics": 34000000,
- "Charles River Associates": 568700000,
- "Chick-fil-A": 5800000000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Cirium": 10000000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudBolt": 23000000,
- "Cloudera": 904800000,
- "Coats Group PLC.": 1500000000,
- "College Hunks Hauling Junk": 100000000,
- "Comarch": 400900000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
- "Corgan": 191300000,
- "Corteva": 17100000000,
- "CoverMyMeds": 200000000,
- "Cox Enterprises": 20000000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Curry Up Now": 13800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dayton Superior": 65000000,
- "DeKalb County GA": 40000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delta Galil": 2100000000,
- "DemandTec": 75000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Deutsche Telekom": 123400000000,
- "Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Direction Nationale du Contr\u00f4le de Gestion": 20000000,
- "Discovery Sports": 150000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dow Jones": 1600000000,
- "Druid Hills Golf Club": 31900000,
- "Drury Hotels": 620000000,
- "Dynacraft Wheels": 25000000,
- "E Trade": 2900000000,
- "EEOC": 10000000,
- "Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electric Boat Co.": 10000000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Elring Klinger": 1800000000,
- "Embrace Home Loans": 180600000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "FIAMM": 46400000,
- "FINEOS Corporation Ltd.": 71400000,
- "Farmer Brothers": 469200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Fortress Investment Group": 1200000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gas South": 460000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Genuine Parts Company": 20500000000,
- "Georgia Department of Education": 10000000,
- "Georgia Ports Authority": 19000000,
- "Georgia Power Company": 9300000000,
- "Georgia Public Broadcasting": 16300000,
- "Girls Inc.": 15200000,
- "Globe Life Insurance": 5200000000,
- "Godrej Consumer Products": 1600000000,
- "Golder Associates Inc.": 1000000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "GreatSchools": 11000000,
- "GreenSky LLC.": 518100000,
- "Greenberg Traurig": 2000000000,
- "Grenzebach": 52000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Groz-Beckert": 108600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Gwinnett County School District": 75800000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Haworth": 2300000000,
- "Hendricks Holding": 21400000,
- "Heraeus": 33400000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Houchens": 3000000000,
- "Hudson": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "Imagination Technologies": 109700000,
- "Infosys BPM Limited": 38200000,
- "Interfor": 354900000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Irwin County High": 28500000,
- "Itron": 10000000,
- "JBT FoodTech": 1400000000,
- "Jabil": 33500000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Galt Solutions Inc.": 10500000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "KBR": 7700000000,
- "KHS GmbH": 1400000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kapsch": 830500000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kendall Hunt": 37400000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimball International": 635100000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Kroger": 130700000000,
- "Kymeta": 40000000,
- "L.K. Bennett": 91700000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LUFKIN": 1500000000,
- "Lambda Legal": 11600000,
- "Landmark Worldwide": 29100000,
- "Larsen & Toubro Infotech": 2100000000,
- "Lazy Dog Restaurants": 210000000,
- "Lectra": 188800000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Liberty Mutual": 48200000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lincoln International": 224000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "M.C. Dean": 1000000000,
- "MFG Inc.": 30000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Macon Transit Authority": 12700000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marist": 38300000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meetup": 25000000,
- "Mellow Mushroom": 69000000,
- "Melrose Industries": 375000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metzler": 700000000,
- "Microsemi": 1700000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molnlycke": 2200000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Moody's Analytics": 5700000000,
- "Mosaic": 7200000000,
- "Mueller Water Products": 1200000000,
- "Mullen": 93200000,
- "Munich Re": 73300000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NERC": 70000000,
- "NIIT": 211100000,
- "Natera": 776000000,
- "National Christian Foundation": 27800000,
- "Naugatuck Railroad": 24200000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "New Atlanta": 33300000,
- "Newt Gingrich 2012 presidential campaign": 10600000,
- "Nichia": 1000000000,
- "Niman Ranch": 65000000,
- "Norton": 1300000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "OneTrust": 180000000,
- "Ooma": 179000000,
- "Orange Business": 9600000000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "PBS Velk\u00e1 B\u00edte\u0161": 55000000,
- "PCB Bank": 105100000,
- "Pace Analytical": 450000000,
- "Pacific Cycle": 26300000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Peach Belt Conference": 21100000,
- "Peet's Coffee": 36700000,
- "Penzeys": 26000000,
- "Perkins&Will": 670300000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pindrop": 55000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pollo Tropical": 600000000,
- "PolyVision company": 19000000,
- "Porsche France SAS.": 34300000000,
- "Principal Financial Group": 13900000000,
- "Professional Photographers of America": 21000000,
- "Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "PureTalk": 10200000,
- "QAD Allocation": 12000000,
- "Quality Control Music": 49800000,
- "Quanta Services": 17100000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "RADIANT3": 18900000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "Razorfish LLC.": 403900000,
- "Red Wing Shoes": 700000000,
- "Revionics Inc.": 46600000,
- "Robertson Airport": 10000000,
- "Rolls-Royce": 15300000000,
- "Rome Newswire": 17500000,
- "Roswell High School": 35000000,
- "Rubbermaid": 3000000000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGH": 149000000,
- "SGS S.A.": 28000000000,
- "SK Tools USA LLC.": 20000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Technologies": 500000000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
- "Samsara": 614100000,
- "Sanderson Farms": 5600000000,
- "Sawnee EMC": 17500000,
- "Schreiber Foods": 4800000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster": 2000000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simon Kucher": 406200000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Skydive Houston": 19500000,
- "Smallwood": 30000000,
- "Snowflake": 1900000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sodexo": 22300000000,
- "Solace": 65000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Starr Insurance Companies": 3500000000,
- "Starwood Capital Group": 750000000,
- "State Farm Insurance": 78900000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stibo DX A/S": 35000000,
- "Stitch Fix": 2100000000,
- "Stokke\u00ae": 90000000,
- "Stoney River": 10300000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Swbc Professional Employer Services I Llc.": 356800000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Synnex": 57900000,
- "TEOCO": 186200000,
- "THK": 2700000000,
- "TOM FORD": 615000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taboola": 1400000000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Counter": 85000000,
- "The Howard School": 18150000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Red and Black": 35600000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Trace3 LLC.": 1400000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "True Digital Security": 14000000,
- "Truxton Trust": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Uniphore": 19500000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "Usher's New Look": 13000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VMware": 13200000000,
- "Valdosta Regional Airport": 17300000,
- "Valpak": 43500000,
- "Vantiva": 3500000000,
- "Verdura": 49000000,
- "Vericor": 26900000,
- "Verifone": 1800000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Virginia Transformer": 200000000,
- "Virtusa": 1300000000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Ware County": 10300000,
- "Watson Realty Corp.": 83900000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Wieland Group": 6100000000,
- "Wilo": 1800000000,
- "Wings Financial": 243000000,
- "Wiregrass Electric Cooperative": 336000000,
- "Wolters Kluwer": 5400000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000
- },
- "Hawaii": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "APM Monaco": 50000000,
- "Ace Hardware": 7800000000,
- "Advantage Rent a Car": 150000000,
- "Adventist Health": 4700000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Savings Bank": 301900000,
- "American Water": 3800000000,
- "Aqua-Aston Hospitality": 43000000,
- "Army News Service": 16400000000,
- "Australian Laboratory Services": 6600000000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bess Press": 2000000,
- "Best Buddies": 3600000,
- "Bishop Museum": 15000000,
- "Booz Allen": 8800000000,
- "BrightStar Care": 300000000,
- "Brown & Brown Insurance": 3400000000,
- "Bubba Gump": 7000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "CELINE": 600000000,
- "Cellana": 5000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Commission on Accreditation for Law Enforcement Agencies": 4100000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cyanotech": 36000000,
- "DAV": 3900000,
- "DLA": 3600000000,
- "Davey Tree": 1500000000,
- "DeconGel": 6700000,
- "Dolce & Gabbana": 600000000,
- "EMAC website": 5700000,
- "Electric Boat Co.": 10000000000,
- "Episcopal Church": 96100000,
- "Evangelical Free Church of America": 5200000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Frito-Lay Inc.": 19600000000,
- "GMC": 1000000000,
- "General Mills": 19200000000,
- "Gordon Biersch - DTW": 89300000,
- "Gracie Barra": 987000,
- "Great Harvest": 21200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUGO BOSS": 3600000000,
- "Hale Koa": 6000000,
- "Hanalani": 982000,
- "Harbor Freight": 5000000000,
- "Harold KL Castle Foundation": 5300000,
- "Hawai'i County": 10000000,
- "Hawaii Tribune-Herald": 5100000,
- "Henry's Tavern": 7000000,
- "Hensel Phelps": 5700000000,
- "Hinduism Today": 6200000,
- "Hongwanji Mission School": 5100000,
- "Honolulu Star-Advertiser": 4300000,
- "IHEARTMEDIA": 3800000000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Jamba": 70000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Kaneohe Ranch": 10000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kona Ice": 25700000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "Lag Guitars": 2400000,
- "Le Jardin Academy": 4900000,
- "Leidos Holdings Inc.": 13700000000,
- "Leonisa": 5600000,
- "Level 3 Communications": 17500000000,
- "Liberty Mutual": 48200000000,
- "Liquid Robotics": 9000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lynden": 960000000,
- "MOMO Srl.": 5000000,
- "Manta Pacific": 2500000,
- "Matson": 4300000000,
- "Meadow Gold Dairies": 161000,
- "Medline Industries": 20200000000,
- "Mineralogical Society of America": 34700000,
- "Miss Hawaii USA": 2900000,
- "Modere": 4900000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Montage Hotels": 400000000,
- "Mortgage Choice": 199800000,
- "Moss & Associates": 1200000000,
- "Moyes Delta Gliders": 2100000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NOAA Weather Radio": 36400000,
- "National 4-H Council": 68000,
- "National Auto Sport Association": 5900000,
- "National Christian Foundation": 27800000,
- "Neiman Marcus": 2600000000,
- "North Sails": 27500000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PCL Construction": 6300000000,
- "Pacific Links": 4000000,
- "Pacific Science": 34600000,
- "Park West Gallery": 12400000,
- "Patagonia": 1000000000,
- "Paul Gauguin Cruises": 15000000,
- "PeekYou": 6000000,
- "Penhaligon's": 39700000,
- "Pennymac": 1200000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Premiere Networks Inc.": 30000000,
- "Pretzelmaker": 125000000,
- "Qantas": 6300000000,
- "Quicksilver": 7000000,
- "Quiznos": 50000000,
- "Red Wing Shoes": 700000000,
- "RentHop": 1000000,
- "RevoluSun": 12100000,
- "Rexair": 35000000,
- "Rodgers Instruments Corporation": 6400000,
- "Royal Hawaiian": 3900000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis School": 14000000,
- "Sally Beauty Holdings": 2300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Shakey's": 112000000,
- "Sheraton Princess Kaiulani Hotel": 6000000,
- "Shiseido": 8200000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spectrum OC16": 558000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Superb Internet": 13800000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TOM FORD": 615000000,
- "Telstra Wholesale": 150000000,
- "The Counter": 85000000,
- "The Kahala Hotel & Resort": 52000000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "Tiffany's": 4400000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
- "Trading Places": 27200000,
- "Trump Hotels": 75000000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UGG": 35000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Ulupono": 385000,
- "United States Environmental Protection Agency": 50000000,
- "University of Hawaii Press": 3300000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waianae Coast Comprehensive Health Center": 68600000,
- "Whelen": 500000000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
- },
- "Idaho": {
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Ada County Highway District": 5700000,
- "Aflac Incorporated": 19300000000,
- "Agropur": 7700000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Birding": 4800000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Applied Instruments": 9000000,
- "Applied Materials": 25200000000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "AutoGyro": 15000000,
- "Avercast": 7700000,
- "Avista Utilities": 1500000000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Bishop Kelly High School": 24900000,
- "Black Bear Diner": 18700000,
- "Bodybuilding": 360000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "CHEF'STORE": 1100000000,
- "CITY PASS": 5800000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Caldwell Executive Airport": 15600000,
- "Camp Fire": 10000000,
- "Cellular Sales": 1700000000,
- "Chelton Flight systems": 12600000,
- "Chick-fil-A": 5800000000,
- "Chr. Hansen": 1100000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clearwater Paper": 2000000000,
- "ClickBank": 201600000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coeur Mining": 783400000,
- "Coeur d'Alene Press": 32000000,
- "Coeur d'Alene School District": 14600000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Cradlepoint": 200000000,
- "Crossroads of the West Council": 29600000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "Dave Smith Motors": 30900000,
- "Department of Energy": 190000000,
- "Docusearch": 9000000,
- "Dollar General": 35300000000,
- "Dynata": 380300000,
- "EMAC website": 5700000,
- "Ecumen": 165000000,
- "Einstein Bros. Bagels": 500000000,
- "Empire Airlines": 10800000,
- "Enphase Energy Inc.": 2000000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Fluor Canada": 13700000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "Gossner": 9300000,
- "Gracie Barra": 987000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hillcrest High School": 22400000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "IGA": 250000000,
- "Idaho Spud": 4400000,
- "Infinite Discs": 2500000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jervois'": 2900000,
- "John L. Scott": 800000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kimley-Horn": 722300000,
- "Kirby Company": 500000000,
- "Knots of Love": 4300000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Lotus Communications": 16000000,
- "Lovesac": 389800000,
- "Lynden": 960000000,
- "Lyon & Healy": 7000000,
- "MOBILE MINI": 593000000,
- "Magic Valley Regional Airport": 31100000,
- "Marcus & Millichap": 1500000000,
- "Markmonitor": 80000000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mountain Mike's Pizza": 68000000,
- "Mt. Airy News": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Model Railroad": 5300000,
- "North Gem High School": 22600000,
- "ON Semi": 8300000000,
- "Omega Morgan": 249000,
- "One Stone": 1500000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Parker Hannifin": 15900000000,
- "Paylocity Corporation": 923400000,
- "PharMerica": 2100000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Planned Parenthood": 1600000000,
- "Pocatello Regional Airport": 10700000,
- "Pretzelmaker": 125000000,
- "Pride Foundation": 4100000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Rexair": 35000000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Saskatchewan Mining and Minerals": 15000000,
- "SeaQuest aquariums": 2400000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shari's": 240000000,
- "Shelley High School": 5600000,
- "Shoe Carnival": 1300000000,
- "Shoshone News-Press": 53200000,
- "Shoshone-Bannock School District No 512": 12000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Snake River Alliance": 6300000,
- "Snc Lavalin": 5600000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Special Libraries Association": 15800000,
- "Sports Afield Trophy Properties": 7000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stimson Lumber": 380000000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandem Diabetes": 790700000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "TigerDirect": 200000000,
- "Tom Balding": 7000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Trading Places": 27200000,
- "Translators without Borders": 6300000,
- "TriGeo Network Security": 25000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universities Space Research Association": 44200000,
- "VCA Inc.": 1800000000,
- "Valley Regional Transit": 8000000,
- "Valpak": 43500000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virginia Transformer": 200000000,
- "Vision Source": 11700000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wendell High School": 6600000,
- "Whelen": 500000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Ziply Fiber.": 370000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Illinois": {
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Acuity Brands": 4000000000,
- "Acxiom": 1300000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air China Cargo": 1600000000,
- "Air India": 1600000000,
- "Akorn New Jersey": 682400000,
- "Alithya": 389900000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Allstate": 39800000000,
- "Alorica": 2500000000,
- "Alpha MOS": 13000000,
- "AmTrust Financial": 4700000000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Anesthesiologists": 12300000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrews McMeel": 24200000,
- "Anna Community Consolidated School District 37": 28300000,
- "Anton Paar": 460000000,
- "Applied Materials": 25200000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Ashtead Group": 10000000000,
- "Assurant": 8700000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Austrian": 565000000,
- "Avanade": 3900000,
- "AvePoint": 215800000,
- "Avigilon": 14600000,
- "Axalta": 4100000000,
- "Axis Communications": 1300000000,
- "BBDO": 1800000000,
- "BJC HealthCare": 5700000000,
- "BTS Group": 232600000,
- "BUNN Commercial": 400000000,
- "Back Yard Burgers": 120000000,
- "Bain Capital": 1000000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Bell Helmets": 800000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Bio-Rad": 2800000000,
- "BlackLine": 522900000,
- "Blue Owl Capital": 991600000,
- "Bollinger Shipyards": 1000000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Boral Limited": 10800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Boyden-Hull Community Schools": 18600000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
- "Bureau Veritas": 5700000000,
- "CACI": 6200000000,
- "CDW": 23800000000,
- "CJ Logistics": 1000000000,
- "CNA": 9100000000,
- "Cameo": 100000000,
- "Capital Power": 1900000000,
- "CarParts": 645300000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Casella": 1100000000,
- "Center For Research Libraries": 33800000,
- "Certification Commission for Healthcare Information Technology": 10000000,
- "Charles River Laboratories": 4000000000,
- "Chicago Maritime Festival": 17600000,
- "Chick-fil-A": 5800000000,
- "Christian Association for Psychological Studies": 19200000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cision US Inc.": 900000000,
- "City Year": 162300000,
- "Cloudflare": 894100000,
- "College Board": 1100000000,
- "Comfort Dental": 17800000,
- "Conduent Business Services LLC.": 3900000000,
- "Conference of Consulting Actuaries": 40400000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Cornerstone Research": 250000000,
- "Corteva": 17100000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Cradles to Crayons": 30500000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
- "D'Artagnan": 114500000,
- "DELSEY": 46500000,
- "DISA": 120000000,
- "DRW": 485000000,
- "DWF group": 415600000,
- "Dacor": 90000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Deep Foods": 58000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delmark Records": 22700000,
- "Dematic": 3200000000,
- "Diageo": 18800000000,
- "Dictionary Society of North America": 15200000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Dnata": 1500000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dooney": 40000000,
- "Drexel Hamilton": 14800000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "ECI": 48000000,
- "EDA": 10000000,
- "EMC Insurance": 645000000,
- "EQ Office": 37500000,
- "EVBox": 86000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Economic Margin": 10000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Eloan": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Ergon Refining": 4500000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Etihad Airways": 2700000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "Evonik Industries AG": 19700000000,
- "ExxonMobil": 403200000000,
- "FIAMM": 46400000,
- "FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Flexport": 3300000000,
- "Fluor Canada": 13700000000,
- "Forman Mills": 296800000,
- "Fortune Brands Home & Security": 8000000000,
- "Fortune Brands Innovations": 5000000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Getir": 245000000,
- "Global Commercial Credit": 17600000,
- "Global Infrastructure Partners": 1000000000,
- "Globe Life Insurance": 5200000000,
- "GoHealth LLC.": 1200000000,
- "Gogo Inflight Internet": 370100000,
- "Goldwind": 7900000000,
- "GoodLife Fitness Centres Inc.": 559600000,
- "Graebel": 1500000000,
- "Graef-USA Inc.": 40300000,
- "GreatSchools": 11000000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Gun Owners": 10000000,
- "H.I.G. Capital": 7000000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hallow": 18200000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Heartland Foody": 10100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hesteel Group": 55800000000,
- "Higher learning commission": 19600000,
- "Hinsdale Township High School District 86": 38800000,
- "HistoryNet": 10000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holy Family Memorial": 140000000,
- "Horizon Therapeutics": 3700000000,
- "Huawei": 100000000000,
- "Hudson River Trading": 35000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "Hyundai Motor America": 100700000000,
- "IAPMO": 34100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "INB": 42000000,
- "IQOR": 1000000000,
- "Ignatius": 19500000,
- "Illini West": 13700000,
- "Imo's. Pizza": 200000000,
- "Indiana Public Retirement System": 6200000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Insureon": 40000000,
- "InterCall": 1400000000,
- "International Center on Deafness and the Arts": 61700000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Judah Christian School": 11000000,
- "Judy's Book": 14800000,
- "Juniper Advisory": 14700000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kalitta Air": 200000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kennedys Law": 284000000,
- "Kimball International": 635100000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LSV Asset Management": 11900000,
- "Lambda Legal": 11600000,
- "Landmark Worldwide": 29100000,
- "Landry's": 4600000000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leica Microsystems GmbH": 960700000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lightbank": 35000000,
- "Lightricks": 180000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Litera": 200000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lloyds Bank": 379700000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Louis Vuitton": 14000000000,
- "Lufthansa Cargo": 3400000000,
- "Luminex": 437700000,
- "MDA": 86800000,
- "MHR": 82500000,
- "MSA Safety": 1500000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Manatt": 336800000,
- "Manufacturers\u2019 Agents National Association MANA": 11500000,
- "Mayfair Games": 12900000,
- "McAndrews": 32700000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "MedMen": 172700000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Mettler-toledo Inc.": 3900000000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Minnesota Mining and Manufacturing": 34000000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Monotype": 304000000,
- "Morning star": 1900000000,
- "Mosaic": 7200000000,
- "Mott Foundation": 36300000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBC Sports": 120000000,
- "NIDEC": 15600000000,
- "NJVC": 45000000,
- "NRDC": 190000000,
- "Nagle Hartray Architecture": 41000000,
- "Nanex": 35500000,
- "National Center for Healthcare Leadership": 10000000,
- "National Oilwell Varco": 7200000000,
- "National Rosacea": 10000000,
- "Naymz": 17500000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "Nether Realm Studios": 10000000,
- "New Flyer": 2400000000,
- "NewsNation": 61700000,
- "Nikola Corporation": 44000000,
- "Nippon Steel": 46900000000,
- "North Sails": 27500000,
- "Norton": 1300000000,
- "Novacam": 10000000,
- "Oerlikon": 3100000000,
- "Office For Visual Interaction": 19200000,
- "Ogilvy": 387500000,
- "Old Republic Insurance": 9000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
- "Orange Business": 9600000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Pacific Cycle": 26300000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Parker Hannifin": 15900000000,
- "Performance Health Holding Inc.": 190000000,
- "PhillipCapital": 200000000,
- "Phillips Edison": 496900000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Preqin": 94900000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Printronix": 850000000,
- "Publicis Sapient": 2700000000,
- "QAD Allocation": 12000000,
- "Qantas": 6300000000,
- "Quality Control Music": 49800000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "REISS": 298800000,
- "RRB": 46600000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
- "Razorfish LLC.": 403900000,
- "Realtor": 118000000,
- "Renewable Energy Group": 2900000000,
- "Riddell Sports Group Inc.": 75000000,
- "Rising Medical Solutions": 26000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rock River Arms": 50200000,
- "Rolls-Royce Motor Cars": 940000000,
- "Rosetta Stone": 182700000,
- "Russell Investments": 566500000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "S&P Global": 8200000000,
- "SAP": 33500000000,
- "SCA Health": 2000000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMBC Group": 40800000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Schlarman Academy": 14600000,
- "Schnucks": 3000000000,
- "Seasons 52": 300000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "Serbian National Defense Council": 37000000,
- "ServiceMaster Clean": 48500000,
- "Seyfarth": 717400000,
- "ShareThis": 80000000,
- "Shiseido": 8200000000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simon Kucher": 406200000,
- "Sleep Number": 2100000000,
- "Smurfit Kappa": 12300000000,
- "Snyder's-Lance": 8600000000,
- "SoCalGas": 4500000000,
- "Sodexo": 22300000000,
- "Solace": 65000000,
- "Sonoco": 6500000000,
- "Sonova": 3600000000,
- "Sound World Solutions": 21600000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spark Foundry": 600000000,
- "Spokeo": 86000000,
- "SpringCM": 25000000,
- "St Lawrence County Historical Association": 13000000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Stanza Living": 10200000,
- "Starwood Capital Group": 750000000,
- "State Farm Insurance": 78900000000,
- "Steadfast Networks": 10100000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "Storck": 3400000000,
- "Straight Dope": 10000000,
- "Student Transportation of America": 637200000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Superb Internet": 13800000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syngenta": 16700000000,
- "Synnex": 57900000,
- "Syska Hennessy Group": 60900000,
- "T. Rowe Price": 6500000000,
- "TAYLOR & COMPANY PRODUCTS": 315000000,
- "TDK": 14000000000,
- "TGG Group": 25900000,
- "THK": 2700000000,
- "TOM FORD": 615000000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Tetra Pak": 11100000000,
- "Teuscher": 29700000,
- "Thales Group": 18000000000,
- "The Brattle Group": 241000000,
- "The Care of Trees": 49000000,
- "The Center for Healthcare Governance": 21400000,
- "The First Line": 18800000,
- "The Hershey Company": 10100000000,
- "The Legal Aid": 18000000,
- "The Marketing Arm": 35000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Threadless": 132000000,
- "Tiffany's": 4400000000,
- "TigerDirect": 200000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Tourneau": 32800000,
- "Trading Places": 27200000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "Trend Technologies": 57900000,
- "Trump Hotels": 75000000,
- "Turtle Wax": 19300000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Music Corporation": 40300000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UPM": 11100000000,
- "USCIS": 15700000,
- "USTDA": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union of Concerned Scientists": 15400000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Upwork": 618300000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
- "VMware": 13200000000,
- "Valens": 70700000,
- "Valpak": 43500000,
- "Velsicol Chemical Corporation": 13200000,
- "Vera Bradley": 513100000,
- "Verifone": 1800000000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Victoria's Secret": 5400000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walgreens": 84900000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Williams Lea Tag": 1200000000,
- "Wolters Kluwer": 5400000000,
- "Workiva": 468700000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XMS Capital Partners": 23500000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "ZEISS": 8800000000,
- "ZF Friedrichshafen": 43400000000,
- "Zynga": 2900000000
- },
- "Indiana": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "AMS Neve": 9700000,
- "Academic Model Providing Access to Healthcare": 3500000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acorns Grow Incorporated": 71000000,
- "Acuity Brands": 4000000000,
- "Advanced FLOW engineering": 17500000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Air Canada": 12200000000,
- "Airliners": 3000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Alithya": 389900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Folklore": 19000000,
- "American Pianists": 6000000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Appirio": 250000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atlantic Union Bank": 689200000,
- "Auto Research Center": 7000000,
- "Ave Maria Press": 3200000,
- "Axis Communications": 1300000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "Beckman Coulter": 2100000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Bellmont High School": 5400000,
- "Beltone": 61600000,
- "Bethesda Christian Schools": 34800000,
- "Big Boy Restaurants": 26600000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boxed Inc.": 183000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brooklyn Bicycle": 3400000,
- "Brown & Brown Insurance": 3400000000,
- "Brown's Chicken": 5300000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "CDW": 23800000000,
- "CERN Foundation": 7600000,
- "CMF International": 31400000,
- "CRA Racing": 14400000,
- "CURTISS-WRIGHT": 2500000000,
- "California Steel Industries": 1200000000,
- "Captain D's": 9000000,
- "CarDon & Associates": 32000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Anderson": 26200000,
- "City of Kokomo": 2700000,
- "CityBus of Greater Lafayette Indiana": 19400000,
- "Clark Brands": 23000000,
- "Clean Juice": 7000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Comlux": 75000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Consona Corporation": 37500000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DAV": 3900000,
- "DENSO CORPORATION.": 43500000000,
- "DFAS": 10000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DTN Ag.": 250000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "Duneland": 13300000,
- "EDA": 10000000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elevance Health": 153200000000,
- "Elring Klinger": 1800000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "Experimental Aircraft Association": 15600000,
- "Faegre Drinker": 512900000,
- "Families Advocating for Campus Equality": 6400000,
- "Fancy Fortune Cookies": 26800000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "First Databank": 70000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Formstack": 38000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton County Airport": 7500000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GG Archives": 3600000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Garrett Motion": 3600000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Giordanos": 175000000,
- "Girls Inc.": 15200000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Goodrich Quality Theaters": 2100000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Gravity Interactive": 2400000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Harbor Freight": 5000000000,
- "HarperCollins": 1700000000,
- "Harris Boats": 10000000,
- "Haynes International": 490500000,
- "HealthPartners": 6600000000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Huhtamaki": 53200000000,
- "Hustle Gang": 2800000,
- "Hydro": 21600000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IDFC FIRST Bank": 2900000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IU Health": 7900000000,
- "InTown Suites": 3400000,
- "Indiana Harbor Belt Railroad": 7100000,
- "Indiana Public Retirement System": 6200000,
- "IndyCar": 35000000,
- "Infosys BPM Limited": 38200000,
- "Ingredion Incorporated": 7200000000,
- "InterDigital": 481300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jackson County Banner": 49800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KEBA": 430000000,
- "KMC Controls": 72000000,
- "KONE": 10900000000,
- "Kainos": 397300000,
- "Kaiser Permanente": 93100000000,
- "Kareo": 71400000,
- "Kelly Services": 5000000000,
- "Keter": 1500000000,
- "Kids Alive": 2000000,
- "Kilwins": 50000000,
- "Kimball International": 635100000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kiwanis": 3300000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kokomo Perspective": 16000000,
- "Kona Grill Inc.": 176300000,
- "Kroger": 130700000000,
- "LUFKIN": 1500000000,
- "Laughing Planet": 10000000,
- "Lee's Famous Recipe": 10100000,
- "Leidos Holdings Inc.": 13700000000,
- "Leoni Special Cables": 5400000000,
- "Level 3 Communications": 17500000000,
- "Liberty FCU": 11300000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Ludwig Drums": 8000000,
- "Lupus Foundation of America": 13700000,
- "Lyon & Healy": 7000000,
- "MCL Restaurant & Bakery": 2000000,
- "MOBILE MINI": 593000000,
- "MPSA": 8900000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Marcus & Millichap": 1500000000,
- "Marmon-Herrington Company Inc.": 49000000,
- "MasterCraft": 761500000,
- "Material Sciences": 75000000,
- "Max & Erma's": 4500000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Meatheads Burgers & Fries LLC.": 14300000,
- "Medallia": 477200000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Metal Archives": 10000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Evansville Transit System": 7100000,
- "Micron Technology": 30800000000,
- "Midcontinent Independent System Operator": 380300000,
- "Midwest Communications": 36300000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molnlycke": 2200000000,
- "Montgomery County MD": 24300000,
- "Mullen": 93200000,
- "Multimatic": 1500000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NCG Cinemas": 9100000,
- "NCPH": 2600000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "Newark": 450000000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Northwest Bank": 510300000,
- "NuStar Energy": 3200000000,
- "ON Semi": 8300000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ohio Community College Athletic Conference": 13200000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orange Business": 9600000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Packaging Digest": 45000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Parrish and Heimbecker Limited": 4300000,
- "Patriot Rail": 120200000,
- "Penguin Point": 36700000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pho Hoa": 2500000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Pondurance": 7400000,
- "Porsche France SAS.": 34300000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Positron Corporation": 1200000,
- "Potawatomi Wildlife Park": 21800000,
- "Prairie Farms": 3100000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "RentHop": 1000000,
- "Republic Bank": 314200000,
- "Reverend Guitars": 19200000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rolls-Royce": 15300000000,
- "Roly Poly": 16400000,
- "Rotel": 38800000,
- "Rusty Bucket Restaurant & Tavern": 3500000,
- "Ryan Office": 626000000,
- "SCHOTT AG": 2800000000,
- "SDS": 10500000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Schnucks": 3000000000,
- "Schwebel's": 23800000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seven Peaks Water Park Duneland": 21800000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Sleep Number": 2100000000,
- "Snyder's-Lance": 8600000000,
- "Society Tea": 4300000,
- "Sodexo": 22300000000,
- "Sofitel Frankfurt": 75000000,
- "Solution Tree": 150000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southside Times": 6000000,
- "Southwest": 22700000000,
- "Sprint Mart": 25800000,
- "Stantec": 3100000000,
- "Static Media": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "Stratolaunch LLC.": 28700000,
- "Sullair": 390000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Surly Bikes": 1000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas Gas Transmission": 47800000,
- "The Berne Witness": 19500000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Republic": 10000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Tippecanoe School Corporation": 12300000,
- "Topcoder Inc.": 34000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Tracerco": 47500000,
- "Trafford": 1100000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Trinity Lutheran College": 18400000,
- "Tuff Shed Incorporated": 300000000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USA Track & Field": 9000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "University High School": 12200000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "Valpak": 43500000,
- "Valparaiso University": 4200000,
- "Velvet Ice Cream": 34800000,
- "Ventec Life Systems": 18500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wickham Laboratories Ltd.": 35000000,
- "Wieland Group": 6100000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zola company": 120000000,
- "Zonda Home": 50000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
- },
- "Iowa": {
- "ABC Supply": 12100000000,
- "ADB": 450000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "Ace Hardware": 7800000000,
- "Active Interest Media": 200000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agropur": 7700000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Algona Community School District": 21500000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alzheimer's Association": 81500000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Pop Corn Company": 3000000,
- "American Society of Genealogists": 3600000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Ankeny Community School District": 55800000,
- "Applied Instruments": 9000000,
- "Arconic": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Aspen Pharmacare": 2200000000,
- "At Home store": 1700000000,
- "Australian Baseball League": 5600000,
- "Autocall": 6000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "Barilla company": 4000000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Best Buddies": 3600000,
- "Bettendorf City": 20800000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Boehringer Ingelheim": 23300000000,
- "Booz Allen": 8800000000,
- "Bossard": 920500000,
- "Boyden-Hull Community Schools": 18600000,
- "Brain Injury Association of America": 10000000,
- "Brass Armadillo": 13300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burlington Junction Railway": 18600000,
- "C.L. Barnhouse Company": 42800000,
- "CFA Institute": 356300000,
- "CITYVIEW": 4700000,
- "Cahill": 757300000,
- "Caldwell Tanks": 5100000,
- "Camlin Fine Sciences": 91800000,
- "Camp Fire": 10000000,
- "Camso": 1300000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carroll County Public Schools": 378500000,
- "Caster Concepts": 9000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Television Network": 12200000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Connecticut Food Bank": 69800000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DENSO CORPORATION.": 43500000000,
- "DMI Inc.": 705000000,
- "Dave Smith Motors": 30900000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Deep Foods": 58000000,
- "Department of Energy": 190000000,
- "Des Moines Golf & Country": 27400000,
- "Des Moines Women's Club": 57900000,
- "Digital Playground": 7000000,
- "Dispatch Argus": 5200000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "Easons": 2900000,
- "EatStreet": 25000000,
- "Ecumen": 165000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Essex Savings": 25000000,
- "Ethan Allen": 845000000,
- "Evangelical Free Church of America": 5200000,
- "Experimental Aircraft Association": 15600000,
- "ExxonMobil": 403200000000,
- "FLEXcon": 400000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Fedco Seeds": 15400000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "Fiserv": 17700000000,
- "Fort Dodge Regional Airport": 3900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Fox River": 35100000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Frontier Co-op": 170000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Mills": 19200000000,
- "Gentherm": 1100000000,
- "Gilson Graphics Inc.": 17400000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "GreenPal": 1200000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "HNI Corporation": 2400000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "Illinois Coalition Against Domestic Violence": 20800000,
- "Infosys BPM Limited": 38200000,
- "Integrated DNA Technologies": 350000000,
- "Intelitek": 3300000,
- "Interfor": 354900000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Intl Fcstone": 61700000000,
- "Intuit": 13300000000,
- "Iowa City Police Department": 5400000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Jewelers of America": 26900000,
- "John L. Scott": 800000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KONE": 10900000000,
- "KRST": 1800000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kemper": 5800000000,
- "Kendall Hunt": 37400000,
- "Kenosha News": 4300000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "Kuemper": 3700000,
- "Kwik Shop": 595000000,
- "L&T technology Services": 746800000,
- "L. G. Everist": 10000000,
- "La Crosse Tribune": 6000000,
- "Lag Guitars": 2400000,
- "Leaf Trading Cards": 2400000,
- "Leeann Chin": 2800000,
- "LegalShield": 145000000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "MARSHALLTOWN Company": 30000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Manlius Pebble Hill School": 19400000,
- "Marel hf.": 1600000000,
- "Marquette Catholic": 25400000,
- "McDowell News": 10500000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Messenger News": 48500000,
- "Metal Supermarkets": 26800000,
- "MidAmerican Energy": 66000000,
- "Milio's Sandwiches": 1800000,
- "Missoulian": 6600000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Murphy USA": 22800000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "Nationwide": 42100000000,
- "Newton Daily News": 27400000,
- "Nikola Corporation": 44000000,
- "Noble & Cooley": 6000000,
- "NuStar Energy": 3200000000,
- "Omaha World-Herald": 44100000,
- "OneMain Financial": 4100000000,
- "Orascom Construction": 3400000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Ottumwa Courier": 12000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Port of Grays Harbor": 28300000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "PowerFilm": 9500000,
- "Prairie Farms": 3100000000,
- "Precigen": 138800000,
- "Press of Atlantic City": 100000000,
- "Presser": 7200000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "Qorvo": 1200000000,
- "Quanta Services": 17100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RCA": 3500000,
- "RONA": 492900000,
- "RSM US": 3300000000,
- "Rada Manufacturing": 4400000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "Richmond Times-Dispatch": 17500000,
- "Right Stuf Anime": 8000000,
- "River Cities Reader": 11800000,
- "Rivermont Collegiate": 1700000,
- "Rodgers Instruments Corporation": 6400000,
- "Rotel": 38800000,
- "Rotolo's Pizzeria": 241000,
- "Runza": 7000000,
- "Ryan Office": 626000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sapiens": 382000000,
- "Sarku Japan": 310000,
- "Seaboard": 11200000000,
- "Sears Seating": 300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seymour Community School District": 14700000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Shuttleworth & Ingersoll": 25000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sonoco": 6500000000,
- "Southeast Iowa Regional Airport": 12300000,
- "Southeast Missourian": 2500000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Space Vector": 35000000,
- "Special Metals Welding Products": 11400000,
- "Speech and Debate": 5500000,
- "Sqwincher": 23500000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Star-Herald": 15000000,
- "Starmont": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sumner-Bonney Lake School District": 5100000,
- "Sumtotal Systems LLC.": 120000000,
- "Sun Life": 17200000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "THE BRENTON ARBORETUM": 5600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Scoular Company": 4000000000,
- "The Waterloo-Cedar Falls Courier": 4700000,
- "Tiny But Mighty": 3000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tucson Electric Power": 1600000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Untappd": 10000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "Valley Railroad Connecticut": 395000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vestas": 15500000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "Wacker Chemie": 8400000000,
- "Warby Parker": 573100000,
- "Water For People": 4000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Wilson Sporting Goods": 769700000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Workiva": 468700000,
- "World Photography Organisation": 201000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
- },
- "Kansas": {
- "3D International": 4000000000,
- "AAPB": 6200000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Adorers of the Blood of Christ": 4200000,
- "Adventure Landing": 2000000,
- "AeroVironment": 264900000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Alkem Laboratories": 1400000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Association of Zoo Keepers Inc.": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "American Indian College Fund": 7800000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Angel Resource": 10000000,
- "Applied Instruments": 9000000,
- "Arconic": 9000000000,
- "Army News Service": 16400000000,
- "Arvest Bank": 958800000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
- "Avail Company": 4200000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Whiskey's": 2000000,
- "Black Bear Diner": 18700000,
- "Blue Bell Creameries": 675000000,
- "Blue Valley Schools": 4000000,
- "Bluemercury": 918000000,
- "Bond Schoeneck & King": 3200000,
- "Booz Allen": 8800000000,
- "Brain Injury Association of America": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "Burlington USD 244": 29600000,
- "C2FO": 98700000,
- "CCT Rail System": 28300000,
- "CREW Network": 8000000,
- "CSE Insurance Group": 45000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Camp Quest": 8100000,
- "Camso": 1300000000,
- "CapFed": 208800000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Cellular Sales": 1700000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Chinet\u00ae": 7000000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "CivicPlus": 75000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Colbert Hills": 22000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbus Ohio": 4600000,
- "Comfort Dental": 17800000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Corporation Sealy": 1300000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D. E. Shaw": 625000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "Derby USD 260": 5600000,
- "Dexter USD 471": 25000000,
- "Dignity Memorial": 25000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "D\u2019Angelos": 2400000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EVBox": 86000000,
- "EVgo Services LLC.": 34400000,
- "Eaglebrook": 4200000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Emprise Bank": 3600000,
- "Enel": 118500000000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Examinetics Inc.": 12000000,
- "Experimental Aircraft Association": 15600000,
- "FLEXcon": 400000000,
- "Fagron UK Ltd.": 665700000,
- "Fairtex": 6000000,
- "Farmer Brothers": 469200000,
- "Ferrell North America": 11300000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Funko": 1300000000,
- "G&L Guitars": 8000000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Motors": 147200000000,
- "Glass Lewis": 41300000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Haven USD 312": 6000000,
- "Hays Daily News": 2300000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "Housatonicbsa": 22800000,
- "HuHot Mongolian Grill": 7000000,
- "Huhtamaki": 53200000000,
- "Hurricane Grill & Wings": 10000000,
- "Hy-Vee": 12000000000,
- "ICICI Bank": 18100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "INFICON": 8000000,
- "Identigen": 24300000,
- "Imo's. Pizza": 200000000,
- "Insurify": 9300000,
- "Integra Technologies": 27300000,
- "Intelitek": 3300000,
- "Inventors": 10000000,
- "Invicta FC": 50000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KONE": 10900000000,
- "KVC Health Systems": 7400000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kansas City Ballet": 6100000,
- "Kansas City Board Of Public Utilities": 3300000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Kansas Highway Patrol": 4600000,
- "Kansas State Department of Education": 6000000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kona Ice": 25700000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Landmark Worldwide": 29100000,
- "Leaf Trading Cards": 2400000,
- "Lennys": 9000000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Ligand Pharmaceuticals": 267700000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "LogoLounge": 28300000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MANICA Architecture": 7000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Marel hf.": 1600000000,
- "MaxMind": 3200000,
- "Mazzio's": 6500000,
- "McLane Company": 50000000000,
- "MediaNews Group": 75100000,
- "Merit Energy": 9200000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Microsoft": 184900000000,
- "Milliman": 1200000000,
- "Mission Hills Country Club": 10300000,
- "Modere": 4900000,
- "Mohawk Industries": 11800000000,
- "Monolith Inc.": 6000000,
- "Montgomery County MD": 24300000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NAQT": 27400000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Christian Foundation": 27800000,
- "National Health career Association NHA": 27000000,
- "National Oilwell Varco": 7200000000,
- "NetApp": 6500000000,
- "Netsmart": 526000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "NuStar Energy": 3200000000,
- "O.C. Tanner company": 540000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Oswego Kansas": 50300000,
- "Ottawa Herald": 6400000,
- "Outback Steakhouse": 2000000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Parker Hannifin": 15900000000,
- "Penzeys": 26000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pizza Ranch": 3400000,
- "Planet Sub": 9800000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Prairie View USD 362": 406000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Professional Piercers": 2300000,
- "Progress Rail": 1500000000,
- "Propane Education & Research Council": 10000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSI Corporation": 18000000,
- "RadNet": 1400000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Reno County Area Transit": 2800000,
- "Reno Stead Airport": 7400000,
- "Republic County USD 109": 21000000,
- "Robeks": 396000000,
- "Rock & Brews": 33300000,
- "Rodgers Instruments Corporation": 6400000,
- "Ronald McDonald House Charities": 59500000,
- "Rotel": 38800000,
- "Rubbermaid": 3000000000,
- "Runza": 7000000,
- "Ryan Office": 626000000,
- "SCCA": 38800000,
- "SCHEELS": 800000000,
- "SEDS": 9100000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sarku Japan": 310000,
- "Schmitt Music": 20600000,
- "Seaboard": 11200000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shawnee Mission Post": 7000000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "St. Louis Music": 6600000,
- "Stackify": 3300000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Stride Inc.": 1400000000,
- "Stripes Stores": 750000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "SunOpta": 812600000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TEOCO": 186200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tasco": 8600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Thales Group": 18000000000,
- "The Abilene Reflector-Chronicle": 2400000,
- "The Kansan": 21300000,
- "The Leavenworth Times": 21000000,
- "The Manhattan Mercury": 3300000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "The Topeka Capital-Journal": 36900000,
- "Thomson Reuters": 6500000000,
- "Timken": 4500000000,
- "Topeka Metro": 6900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "TransRe": 500000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "Tumbleweed Houses": 7800000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "USCIS": 15700000,
- "USD 106": 4700000,
- "USD 224": 21900000,
- "USD 261": 20200000,
- "USD 263": 20600000,
- "USD 268": 5800000,
- "USD 327": 45600000,
- "USD 356": 6000000,
- "USD 357": 1000000,
- "USD 379": 21900000,
- "USD 382": 20200000,
- "USD 385": 2500000,
- "USD 401": 6000000,
- "USD 405": 7400000,
- "USD 409": 18200000,
- "USD 411": 3800000,
- "USD 453": 45600000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Uniformed Services Benefit Association": 39600000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University Daily Kansan": 9600000,
- "University of South Dakota": 400000000,
- "Upstate New York Collegiate Hockey League UNYCHL": 1500000,
- "Uptime Devices Inc.": 4100000,
- "VCA Inc.": 1800000000,
- "VCY America": 9400000,
- "VIAVI Solutions": 1300000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Ventria": 8100000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Visibly": 3100000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Water Parks": 10000000,
- "West Elk": 3100000,
- "Western & Southern Financial Group": 5300000000,
- "Whelen": 500000000,
- "Wichita Transit": 2300000,
- "Williams Companies": 11300000000,
- "Winchell's Donut House": 16900000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Woodson USD": 6000000,
- "World Financial Group": 10000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000
- },
- "Kentucky": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALM": 186900000,
- "ALPA": 50900000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Airheads": 6000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Council of Engineering Companies": 4600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Orthopaedic Foot and Ankle Society": 6100000,
- "American Printing House": 16800000,
- "American Standard Brands": 1200000000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "Atria Management Company LLC.": 1000000000,
- "Atria Senior Living": 778500000,
- "Autocall": 6000000,
- "Avail Company": 4200000,
- "B.C. Rich": 6400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BYK Additives & Instruments": 1200000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckman Coulter": 2100000000,
- "Beef 'O' Brady's": 6200000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Berwind": 40000000,
- "Best Buddies": 3600000,
- "Blackstone Publishing": 10000000,
- "Blippar": 6000000,
- "Blue Bell Creameries": 675000000,
- "Blue Grass Airport": 5100000,
- "BlueLinx": 4600000000,
- "Bojangles": 560000000,
- "Boulder Municipal Airport": 8300000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Bridgestone Golf": 320900000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "CI Financial": 1700000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cal-Maine Foods": 3000000000,
- "Caldwell Tanks": 5100000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Carewise Health": 24600000,
- "Carlisle Companies": 6600000000,
- "Carlton Cards": 4700000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christian Academy School System": 5500000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Climate Group": 57200000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
- "Commonwealth Credit Union": 4900000,
- "Conduent Business Services LLC.": 3900000000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "CoverMyMeds": 200000000,
- "Covington Latin": 35400000,
- "Cracker Barrel": 3300000000,
- "Crosley Radio": 9500000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cytokinetics": 148200000,
- "DAV": 3900000,
- "DDB Worldwide Communications Group LLC.": 1200000000,
- "DMI Inc.": 705000000,
- "DNS by Comodo": 6300000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Dawn Foods": 1100000000,
- "Day & Zimmermann": 2400000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "DirecTV Stream": 33300000000,
- "Doe-Anderson": 17700000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Eastern Cincinnati Aviation": 5200000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrolux Professional AB.": 989600000,
- "Element Materials Technology Group Limited": 975000000,
- "Elixio": 2400000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Erie Insurance": 2600000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Eurofins Genomics": 2600000,
- "Evonik Industries AG": 19700000000,
- "Exel Composites": 152200000,
- "Exelixis": 1500000000,
- "ExxonMobil": 403200000000,
- "Eye Level Learning": 2200000,
- "Eye on Ohio": 4000000,
- "FLEXcon": 400000000,
- "Fairness": 5900000,
- "FeltLOOM": 4600000,
- "Ferrellgas": 2100000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Watch": 677600000,
- "Forcht Group": 42000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton County Airport": 7500000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Motors": 147200000000,
- "Gethsemani Farms": 4700000,
- "Ginger Software": 10000000,
- "Global Development Network": 14600000,
- "Globe Immune": 6000000,
- "Globe Life Insurance": 5200000000,
- "Good Sam Club": 19800000,
- "GoodLife Fitness Centres Inc.": 559600000,
- "Goodman Games": 7000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Graf Brothers Flooring and Lumber": 78400000,
- "Great Harvest": 21200000,
- "GreenPal": 1200000,
- "GreenSky LLC.": 518100000,
- "Grindline Skateparks": 27600000,
- "Guardian Alarm": 400000000,
- "Guitar Center": 2300000000,
- "Gun Media": 6000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Hensel Phelps": 5700000000,
- "Hitcents": 12100000,
- "Hobby Lobby": 5300000000,
- "Houchens": 3000000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Huntington UFSD": 1700000,
- "Hustle Gang": 2800000,
- "Hydro": 21600000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Insurify": 9300000,
- "Inventors": 10000000,
- "Iofina": 29700000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jessica Kingsley Publishers": 29300000,
- "Joe's Crab Shack": 345000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "June Appal Recordings": 5600000,
- "KVC Health Systems": 7400000,
- "Kentucky Colonels": 9500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Kohler Foundation": 2000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroger": 130700000000,
- "Kruger": 1400000000,
- "L.G. Balfour Company": 290000000,
- "LEGO": 8100000000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Liberty FCU": 11300000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lloyd's": 473500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Lost Art Press": 6000000,
- "Louisville Orchestra": 10000000,
- "Lovesac": 389800000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Markmonitor": 80000000,
- "Marlin Firearms Company": 42800000,
- "Marmon-Herrington Company Inc.": 49000000,
- "Marquette Transportation": 350000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merchant Ivory": 3100000,
- "Metal Supermarkets": 26800000,
- "Midway University": 1000000,
- "Mimecast": 575300000,
- "Moe's Southwest Grill": 295500000,
- "Monoprice": 220000000,
- "Motorsport": 1700000,
- "Mr. Tire": 5700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Muskogee Phoenix": 7000000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "Navitas Land and Mineral Corporation": 10000000,
- "New Flyer": 2400000000,
- "NiSource": 5400000000,
- "Niagara Conservation": 2500000,
- "Nicholas Financial": 48200000,
- "NuStar Energy": 3200000000,
- "OHSAA": 21500000,
- "Oakdale Christian": 11800000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Oneida school": 24400000,
- "Oracle Elevator": 9200000,
- "Orange Amps": 4200000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paralyzed Veterans of America": 26500000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
- "Paylocity Corporation": 923400000,
- "PeekYou": 6000000,
- "PharMerica": 2100000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Prairie Farms": 3100000000,
- "Premier Lacrosse League": 2000000,
- "Presentation Academy": 3600000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Ranch Hand Truck Accessories": 3900000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Renishaw": 816000000,
- "Republic Bank": 314200000,
- "Ritani": 71500000,
- "Rite Rug": 9500000,
- "Rokon": 3700000,
- "Rood & Riddle Equine Hospital": 2300000,
- "Roper Technologies": 6200000000,
- "Rotel": 38800000,
- "Runnymede Farm": 6000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Sarku Japan": 310000,
- "Save the Children USA": 835900000,
- "Savi Technology": 20000000,
- "Science Source": 3900000,
- "Sculpture magazine": 5400000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Sharp HealthCare": 3800000000,
- "Sheraton Hotels and Resorts": 3000000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Simpson Strong Tie": 2100000000,
- "Sisu Axles": 7000000,
- "Skydive Houston": 19500000,
- "Sleep Number": 2100000000,
- "Slugger": 84300000,
- "Smith & Nephew": 5200000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Soudal Holding N.V.": 329000000,
- "Sounds True": 5800000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Journal": 2800000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Sun Chemical": 8500000000,
- "Swaminarayan": 4700000,
- "Swanson Industries": 6700000,
- "Swedish Match": 2000000000,
- "Sylvan Learning": 12600000,
- "TVA": 13000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Teekay": 491500000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas Gas Transmission": 47800000,
- "The First Line": 18800000,
- "The Kentucky Kernel": 6000000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "The Writer": 4100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Transit Authority of Northern Kentucky": 14100000,
- "Trelleborg": 3000000000,
- "Trinity High School": 2300000,
- "Triton International": 1800000000,
- "Tuff Shed Incorporated": 300000000,
- "Tumbleweed Tex Mex Grill & Margarita Bar": 5700000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UDF": 805600000,
- "UMWA": 3000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "USTR": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Velvet Ice Cream": 34800000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WKUHerald": 6400000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Webasto": 250000000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wieland Group": 6100000000,
- "WinStar Farm": 3500000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Affairs Council": 14200000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Yamana": 1900000000,
- "ZEISS": 8800000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000
- },
- "Louisiana": {
- "47 Brand": 125000000,
- "A Studio in the Woods": 9700000,
- "AACSB": 22500000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ASAP food delivery": 130000000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Acadiana Profile": 6700000,
- "Ace Hardware": 7800000000,
- "Aeroframe Services": 17500000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air Transat": 1300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Genealogists": 3600000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "At Home store": 1700000000,
- "Aubuchon Hardware": 128000000,
- "Australian Laboratory Services": 6600000000,
- "AutoGyro": 15000000,
- "Avail Company": 4200000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baton Rouge Metropolitan Airport": 2500000,
- "Beltone": 61600000,
- "Benetech": 10600000,
- "Big Boy Restaurants": 26600000,
- "Black Rifle Coffee": 233100000,
- "Blanchard Gold": 5600000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bojangles": 560000000,
- "Bollinger Shipyards": 1000000000,
- "Borden Dairy": 1200000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookdale": 2700000000,
- "Brookshire Brothers Company": 52200000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Bruce Foods": 30000000,
- "Buckle": 1300000000,
- "Burckhardt Compression": 699500000,
- "Bureau Veritas": 5700000000,
- "Bureau of Ocean Energy Management": 97000000,
- "CBS": 3300000000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CNN Films": 1500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Captain D's": 9000000,
- "Cellular Sales": 1700000000,
- "Centaur Records": 3900000,
- "Centenary": 29300000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christian Life Academy": 6700000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clive Christian": 7000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Common Ground Relief": 4200000,
- "Community Coffee": 245000000,
- "Condor": 10000000,
- "Coney Island USA": 4200000,
- "Confie": 75000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covington Brewhouse": 1000000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumulus Media": 946800000,
- "Cutco Corporation.": 200000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DJC Oregon": 10000000,
- "DMI Inc.": 705000000,
- "Daily Star Louisiana": 2500000,
- "Dana Incorporated": 9900000000,
- "Dawn Foods": 1100000000,
- "Delta Regional Authority": 10000000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "Digital Remedy": 22000000,
- "Dignity Memorial": 25000000,
- "Discovery Toys": 4000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "ETS": 1400000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "England Airpark": 17900000,
- "Eni": 134600000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Farmer Brothers": 469200000,
- "Farnell": 5400000000,
- "Ferrara Fire Apparatus": 140000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "Finance & Commerce": 3700000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "Gambit formerly Gambit Weekly": 10200000,
- "GardaWorld": 3800000000,
- "Gibbs & Cox": 100000000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Haynes International": 490500000,
- "Helmerich & Payne": 1400000000,
- "Hertz Investment Group": 27200000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hornbeck Offshore": 224400000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hustle Gang": 2800000,
- "Hwy 55": 3400000,
- "Hydro": 21600000000,
- "IDEX Corporate": 3100000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Indorama Ventures": 6600000000,
- "Interfor": 354900000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jesuit High School of New Orleans": 1000000,
- "Joe's Crab Shack": 345000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jordache": 6000000,
- "Josephites": 19600000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KWIK TRIP": 5000000000,
- "Katoen Natie": 3200000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Krispy Krunchy Chicken": 3400000,
- "LCMC Health": 1700000000,
- "LEGO": 8100000000,
- "La Madeleine": 35200000,
- "Lafayette Parish": 12000000,
- "Laitram": 10000000,
- "Learning Express Toys": 2500000,
- "Leidenheimer": 30200000,
- "Leidos Holdings Inc.": 13700000000,
- "Lennys": 9000000,
- "Leonisa": 5600000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Lipcon Margulies & Winkleman P.A.": 3900000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana School for Math Science and The Arts": 3800000,
- "Lovesac": 389800000,
- "M.C. Dean": 1000000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Marianites": 31700000,
- "Marine Turbine": 50000000,
- "Marlow Industries": 1500000000,
- "Marquette Transportation": 350000000,
- "Matson": 4300000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McGehee": 7400000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Methanex": 3100000000,
- "Mississippi Export Railroad": 12000000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Monster Moto": 3700000,
- "Mosaic": 7200000000,
- "Motiva Enterprises": 20800000000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NAACCR": 16300000,
- "NCFCA": 9900000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Down Syndrome": 2600000,
- "National Oilwell Varco": 7200000000,
- "New Orleans Center for Creative Arts": 5200000,
- "New Orleans Emergency Medical Services": 14100000,
- "New Orleans Regional Transit Authority": 14400000,
- "Niagara Conservation": 2500000,
- "North Sails": 27500000,
- "NuStar Energy": 3200000000,
- "OOCL": 33600000,
- "Ochsner": 5900000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orkin": 1000000000,
- "Orleans Parish School Board": 40500000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "PERMA-PIPE": 37700000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "Peet's Coffee": 36700000,
- "People of Praise": 13100000,
- "Petroleum Helicopters International": 661900000,
- "PharMerica": 2100000000,
- "Pho Hoa": 2500000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Postlethwaite & Netterville": 11800000,
- "Powell Industries": 499400000,
- "Pretzelmaker": 125000000,
- "PrimoHoagies": 2600000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "Rayonier": 1100000000,
- "Realtor": 118000000,
- "Red River Revel": 4100000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "RentHop": 1000000,
- "Rodgers Instruments Corporation": 6400000,
- "Rolls-Royce": 15300000000,
- "Roly Poly": 16400000,
- "Ronald McDonald House Charities": 59500000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salon": 130000000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "Schlumberger Limited": 27800000000,
- "Seaboard": 11200000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Shop Sucre": 7000000,
- "Sightsavers'": 56000000,
- "Signarama": 55000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Sodexo": 22300000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Sprint Mart": 25800000,
- "St Lawrence County Historical Association": 13000000,
- "St. Bernard Urban Rapid Transit": 18400000,
- "St. Tammany Parish Public Schools": 3900000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stoney River": 10300000,
- "Stork": 2300000000,
- "Stripes Stores": 750000000,
- "Sulzer": 13800000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Teck Resources": 12600000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Ternium": 8700000000,
- "Terracon": 77100000,
- "Tervita": 966600000,
- "Texas Gas Transmission": 47800000,
- "The Advocate": 25000000,
- "The City of Hammond LA": 5900000,
- "The Columbia Group": 10000000,
- "The Conservation Fund": 3900000,
- "The Daily Reveille": 9000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The Parking Spot": 46000000,
- "The Roosevelt Hotel": 4600000,
- "Thomas Mansfield": 7000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "TraceSecurity": 8800000,
- "Tracerco": 47500000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "TurboSquid": 8600000,
- "T\u00eda": 150000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNTUCKit": 350000000,
- "USALCO": 7300000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Urban Design Associates": 9000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Vericor": 26900000,
- "Verifone": 1800000000,
- "Veritiv": 7300000000,
- "Version 1": 260000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "Wisconsin Cheeseman": 7000000,
- "Wishing Well Foundation USA": 24200000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "XPO Logistics": 7700000000,
- "YMCA of the USA": 64100000,
- "Zumiez": 1100000000
- },
- "Maine": {
- "ABC Supply": 12100000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Advanced FLOW engineering": 17500000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Allagash": 27000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Architectural Illustrators": 1300000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Anoto": 8200000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
- "Avanade": 3900000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BSOOB Transit": 1200000,
- "BTS Group": 232600000,
- "Bangor Daily News": 10000000,
- "Bangor Maine": 6200000,
- "Bangor Public Library": 21100000,
- "Baseball Factory": 10000000,
- "Belfast and Moosehead Lake Railroad 2009": 40300000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bicycle Health": 8700000,
- "Bio-Rad": 2800000000,
- "Blue Marble Geographics": 11000000,
- "BlueLinx": 4600000000,
- "Boat Trader": 5500000,
- "Bonnier": 242000,
- "Boothbay Register": 4600000,
- "Brain Injury Association of America": 10000000,
- "Brown Center for Students of Color": 997900000,
- "Capital Power": 1900000000,
- "Carenet Health": 300000000,
- "Carlisle Companies": 6600000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chebeague Island Inn": 23400000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Civic League of Maine": 29500000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Couche-Tard": 67900000000,
- "Cousins Maine Lobster": 5100000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Davey Tree": 1500000000,
- "Diodes": 128800000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
- "EPiServer": 215000000,
- "EVgo Services LLC.": 34400000,
- "Eagle Newspapers": 34000000,
- "Elite Airways": 3000000,
- "Embrace Home Loans": 180600000,
- "Episcopal Church": 96100000,
- "Erskine Academy": 20200000,
- "Ethan Allen": 845000000,
- "ExxonMobil": 403200000000,
- "FatFace": 244700000,
- "Fedco Seeds": 15400000,
- "Ferries": 556000,
- "First National Bank": 1300000000,
- "Fox Network": 3000000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "Gen Re": 9500000000,
- "Generac Power Systems": 4600000000,
- "Golder Associates Inc.": 1000000000,
- "Gracie Barra": 987000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HUB International Ltd.": 3200000000,
- "Haggar": 300000000,
- "Hancock County-Bar Harbor Airport": 6000000,
- "Harbor Fish Market": 2100000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Hayden Shapes": 12000000,
- "Hershey Creamery Company": 124000,
- "Hobby Lobby": 5300000000,
- "Hodgdon Yachts": 33100000,
- "Huhtamaki": 53200000000,
- "IDSVA": 4200000,
- "IGA": 250000000,
- "ILSR": 3400000,
- "Ingredion Incorporated": 7200000000,
- "Iron Mountain Incorporated": 5000000000,
- "JAX": 484600000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Kaplan": 1500000000,
- "Ketchum": 500000000,
- "Kruger": 1400000000,
- "L.L.Bean": 1600000000,
- "Level 3 Communications": 17500000000,
- "Lewiston Public Library": 2900000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Linklaters": 2100000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "MSAD 15": 22600000,
- "MSAD 60": 35500000,
- "MSC Industrial Supply": 3800000000,
- "Maine Bar": 15000000,
- "Maine Campus": 7000000,
- "Maine Children's Home": 28600000,
- "Milliman": 1200000000,
- "Molnlycke": 2200000000,
- "Money Under 30": 7000000,
- "Montreal Maine and Atlantic Railway": 10000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NBT Bank": 30100000,
- "NICOLAS": 11000000,
- "NOAA Weather Radio": 36400000,
- "New England Black Wolves": 370000,
- "Nordnet": 390300000,
- "North Sails": 27500000,
- "ON Semi": 8300000000,
- "Ogunquit Museum": 14900000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Pampered Chef": 300000000,
- "Pan Am Railways Inc.": 1000000000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeoplesChoice": 20000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Porsche France SAS.": 34300000000,
- "Portland Public Library": 11500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quebec Major Junior Hockey League": 1100000,
- "RED Digital Cinema": 55200000,
- "Red Wing Shoes": 700000000,
- "RedMonk": 42900000,
- "Reed & Reed": 72900000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sarku Japan": 310000,
- "ServiceMaster Clean": 48500000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "State Street": 12100000000,
- "Stephens": 2300000000,
- "Sun Life": 17200000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Terracon": 77100000,
- "The Conservation Fund": 3900000,
- "The Dyrt": 4000000,
- "The North Face": 2000000000,
- "Thornton Tomasetti": 280000000,
- "Tim Hortons": 2800000000,
- "Timberland Regional Library": 20600000,
- "Tom's of Maine": 76200000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Weathervane Seafoods": 100000000,
- "Weekly Packet": 6300000,
- "Whelen": 500000000,
- "Wild Willy's Burgers": 9000000,
- "Wiscasset Waterville and Farmington Railway": 17400000,
- "Wolters Kluwer": 5400000000,
- "World Photography Organisation": 201000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "YMCA of the USA": 64100000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Maryland": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AACOM": 2100000000,
- "ABC Supply": 12100000000,
- "ABMRF The Foundation for Alcohol Research": 4400000,
- "ABS Capital": 65000000,
- "ACE Cash Express": 600000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AIBS": 20100000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Accreditation Board for Engineering and Technology Inc.": 10000000,
- "Ace Hardware": 7800000000,
- "Acorn DVD": 4700000,
- "Acxiom": 1300000000,
- "Adcor Defense": 10000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alley Cat Allies": 24200000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alpha MOS": 13000000,
- "Alzheimer's Association": 81500000,
- "AmeriServ": 10000000,
- "America's Swimming Pool": 54600000,
- "American Academy of Sleep Medicine": 24300000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Society for Nutrition": 13100000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Ameritox": 10000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Analytica LLC.": 12200000,
- "Annapolis Transit": 10000000,
- "Apple Ford": 17700000,
- "Ardene": 38400000,
- "Arizona Public Service": 4300000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Aspen Institute For Behavior": 152100000,
- "Association for Financial Professionals": 10000000,
- "At Home store": 1700000000,
- "Atlantic Union Bank": 689200000,
- "Atotech": 1500000000,
- "Aubuchon Hardware": 128000000,
- "AutoGyro": 15000000,
- "AvalonBay Communities": 2000000000,
- "B.F. Saul": 92300000,
- "BAUSCH STROEBEL": 190000000,
- "BBYO": 15800000,
- "BEA": 148000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BW Papersystems": 300000000,
- "BYK Additives & Instruments": 1200000000,
- "Baja Fresh": 500000000,
- "Baltimore Heritage": 1100000,
- "Baltimore Leadership School for Young Women": 2900000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bengur Bryan": 38300000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bobby's Burger Palace": 10300000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Bradford Exchange": 37000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CACI": 6200000000,
- "CBS": 3300000000,
- "CPSC": 10000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Camp Fire": 10000000,
- "Candlewick": 15000000,
- "Canton Railroad": 10200000,
- "Carroll County Public Schools": 378500000,
- "Catholic Medical": 3700000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Champion's Oncology": 54100000,
- "Charity water": 34000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Cici's": 18300000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Frederick": 5300000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clipper City Brewing Company": 10000000,
- "CloudBolt": 23000000,
- "Cloudera": 904800000,
- "Clyde's": 220000000,
- "CollabraSpace Inc.": 15500000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Congressional Country Club": 12900000,
- "Constellis": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cornerstone Research": 250000000,
- "Corporation Sealy": 1300000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "D.P. Dough": 9400000,
- "D2L": 163600000,
- "DDN": 70000000,
- "DELSEY": 46500000,
- "DEX Imaging": 284000000,
- "DISA": 120000000,
- "DJO Global": 1200000000,
- "DMI Inc.": 705000000,
- "DRW": 485000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dayton Superior": 65000000,
- "DeMatha Catholic High School": 31100000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "Dignity Memorial": 25000000,
- "District Taco": 35000000,
- "Dollar General": 35300000000,
- "EEOC": 10000000,
- "EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
- "Ecube Labs": 55000000,
- "Edelman Financial Engines": 80000000,
- "Edison Properties": 17000000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Elixir Strings": 16000000,
- "Elizabeth Seton High School": 31500000,
- "Embrace Home Loans": 180600000,
- "Endocrine": 7600000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "FCC": 5000000000,
- "FILA Luxembourg S.a.r.l.": 2400000000,
- "FLETC": 1200000,
- "FMC Indonesia": 5400000000,
- "FairVote": 18400000,
- "Farm Fresh Food & Pharmacy": 10000000,
- "FatFace": 244700000,
- "Federal Realty Investment Trust": 1000000000,
- "Ferrellgas": 2100000000,
- "Filtronic": 22100000,
- "First National Bank": 1300000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forman Mills": 296800000,
- "Foster Farms": 3000000000,
- "Framebridge": 14700000,
- "Fraternal Order of Police": 33900000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Financial Corporation": 1000000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "GP Strategies": 482000000,
- "GPO": 10600000,
- "Gaithersburg MD": 18700000,
- "Gallagher & Associates": 6000000,
- "GardaWorld": 3800000000,
- "Garrison Forest School": 4600000,
- "Gary Sinise Foundation": 4600000,
- "Gateway Newstands": 16600000,
- "Gemstone Publishing": 40200000,
- "GenOn Energy": 600000000,
- "Getir": 245000000,
- "Gilead": 27500000000,
- "Global Commercial Credit": 17600000,
- "GlobalStem": 1300000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gooseberry Patch": 14100000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Grant & Eisenhofer": 8600000,
- "GraphicAudio": 9000000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greenbelt Homes Inc.": 11200000,
- "Griggs": 47000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hackensack Meridian Health": 4500000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Hallberg-Rassy": 79400000,
- "Harbor Freight": 5000000000,
- "Haven Harbour": 19100000,
- "Hazelden Betty Ford": 186300000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Honeybee Robotics Spacecraft Mechanisms Corporation": 27000000,
- "Hoosier Tire": 181300000,
- "Horizon Therapeutics": 3700000000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hyattsville": 27800000,
- "Hydro": 21600000000,
- "IARPA": 15900000,
- "IHEARTMEDIA": 3800000000,
- "Immunocore": 122000000,
- "Industrial Bank": 25000000,
- "Integral Systems": 10000000,
- "International Organization of Masters Mates & Pilots": 19300000,
- "International Society for Performance Improvement": 18300000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jesuit Volunteer Corps": 6100000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Josephites": 19600000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Kotak": 7500000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Laureate Education": 1200000000,
- "LeTip International": 12700000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "LibLime": 3400000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Liquidity Services": 275200000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lutheran Immigration and Refugee Service": 10000000,
- "Lynden": 960000000,
- "M.C. Dean": 1000000000,
- "MASN": 17400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Macrogen": 77400000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Maryland Association of CPAs": 3200000,
- "Max Brenner": 33300000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "MedStar Health": 5600000000,
- "Medifast": 10000000,
- "Mellow Mushroom": 69000000,
- "Menchey Music": 9000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Partnership": 24200000,
- "Mimetas": 3500000,
- "Ministry of Supply": 6000000,
- "Mitchell & Titus": 20300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Morning star": 1900000000,
- "Motiva Enterprises": 20800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NABJ": 10000000,
- "NBC Sports": 120000000,
- "NCPC": 10000000,
- "NEA": 400000000,
- "NFTE": 11400000,
- "NNN REIT": 761800000,
- "NOAA Weather Radio": 36400000,
- "NOBCChE": 1200000,
- "National Black Catholic Congress": 22800000,
- "National Celiac Association": 3700000,
- "New Story Group LLC.": 17800000,
- "Nikola Corporation": 44000000,
- "Niles Barton": 9600000,
- "North Sails": 27500000,
- "Norwood School": 3700000,
- "Oblate Sisters": 6100000,
- "Ohl": 3300000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orano": 5400000000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "P. C. Richard & Son": 15100000,
- "PGCPS": 2400000000,
- "Pall Corporation": 2900000000,
- "Paris Baguette": 11200000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "Pepco - An Exelon Company": 4700000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Precigen": 138800000,
- "Premier Lacrosse League": 2000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Profit Investment Management": 16200000,
- "Progress Rail": 1500000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RSM US": 3300000000,
- "RadNet": 1400000000,
- "Radian": 1300000000,
- "Radius Travel": 25000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reichle & De-Massari": 284900000,
- "Renkus-Heinz": 6900000,
- "RentHop": 1000000,
- "RepresentWomen": 1500000,
- "Rexair": 35000000,
- "Ride Entertainment": 19000000,
- "Ring of Honor": 8000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Rocket Lab USA Inc.": 186700000,
- "Rohde & Schwarz": 2600000000,
- "Roly Poly": 16400000,
- "Ron Jon Surf Shop": 18900000,
- "Rotel": 38800000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "Safe city": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsa Labs": 18000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Santander Bank": 14800000,
- "Savills North America": 6000000,
- "Scotiabank": 14900000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Sheraton Hotels and Resorts": 3000000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simex-Iwerks Entertainment": 32400000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smith & Nephew": 5200000000,
- "Social Solutions": 34700000,
- "Sodexo": 22300000000,
- "Somerset Trust Company": 24900000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spokeo": 86000000,
- "St Lawrence County Historical Association": 13000000,
- "Standard Textile Company": 119500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steinway": 538400000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sun & Ski Sports": 15000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "T. Rowe Price": 6500000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tactical Air Support": 10300000,
- "Tandy Leather Factory": 81600000,
- "Tanium": 525000000,
- "Taylor Farms": 2800000000,
- "Telcel": 2000000000,
- "Telos company": 236800000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Tenable\u00ae": 577300000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Children's Inn at NIH": 26300000,
- "The Columbia Group": 10000000,
- "The European Institute": 4000000,
- "The First Line": 18800000,
- "The Humane Society of the United States": 30700000,
- "The Knot Worldwide": 350000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The United Services Automobile Association": 35600000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Tiffany's": 4400000000,
- "Tilghman Watermen's Museum": 20900000,
- "Tim Hortons": 2800000000,
- "Tipton Airport": 20900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Transunion Chile": 3600000000,
- "Trophogen": 10200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "UniverSoul Circus": 8700000,
- "Universities Space Research Association": 44200000,
- "University System of Maryland": 3600000000,
- "Upgrad": 300000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VT Group": 185000000,
- "Vaccitech": 38200000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
- "Verint Systems": 899800000,
- "VetDepot": 25000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Visitation Academy of Frederick": 12500000,
- "Vocelli Pizza": 14000000,
- "Volkert": 124000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "W.C. and A.N. Miller": 11800000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Washington County Transit": 19300000,
- "Washington Hispanic": 10800000,
- "Washingtonian": 6800000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Whelen": 500000000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Wolters Kluwer": 5400000000,
- "Wondrium": 45600000,
- "WoodSpring": 150000000,
- "World Council of Fisheries Societies": 4700000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
- },
- "Massachusetts": {
- "3D International": 4000000000,
- "47 Brand": 125000000,
- "ABC Supply": 12100000000,
- "ACCO Brands": 2100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ANRITSU": 864200000,
- "APM Monaco": 50000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Abcam": 425500000,
- "AcademyHealth": 18600000,
- "Acadian Asset": 21000000,
- "Acxiom": 1300000000,
- "Adcole": 15000000,
- "Advanced Technology Ventures": 15500000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Alfa Aesar": 121000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alnylam": 960900000,
- "Altair Engineering": 552600000,
- "Altra Industrial Motion": 1900000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American President Lines": 1300000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anbaric Development Partners": 10000000,
- "Appian": 447200000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Armenian Relief": 21700000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Asian CDC": 10000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
- "Auriga. Outsourcing Software Development.": 81000000,
- "Aurora Organic Dairy": 30100000,
- "AvalonBay Communities": 2000000000,
- "Avanade": 3900000,
- "Avon": 6200000000,
- "BAMBINO MIO LIMITED": 11200000,
- "BEACON HILL INSTITUTE FOR PUBLIC POLICY": 28500000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BRAC BANK": 362300000,
- "Bain Capital": 1000000000,
- "Baird investment bank": 3400000000,
- "Balyasny Asset Management": 110000000,
- "Barnes & Thornburg": 575500000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baystate Health": 2500000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Benchling": 50000000,
- "Bio-Rad": 2800000000,
- "Block & Leviton": 18900000,
- "Blue Marble Geographics": 11000000,
- "BlueLinx": 4600000000,
- "Bon'App Inc.": 10000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Boston Herald": 220000000,
- "Boston Housing": 47600000,
- "Boston Library Consortium Inc.": 25700000,
- "Boston Society for Architecture": 35100000,
- "Boston University": 2100000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brain Injury Association of America": 10000000,
- "Branch Line Press": 25400000,
- "Brandwatch": 61100000,
- "Breezeline": 300000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buildium": 75000000,
- "Bureau Veritas": 5700000000,
- "Burton Snowboards": 400000000,
- "CBS": 3300000000,
- "CCL Industries": 4800000000,
- "CELINE": 600000000,
- "CTG": 375200000,
- "Cabot Cabot & Forbes": 35200000,
- "Cabot Corporation Foundation": 28000000,
- "Caffe Nero": 1500000000,
- "Callaway Golf": 3700000000,
- "Cambridge Public Schools": 15400000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Candlewick": 15000000,
- "Capital Power": 1900000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Chartered Alternative Investment Analyst": 18300000,
- "Cheap flights": 135800000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Chitika": 14200000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Cloudera": 904800000,
- "CoCo Fresh Tea & Juice": 15000000,
- "College Hunks Hauling Junk": 100000000,
- "Community Boating": 43400000,
- "Compass Group": 111500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Cornerstone Research": 250000000,
- "Corning Glass Works": 14500000000,
- "CovalX Instruments Inc.": 48000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crane Currency": 700000000,
- "Crate & Barrel": 1600000000,
- "Credorax": 111000000,
- "Cresco Labs": 17700000000,
- "Crossbeam Systems": 75000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
- "D. E. Shaw": 625000000,
- "Daily Gazette": 10200000,
- "Daily Hampshire Gazette": 25300000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Demiurge Studios Inc.": 15000000,
- "Desjardins Group": 15900000000,
- "DigBoston": 39000000,
- "Digital Realty": 4700000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dorel Industries": 2600000000,
- "Dow Jones": 1600000000,
- "Drexel Hamilton": 14800000,
- "Dubber": 17500000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "ECI": 48000000,
- "EPAM": 4500000000,
- "Eastman": 10600000000,
- "Eataly": 250000000,
- "Eaton Vance Corporation": 1700000000,
- "EcoLogic Development Fund": 18300000,
- "Edaville Family Theme Park": 12400000,
- "Edelman Financial Engines": 80000000,
- "Elevance Health": 153200000000,
- "Endeca": 10000000,
- "Enterprise Car Sales": 40000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "EverQuote": 417900000,
- "Evergreen Solar": 19400000,
- "ExxonMobil": 403200000000,
- "FINEOS Corporation Ltd.": 71400000,
- "FIRST": 18700000,
- "FLEXcon": 400000000,
- "FactSet": 1500000000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Federal Realty Investment Trust": 1000000000,
- "Fiksu": 22700000,
- "Flaxwood": 11500000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Flybridge": 14000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Fortress Biotech": 77600000,
- "Fox Network": 3000000000,
- "Franklin Regional Transit Authority": 29000000,
- "Free Republic": 10000000,
- "Frette": 55700000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GLG Gerson Lehrman Group Inc.": 512500000,
- "GMAC": 25000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gateway Newstands": 16600000,
- "General Dynamics Mission Systems": 4400000,
- "Genuine Parts Company": 20500000000,
- "Getir": 245000000,
- "Gillette": 6000000000,
- "Global Commercial Credit": 17600000,
- "Golden Minerals": 28200000,
- "Gordon Food Service": 16000000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H.I.G. Capital": 7000000000,
- "HCL Tech": 12000000000,
- "HOYTS": 450000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haemonetics": 1100000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hascol": 1200000000,
- "Hazelden Betty Ford": 186300000,
- "Hearts On Fire": 13100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Holland America Line": 300000000,
- "Holyoke Gas & Electric": 22300000,
- "Hudson": 2000000000,
- "Hudson River Trading": 35000000,
- "ICICI Bank": 18100000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IDG Capital": 25000000,
- "IDG Ventures": 15200000,
- "IHEARTMEDIA": 3800000000,
- "Intralink": 29600000,
- "Ipswitch Inc.": 75000000,
- "Iron Mountain Incorporated": 5000000000,
- "JA Worldwide": 307000000,
- "JLG Architects": 10000000,
- "Jabil": 33500000000,
- "Janssen Global Services": 45600000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Dewey Academy": 31100000,
- "John Hancock Financial": 9500000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "KBR": 7700000000,
- "Kainos": 397300000,
- "KarmaLoop": 130000000,
- "Kelly Services": 5000000000,
- "Kelso & Company": 43000000,
- "Kemet Electronics Services": 1600000000,
- "Kerry Group": 8500000000,
- "Kimball International": 635100000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kwik Shop": 595000000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LG Chem": 37200000000,
- "LSEG": 9500000000,
- "Landmark Worldwide": 29100000,
- "LaunchDarkly": 36000000,
- "Lauterbach company": 22500000,
- "Leidos Holdings Inc.": 13700000000,
- "LendingClub Corporation": 1200000000,
- "Leoni Special Cables": 5400000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Liberty Bay Credit Union": 28600000,
- "Liberty Mutual": 48200000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Louis Vuitton": 14000000000,
- "Lufthansa Cargo": 3400000000,
- "MEGA International S.A.": 47000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Man Group": 1500000000,
- "Manatt": 336800000,
- "Mandarin Oriental": 1100000000,
- "Marks and Spencer": 14300000000,
- "Marlow Industries": 1500000000,
- "MassChallenge": 22000000,
- "MassLive": 19800000,
- "Massachusetts Medical": 130500000,
- "Mastech Digital": 211700000,
- "Max Brenner": 33300000,
- "Medallia": 477200000,
- "MediaTek": 17900000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Methuen High School": 34200000,
- "Milliman": 1200000000,
- "Mimecast": 575300000,
- "Mineralogical Society of America": 34700000,
- "ModelSheet": 47300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Monotype": 304000000,
- "Monster": 880000000,
- "Morgan Technical Ceramics": 1400000000,
- "MorphoSys": 256200000,
- "Morrison Foerster": 1200000000,
- "Mountain Warehouse": 50000000,
- "MullenLowe": 150000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBA": 7900000000,
- "NBC Sports": 120000000,
- "NBT Bank": 30100000,
- "NIDEC": 15600000000,
- "NSF": 300000000,
- "NYSEG": 800000000,
- "Natera": 776000000,
- "Neiman Marcus": 2600000000,
- "Net2Phone": 185000000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "NorthBay Solutions": 22000000,
- "Northfield Mount Hermon": 11200000,
- "Novacam": 10000000,
- "OMG": 22500000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "OpenEye": 30000000,
- "Orion Health": 150000000,
- "Orrick": 975000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Oxford Properties": 45000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pall Corporation": 2900000000,
- "Pan Am Railways Inc.": 1000000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Payden": 10000000,
- "Payscale": 180000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pentucket Regional School District": 20600000,
- "Perkins&Will": 670300000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pimsleur Language Programs": 30000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plug Power": 571200000,
- "Polar Beverages": 50000000,
- "Precigen": 138800000,
- "Preservica": 13200000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "Procore": 664300000,
- "Publicis Sapient": 2700000000,
- "Pyramid Management Group": 29000000,
- "Quad Metalworks": 3100000000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "REISS": 298800000,
- "RR Auction": 36500000,
- "RSM US": 3300000000,
- "RTB House": 120000000,
- "Ravelry": 28700000,
- "RepTrak": 45000000,
- "Rimac Automobili": 28200000,
- "Riverside Partners": 14400000,
- "Robertson Airport": 10000000,
- "Rolls-Royce": 15300000000,
- "Rosetta Stone": 182700000,
- "Russell Investments": 566500000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "R\u00f6hlig Logistics": 36500000,
- "S&P Global": 8200000000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMTC Corporation": 250000000,
- "SOM": 274700000,
- "SVB Securities": 25000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Schunk Group": 1500000000,
- "Seagate Technology": 9400000000,
- "Seaman Paper Company of Massachusetts Inc.": 48900000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Sermo": 51200000,
- "Sherborne Sensors": 35000000,
- "Shofur": 23900000,
- "Sightsavers'": 56000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Silk": 100000000,
- "Simon & Schuster": 814000000,
- "Sisters of Charity of Saint Vincent de Paul": 23000000,
- "Skyhook": 17000000,
- "Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
- "Snowflake": 1900000000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
- "SoftServe": 570200000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spark Capital Partners LLC.": 10100000,
- "Sprague Energy": 4300000000,
- "St. Francis House": 11700000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Street": 12100000000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stoughton High School": 19200000,
- "Suit Supply France SARL": 350000000,
- "Summit Partners": 71700000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sun Pharma": 5600000000,
- "SunSetter LLC.": 55300000,
- "Sweaty Betty": 244400000,
- "Sylvan Learning": 12600000,
- "Symbotic": 30000000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "TM Capital": 12000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Taunton Daily Gazette": 12300000,
- "Taunton Municipal Lighting Plant": 99000000,
- "Teach Town": 25000000,
- "TechCrunch": 525000000,
- "Telestial": 19000000,
- "Tempur-Pedic": 24700000,
- "Teneo": 400000000,
- "Teradyne": 3300000000,
- "The Art of Shaving": 45000000,
- "The Brattle Group": 241000000,
- "The Channel": 25000000,
- "The First Line": 18800000,
- "The Heights": 11600000,
- "The Melting Pot": 31500000,
- "The Newman School": 18200000,
- "The Sun Chronicle": 21200000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilting Point Media LLC.": 53000000,
- "Tim Hortons": 2800000000,
- "Topcoder Inc.": 34000000,
- "Trelleborg": 3000000000,
- "Trinity Lutheran College": 18400000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMass Amherst": 250000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Ultragenyx": 363300000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union of Concerned Scientists": 15400000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of the Middle East Project": 15800000,
- "Untappd": 10000000,
- "Upromise Inc.": 10700000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
- "VMware": 13200000000,
- "VT M\u00c4K": 100000000,
- "Valpak": 43500000,
- "Verint Systems": 899800000,
- "Viasat": 2800000000,
- "Victim Rights Law Center": 17300000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vision Source": 11700000,
- "Vistra": 600000000,
- "Vladar": 10000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wellington Management": 1000000000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "Wilson Sonsini": 860000000,
- "Wing-Time": 37200000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "Wounded Warrior Project": 15300000,
- "XMS Capital Partners": 23500000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YET2": 20000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "ZERO VFX": 25400000,
- "Zumiez": 1100000000,
- "iHire": 15900000,
- "iRobot": 1300000000
- },
- "Michigan": {
- "123NET": 25000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ASIMCO Technologies": 28300000,
- "ATF": 1000000000,
- "AUSA": 23000000,
- "AVL List": 2100000000,
- "Ace Hardware": 7800000000,
- "Acrisure": 3800000000,
- "Acxiom": 1300000000,
- "Adcole": 15000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Alliance For Automotive Innovation": 10000000,
- "Allied Universal": 20000000000,
- "Allison Transmission": 2700000000,
- "Alpena County Regional Airport": 32700000,
- "Alpine Electronics": 2500000000,
- "Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Mathematical": 10300000,
- "Amway": 8800000000,
- "Amway North America": 9500000000,
- "Arconic": 9000000000,
- "Argus Cyber Security": 22000000,
- "Armenian Evangelical Church": 30900000,
- "Arotech": 91300000,
- "Artistry": 13200000,
- "Association of American Physicians": 35500000,
- "At Home store": 1700000000,
- "Atotech": 1500000000,
- "Atria Senior Living": 778500000,
- "Australian Laboratory Services": 6600000000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Axalta": 4100000000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BUILDON": 20300000,
- "Baird investment bank": 3400000000,
- "Baker Perkins": 53900000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bay Metro": 34900000,
- "Beckman Coulter": 2100000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bertelsmann SE & Co. KGaA": 20800000000,
- "Between the Lines": 12200000,
- "Big Boy Restaurants": 26600000,
- "Blick Art Materials": 245200000,
- "Blue Water Area Transit": 50700000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Boys & Girls Clubs of America": 320000000,
- "Bradford White": 300000000,
- "Breitling": 588300000,
- "Brewery Collectibles Club of America": 25800000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CDW": 23800000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cambium Learning Group": 160000000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Capital Impact": 10000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carpenter Technology": 2400000000,
- "Casella": 1100000000,
- "Center for Autism": 500000000,
- "Ceros": 25000000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "College Hunks Hauling Junk": 100000000,
- "Colon Community Schools": 33000000,
- "Comau": 1900000000,
- "Concord Community School District": 24800000,
- "Conrad Machine": 26600000,
- "Consolidated": 1200000000,
- "ConsumersCU": 11700000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Credit Union Family Service Center": 17200000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "DECTRIS": 38500000,
- "DENSO CORPORATION.": 43500000000,
- "DLA": 3600000000,
- "Daily Press": 10000000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dematic": 3200000000,
- "Desigual": 975000000,
- "Detroit Beer": 12000000,
- "Detroit Waldorf School": 18600000,
- "Detroit Water and Sewerage Department": 10000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "E tools": 45800000,
- "ESR Technology": 30000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Egnater amps": 45100000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elring Klinger": 1800000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evrensel": 16800000,
- "Exact Data": 20000000,
- "FIAMM": 46400000,
- "FIRST": 18700000,
- "FRC": 53800000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Fathead": 14700000,
- "Federal Realty Investment Trust": 1000000000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Flagship Credit": 18300000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forman Mills": 296800000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Garrett Motion": 3600000000,
- "Generac Power Systems": 4600000000,
- "General Dynamics Land Systems": 3000000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gentherm": 1100000000,
- "Genuine Parts Company": 20500000000,
- "Gill Industries": 55100000,
- "Gilson Graphics Inc.": 17400000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Godwin Heights Public Schools": 12400000,
- "Golder Associates Inc.": 1000000000,
- "GolfWRX": 10000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Graham Media Group": 600000000,
- "GreatSchools": 11000000,
- "Grenzebach": 52000000,
- "Griggs": 47000000,
- "Grindline Skateparks": 27600000,
- "Guardian Alarm": 400000000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Hakim Optical Laboratory Limited": 19900000,
- "Hall Render": 10700000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanes": 6200000000,
- "Hanna Instruments": 220000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Harness IP": 80000000,
- "Haworth": 2300000000,
- "Healthcare Information and Management Systems Society": 88500000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Houghton County Memorial Airport": 20300000,
- "House of Flavors": 31400000,
- "Hughes Network Systems": 2000000000,
- "Huhtamaki": 53200000000,
- "Hydro": 21600000000,
- "ICC": 75000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IU Health": 7900000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Innovative Interfaces": 750000000,
- "International Society for Performance Improvement": 18300000,
- "Inventors": 10000000,
- "Invest Financial Corporation": 290000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kalitta Air": 200000000,
- "Kelly Services": 5000000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Kmart Corporation": 6000000000,
- "Knight Foundation": 12800000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Koppers": 2000000000,
- "Kroll": 3000000000,
- "Kvadrat A/S.": 35000000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LG Chem": 37200000000,
- "Ladies' Library Association of Kalamazoo": 23100000,
- "Lake Michigan Credit Union": 368600000,
- "Lakeshore Entertainment": 30000000,
- "Landmark Worldwide": 29100000,
- "Lansing School District": 177000000,
- "Leader Dogs For the Blind": 10000000,
- "Lee's Famous Recipe": 10100000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Leo Burnett Company Inc.": 1500000000,
- "Leoni Special Cables": 5400000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lifestyle Stores": 1300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston Daily Press": 21700000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Lumileds": 1400000000,
- "MANN HUMMEL": 4700000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Madison District": 12700000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Mahindra": 13100000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "MasterCraft": 761500000,
- "Material Sciences": 75000000,
- "McLane Company": 50000000000,
- "Measurement Incorporated": 63000000,
- "Medline Industries": 20200000000,
- "Meridian Entertainiment Inc.": 10900000,
- "Mesa Air Group": 467100000,
- "Metalor": 339700000,
- "Michigan Sugar": 46600000,
- "Micron Technology": 30800000000,
- "MidAmerican Energy": 66000000,
- "Miller Canfield": 106700000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morley Companies": 19600000,
- "Mount Clemens Community School District": 18200000,
- "Mountain Warehouse": 50000000,
- "Mullen": 93200000,
- "Multimatic": 1500000000,
- "Mutual of America": 100000000,
- "MyMichigan Health": 2600000000,
- "NABET-CWA": 13400000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "NOVARES": 1400000000,
- "NSF": 300000000,
- "National Day of Prayer": 29000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "New Bright": 25000000,
- "New Harbinger": 14200000,
- "Nichia": 1000000000,
- "Nikola Corporation": 44000000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "Novacam": 10000000,
- "O.C. Tanner company": 540000000,
- "ON Semi": 8300000000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Old Orchard Brands": 103300000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
- "Onward Technologies": 44100000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PAN Foundation": 450400000,
- "PCB Piezotronics": 400000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park West Gallery": 12400000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "Paulist": 18800000,
- "Payanywhere": 10000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Plex Systems": 150000000,
- "Plum Market Inc.": 26000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Premier Drums": 10000000,
- "Premiere Networks Inc.": 30000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Publicis Sapient": 2700000000,
- "QAD Allocation": 12000000,
- "Quaker Houghton": 1900000000,
- "Quark": 40000000,
- "Quiznos": 50000000,
- "ROSSETTI": 31500000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Radio Flyer": 26100000,
- "Rainforest Cafe": 10000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Reid Supply Company": 19500000,
- "Relax The Back": 11600000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Ricardo PLC.": 462300000,
- "RightSignature": 11000000,
- "Rockwell Medical": 68800000,
- "Roehl Transport": 421300000,
- "Roland Berger": 950000000,
- "Roly Poly": 16400000,
- "Rotel": 38800000,
- "Roush Performance": 27700000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "SAP Ariba": 1600000000,
- "SC Johnson": 11000000000,
- "SEND International": 12800000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saginaw Spirit": 16200000,
- "Saginaw Township Community Schools": 12900000,
- "Saginaw Transit Authority Regional Services": 14500000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Samford": 173000000,
- "Schlumberger Limited": 27800000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Scm Group": 50000000,
- "Seasons 52": 300000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "ServiceMaster Clean": 48500000,
- "Sharper Image": 200000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Small Stone": 11500000,
- "Smarte Carte": 26000000,
- "Smartsheet": 712000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sodexo": 22300000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Spark Foundry": 600000000,
- "Special Libraries Association": 15800000,
- "Spring Lake Public Schools": 18300000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Sturgis Journal": 30900000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Sundberg Ferar": 10000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "TRUMPF": 10200000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Tandy Leather Factory": 81600000,
- "Teck Resources": 12600000000,
- "Teijin": 7300000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Evening News": 44300000,
- "The Holland Sentinel": 10400000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Oakland Post": 12600000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Trescal": 154000000,
- "Trinseo": 5000000000,
- "Tubby's": 40900000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFP Technologies": 80000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Van Andel Institute Purple Community": 50000000,
- "Vauto": 150000000,
- "Venture For America": 17500000,
- "Vera Bradley": 513100000,
- "Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Volkswagen": 51300000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Warner Norcross & Judd": 15700000,
- "Warrior Sports": 95000000,
- "Webasto": 250000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wieland Group": 6100000000,
- "Wilbraham & Monson Academy": 22100000,
- "Wilson Sporting Goods": 769700000,
- "Wings Financial": 243000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Workiva": 468700000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Yellow Pages Directory": 15100000,
- "ZEISS": 8800000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
- },
- "Minnesota": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AMC Theatres": 3900000000,
- "AR-15": 6000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "AgriBank": 671200000,
- "Agropur": 7700000000,
- "Air Canada": 12200000000,
- "Airborne Athletics": 52900000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Allina Health": 4700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmeriPride": 600000000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Anaplan": 592200000,
- "Applegreen plc.": 3400000000,
- "Arconic": 9000000000,
- "Arvest Bank": 958800000,
- "Asmodee": 765000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
- "Avanade": 3900000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Aviat Aircraft": 8000000,
- "Axis Communications": 1300000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baird investment bank": 3400000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beckhoff": 1100000000,
- "Beckman Coulter": 2100000000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Blick Art Materials": 245200000,
- "Blue Mountain Brewery": 21300000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Board of Editors in the Life Sciences": 4800000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bright Health Inc.": 3800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau of Engraving and Printing": 10000000,
- "CBA The Association for Christian Retail": 10000000,
- "CBS News": 94000000,
- "CDW": 23800000000,
- "COKeM International": 15800000,
- "CURTISS-WRIGHT": 2500000000,
- "Calix": 1500000000,
- "Camso": 1300000000,
- "Candlewick": 15000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlton Cards": 4700000,
- "Carvel": 5700000,
- "Centennial School District": 33800000,
- "Cerner": 5800000000,
- "Chainalytics": 34000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Jackson Minnesota": 13800000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Clearswift Limited": 31100000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "Codexis": 132700000,
- "College Hunks Hauling Junk": 100000000,
- "College Possible": 22500000,
- "Condor": 10000000,
- "Consolidated": 1200000000,
- "Constant Contact": 361900000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Craftsy": 26900000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DJO Global": 1200000000,
- "DTN Ag.": 250000000,
- "Daily Gazette": 10200000,
- "Dangerous Man Brewing": 4600000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "DecoPac": 150000000,
- "Diamond Foundry": 15000000,
- "DirecTV Stream": 33300000000,
- "Diversey Holdings": 2700000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorsey & Whitney": 13800000,
- "Dow Jones": 1600000000,
- "Drury Hotels": 620000000,
- "Duluth News Tribune": 10000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "ECI": 48000000,
- "EDP Renovaveis": 2100000000,
- "ENCORE SOFTWARE LLC.": 6600000,
- "ENvizion Medical": 4000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "East Side Review": 16700000,
- "Ecumen": 165000000,
- "Education Minnesota": 6900000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Exact": 245000000,
- "Exact Data": 20000000,
- "Exosite company": 15000000,
- "Experimental Aircraft Association": 15600000,
- "FLEXcon": 400000000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Federated Insurance": 1300000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "First Allied Corporation": 21900000,
- "Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Fortune Brands Innovations": 5000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fsc": 44200000,
- "Fulton Beer": 20600000,
- "Future Publishing": 3300000000,
- "GE HealthCare": 17700000000,
- "GEHA Holdings Inc.": 4500000000,
- "GMAC Ally Financial": 8400000000,
- "Gallup": 187000000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Getac": 887700000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Graef-USA Inc.": 40300000,
- "Grand Central Baking Company": 20700000,
- "Green Giant": 422000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "Guy Carpenter": 1700000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "HackHands": 3000000,
- "Hair Club": 400000000,
- "Hal Leonard": 254000000,
- "Harbor Freight": 5000000000,
- "Hazelden Betty Ford": 186300000,
- "HealthPartners": 6600000000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IHEARTMEDIA": 3800000000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "JP Rifles": 12700000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jacob Schmidt Brewing Company": 10000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jetcraft": 26900000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KWIK TRIP": 5000000000,
- "Kaplan": 1500000000,
- "Kelly Services": 5000000000,
- "Kemps company": 22400000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "L. G. Everist": 10000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Land O'Lakes": 16000000000,
- "Landmark Worldwide": 29100000,
- "Lattice Semiconductor": 585600000,
- "Learning Express Toys": 2500000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Livestrong Foundation": 10500000,
- "Livingston International": 40000000,
- "Llewellyn": 17200000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Love Home Swap": 10300000,
- "Lovesac": 389800000,
- "Lowry Solutions": 31000000,
- "Lunds & Byerlys": 106300000,
- "Luverne Senior High School": 27100000,
- "MAT Holdings Inc.": 1500000000,
- "MDU Resources": 7000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MVTA": 1200000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Martin Williams Advertising Inc.": 63300000,
- "Matson": 4300000000,
- "Maxwell Technologies Inc.": 77500000,
- "Mayo Clinic": 14000000000,
- "Mayo Clinic Health System": 27900000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Micron Technology": 30800000000,
- "Midcontinent Independent System Operator": 380300000,
- "Midwest Communications": 36300000,
- "Milliman": 1200000000,
- "Minerva Project": 5500000,
- "Minneapolis Fed": 5100000,
- "Minnesota Department of Commerce": 1000000000,
- "Minnesota Mining and Manufacturing": 34000000000,
- "Minnesota Society of CPAs": 30600000,
- "Minnesota Swarm": 16300000,
- "MintPress News": 7000000,
- "Mohawk Industries": 11800000000,
- "Molycorp Inc.": 460400000,
- "Mosaic": 7200000000,
- "Mounds View High School": 2400000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "MyVillager": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Bank of Commerce": 32600000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Model Railroad": 5300000,
- "NetApp": 6500000000,
- "New Flyer": 2400000000,
- "Nikola Corporation": 44000000,
- "North Oaks Golf Club": 10400000,
- "Northwest Bank": 510300000,
- "NuStar Energy": 3200000000,
- "OOCL": 33600000,
- "Oklahoma Department of Wildlife Conservation": 4200000,
- "OneMain Financial": 4100000000,
- "Organic Consumers": 17900000,
- "Orkin": 1000000000,
- "Osseo Area Schools": 1300000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCB Piezotronics": 400000000,
- "PCL Construction": 6300000000,
- "PREIT Services LLC.": 300500000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Paul Gauguin Cruises": 15000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phillips Distilling": 24000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "PlayNetwork": 86000000,
- "Ponderosa & Bonanza Steakhouse": 11600000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Prairie Farms": 3100000000,
- "Premier Lacrosse League": 2000000,
- "Pretzelmaker": 125000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Prodege": 200000000,
- "Pronto Software": 85000000,
- "Publicis Sapient": 2700000000,
- "Pythian": 100000000,
- "Qorvo": 1200000000,
- "Qualtrics": 1400000000,
- "Quantum Alliance": 402600000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "ReconRobotics": 10300000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Renewable Energy Group": 2900000000,
- "Reputation": 18500000,
- "Resideo": 6300000000,
- "Rexair": 35000000,
- "Robinson Fresh": 11400000,
- "Roche Bobois": 8300000,
- "Rochester Lourdes High School": 10100000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Ronald McDonald House Charities": 59500000,
- "Rosetta Stone": 182700000,
- "Roseville Area Schools": 13500000,
- "Rotel": 38800000,
- "Royal Purple": 35700000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "SABIS Educational Services S.A.L.": 25400000,
- "SAP": 33500000000,
- "SAP Ariba": 1600000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SIFCO": 89600000,
- "SKECHERS USA Inc.": 6900000000,
- "SPIRE Credit Union": 19300000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint John's Preparatory School": 52400000,
- "Saint Louis Bread Company": 5900000000,
- "Saint Paul Police Department": 28200000,
- "Saint Paul's Outreach": 12400000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schmitt Music": 20600000,
- "Schuylkill Transportation System": 44000000,
- "SeaQuest aquariums": 2400000,
- "Seaboard": 11200000000,
- "Seagate Technology": 9400000000,
- "Securian": 6600000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sezzle": 117800000,
- "Shane Co.": 30800000,
- "Shofur": 23900000,
- "Showplace Icon": 38900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simplot": 6000000000,
- "Sisters of St. Joseph of Carondelet": 29400000,
- "Siteimprove": 100000000,
- "Sleep Number": 2100000000,
- "Smallwood": 30000000,
- "Smarte Carte": 26000000,
- "Smith & Nephew": 5200000000,
- "Society For Industrial Microbiology and Biotechnology": 4600000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Solve": 8000000,
- "Sonder Holdings Inc.": 123000000,
- "Sound 80": 21700000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Space Aliens Grill & Bar": 10000000,
- "Spring Lake Park Schools": 45600000,
- "St. Cloud Regional Airport": 46800000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Stardock": 5800000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Suzlon": 873000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "Synovis Life": 75000000,
- "TDK": 14000000000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Talonbooks": 4600000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "TeamUnify": 1700000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Playwrights' Center": 3300000,
- "The Remnant Newspaper": 1800000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Topeka Metro": 6900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Totino's": 1900000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of St. Thomas School of Law": 273200000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VMware": 13200000000,
- "VStar Entertainment Group": 12100000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vestas": 15500000000,
- "Viad": 913700000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "W. W. Grainger": 15200000000,
- "WILSONS LEATHER": 250000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Wayzata Public Schools": 7100000,
- "West Central Area Schools": 18300000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "Wheaties": 10200000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wilson Sporting Goods": 769700000,
- "Winco Incorporated": 27400000,
- "Wings Financial": 243000000,
- "Winmark": 80700000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "ZEISS": 8800000000,
- "Ziebart": 1200000000,
- "Zonda Home": 50000000,
- "Zumiez": 1100000000
- },
- "Mississippi": {
- "ABC Supply": 12100000000,
- "ABCya": 1000000,
- "ACCO Brands": 2100000000,
- "AFL-CIO": 138000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Andrew Jackson Council": 35100000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Bayou Academy": 16000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Biloxi High School": 17800000,
- "Biofuels Center of North Carolina": 5400000,
- "Blue Bell Creameries": 675000000,
- "Bojangles": 560000000,
- "Bollinger Shipyards": 1000000000,
- "Borden Dairy": 1200000000,
- "BorgWarner": 15300000000,
- "Brookdale": 2700000000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "C Spire": 5000000000,
- "Cal-Maine Foods": 3000000000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Cellular Sales": 1700000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christian Television Network": 12200000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clarion Ledger": 27000000,
- "Clark Construction": 5000000000,
- "Coast Transit Authority": 11900000,
- "College Hunks Hauling Junk": 100000000,
- "Community Coffee": 245000000,
- "Conduent Business Services LLC.": 3900000000,
- "Core & Main Inc.": 6100000000,
- "Country Road": 208600000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Cyient Inc.": 575100000,
- "DAV": 3900000,
- "DEX Imaging": 284000000,
- "DMI Inc.": 705000000,
- "Dawn Foods": 1100000000,
- "Delta Regional Authority": 10000000,
- "Denbury": 1700000000,
- "Diamond Comics": 2700000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ergon Refining": 4500000000,
- "Fat Possum Records": 29700000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FishingBooker": 310000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GSC Enterprises Inc.": 34000000,
- "GardaWorld": 3800000000,
- "General Motors": 147200000000,
- "Georgia Collegiate Athletic": 4900000,
- "Globe Life Insurance": 5200000000,
- "Golden Triangle Regional Airport": 31100000,
- "Great River Railroad": 12200000,
- "GreenPal": 1200000,
- "Greenville MS": 6000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "Gulfport\u2013Biloxi International Airport": 3500000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Havoline": 494000,
- "Haworth": 2300000000,
- "Haynes": 45700000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Hunter Douglas Group": 4600000000,
- "Hustle Gang": 2800000,
- "IDLE AIR": 9000000,
- "IHEARTMEDIA": 3800000000,
- "IQOR": 1000000000,
- "InTown Suites": 3400000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Insurify": 9300000,
- "Intelitek": 3300000,
- "Interfor": 354900000,
- "Invest Financial Corporation": 290000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jackson Academy": 12400000,
- "Jackson Free Press": 5700000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JustShareIt": 1000000,
- "KONE": 10900000000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Kwik Shop": 595000000,
- "LAZY MAGNOLIA": 4700000,
- "LCMC Health": 1700000000,
- "Laclede Group": 2200000000,
- "Landry's": 4600000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lennys": 9000000,
- "Level 3 Communications": 17500000000,
- "Liberty FCU": 11300000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
- "Logitech": 5500000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Material Sciences": 75000000,
- "Mazzio's": 6500000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merit Energy": 9200000,
- "Mississippi Export Railroad": 12000000,
- "Moe's Southwest Grill": 295500000,
- "Money Management": 30000000,
- "Motiva Enterprises": 20800000000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Oilwell Varco": 7200000000,
- "OMNOVA": 750000000,
- "Ochsner": 5900000000,
- "Ole Miss": 365000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Packaging Corporation of America": 8400000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "PharMerica": 2100000000,
- "Philadelphia Water Department": 10000000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pirouline": 2300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Postlethwaite & Netterville": 11800000,
- "Prairie Farms": 3100000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "Rayonier": 1100000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rexair": 35000000,
- "Rolls-Royce": 15300000000,
- "Rooms To Go": 2500000000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Soul of the South": 1900000,
- "Southwest": 22700000000,
- "Southwestern Athletic Conference": 3300000,
- "Sprint Mart": 25800000,
- "Square Books": 2400000,
- "Sqwincher": 23500000,
- "St Lawrence County Historical Association": 13000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Sweet Potato Queens": 1700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TVA": 13000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Technology Student Association TSA": 10000000,
- "Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Things Remembered": 300000000,
- "Tim Hortons": 2800000000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNICOR": 6400000,
- "USALCO": 7300000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "Vera Bradley": 513100000,
- "Vicksburg Area Transit System": 1800000,
- "Victoria's Secret": 5400000000,
- "Viking Range": 7000000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WEHCO Media": 380000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Western Line": 32900000,
- "Western Sizzlin' Corp.": 6400000,
- "Which Wich": 79500000,
- "Wicks N' More": 6000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Missouri": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ASCE": 15700000,
- "ASEA Brown Boveri": 28800000000,
- "AUSA": 23000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acf Industries": 25000000,
- "Adorers of the Blood of Christ": 4200000,
- "Adventure Landing": 2000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Air Canada": 12200000000,
- "Alembic Inc.": 8700000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Academy of Environmental Medicine": 19300000,
- "American College of Apothecaries": 3200000,
- "American Eagle Outfitters": 5000000000,
- "American Outdoor Brands": 278600000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Andrews McMeel": 24200000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Arvest Bank": 958800000,
- "Asian Paints": 7000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atlanta Public Schools": 38500000,
- "Aurora Organic Dairy": 30100000,
- "Avadel Pharmaceuticals": 22300000,
- "Avail Company": 4200000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJC HealthCare": 5700000000,
- "BW Papersystems": 300000000,
- "BYK Additives & Instruments": 1200000000,
- "BabyFirst": 44700000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Benchmark Email": 13600000,
- "Big Whiskey's": 2000000,
- "Bishop DuBourg": 7200000,
- "Bishop LeBlond High School": 15900000,
- "Black Bear Diner": 18700000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "Blue KC": 4500000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bluescope Steel Welded Products": 11700000000,
- "Boehringer Ingelheim": 23300000000,
- "Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "Botanical Society of America": 11800000,
- "Brass Armadillo": 13300000,
- "Breckenridge Brewery": 30000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "Burlington Junction Railway": 18600000,
- "Burton Snowboards": 400000000,
- "C2FO": 98700000,
- "CNN Films": 1500000000,
- "CVidya": 12100000,
- "California Mathematics Project": 11200000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Can-Am Off-Road": 6300000000,
- "CapFed": 208800000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Chaminade College Preparatory School": 26500000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Children International": 114400000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Brothers College High School": 13600000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
- "Cincom": 196800000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Cloudflare": 894100000,
- "Cofactor Genomics": 6000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Daily Tribune": 2900000,
- "Comfort Dental": 17800000,
- "Community Coffee": 245000000,
- "Consolidated": 1200000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Conversica": 35000000,
- "Convoy of Hope": 21500000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Cortex Innovation Community": 2600000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Credit Sesame": 45000000,
- "Crown Financial Ministries": 10700000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Crunchbase": 60000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "Cutco Corporation.": 200000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "EPR Properties": 612500000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Elsevier": 3500000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Estes Rockets": 30600000,
- "Ethan Allen": 845000000,
- "FM Global": 5000000000,
- "Farmer Brothers": 469200000,
- "Farmington MO": 15400000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "First Databank": 70000000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Francis Howell School District": 2300000,
- "Franklin Resources Inc.": 2900000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "GE HealthCare": 17700000000,
- "GEHA Holdings Inc.": 4500000000,
- "GFL Environmental": 6400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Goedeker's": 362300000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Goodrich Quality Theaters": 2100000,
- "Goons of Balatroon": 1000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Grove Collaborative": 361900000,
- "Grupo Elektra": 7900000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halls": 15100000,
- "Handmark": 11500000,
- "Hapag-Lloyd": 33100000000,
- "Happy Egg": 25000000,
- "Harbor Freight": 5000000000,
- "Harbour Group": 1300000000,
- "Haworth": 2300000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Houlihan's": 750000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "IES": 10000000,
- "IHEARTMEDIA": 3800000000,
- "INB": 42000000,
- "Imo's. Pizza": 200000000,
- "InTown Suites": 3400000,
- "Indiana Public Retirement System": 6200000,
- "Ingredion Incorporated": 7200000000,
- "Insurify": 9300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Justin Boots": 40000000,
- "KCPD": 20600000,
- "KONE": 10900000000,
- "KVC Health Systems": 7400000,
- "Kaiser Permanente": 93100000000,
- "Kaltura": 169400000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirksville Regional Airport": 14000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kranzberg Arts Foundation": 16800000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "LEGO": 8100000000,
- "Laclede Group": 2200000000,
- "Leaf Trading Cards": 2400000,
- "Lee's Famous Recipe": 10100000,
- "Leggett & Platt": 5300000000,
- "Leia Inc.": 10000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Teen": 3000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lippincott Williams & Wilkins": 4200000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lotuspool Records": 11100000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "MAT Holdings Inc.": 1500000000,
- "MBB SE.": 680300000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Marel hf.": 1600000000,
- "Maritz Holdings Inc.": 25900000,
- "McLane Company": 50000000000,
- "Mechanix Wear Canada Inc.": 12900000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "MetaMatrix": 7000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Police Department - City of St. Louis": 21500000,
- "Mexico Ledger": 52900000,
- "Microsemi": 1700000000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Mimi's Cafe": 23000000,
- "Missouri Foundation for Health": 9200000,
- "Missouri State High School Activities Association": 30800000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Munger Moss Motel": 21900000,
- "Munich Re": 73300000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NIDEC": 15600000000,
- "NISA Investment": 59000000,
- "NJVC": 45000000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Building Arts Center": 22400000,
- "National Model Railroad": 5300000,
- "Neiman Marcus": 2600000000,
- "Neosho Daily News": 36100000,
- "Nerinx Hall": 9100000,
- "NetApp": 6500000000,
- "Netsmart": 526000000,
- "New Scientist": 26700000,
- "New York Life Investments": 27100000,
- "News-Press & Gazette Company": 9800000,
- "News-Press NOW": 10200000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "North Sails": 27500000,
- "NuStar Energy": 3200000000,
- "OCLC": 214600000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paralyzed Veterans of America": 26500000,
- "Park Hill High School": 105600000,
- "Parker Hannifin": 15900000000,
- "Patric Chocolate": 18900000,
- "Patriot Rail": 120200000,
- "Paylocity Corporation": 923400000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Prairie Farms": 3100000000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Purina One": 10000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Rackspace": 3100000000,
- "Radio Flyer": 26100000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Renkus-Heinz": 6900000,
- "Riot Games Inc.": 1800000000,
- "Robinson Fresh": 11400000,
- "Rock & Brews": 33300000,
- "Roehl Transport": 421300000,
- "Rolls-Royce Motor Cars": 940000000,
- "Roman Catholic Diocese of Jefferson City": 22100000,
- "Rotel": 38800000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SAP": 33500000000,
- "SBA Communications": 2500000000,
- "SEND International": 12800000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "SSM Health": 8500000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schnucks": 3000000000,
- "Schott NYC": 143300000,
- "Schreiber Foods": 4800000000,
- "Seaboard": 11200000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Seminis": 22200000,
- "Sensient Technologies Corporation": 1400000000,
- "Shakespeare's Pizza": 5900000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Sioux Chief": 42000000,
- "Sisters of St. Joseph of Carondelet": 29400000,
- "Sleep Number": 2100000000,
- "Smith Electric Vehicles": 25000000,
- "Sonoco": 6500000000,
- "Southeast Missourian": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Space Perspective": 5000000,
- "Sqwincher": 23500000,
- "St Lawrence County Historical Association": 13000000,
- "St. Charles Area Transit": 12600000,
- "St. Joseph's Academy": 10000000,
- "St. Louis Public Safety Department": 10800000,
- "St. Louis Public Schools": 13300000,
- "Stantec": 3100000000,
- "Starr Insurance Companies": 3500000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steampunk Brew Works": 36600000,
- "Steelcase Inc.": 3100000000,
- "Stephen Ministries": 27000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Student Transportation of America": 637200000,
- "Suit Supply France SARL": 350000000,
- "Summit Management": 34000000,
- "Sun Life": 17200000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tacony": 285000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The First Line": 18800000,
- "The Hartford": 21400000000,
- "The Legal Aid": 18000000,
- "The Maneater": 22900000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Olathe News": 11700000,
- "The Parking Spot": 46000000,
- "The Peninsula Hotels": 288800000,
- "The Scoular Company": 4000000000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trading Places": 27200000,
- "Trans-Lux": 15700000,
- "Trelleborg": 3000000000,
- "TriWest": 80000000,
- "True Digital Security": 14000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Unit 4": 550000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Utilimaster Corporation": 850000000,
- "VAST Data": 100000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "VanEck": 25000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Virtusa": 1300000000,
- "Viscofan": 932100000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voltron": 4800000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Wentworth Military Academy & College": 1200000,
- "West Nodaway High School": 5800000,
- "Western & Southern Financial Group": 5300000000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wieland Group": 6100000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Woodland Scenics": 22400000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wyoming Library": 32800000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
- },
- "Montana": {
- "ABC Supply": 12100000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Academy of General Dentistry": 8000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Indian College Fund": 7800000,
- "American Trucking Associations": 180900000,
- "Andrew Christian": 8000000,
- "Applied Materials": 25200000000,
- "At Home store": 1700000000,
- "Aurora Innovation Inc.": 145300000,
- "Avista Utilities": 1500000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bicycle Health": 8700000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Black Rifle Coffee": 233100000,
- "Bozeman High School": 15000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burton Snowboards": 400000000,
- "CACI": 6200000000,
- "CHEF'STORE": 1100000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Camp Fire": 10000000,
- "Centene": 144500000000,
- "Center for Inquiry": 306000,
- "Chick-fil-A": 5800000000,
- "Clean Juice": 7000000,
- "Coast To Coast Tickets": 4300000,
- "Coca-Cola Europacific Partners": 279000,
- "Computerworld": 40900000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Culligan": 1400000000,
- "DAV": 3900000,
- "DataWorks Plus": 3000000,
- "Defenders of Wildlife": 8400000,
- "Demag Cranes": 25200000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "EMAC website": 5700000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Ethan Allen": 845000000,
- "Express Arrow": 12300000,
- "Farmer Brothers": 469200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "Flathead Beacon": 3300000,
- "Forrester": 525100000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "Gibson Brands Inc.": 366600000,
- "Great Harvest": 21200000,
- "Grindline Skateparks": 27600000,
- "HELM Boots": 7000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "Hwy 55": 3400000,
- "IGA": 250000000,
- "Informed Jury": 2800000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Johns-Manville Corporation": 3000000000,
- "Johnson Braund": 11000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Keller Rohrback": 39800000,
- "Kirby Company": 500000000,
- "Knots of Love": 4300000,
- "Land Trust Alliance": 4100000,
- "Level 3 Communications": 17500000000,
- "Lifepoint Health": 8300000000,
- "Lifestyle Stores": 1300000000,
- "Lincare Holdings": 2000000000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "MOOYAH": 11700000,
- "Magnite": 145200000,
- "Main Event": 678000000,
- "Marine Turbine": 50000000,
- "Minneapolis Fed": 5100000,
- "Missoula Montana Airport": 22900000,
- "Missoulian": 6600000,
- "Montage Hotels": 400000000,
- "NOAA Weather Radio": 36400000,
- "NRDC": 190000000,
- "National Oilwell Varco": 7200000000,
- "National Pasta Association": 4000000,
- "Oerlikon": 3100000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Pace Analytical": 450000000,
- "Parkland": 19500000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "PharMerica": 2100000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Plain Green Loans": 7000000,
- "Planned Parenthood": 1600000000,
- "Polar Bears International": 4400000,
- "Prairie Farms": 3100000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "Red Feather": 2000000,
- "Red Wing Shoes": 700000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Schweitzer Engineering Laboratories": 1000000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Sibanye-Stillwater": 2300000000,
- "Sleep Number": 2100000000,
- "Snowflake": 1900000000,
- "SodaStream": 476100000,
- "Stanley Steemer": 9500000,
- "Stericycle": 3600000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Terracon": 77100000,
- "The Intercept": 8000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Fish and Wildlife Service": 8600000,
- "University of Montana": 452400000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Victoria's Secret": 5400000000,
- "Vista Outdoor": 3200000000,
- "W. W. Grainger": 15200000000,
- "Western Sugar": 250000000,
- "Whelen": 500000000,
- "Williston Basin International Airport": 7000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Workiva": 468700000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellowstone to Yukon Conservation Initiative": 6100000,
- "Yeti Cycles": 20700000,
- "ZERO POINT ZERO": 4100000,
- "Ziply Fiber.": 370000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Nebraska": {
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Adtile Technologies": 3600000,
- "Aflac Incorporated": 19300000000,
- "Airtel India": 14300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "American Trucking Associations": 180900000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Association of Free Lutheran Congregations": 6500000,
- "Asure Software": 76600000,
- "AsureQuality": 173000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Berkshire Hathaway Inc": 224000000000,
- "Bicycle Health": 8700000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "BluePrint Engines": 10600000,
- "Booz Allen": 8800000000,
- "Brass Armadillo": 13300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookdale": 2700000000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "CBA The Association for Christian Retail": 10000000,
- "Callaway Golf": 3700000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carroll School": 2000000,
- "Carvel": 5700000,
- "Cedar County News": 52900000,
- "Center for Autism": 500000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Cici's": 18300000,
- "Citi Trends": 862200000,
- "City of Aurora": 18300000,
- "City of McCook": 26100000,
- "Clark Brands": 23000000,
- "Clean Juice": 7000000,
- "CleanTechnica": 7000000,
- "College Hunks Hauling Junk": 100000000,
- "Coney Island USA": 4200000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cooper Foundation": 10300000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
- "DTN Ag.": 250000000,
- "Davey Tree": 1500000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drexel Hamilton": 14800000,
- "Dry Dock Brewing Company": 6800000,
- "ECreamery Ice Cream and Gelato": 5400000,
- "EMAC website": 5700000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Evangelical Free Church of America": 5200000,
- "Exact Data": 20000000,
- "Express Arrow": 12300000,
- "FLEXcon": 400000000,
- "Farmer Brothers": 469200000,
- "Fat Brain Toys": 40000000,
- "Ferrellgas": 2100000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fox Network": 3000000000,
- "FracTracker": 482000,
- "Fractal Design": 39500000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GATX India Private Limited": 1300000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "GreatSchools": 11000000,
- "Green Flash Brewing": 47000000,
- "GreenPal": 1200000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hornady": 8100000,
- "HuHot Mongolian Grill": 7000000,
- "Hughes Network Systems": 2000000000,
- "Hustle Gang": 2800000,
- "Hy-Vee": 12000000000,
- "ICE Mortgage Technology": 690100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "Infofree": 34800000,
- "Insurify": 9300000,
- "Intelitek": 3300000,
- "IntelliQuote": 2000000,
- "Intercessors of the Lamb": 17700000,
- "International Railway Journal": 8700000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "KVC Health Systems": 7400000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Kearney Public Schools": 34200000,
- "Kinder Morgan": 17700000000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "LI-COR": 40000000,
- "Learning Express Toys": 2500000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lincoln Southeast High School": 527500000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Mellow Mushroom": 69000000,
- "Merrick Machine": 47500000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Milliman": 1200000000,
- "ModMed": 250000000,
- "Modelzone": 1684311838,
- "Monolith Inc.": 6000000,
- "Moody's Analytics": 5700000000,
- "MultiMechanics": 5000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NAPAREX": 1400000,
- "NCHC Hockey": 32000000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Celiac Association": 3700000,
- "National Park Foundation": 6300000,
- "Nebraska Furniture Mart": 1600000000,
- "Nebraska Game and Parks": 5800000,
- "Norfolk Daily News": 8000000,
- "NuStar Energy": 3200000000,
- "Omaha Chamber": 2900000,
- "Omaha Public Power District": 6800000,
- "Omaha World-Herald": 44100000,
- "OneMain Financial": 4100000000,
- "Opendorse": 282000,
- "Oriental Trading": 750000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "POET": 310000,
- "PSE&G": 9300000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Printrbot": 3100000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Rodgers Instruments Corporation": 6400000,
- "Rotel": 38800000,
- "Runza": 7000000,
- "Russ's Market": 7600000,
- "Rusty Bucket Restaurant & Tavern": 3500000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRO Motorsports": 787000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sandhills Publishing Company": 205000000,
- "Santa Clara County Federal Credit Union": 14300000,
- "Sarku Japan": 310000,
- "Schmitt Music": 20600000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shari's": 240000000,
- "Shoe Carnival": 1300000000,
- "SkillsUSA": 1800000,
- "Sleep Number": 2100000000,
- "Snapper Inc.": 21000000,
- "Sojern": 110000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Stanley Steemer": 9500000,
- "Star-Herald": 15000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Storz Brewing Company": 7000000,
- "Student Transportation of America": 637200000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Legal Aid": 18000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trihedral Engineering": 6000000,
- "Tripoli": 5000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S. Courts": 1000000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "W. W. Grainger": 15200000000,
- "WP Engine": 200000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Western Sugar": 250000000,
- "Which Wich": 79500000,
- "Winchell's Donut House": 16900000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "XPO Logistics": 7700000000,
- "Yahoo": 7400000000,
- "Yazda": 149000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Nevada": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAGL": 4200000,
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AGRU": 20000000,
- "ALFA International The Global Legal Network Inc.": 10000000,
- "AMC Theatres": 3900000000,
- "APM Monaco": 50000000,
- "Ace Hardware": 7800000000,
- "Advanced Air": 70000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Air Canada": 12200000000,
- "Air Transat": 1300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Van Lines": 22000000,
- "Alogent": 50000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Armstrong": 59900000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "Audemars Piguet Holding SA.": 900000000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
- "Axos Bank": 806700000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BOBST": 1600000000,
- "Baja Fresh": 500000000,
- "Barefoot Books": 8500000,
- "Barrick": 11900000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Bakerie": 4800000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Best Buddies": 3600000,
- "Bicycle Health": 8700000,
- "Big Boy Restaurants": 26600000,
- "Black Bear Diner": 18700000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "Blue Marble Geographics": 11000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
- "Botanical Society of America": 11800000,
- "Boxed Inc.": 183000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Bruxie": 5900000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "Buddy TV": 4300000,
- "Budget Suites of America": 15800000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Canyon Ranch": 150000000,
- "CarParts": 645300000,
- "Carson City Schools": 13700000,
- "Carson Valley Times": 6000000,
- "Carvel": 5700000,
- "Catch A Rising Star": 10200000,
- "Catena Media": 130200000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chewy": 9800000000,
- "Chicago Rockford International Airport": 6800000,
- "Chick-fil-A": 5800000000,
- "Chilli Beans": 6800000,
- "Chr. Hansen": 1100000000,
- "Chugach": 310000,
- "Chukar": 5500000,
- "Churchill County High School": 5600000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of North Las Vegas": 7900000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "Clean Juice": 7000000,
- "CleanTechnica": 7000000,
- "Clearwater Paper": 2000000000,
- "Clive Christian": 7000000,
- "CloudKitchens": 3000000,
- "Cloudflare": 894100000,
- "Codewars": 1000000,
- "Coeur Mining": 783400000,
- "College Hunks Hauling Junk": 100000000,
- "Condor": 10000000,
- "Conrad N Hilton Foundation": 44600000,
- "Consolidated": 1200000000,
- "Consumer Affairs": 29300000,
- "Continental Tire the Americas LLC.": 230000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
- "DAV": 3900000,
- "DKI Services": 17300000,
- "DMI Inc.": 705000000,
- "Dataram": 7900000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Department of Energy": 190000000,
- "Desigual": 975000000,
- "Dignity Health": 14200000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Doft": 14000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "DreamFactory Software": 6000000,
- "Dynata": 380300000,
- "EEOC": 10000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eataly": 250000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Elixio": 2400000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Entertainment Technology Partners": 2000000,
- "Equifax": 5100000000,
- "Equiinet": 10000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Excel Christian School": 13000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Fraternal Order of Police": 33900000,
- "Fred Segal": 10000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Future Sonics": 4800000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "Gama Aviation": 246800000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Motors": 147200000000,
- "Geotab": 440000000,
- "Gibson Brands Inc.": 366600000,
- "Giordanos": 175000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "GreatSchools": 11000000,
- "Green Dot Bank": 1400000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HOSA": 5500000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburger Mary's": 7000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harry Reid International Airport": 26100000,
- "Hattie B": 3500000,
- "Haworth": 2300000000,
- "Hearts On Fire": 13100000,
- "Herb company": 2400000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "IHEARTMEDIA": 3800000000,
- "IMA Group": 1500000000,
- "INFICON": 8000000,
- "IQAir": 20000000,
- "Insurify": 9300000,
- "International Falls Airport": 6000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KGHM": 5200000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kinross": 4000000000,
- "Knots of Love": 4300000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Krispy Krunchy Chicken": 3400000,
- "L.K. Bennett": 91700000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Las Vegas City Schools": 24900000,
- "Las Vegas Sun": 8900000,
- "Laughing Planet": 10000000,
- "Lazy Dog Restaurants": 210000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "LegalMatch": 17600000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifeboat": 6000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Liu Jo.": 324000000,
- "Live Ventures Inc.": 283700000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MOOYAH": 11700000,
- "MP Materials": 499800000,
- "MSC Industrial Supply": 3800000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Matson": 4300000000,
- "MedMen": 172700000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Miami Grill": 150000000,
- "Mimi's Cafe": 23000000,
- "Minden-Tahoe Airport": 1400000,
- "Mineralogical Society of America": 34700000,
- "Miss Virginia USA": 2700000,
- "Modelzone": 1684311838,
- "Moe's Southwest Grill": 295500000,
- "Moment Skis": 6300000,
- "Money Management": 30000000,
- "Mountain Mike's Pizza": 68000000,
- "Move": 473000000,
- "Moyes Delta Gliders": 2100000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "Mynavyexchange": 7000000,
- "NHLPA": 14400000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "Nevada Sagebrush": 5300000,
- "Nicholas Financial": 48200000,
- "Niman Ranch": 65000000,
- "North Las Vegas Airport": 6000000,
- "North Sails": 27500000,
- "OMNILIFE": 3300000,
- "Ocado": 3000000000,
- "Ocorian": 52500000,
- "Off-White": 7000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie Pets Inc.": 20000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PRINOTH AG": 76000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Links": 4000000,
- "Pacific Seafood": 1000000000,
- "Paris Baguette": 11200000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Pediped": 3500000,
- "PeekYou": 6000000,
- "Peet's Coffee": 36700000,
- "Pennymac": 1200000000,
- "PharMerica": 2100000000,
- "Phocas": 50000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pop! Goes the Icon": 8000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Reno Stead Airport": 7400000,
- "RentHop": 1000000,
- "Riverside Partners": 14400000,
- "Robertos Taco Shop": 13900000,
- "Rock in Rio": 4200000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rokon": 3700000,
- "Ron Jon Surf Shop": 18900000,
- "Rosetta Stone": 182700000,
- "Roy's": 23000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "San Antonio Shoemakers": 4700000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Scm Group": 50000000,
- "SeaQuest aquariums": 2400000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Senor Frog's": 8000000,
- "ServiceMaster Clean": 48500000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Slickdeals": 75000000,
- "Society Tea": 4300000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Solectrac": 2500000,
- "Sonatafy": 35000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Sprinkles Cupcakes": 15800000,
- "St. Cloud Regional Airport": 46800000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stephens Media newspapers": 28300000,
- "Stride Inc.": 1400000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "T-Shirt Hell": 10200000,
- "TCBY": 8800000,
- "TGS": 716600000,
- "TOM FORD": 615000000,
- "TRISTAR Productions": 5200000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tactical Air Support": 10300000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telos company": 236800000,
- "Template Infobox MMA training association doc": 3400000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Terrible Herbst": 10000000,
- "Tesla Automation": 14500000,
- "The Church of Jesus Christ": 5200000,
- "The First Line": 18800000,
- "The IACP": 6900000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Save Mart Companies": 4800000000,
- "TheBlaze": 2100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
- "Trace3 LLC.": 1400000000,
- "Trading Places": 27200000,
- "Traffic Safety Store": 19900000,
- "Transunion Chile": 3600000000,
- "Tricon Residential": 513200000,
- "Trump Hotels": 75000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Ordnance Inc.": 2900000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Verifone": 1800000000,
- "Veritiv": 7300000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Volcom": 380000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wahoo's": 69100000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Mutual": 11700000,
- "Whelen": 500000000,
- "Whitaker House": 36000000,
- "Wienerschnitzel": 341000000,
- "Wikiloc": 1000000,
- "WinCo Foods": 7700000000,
- "Winchell's Donut House": 16900000,
- "Windermere Real Estate": 500000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Boxing Organization": 1300000,
- "World Financial Group": 10000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yamana": 1900000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Zuma": 600000000,
- "Zumiez": 1100000000
- },
- "New Hampshire": {
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "Ace Hardware": 7800000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Alembic Inc.": 8700000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Society of Genealogists": 3600000,
- "Amway North America": 9500000000,
- "Appalachian Mountain Club": 2100000,
- "Applegreen plc.": 3400000000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
- "Aubuchon Hardware": 128000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "Bangladesh Submarine Cable Company Limited": 7000000,
- "Beacon Power": 19900000,
- "BeaverTails": 4100000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Best Buddies": 3600000,
- "Bluebeam": 69600000,
- "Bob's Stores": 1000000,
- "Bonchon": 60000000,
- "Bossard": 920500000,
- "Branch Line Press": 25400000,
- "Breezeline": 300000000,
- "BrightFarms": 9000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown Cow Yogurt": 8000000,
- "CACI": 6200000000,
- "CCCERA": 33100000,
- "Camso": 1300000000,
- "Casella": 1100000000,
- "CellGenix": 24600000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Claremont NH": 21700000,
- "Cloudera": 904800000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Compass Media Networks": 7000000,
- "Concord Area Transit": 24100000,
- "Concord's Colonial Inn": 7000000,
- "Consolidated": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Cornwall Tool Library": 10400000,
- "Cracker Barrel": 3300000000,
- "Crane Currency": 700000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "DEKA Research": 46300000,
- "Datalex": 25500000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Einstein Bros. Bagels": 500000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Eversource": 11700000000,
- "Everspin": 62100000,
- "FIRST": 18700000,
- "FatFace": 244700000,
- "Ferrellgas": 2100000000,
- "FormFactor": 747900000,
- "Fortinet": 4100000000,
- "Free State Project": 7600000,
- "Frito-Lay Inc.": 19600000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Golder Associates Inc.": 1000000000,
- "Great Harvest": 21200000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Hayden Shapes": 12000000,
- "Hemlock Society": 10000000,
- "Hershey Creamery Company": 124000,
- "Hippo Press": 8200000,
- "Hobby Lobby": 5300000000,
- "HockeyTech Inc.": 10000000,
- "Homesense": 4100000,
- "Hotpoint": 2800000,
- "Hudson": 2000000000,
- "IHEARTMEDIA": 3800000000,
- "Intelitek": 3300000,
- "Internet Systems Consortium": 6200000,
- "Iron Mountain Incorporated": 5000000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jimmy Fund": 9600000,
- "John Hancock Financial": 9500000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kupenda": 2600000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Lin-Wood Public School": 22600000,
- "Lincare Holdings": 2000000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Lovesac": 389800000,
- "Lyon & Healy": 7000000,
- "M-Audio": 2300000,
- "MFJ Enterprises": 7800000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Manchester Transit Authority": 22200000,
- "Marlow Industries": 1500000000,
- "McLane Company": 50000000000,
- "Meltwater": 401600000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning Journal": 6000000,
- "Moyes Delta Gliders": 2100000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NBT Bank": 30100000,
- "NEMO Equipment": 8000000,
- "NHRS": 29100000,
- "NOAA Weather Radio": 36400000,
- "Net Ministries": 4000000,
- "New Hampshire Women's Bar Association": 14000000,
- "Northway Bank Northway Financial Inc.": 10200000,
- "ON Semi": 8300000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "PRINOTH AG": 76000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Parker Hannifin": 15900000000,
- "Paylocity Corporation": 923400000,
- "Penguin Point": 36700000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Piggly Wiggly": 500000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piping Technology": 80000000,
- "PlaneSense": 10000000,
- "Planned Parenthood": 1600000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "RR Auction": 36500000,
- "Realtor": 118000000,
- "Red Arrow Diner": 3100000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "Renkus-Heinz": 6900000,
- "Rexair": 35000000,
- "Rokon": 3700000,
- "Rotel": 38800000,
- "SAU 39": 10200000,
- "SEPTA": 145600000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Sarku Japan": 310000,
- "Schleuniger": 225800000,
- "SemaConnect": 29000000,
- "Service CU": 11100000,
- "Severud Associates Consulting Engineers P.C.": 7000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Smuttynose Brewing Company": 19000000,
- "Snappii": 7900000,
- "Solidscape": 35300000,
- "Sophia Institute Press": 7000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sylvan Learning": 12600000,
- "TUV NORD": 500000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Technology Student Association TSA": 10000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Berlin Daily Sun": 7000000,
- "The Exonian": 17300000,
- "Things Remembered": 300000000,
- "Thorlabs": 550500000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Bank Morrisville Vermont": 48000000,
- "Unit 4": 550000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of Hawaii Press": 3300000,
- "University of New Hampshire InterOperability Laboratory": 628000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "Virtual Learning Academy Charter School": 3200000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Weathervane Seafoods": 100000000,
- "Westat Research inc.": 597000000,
- "Whelen": 500000000,
- "Wild Willy's Burgers": 9000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Yieldmo": 9000000,
- "Zoom Telephonics": 9000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "New Jersey": {
- "3D International": 4000000000,
- "3Shape": 300000000,
- "A.M. Best Company": 3900000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACG World Wide": 500000000,
- "ACI Worldwide": 1400000000,
- "ACORD": 37200000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "AFL-CIO": 138000000,
- "ALM": 186900000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ATF": 1000000000,
- "ATS Automation": 1800000000,
- "Abacus Federal Savings Bank": 18800000,
- "Acadia": 517200000,
- "Acrisure": 3800000000,
- "Acxiom": 1300000000,
- "Adore Me": 115000000,
- "Aerolineas Argentinas": 1500000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Akorn New Jersey": 682400000,
- "Alkem Laboratories": 1400000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Altair Engineering": 552600000,
- "Alternative Comics": 21000000,
- "Amboy Bank": 60000000,
- "AmeriServ": 10000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Mosquito Control Association AMCA": 26500000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amoroso's": 25000000,
- "Amway North America": 9500000000,
- "Arc Holdings": 3000000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Aspen Insurance": 3700000000,
- "At Home store": 1700000000,
- "Atlantic": 59500000,
- "Atlantic City Jitney": 70100000,
- "Aujas": 17500000,
- "Austrian": 565000000,
- "AvePoint": 215800000,
- "Avvo": 29900000,
- "Axos Bank": 806700000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BOBST": 1600000000,
- "Baird investment bank": 3400000000,
- "Banco Montepio": 600000000,
- "Bare Necessities company": 66000000,
- "Barnes & Noble Education": 1400000000,
- "Barnes & Thornburg": 575500000,
- "Barry Callebaut": 8400000000,
- "Baseball Factory": 10000000,
- "Bassett Furniture": 521500000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "BeenVerified": 14500000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Labs": 75000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berkshire Hathaway GUARD Insurance Companies": 32100000,
- "Bernafon": 138000000,
- "Bessemer Trust": 682100000,
- "Blue Owl Capital": 991600000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Boston Whaler": 40000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "BronxNet": 13100000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "Burlington County Times": 15500000,
- "CACI": 6200000000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CJ Logistics": 1000000000,
- "CSCEC": 203200000000,
- "CSL": 1900000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal Water": 14300000,
- "CardCash": 164100000,
- "Case Western Reserve University": 1200000000,
- "Casella": 1100000000,
- "Catch A Rising Star": 10200000,
- "Cellular Sales": 1700000000,
- "Ceragon": 297400000,
- "Champion's Oncology": 54100000,
- "ChapStick": 20300000,
- "Charles River Associates": 568700000,
- "Charles River Laboratories": 4000000000,
- "Chick-fil-A": 5800000000,
- "Chr. Hansen": 1100000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Climax Brewing": 49700000,
- "Cole-Parmer": 500000000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
- "Comodo": 178500000,
- "Conduent Business Services LLC.": 3900000000,
- "Constant Contact": 361900000,
- "Continental Packaging Solutions": 1000000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
- "Corcentric LLC.": 120000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Courier-Post": 10000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "D'Artagnan": 114500000,
- "D. E. Shaw": 625000000,
- "DJO Global": 1200000000,
- "Dacor": 90000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Deep Foods": 58000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delaware River and Bay Authority": 10100000,
- "Delta Galil": 2100000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "Dictionary Society of North America": 15200000,
- "Digital Realty": 4700000000,
- "DirecTV Stream": 33300000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dow Jones": 1600000000,
- "Dr. Praeger's": 30500000,
- "DriveNets": 200000000,
- "E Trade": 2900000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
- "Ebix": 991100000,
- "Edgewell": 2200000000,
- "Edison Properties": 17000000,
- "Einstein Bros. Bagels": 500000000,
- "Einstein Healthcare Network": 1200000000,
- "Electro Rent": 343800000,
- "Elmwood Cemetery": 18100000,
- "Elsevier": 3500000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Entertainment Community": 10000000,
- "Episcopal Church": 96100000,
- "Equinix": 7300000000,
- "Eros Media World": 203300000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Fashionphile": 57200000,
- "Ferrari": 8700000000,
- "Ferrellgas": 2100000000,
- "Ferrero SpA": 15000000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "FlexWage": 10000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foresters": 1600000000,
- "Forman Mills": 296800000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freightliner": 150000000,
- "FrieslandCampina": 443600000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Financial Corporation": 1000000000,
- "GE HealthCare": 17700000000,
- "GMC": 1000000000,
- "Galaxy Surfactants": 10000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Genie Energy": 353400000,
- "Gibbons P.C. Gibbons": 108100000,
- "Gilead": 27500000000,
- "Glaston Oyj Abp": 206900000,
- "Global Shares Trustees UK Limited": 18700000,
- "Goodman Global Group Inc.": 1900000000,
- "Grand Central Baking Company": 20700000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Groupe SEB": 8800000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HBC": 5600000000,
- "HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hackensack Meridian Health": 4500000000,
- "Hair Club": 400000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hetero USA Inc.": 274900000,
- "Hobby Lobby": 5300000000,
- "Hoboken Volunteer Ambulance Corps Inc.": 10600000,
- "Huawei": 100000000000,
- "Hyundai Motor America": 100700000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "INFINITT": 10000000,
- "IQOR": 1000000000,
- "Iconectiv": 55900000,
- "Industrial Bank": 25000000,
- "InetSoft": 17000000,
- "Ingenuity Cloud Services": 15000000,
- "Ingredion Incorporated": 7200000000,
- "Inquirer": 12200000,
- "InterDigital": 481300000,
- "Intercept Pharmaceuticals": 285700000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Islami": 10000000,
- "JEI Learning Centers LLC.": 17400000,
- "JOC Group": 350000000,
- "Jack Henry": 1300000000,
- "Janssen Global Services": 45600000000,
- "Jeanneau": 600000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Johns-Manville Corporation": 3000000000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Kalitta Air": 200000000,
- "Kaplan": 1500000000,
- "Kellton": 111300000,
- "Kennedys Law": 284000000,
- "Kent International": 50200000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kramer Guitars": 49800000,
- "Krapf Group": 150000000,
- "Kroll": 3000000000,
- "L&T technology Services": 746800000,
- "L.G. Balfour Company": 290000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LG CNS": 3100000000,
- "LabVantage": 48500000,
- "Ladenburg Thalmann": 1500000000,
- "Landmark Worldwide": 29100000,
- "Larsen & Toubro Infotech": 2100000000,
- "Lattice Semiconductor": 585600000,
- "LeTip International": 12700000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerner David": 11900000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lions Gate": 3600000000,
- "Liquitex": 18000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Lord Abbett": 300000000,
- "Loro Piana": 842800000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lukoil OAO.": 126600000000,
- "Lupus Foundation of America": 13700000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Machineart": 23400000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Magyar Bank": 28900000,
- "Marcus & Millichap": 1500000000,
- "Marlow Industries": 1500000000,
- "Marquis Who's Who Ventures LLC.": 25000000,
- "Martindale-Hubbell": 20900000,
- "Mary Help of Christians Academy": 112800000,
- "MassLive": 19800000,
- "MasterCraft": 761500000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Meade": 16100000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Mettler-toledo Inc.": 3900000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Monroe County Transit Authority": 14900000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning star": 1900000000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Retail Solutions": 21200000,
- "Natures Harmony Farm": 57600000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "New Flyer": 2400000000,
- "New Jersey United Christian Academy": 19200000,
- "New York Fed": 21100000,
- "Newark Renaissance House": 10100000,
- "News 12 Networks": 10000000,
- "Nividous": 34400000,
- "Nobel Biocare": 890100000,
- "ORBCOMM": 255200000,
- "OceanFirst": 17300000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Orbis Books": 31500000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Oticon": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "P. C. Richard & Son": 15100000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Parker Hannifin": 15900000000,
- "Paylocity Corporation": 923400000,
- "Peermusic": 46300000,
- "Penguin Books": 1500000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Pepperidge Farm": 28200000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "PharMerica": 2100000000,
- "Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Polaris Project": 14700000,
- "PredPol": 10000000,
- "Press of Atlantic City": 100000000,
- "Price Chopper": 1500000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "QAD Allocation": 12000000,
- "Quad Metalworks": 3100000000,
- "QuickChek": 1000000000,
- "Quiznos": 50000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
- "Rackspace": 3100000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Regeneron": 13700000000,
- "Relax The Back": 11600000,
- "Republic Bank": 314200000,
- "Ridgewood Country": 13700000,
- "RioCan Real Estate Investment Trust": 919400000,
- "Riverside Partners": 14400000,
- "Rolls-Royce": 15300000000,
- "Rolls-Royce Motor Cars": 940000000,
- "Ron Jon Surf Shop": 18900000,
- "Ronald McDonald House Charities": 59500000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SBA Communications": 2500000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SOSV": 20000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Santander Bank": 14800000,
- "Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shiseido": 8200000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simon & Schuster": 814000000,
- "Simplot": 6000000000,
- "Simply Fresh by McCaffrey's": 45000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snyder's-Lance": 8600000000,
- "SodaStream": 476100000,
- "Sodexo": 22300000000,
- "Sonata Software": 853800000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Stack Overflow Inc.": 70000000,
- "Stantec": 3100000000,
- "State Street": 12100000000,
- "Steadfast Networks": 10100000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Stride Inc.": 1400000000,
- "Strides Pharma Science": 476600000,
- "Student Transportation of America": 637200000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Pharma": 5600000000,
- "Superb Internet": 13800000,
- "Supermicro": 3800000000,
- "Swatch Group": 32000000000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syska Hennessy Group": 60900000,
- "TDK": 14000000000,
- "TECHNOGYM FRANCE Sas.": 687800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tacony": 285000000,
- "Tandy Leather Factory": 81600000,
- "Tanzania Cigarette Company": 20200000000,
- "Taro": 561300000,
- "Tata Chemicals": 1500000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Tetra Pak": 11100000000,
- "Textainer": 810000000,
- "Thales Group": 18000000000,
- "The Blue Book": 134600000,
- "The Counter": 85000000,
- "The Frisch School": 16500000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Tofutti": 12400000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Trelleborg": 3000000000,
- "Triton International": 1800000000,
- "Tuff Shed Incorporated": 300000000,
- "Tuscan Dairy Farms": 10100000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "UOB Kay Hian Pte Ltd.": 264100000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union League": 10000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universal Weather": 252200000,
- "Usg Interiors LLC.": 3500000000,
- "Uzbekistan Airways": 340000000,
- "VCA Inc.": 1800000000,
- "VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vislink": 19000000,
- "Vocelli Pizza": 14000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "West Pharmaceutical Services": 2900000000,
- "Western Digital": 13000000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "White Castle": 720600000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Windels Marx": 19500000,
- "Wissotzky Tea": 75000000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
- },
- "New Mexico": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ANRITSU": 864200000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ASMS": 3800000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Advanced Air": 70000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albuquerque Journal": 1600000,
- "All Aboard America": 4400000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American General Media": 41900000,
- "American Indian College Fund": 7800000,
- "American Tinnitus": 4200000,
- "Ampeg": 366000,
- "Amway North America": 9500000000,
- "Arizona Public Service": 4300000,
- "At Home store": 1700000000,
- "Atec": 1600000,
- "AvalonBay Communities": 2000000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Benefit align": 5100000,
- "Best Buddies": 3600000,
- "Bicycle Health": 8700000,
- "Blue Bell Creameries": 675000000,
- "Booz Allen": 8800000000,
- "Bowlin Travel Centers": 28400000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Bullseye glass": 16900000,
- "CACI": 6200000000,
- "Camp Fire": 10000000,
- "Captain D's": 9000000,
- "Carenet Health": 300000000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Cenikor": 42100000,
- "Center for Autism": 500000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Comfort Dental": 17800000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cottonwood Technology Fund": 3000000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumulus Media": 946800000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
- "Deming Headlight": 6300000,
- "Department of Energy": 190000000,
- "Designboom": 9000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "El Paso Electric": 886900000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "FLETC": 1200000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Flying Star": 33400000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Four Corners Regional Airport": 16200000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "GFL Environmental": 6400000000,
- "Gallup": 187000000,
- "Gallup Independent": 23100000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gracie Barra": 987000,
- "Grassroots Campaigns": 403000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HVS": 47500000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hensel Phelps": 5700000000,
- "Herb company": 2400000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hudson": 2000000000,
- "IDEX Corporate": 3100000000,
- "IEC Electronics": 127000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "InnSuites Hospitality": 6300000,
- "Insurify": 9300000,
- "Integra Technologies": 27300000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Keter": 1500000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Las Vegas City Schools": 24900000,
- "Lavu POS": 7500000,
- "Learning Express Toys": 2500000,
- "Leidos Holdings Inc.": 13700000000,
- "Leprino Foods": 3500000000,
- "Level 3 Communications": 17500000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Lovelace Health System": 30900000,
- "MOBILE MINI": 593000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Materion Corporation": 1800000000,
- "Merit Energy": 9200000,
- "Metal Supermarkets": 26800000,
- "MeteorCity": 4200000,
- "Mimi's Cafe": 23000000,
- "Money Management": 30000000,
- "Mosaic": 7200000000,
- "Moyes Delta Gliders": 2100000,
- "Murphy USA": 22800000000,
- "NOAA Weather Radio": 36400000,
- "National Christian Foundation": 27800000,
- "National Indian Youth Council": 18800000,
- "National Oilwell Varco": 7200000000,
- "Navajo Times": 2800000,
- "New Mexico Department of Health": 4500000,
- "Nikola Corporation": 44000000,
- "NuStar Energy": 3200000000,
- "O'Keeffe Museum": 12600000,
- "OPEIU": 7400000,
- "OXXO": 150000000,
- "OneMain Financial": 4100000000,
- "OpenCorporates": 6000000,
- "OpenEye": 30000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Pampered Chef": 300000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Porsche France SAS.": 34300000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "Raven Rotorcraft": 32500000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Remodelista": 1000000,
- "Rexair": 35000000,
- "Rio Grande Games": 74500000,
- "Rock & Brews": 33300000,
- "Rocket Lab USA Inc.": 186700000,
- "Rodgers Instruments Corporation": 6400000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SEND International": 12800000,
- "SGS S.A.": 28000000000,
- "SITE Design Group": 8000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santa Fe New Mexican": 10000000,
- "Santa Fe Writers Project": 216000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Sodexo": 22300000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "State ECU": 1700000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Stride Inc.": 1400000000,
- "Stripes Stores": 750000000,
- "Sulzer": 13800000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Cabana": 297500000,
- "Taco Villa": 1500000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Church of Jesus Christ": 5200000,
- "The Conservation Fund": 3900000,
- "The Melting Pot": 31500000,
- "The Motley Fool": 550000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "True Digital Security": 14000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNTUCKit": 350000000,
- "US Eagle": 35000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Waste Control Specialists": 40000000,
- "West End Press": 2900000,
- "Western Farmers Electric Cooperative": 10000000,
- "Which Wich": 79500000,
- "Wienerschnitzel": 341000000,
- "Wilson Sporting Goods": 769700000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Yellow Pages Directory": 15100000,
- "ZOOperstars": 5100000,
- "Zumiez": 1100000000
- },
- "New York": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "A&E Television Networks LLC.": 3800000000,
- "AACSB": 22500000,
- "AALDEF": 14000000,
- "ABC Supply": 12100000000,
- "ACORD": 37200000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFRY": 2300000000,
- "AFSCME": 10800000,
- "AIESEC": 1000000,
- "AIG": 48700000000,
- "AIME": 23400000,
- "ALM": 186900000,
- "AMC Theatres": 3900000000,
- "ANAVEX": 10900000,
- "ARRI": 44100000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "AXA IM": 850000000,
- "Aarong": 120000000,
- "Acorda": 122700000,
- "Acuity Brands": 4000000000,
- "Acumen Fund": 23100000,
- "Adaro Energy": 3600000000,
- "Advantage Rent a Car": 150000000,
- "Advisor Group": 110000000,
- "Aeroflot": 6600000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air India": 1600000000,
- "Alleghany Corporation": 11900000000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "Alpine Electronics": 2500000000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Association of Advertising Agencies": 18200000,
- "American Eagle Outfitters": 5000000000,
- "American Industrial Partners": 15000000,
- "Americold Logistics Inc.": 2900000000,
- "Anaplan": 592200000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Aperture": 11800000,
- "Applied Materials": 25200000000,
- "Apptio": 342500000,
- "Aramex": 1600000000,
- "Arconic": 9000000000,
- "Ardene": 38400000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Ashford": 12900000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Atotech": 1500000000,
- "Austin American-Statesman": 50000000,
- "Australian Laboratory Services": 6600000000,
- "Avanade": 3900000,
- "Avon": 6200000000,
- "Avvo": 29900000,
- "BBDO": 1800000000,
- "BBTV": 337700000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "BOT": 253000000,
- "BUILDON": 20300000,
- "BYK Additives & Instruments": 1200000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Balyasny Asset Management": 110000000,
- "Barrick": 11900000000,
- "Bebe Stores": 186500000,
- "Becton Dickinson Philippines": 18900000000,
- "BeenVerified": 14500000,
- "Bekins Van Lines Inc.": 33600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Bertelsmann SE & Co. KGaA": 20800000000,
- "Bessemer Trust": 682100000,
- "Bethpage FCU": 13000000,
- "BetterCloud": 31400000,
- "Bharat Electronics": 2200000000,
- "Black Entertainment Television LLC.": 18000000,
- "Blick Art Materials": 245200000,
- "Boat Rocker": 166500000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
- "Broadridge Financial Solutions": 5800000000,
- "BronxNet": 13100000,
- "Brookdale": 2700000000,
- "Brookfield Properties": 2400000000,
- "Brown & Brown Insurance": 3400000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "C3 AI": 12900000,
- "CBS News": 94000000,
- "CLS Group": 501700000,
- "CRH": 31000000000,
- "CURTISS-WRIGHT": 2500000000,
- "CapitaLand": 1700000000,
- "Center for Governmental Research": 10000000,
- "Cerner Enviza": 12000000,
- "Charles River Laboratories": 4000000000,
- "Checkpoint Systems": 800000000,
- "Cheil Worldwide Inc.": 3000000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Citymeals": 18400000,
- "Civil Service Employees Association": 10000000,
- "Climate Week NYC": 10000000,
- "CoCo Fresh Tea & Juice": 15000000,
- "Coats Group PLC.": 1500000000,
- "Cole-Parmer": 500000000,
- "College Hunks Hauling Junk": 100000000,
- "Comarch": 400900000,
- "CommBank": 20804304338,
- "Community Bank National Association": 644400000,
- "Convent of the Sacred Heart": 27100000,
- "CooperCompanies": 3200000000,
- "CooperVision": 2200000000,
- "Corgan": 191300000,
- "Corning Glass Works": 14500000000,
- "Costa Coffee": 819500000,
- "Cracker Barrel": 3300000000,
- "Crescent Capital Group": 55000000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DC Shoes": 100000000,
- "DLA": 3600000000,
- "Daiwa Securities Group": 6300000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Deutsche Telekom": 123400000000,
- "Dexus": 602200000,
- "DigitalOptics Corporation": 10000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "DuArt Media Services": 10000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "EBU": 357000000,
- "ECI": 48000000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "EIU": 10000000,
- "EPAM": 4500000000,
- "EPiServer": 215000000,
- "Eastman": 10600000000,
- "Edwards Lifesciences": 5400000000,
- "El Paso Times": 25000000,
- "Eni": 134600000000,
- "Enterprise Car Sales": 40000000,
- "Entertainment Community": 10000000,
- "Equinix": 7300000000,
- "Erste Group": 5800000000,
- "Essity": 1000000000,
- "Etihad Airways": 2700000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "Everspin": 62100000,
- "FAO": 10000000,
- "FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Fanatics": 2600000000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "FormFactor": 747900000,
- "Fort Collins Coloradoan": 12000000,
- "Fortinet": 4100000000,
- "Fortress Biotech": 77600000,
- "Foster Farms": 3000000000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fresenius SE & Co. KGaA": 42800000000,
- "Frette": 55700000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFG Alliance": 20000000,
- "GI Partners": 14000000,
- "GMAC Ally Financial": 8400000000,
- "GMHC": 27000000,
- "GPO": 10600000,
- "Gama Aviation": 246800000,
- "Gard": 126000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gentherm": 1100000000,
- "Genting Malaysia": 3900000000,
- "Genuine Parts Company": 20500000000,
- "Getir": 245000000,
- "Gibbs & Cox": 100000000,
- "GigaSpaces": 13900000,
- "Gilead": 27500000000,
- "Goodby Silverstein & Partners": 19000000,
- "Gordon Biersch - DTW": 89300000,
- "Grace Institute of New York": 10000000,
- "Graff": 340200000,
- "Grandall Law Firm": 150000000,
- "Graphisoft": 93000000,
- "GreatSchools": 11000000,
- "Greenville News": 75000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HBC": 5600000000,
- "HCL Tech": 12000000000,
- "HRG Group": 5200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hanmi Bank": 258600000,
- "Harbor Freight": 5000000000,
- "HarperCollins": 1700000000,
- "Haworth": 2300000000,
- "Hazelden Betty Ford": 186300000,
- "Hearts On Fire": 13100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Helix Sleep": 100000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Houzz": 500000000,
- "Huge digital agency": 358000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IEC Electronics": 127000000,
- "IES": 10000000,
- "IFC Films": 10500000,
- "IMG": 375000000,
- "IQAir": 20000000,
- "IQOR": 1000000000,
- "ITV Studios": 600000000,
- "IU Health": 7900000000,
- "IceStone": 12100000,
- "Implats'": 7300000000,
- "Industrial Bank": 25000000,
- "Ingenuity Cloud Services": 15000000,
- "Innovative Interfaces": 750000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenner": 38400000,
- "Jersey Mike's": 255400000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jones Day": 2400000000,
- "Journeys company": 8600000,
- "K&L Gates": 1000000000,
- "KIDZ BOP": 12000000,
- "KMG EP.": 3300000000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Karen Millen": 167300000,
- "Karma Mobility": 10000000,
- "Kayser-Roth": 21600000,
- "KeepRecipes": 10200000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "King & Wood Mallesons": 174500000,
- "Kintetsu World Express": 204000000,
- "Kiplinger": 123000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Koss": 16600000,
- "Kotak": 7500000000,
- "LAC Group": 60000000,
- "LEGO": 8100000000,
- "LRN company": 75000000,
- "Lectra": 188800000,
- "Leidos Holdings Inc.": 13700000000,
- "Level 3 Communications": 17500000000,
- "Levy Institute": 21200000,
- "Liberty Mutual": 48200000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Lufthansa Technik": 4600000000,
- "Lukoil OAO.": 126600000000,
- "Lux Capital": 14100000,
- "MBIA": 124000000,
- "MEGA International S.A.": 47000000,
- "MUFG": 50700000000,
- "MYKITA": 50000000,
- "Macerich": 642300000,
- "Machine Design": 14400000,
- "Magellan Aerospace": 13900000,
- "Main Event": 678000000,
- "Mandarin Oriental": 1100000000,
- "Manlius Pebble Hill School": 19400000,
- "Mashable": 45000000,
- "Matt Brewing Company": 32300000,
- "Mayo Clinic": 14000000000,
- "McAfee": 2200000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "McQuaid": 31100000,
- "Medline Industries": 20200000000,
- "Merrithew": 51000000,
- "Metro Inc.": 14400000000,
- "Mettler-toledo Inc.": 3900000000,
- "MiLB": 12900000,
- "Micron Technology": 30800000000,
- "Microsoft": 184900000000,
- "Midas Consoles": 21800000,
- "Minerva Bunkering": 200000000,
- "Mitchell & Titus": 20300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Monarch Alternative Capital": 40000000,
- "Moody's Analytics": 5700000000,
- "Mount Mercy Academy": 21300000,
- "Mount Sinai Hospital Brooklyn": 9300000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NBA": 7900000000,
- "NEA": 400000000,
- "NETGEAR": 975100000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "Natera": 776000000,
- "National Center for Law and Economic Justice": 10600000,
- "National Grid": 24200000000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "New York Life Investments": 27100000,
- "Nikola Corporation": 44000000,
- "Nikon": 4900000000,
- "Nippon Steel": 46900000000,
- "Norinchukin Bank": 600000000,
- "Norwich Bulletin": 35800000,
- "Notre Dame School of Manhattan": 11300000,
- "Nyack Public Schools": 14700000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "Oberoi Hotels": 350000000,
- "OceanFirst": 17300000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Ohl": 3300000000,
- "Ollie Pets Inc.": 20000000,
- "Ollie's Bargain Outlet": 1700000000,
- "One Equity Partners": 973100000,
- "Open Plans": 10200000,
- "OpenEye": 30000000,
- "Orange Business": 9600000000,
- "Orrick": 975000000,
- "Osborne Association": 31400000,
- "Outback Steakhouse": 2000000000,
- "Oxfam": 10000000,
- "PSE&G": 9300000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Panda Restaurant Group": 3500000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paramount": 32300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Paul Jr. Designs": 21500000,
- "Paulist": 18800000,
- "Peacock TV": 118000000,
- "Penguin Books": 1500000000,
- "Pennsylvania Bar Association": 42500000,
- "Penzeys": 26000000,
- "Perella Weinberg Partners": 631500000,
- "Peruvian Connection Ltd.": 70500000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Polar": 193100000,
- "Pollock-Krasner Foundation": 10000000,
- "Portmeirion Group": 143000000,
- "Precigen": 138800000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "Progressive": 12200000,
- "Proskauer": 38000000,
- "Protective Life": 6700000000,
- "Publicis Sapient": 2700000000,
- "Qantas": 6300000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "QuickChek": 1000000000,
- "RInfra": 3900000000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
- "Rad Power Bikes": 138000000,
- "Radius Ventures": 15600000,
- "Random House": 4400000,
- "Regeneron": 13700000000,
- "Reliance Partners": 13500000,
- "Reproductive Rights": 10400000,
- "Repsol": 79000000000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Rho Capital Partners": 15400000,
- "Rh\u00f4ne Group": 75000000,
- "Roc Nation LLC.": 25000000,
- "Rochester Regional": 47700000,
- "S&P Global": 8200000000,
- "SAP": 33500000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SJW Corp": 580000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SPOP": 18500000,
- "Safelite": 2400000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salon": 130000000,
- "Santander Bank": 14800000,
- "Schlumberger Limited": 27800000000,
- "Scotiabank": 14900000,
- "Scripps Networks": 3400000000,
- "Sense Worldwide": 12300000,
- "Sentinel Capital Partners": 13000000,
- "Sermo": 51200000,
- "Seven Stories": 10900000,
- "Shiseido": 8200000000,
- "Shore Fire": 24400000,
- "Signarama": 55000000,
- "Simon Kucher": 406200000,
- "Sisters of St. Joseph of Carondelet": 29400000,
- "Sloan": 13800000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
- "Snowflake": 1900000000,
- "Sodexo": 22300000000,
- "Solace": 65000000,
- "Somethin' Else": 15000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spire Global": 72900000,
- "Spring Health": 18500000,
- "Springer Nature": 1800000000,
- "Stack Overflow Inc.": 70000000,
- "Stantec": 3100000000,
- "Star Courier": 11900000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Static Media": 10200000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stumptown Coffee Roasters": 40000000,
- "Sturgis Journal": 30900000,
- "Summit School at Nyack": 27100000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Suntory": 11700000000,
- "Swift Transportation Company": 3400000000,
- "TBWA": 1500000000,
- "TDK": 14000000000,
- "TOM FORD": 615000000,
- "TechCrunch": 525000000,
- "Teck Resources": 12600000000,
- "Teijin": 7300000000,
- "Tele Vue": 43200000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Balance Bar": 15000000,
- "The Cornell Club": 25000000,
- "The Daily Beast": 25600000,
- "The Hartford": 21400000000,
- "The Holland Sentinel": 10400000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Scoular Company": 4000000000,
- "The Travelers Companies, Inc.": 31000000000,
- "The United Services Automobile Association": 35600000000,
- "The Ursuline School": 18900000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tiger Global Management LLC.": 10000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
- "Tractable Ltd.": 12000000,
- "Transunion Chile": 3600000000,
- "Trident Group": 794500000,
- "Triumph": 5500000,
- "True Digital Security": 14000000,
- "Trump Hotels": 75000000,
- "Two River": 15400000,
- "Two Sigma": 1300000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UNDP": 15100000,
- "UNX": 25000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "UnitedMasters": 11100000,
- "Universal Orlando Resort": 281600000,
- "Upwork": 618300000,
- "VCA Inc.": 1800000000,
- "VIEW Micro-Metrology": 18800000,
- "VStar Entertainment Group": 12100000,
- "Valpak": 43500000,
- "Varonis": 457600000,
- "Verdura": 49000000,
- "Verifone": 1800000000,
- "Viatris": 17200000000,
- "Victor Canada formerly ENCON Group Inc.": 10700000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vistra": 600000000,
- "Vivendi": 19800000000,
- "Vodacom": 7000000000,
- "Voith": 4800000000,
- "Von Roll UK Ltd.": 340700000,
- "Voxy": 18000000,
- "W. W. Grainger": 15200000000,
- "WILSONS LEATHER": 250000000,
- "WP Diamonds": 18300000,
- "WSP": 8900000000,
- "White Castle": 720600000,
- "Williams Lea Tag": 1200000000,
- "WisdomTree Investments": 301300000,
- "Wissotzky Tea": 75000000,
- "Wolters Kluwer": 5400000000,
- "World Journal": 37500000,
- "Worthington Industries": 3900000000,
- "Wurtsboro\u2013Sullivan County Airport": 28200000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "Yellow Pages Directory": 15100000,
- "Yext": 399900000,
- "York Capital Management": 30000000,
- "YouNow": 10000000,
- "ZEISS": 8800000000,
- "Zemingo": 14900000,
- "Ziebart": 1200000000
- },
- "North Carolina": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "ATF": 1000000000,
- "Abbott's Frozen Custard": 10900000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Academy Sports Outdoors": 6600000000,
- "Acast": 113400000,
- "Ace Hardware": 7800000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpek": 5700000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Management Association": 21700000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Angel Resource": 10000000,
- "Apptio": 342500000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Artists Music Guild": 600000000,
- "Asheville City Schools": 150000000,
- "Ashtead Group": 10000000000,
- "At Home store": 1700000000,
- "Atlantic Natural Foods": 63800000,
- "Atlantic Union Bank": 689200000,
- "Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "AvalonBay Communities": 2000000000,
- "Axalta": 4100000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BIOMERIEUX": 3800000000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Bank of Tennessee": 76100000,
- "Barbeque Integrated Inc.": 179000000,
- "Barker Black": 14300000,
- "Barnes & Thornburg": 575500000,
- "Barry Callebaut": 8400000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Biltmore Farms": 17500000,
- "Biological E": 250000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Blum": 2100000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brillio": 400000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Brynwood Partners": 15500000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bustec Limited": 10000000,
- "CACI": 6200000000,
- "CBA The Association for Christian Retail": 10000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "CNL Financial Group": 317000000,
- "CSL": 1900000000,
- "CTG": 375200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Camso": 1300000000,
- "Can-Am Off-Road": 6300000000,
- "Candlewick": 15000000,
- "Cape Hatteras Electric Cooperative": 19900000,
- "Capital Power": 1900000000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Center for Responsible Lending": 10300000,
- "Cerner": 5800000000,
- "ChapStick": 20300000,
- "Charlotte Country Day School": 65600000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Cloudera": 904800000,
- "Coats Group PLC.": 1500000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Constellis": 1000000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DENSO CORPORATION.": 43500000000,
- "DEX Imaging": 284000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DP World": 10800000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dellner": 30000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "Dimensional Fund Advisors": 200000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "Duke Health": 4000000000,
- "ECU Health": 1800000000,
- "EMC Insurance": 645000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Erie Insurance": 2600000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "FHI 360": 690500000,
- "FactSet": 1500000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Forbo Movement Systems": 109300000,
- "Forest History": 14900000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuquay-Varina High School": 64300000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gilead": 27500000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Grindline Skateparks": 27600000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HSM company": 298100000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HZO": 48500000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Hanes": 6200000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Hayden Shapes": 12000000,
- "Haynes International": 490500000,
- "Haynes and Boone": 15800000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Horizon Lines": 10000000,
- "Horizon Therapeutics": 3700000000,
- "Hulu": 4400000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "IAMS": 14900000,
- "IAT Insurance Group": 100000000,
- "IDEX Corporate": 3100000000,
- "ILC Dover": 145000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Indiana Public Retirement System": 6200000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Insightsoftware": 350000000,
- "Intel Capital": 21700000,
- "Intetics": 28500000,
- "Invista": 117900000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "JR Cigars": 10000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jersey Mike's": 255400000,
- "Jetcraft": 26900000,
- "Joe's Crab Shack": 345000000,
- "John William Pope Foundation": 12900000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Just Aircraft": 16500000,
- "KBR": 7700000000,
- "Kayser-Roth": 21600000,
- "Kelly Services": 5000000000,
- "Ketchum": 500000000,
- "Kidde": 250000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Koppers": 2000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Lattice Semiconductor": 585600000,
- "Lectra": 188800000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lenovo": 66000000000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Liggett Group": 200000000,
- "Liggett Vector Brands": 200000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lowes Foods": 1600000000,
- "Lufthansa Cargo": 3400000000,
- "Lumos Networks": 131000000,
- "Lupus Foundation of America": 13700000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSA Safety": 1500000000,
- "MSC Industrial Supply": 3800000000,
- "Marcus & Millichap": 1500000000,
- "Market America": 791100000,
- "Marlin Firearms Company": 42800000,
- "MasterCraft": 761500000,
- "McCormick Taylor": 83000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meetup": 25000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Family Services": 44900000,
- "MiLB": 12900000,
- "Microsoft": 184900000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Moore County Schools": 13100000,
- "Motiva Enterprises": 20800000000,
- "Mountain Heritage High School": 17600000,
- "Mueller Water Products": 1200000000,
- "Multimatic": 1500000000,
- "Murgitroyd": 72000000,
- "Music & Arts": 12400000,
- "NCDHHS": 10000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "NantHealth": 63300000,
- "National Board for Certified Counselors": 10000000,
- "National Christian Foundation": 27800000,
- "National Day of Prayer": 29000000,
- "National Resilience": 500000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "Niche company": 15000000,
- "Nicholas Financial": 48200000,
- "North Sails": 27500000,
- "OMNOVA": 750000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Old Dominion Freight Line": 6000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orange County School District": 217000000,
- "Orano": 5400000000,
- "Orkin": 1000000000,
- "Ospina Coffee Company": 150000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCB Piezotronics": 400000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
- "Payscale": 180000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Perkins&Will": 670300000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "Pet Sitter": 10000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pimsleur Language Programs": 30000000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Plant Delights Nursery": 19800000,
- "Porsche France SAS.": 34300000000,
- "Precision BioSciences": 20800000,
- "PrecisionHawk": 19200000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Publix": 52200000000,
- "Qorvo": 1200000000,
- "Qualtrics": 1400000000,
- "Qualys": 468700000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "REV Group": 2300000000,
- "RSC Brands": 29400000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "RealtySouth": 55000000,
- "Red Storm": 11700000,
- "Red Wing Shoes": 700000000,
- "Reliance Retail": 26300000000,
- "RenaissanceRe": 4400000000,
- "ReverbNation": 15800000,
- "Rexair": 35000000,
- "Reynolds American": 15800000000,
- "Rider Transit": 34600000,
- "Risk International": 22900000,
- "Riverside Partners": 14400000,
- "Roanoke Rapids Graded School District": 19400000,
- "Roanoke-Chowan News-Herald": 38000000,
- "Robeks": 396000000,
- "Rochester Regional": 47700000,
- "Roehl Transport": 421300000,
- "Roly Poly": 16400000,
- "Rooms To Go": 2500000000,
- "Rowan-Salisbury School System": 48400000,
- "Rubbermaid": 3000000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SCHUNK": 19000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
- "Sanderson Farms": 5600000000,
- "Sapiens": 382000000,
- "Schleich": 21200000,
- "Science 37": 87000000,
- "Seaboard": 11200000000,
- "Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "Semiconductor Research Corporation": 26700000,
- "Sermo": 51200000,
- "Seydel": 10000000,
- "Sheetz'": 6200000000,
- "ShinMaywa": 1700000000,
- "Shoe Carnival": 1300000000,
- "Showbiz Cheat Sheet": 14100000,
- "Sigma Aldrich": 2800000000,
- "Silicon Valley Bank": 6200000000,
- "Simplot": 6000000000,
- "SingleStore": 100000000,
- "Sleep Number": 2100000000,
- "Smallwood": 30000000,
- "Smith & Nephew": 5200000000,
- "Smith Reynolds": 10000000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Sugar Bakery": 26800000,
- "Southwest": 22700000000,
- "Special Metals Welding Products": 11400000,
- "Spoonflower": 23400000,
- "St Lawrence County Historical Association": 13000000,
- "Stanadyne": 23300000,
- "Stantec": 3100000000,
- "StartingBloc": 13600000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stone & Webster": 27400000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Suntory": 11700000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "Syska Hennessy Group": 60900000,
- "TDK": 14000000000,
- "TPC at Piper Glen": 27800000,
- "TVA": 13000000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "TWR": 16400000,
- "Tandy Leather Factory": 81600000,
- "Tanium": 525000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Courier-Times": 10000000,
- "The First Line": 18800000,
- "The Hanover Insurance Group": 3000000000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "TigerDirect": 200000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UNC Board of Governors": 10000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "VCA Inc.": 1800000000,
- "VMware": 13200000000,
- "Valencell": 10000000,
- "Valpak": 43500000,
- "Varonis": 457600000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vesuvius France S.A.": 2200000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Vision Source": 11700000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Westfield Insurance": 2000000000,
- "Wheatstone": 21100000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xsolla": 15200000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000
- },
- "North Dakota": {
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "AFL-CIO": 138000000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "Applied Instruments": 9000000,
- "Army News Service": 16400000000,
- "ArrayComm LLC.": 8800000,
- "Atos": 11400000000,
- "Autocall": 6000000,
- "Basin Safety": 7000000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Boy Restaurants": 26600000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Buckle": 1300000000,
- "Cadex Defence": 7700000,
- "Canad Inns": 170000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Consolidated": 1200000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "DTN Ag.": 250000000,
- "Dakota College": 3000000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EOG Resources": 25000000000,
- "Ecumen": 165000000,
- "Eide Bailly": 254000000,
- "Farmer Brothers": 469200000,
- "Ferrell North America": 11300000,
- "Ferrellgas": 2100000000,
- "Forum Communications": 61500000,
- "Fox Network": 3000000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Beer": 20600000,
- "G&L Guitars": 8000000,
- "Golder Associates Inc.": 1000000000,
- "Grand Forks Herald": 882000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "IHEARTMEDIA": 3800000000,
- "Inventors": 10000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "Jamestown Sun": 7900000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Just Aircraft": 16500000,
- "Kinder Morgan": 17700000000,
- "Kohler Kitchen & Bath": 6000000000,
- "LUFKIN": 1500000000,
- "Leeann Chin": 2800000,
- "Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lovesac": 389800000,
- "MATBUS": 4200000,
- "MBF Bioscience": 7000000,
- "MDU Resources": 7000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Midwest Communications": 36300000,
- "Moe's Southwest Grill": 295500000,
- "Mr. Tire": 5700000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "New Flyer": 2400000000,
- "New York Fed": 21100000,
- "NuStar Energy": 3200000000,
- "OneMain Financial": 4100000000,
- "Orion Health": 150000000,
- "Orkin": 1000000000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Prairie Farms": 3100000000,
- "Pretzelmaker": 125000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rodgers Instruments Corporation": 6400000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schmitt Music": 20600000,
- "SemaConnect": 29000000,
- "Service CU": 11100000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Southern Glazer's": 21000000000,
- "Space Aliens Grill & Bar": 10000000,
- "Stantec": 3100000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Terracon": 77100000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "USGS": 5000000,
- "Uncle Maddio's": 5300000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "Untappd": 10000000,
- "Valley City Times-Record": 6000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Williston Basin International Airport": 7000000,
- "Wilson Sporting Goods": 769700000,
- "WoodSpring": 150000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Zooplus AG": 2500000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
- },
- "Ohio": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
- "ASUS": 19200000000,
- "ATS Automation": 1800000000,
- "AcademyHealth": 18600000,
- "Acadia Healthcare": 2500000000,
- "Acuity Brands": 4000000000,
- "Acxiom": 1300000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "AirNet": 109300000,
- "Akron Beacon Journal": 23500000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Alien Technology": 50100000,
- "Alithya": 389900000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmeriServ": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Record Guide": 27700000,
- "American Share": 26000000,
- "Americold Logistics Inc.": 2900000000,
- "Amoy Food": 667000000,
- "Applied Materials": 25200000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Armoloy": 49100000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "Aurecon": 850000000,
- "Australian Laboratory Services": 6600000000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BBYO": 15800000,
- "BJ's": 18700000000,
- "BOBST": 1600000000,
- "BTS Group": 232600000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Barnes & Thornburg": 575500000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Big Boy Restaurants": 26600000,
- "Billerud": 1300000000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Botanical Society of America": 11800000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Buckeye CU": 10900000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "CACI": 6200000000,
- "CDW": 23800000000,
- "CFM International": 10000000,
- "COSI": 14500000,
- "CPSC": 10000000,
- "CRH": 31000000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Calgon Carbon": 750000000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Canton Local": 14800000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carroll Electric": 10800000,
- "Case Western Reserve University": 1200000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chillicothe Gazette": 29900000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Cincinnati Financial Corporation": 8900000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Clearwater Paper": 2000000000,
- "Cleveland Film": 14600000,
- "Cleveland Magazine": 11100000,
- "Cleveland Metropolitan School District": 42800000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Columbus Messenger": 21800000,
- "Columbus Regional Airport Authority": 10000000,
- "Comfort Dental": 17800000,
- "Consolidated": 1200000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core-Mark": 17200000000,
- "Corporation Sealy": 1300000000,
- "Covanta": 1900000000,
- "CoverMyMeds": 200000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Cresco Labs": 17700000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "DENSO CORPORATION.": 43500000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dairymaster": 15000000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Danby Products Limited": 240000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Designer Brands": 3400000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Doe-Anderson": 17700000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Doscher's Candies": 46000000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "EHS Today": 20000000,
- "EVgo Services LLC.": 34400000,
- "EastwoodCo": 45500000,
- "Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Ekso Bionics": 10000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equinix": 7300000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Farmer Brothers": 469200000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "Finneytown": 27400000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "Florida Department of Management Services": 150000000,
- "Forest Hills Local School District": 32700000,
- "Forman Mills": 296800000,
- "Fractal Design": 39500000,
- "Franchise Group": 3300000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Fsc": 44200000,
- "GE HealthCare": 17700000000,
- "GP Strategies": 482000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gateway Newstands": 16600000,
- "Generac Power Systems": 4600000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "General Revenue": 22400000,
- "Gentherm": 1100000000,
- "Gillette": 6000000000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Gooseberry Patch": 14100000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Greenleaf Book Group": 12100000,
- "Grenzebach": 52000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Grippo's": 51100000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
- "HCI": 10100000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Heinen's Grocery Store": 450000000,
- "Helmerich & Payne": 1400000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hub Power": 1200000000,
- "Hudson": 2000000000,
- "Huhtamaki": 53200000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "Hyundai Motor America": 100700000000,
- "IAMS": 14900000,
- "ICICI Bank": 18100000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Ideastream": 15200000,
- "Imagine Schools": 14500000,
- "InMoment": 278000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Interlake Steamship": 38600000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Join Root": 352800000,
- "Jones Day": 2400000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LPK Inc.": 15800000,
- "LUFKIN": 1500000000,
- "Lakewood City Schools": 10800000,
- "Land O'Lakes": 16000000000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lingaro": 50000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Liquitex": 18000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "MANN HUMMEL": 4700000000,
- "MDB Communications": 25300000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Magellan Aerospace": 13900000,
- "Main Event": 678000000,
- "Mansfield Engineered Components": 10000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Material Sciences": 75000000,
- "Materion Corporation": 1800000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Menopause": 16600000,
- "Metal Supermarkets": 26800000,
- "Metro Inc.": 14400000000,
- "Mettler-toledo Inc.": 3900000000,
- "Michael Hill": 13000000,
- "Michigan Sugar": 46600000,
- "MidAmerican Energy": 66000000,
- "Miller Canfield": 106700000,
- "Milliken & Co.": 2500000000,
- "Minster Machine Company": 148500000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morgan Technical Ceramics": 1400000000,
- "Morgenthaler": 29100000,
- "Mott Foundation": 36300000,
- "Mount Carmel Health": 1700000000,
- "Mount Vernon News": 10200000,
- "Munich Re": 73300000000,
- "Museum of Contemporary Art Cleveland": 19400000,
- "Music & Arts": 12400000,
- "Musim Mas": 7300000000,
- "Mutual of America": 100000000,
- "NABET-CWA": 13400000,
- "NEORSD": 30300000,
- "NIDEC": 15600000000,
- "NYSEG": 800000000,
- "Nanotronics": 226900000,
- "National Christian Foundation": 27800000,
- "National Oilwell Varco": 7200000000,
- "Nationwide": 42100000000,
- "Nautilus machines": 589500000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "Netsmart": 526000000,
- "New Flyer": 2400000000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Norbar": 44000000,
- "North Canton City Schools": 19300000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "OCLC": 214600000,
- "OMNOVA": 750000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ohio Art Company - Excellence In Metal Lithography": 10000000,
- "Ohio Community College Athletic Conference": 13200000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "OmniTRAX": 100000000,
- "Onward Technologies": 44100000,
- "Orange Business": 9600000000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Our Lady of Victory School and Church": 39800000,
- "Outback Steakhouse": 2000000000,
- "OverDrive Inc.": 100000000,
- "Oxxford Clothes": 25000000,
- "PSE&G": 9300000000,
- "PT. Cheil Jedang Indonesia": 23100000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pantene": 10000000,
- "Paris Baguette": 11200000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "Pepperl Fuchs": 800700000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pierre's Ice Cream": 19900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "PolyVision company": 19000000,
- "Powell Industries": 499400000,
- "Prairie Farms": 3100000000,
- "Premier Drums": 10000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Publicis Sapient": 2700000000,
- "QuickChek": 1000000000,
- "R. J. Corman": 420000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Republic Bank": 314200000,
- "Riddell Sports Group Inc.": 75000000,
- "Risk International": 22900000,
- "Riverside Health System": 19000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rocky Brands": 593600000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Rubbermaid": 3000000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SIFCO": 89600000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Sanderson Farms": 5600000000,
- "Schwebel's": 23800000,
- "Scott Fetzer Company": 250000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Slack": 1100000000,
- "Sleep Number": 2100000000,
- "Smart Growth America": 10000000,
- "Smith & Nephew": 5200000000,
- "Snyder's-Lance": 8600000000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Southwestern Ohio Council for Higher Education": 37700000,
- "Squire Patton Boggs": 701000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Steward Health Care": 5400000000,
- "Stine Seed": 1000000000,
- "Summit Management": 34000000,
- "Summit Partners": 71700000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Surface Combustion": 32500000,
- "Swift Transportation Company": 3400000000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
- "Symbotic": 30000000,
- "Symrise": 4600000000,
- "Synnex": 57900000,
- "Synthomer": 3100000000,
- "THK": 2700000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Blue Book": 134600000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Progressive Corporation": 46000000000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thunderstone": 26700000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Trace3 LLC.": 1400000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "True Digital Security": 14000000,
- "Tuscarawas Valley": 31700000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UDF": 805600000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNIVERSAL MUSIC GROUP N.V.": 10000000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universities Space Research Association": 44200000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Velvet Ice Cream": 34800000,
- "Vera Bradley": 513100000,
- "Vesuvius France S.A.": 2200000000,
- "Viasat": 2800000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vocelli Pizza": 14000000,
- "Volkert": 124000000,
- "Von Roll UK Ltd.": 340700000,
- "Vontier": 3100000000,
- "Vorys Sater Seymour and Pease": 16400000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WESCO International": 20700000000,
- "WIDEPOINT CORPORATION": 13000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Wayne High School": 18200000,
- "West Carrollton High School": 11000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "WhatIfSports": 17500000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Winegardner and Hammons": 51200000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziply Fiber.": 370000000,
- "Zynga": 2900000000
- },
- "Oklahoma": {
- "24 Hour Fitness": 1500000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "Academy Sports Outdoors": 6600000000,
- "Academy of Achievement": 32800000,
- "Ace Hardware": 7800000000,
- "Ack-Mac": 30000000,
- "Acxiom": 1300000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Arvest Bank": 958800000,
- "Ashly Audio": 20000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atec": 1600000,
- "Atlanta Bread": 5200000,
- "Aviat Aircraft": 8000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baja Fresh": 500000000,
- "BancFirst": 557400000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Big Whiskey's": 2000000,
- "Black Bear Diner": 18700000,
- "Black Rifle Coffee": 233100000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Boeing Store": 13900000,
- "Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "Brain Injury Association of America": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brixmor Property Group": 1200000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Buckle": 1300000000,
- "Burckhardt Compression": 699500000,
- "Bureau Veritas": 5700000000,
- "Burton Snowboards": 400000000,
- "CHEF'STORE": 1100000000,
- "Cabot Corporation Foundation": 28000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Camfil": 863100000,
- "Camp Fire": 10000000,
- "Canoo Inc.": 2600000,
- "Canyon Ranch": 150000000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "City of Weatherford": 201000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clearwater Paper": 2000000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Comfort Dental": 17800000,
- "Community Coffee": 245000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Continental Resources": 9500000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cushing Citizen": 30400000,
- "Cutco Corporation.": 200000000,
- "DAV": 3900000,
- "DJC Oregon": 10000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DTN Ag.": 250000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dobbies Garden Centres": 184100000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "ETS": 1400000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enel": 118500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Finance & Commerce": 3700000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
- "Formstack": 38000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freedom Oklahoma": 5400000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GardaWorld": 3800000000,
- "Globe Life Insurance": 5200000000,
- "Graebel": 1500000000,
- "Grand River Dam Authority": 415000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harkins": 13700000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Heritage Hall School": 1700000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "HuHot Mongolian Grill": 7000000,
- "IBC Bank": 556800000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Indian Affairs": 3700000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jerry's Artarama": 932000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "L.G. Balfour Company": 290000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LUFKIN": 1500000000,
- "La Madeleine": 35200000,
- "Leafbuyer": 4500000,
- "Learning Express Toys": 2500000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Lennys": 9000000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "Lufthansa Technik": 4600000000,
- "Lynden": 960000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Marlin Firearms Company": 42800000,
- "Materion Corporation": 1800000000,
- "Mazzio's": 6500000,
- "McAlester News-Capital": 12000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Merit Energy": 9200000,
- "Metal Supermarkets": 26800000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Money Management": 30000000,
- "Motiva Enterprises": 20800000000,
- "Murphy USA": 22800000000,
- "Muskogee Phoenix": 7000000,
- "NCFCA": 9900000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "Native American Times": 5700000,
- "Newmark Group": 4400000,
- "NewsPress": 7000000,
- "NiSource": 5400000000,
- "Niagara Conservation": 2500000,
- "NuStar Energy": 3200000000,
- "Oerlikon": 3100000000,
- "Oklahoma Bar": 5100000,
- "Oklahoma Department of Commerce": 6200000,
- "Oklahoma Department of Wildlife Conservation": 4200000,
- "Oklahoma Turnpike Authority": 10000000,
- "Okmulgee Regional Airport": 46800000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Peace Frogs": 2400000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Philadelphia Church of God": 5800000,
- "Piaggio Aerospace": 8200000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Planned Parenthood": 1600000000,
- "PolyVision company": 19000000,
- "Preservica": 13200000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quad Metalworks": 3100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "RadNet": 1400000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rejoice Christian School": 5900000,
- "Relax The Back": 11600000,
- "Renewable Energy Group": 2900000000,
- "RentHop": 1000000,
- "Robeez": 6400000,
- "Rock & Brews": 33300000,
- "Rodgers Instruments Corporation": 6400000,
- "Rolls-Royce": 15300000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sarku Japan": 310000,
- "Schlumberger Limited": 27800000000,
- "Scientific Computer Applications": 22700000,
- "Seagate Technology": 9400000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sharp HealthCare": 3800000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simplot": 6000000000,
- "Skulls Unlimited": 3000000,
- "Sleep Number": 2100000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Hills": 10000000,
- "Southwest": 22700000000,
- "Sprinkles Cupcakes": 15800000,
- "St. Louis Music": 6600000,
- "Stanley Steemer": 9500000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stripes Stores": 750000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulphur Times": 10000000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "TBN": 3200000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Bueno Restaurants L.P.": 187000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telluride Regional Airport": 21200000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Tired Hands": 7000000,
- "TokenEx Inc.": 10000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trican Well Service Ltd.": 541000000,
- "Trinity Lutheran College": 18400000,
- "True Digital Security": 14000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "US Fleet Tracking": 11000000,
- "US Vision": 300000000,
- "USA Track & Field": 9000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of Oklahoma": 24900000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vestas": 15500000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Victory Christian School": 3800000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WEHCO Media": 380000000,
- "WESCO International": 20700000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Warwick Investment Group": 11500000,
- "Weatherford Daily News": 5600000,
- "Western Farmers Electric Cooperative": 10000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "Will Rogers High School": 5200000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "WinCo Foods": 7700000000,
- "Winchell's Donut House": 16900000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yellow Pages Directory": 15100000,
- "Zenair": 17900000,
- "Zumiez": 1100000000
- },
- "Oregon": {
- "24 Hour Fitness": 1500000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AL MAR Knives": 2000000,
- "AMC Theatres": 3900000000,
- "ASCM": 26900000,
- "AVEVA": 1600000000,
- "Abcam": 425500000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Adventist Health": 4700000000,
- "AeroVironment": 264900000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Alamo Rent a Car": 2900000,
- "Allagash": 27000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alpine Electronics": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American President Lines": 1300000000,
- "American Society of Landscape Architects": 6700000,
- "American Tinnitus": 4200000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andes Technology": 29300000,
- "Andrew Christian": 8000000,
- "Apartment List": 37300000,
- "Aperture": 11800000,
- "Applied Materials": 25200000000,
- "ArticlesBase": 1000000,
- "Ashland Inc.": 2400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
- "Asure Software": 76600000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Avia": 5700000,
- "Aviat Aircraft": 8000000,
- "Axium": 15700000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BLC Bank": 8000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Banfield": 774400000,
- "Banque Libano-Fran\u00e7aise S.A.L.": 26300000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Ben & Jerry": 863100000,
- "Beneficial State Bank": 42900000,
- "Beyond Words Publishing": 6000000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Blackstone Publishing": 10000000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Bob's Red Mill": 120000000,
- "Bonchon": 60000000,
- "Booster Juice": 8300000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brammo": 47500000,
- "Breedlove": 3500000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
- "Bubble": 7000000,
- "Buckle": 1300000000,
- "Bullseye glass": 16900000,
- "Burton Snowboards": 400000000,
- "CASH Music": 1000000,
- "CCT Rail System": 28300000,
- "CDW": 23800000000,
- "CHEF'STORE": 1100000000,
- "CRA Racing": 14400000,
- "CSE Insurance Group": 45000000,
- "CTL Corporation": 50200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Calgon Carbon": 750000000,
- "Cambia Health": 9500000000,
- "Camp Fire": 10000000,
- "Car Toys": 12800000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Chictopia": 3300000,
- "Christian Association for Psychological Studies": 19200000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City of Portland Bureau of Transportation": 6700000,
- "Citybikes": 4200000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Clean Water Services": 3000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clintons": 35600000,
- "CloudKitchens": 3000000,
- "Coast To Coast Tickets": 4300000,
- "Coava Coffee Roasters": 9000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Christian": 10000000,
- "Columbia Forest Products": 500000000,
- "Condor": 10000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corporation Sealy": 1300000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "DJC Oregon": 10000000,
- "Daily Tidings": 4900000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Defenders of Wildlife": 8400000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
- "Digital Realty": 4700000000,
- "Digital Trends": 60000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dirtnap Records": 3900000,
- "Discogs": 9000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eagle Newspapers": 34000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Edwards Vacuum": 889800000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elite Airways": 3000000,
- "Enterprise Car Sales": 40000000,
- "Epitaph": 6000000,
- "Ethan Allen": 845000000,
- "Evo company": 140000000,
- "Exxentric": 1400000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "FlixBus": 450000000,
- "Flora Plant": 2500000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fund for Wild Nature": 21800000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GMC": 1000000000,
- "GNACSports": 1800000,
- "Gaffney Cline": 17500000,
- "GardaWorld": 3800000000,
- "Gather metaverse platform": 1000000,
- "Generac Power Systems": 4600000000,
- "Glu Mobile": 540500000,
- "GoAntiques": 5900000,
- "Goodman Global Group Inc.": 1900000000,
- "Grand Central Baking Company": 20700000,
- "Grass Valley": 426200000,
- "GreenPal": 1200000,
- "Greenberg Traurig": 2000000000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "HELM Boots": 7000000,
- "HSS Hire": 7000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hawthorne Books": 17200000,
- "Hawthorne Hotel": 4700000,
- "Hazelden Betty Ford": 186300000,
- "Hemlock Society": 10000000,
- "Hillsboro Airport": 10000000,
- "Hippo Hardware": 19400000,
- "Hobby Lobby": 5300000000,
- "Hoffman Construction": 1400000000,
- "Home Forward": 4900000,
- "Hood River Distillers": 9000000,
- "Houzz": 500000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IM CREATOR": 1000000,
- "INFICON": 8000000,
- "ION": 19100000,
- "InFocus": 219800000,
- "Insightsoftware": 350000000,
- "Interfor": 354900000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "John L. Scott": 800000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KIXEYE": 60000000,
- "Kaiser Permanente": 93100000000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kill Rock Stars": 18800000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "KitBash3D": 2000000,
- "Knightsbridge FX": 14800000,
- "Krispy Krunchy Chicken": 3400000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Grande High School": 36600000,
- "Landmark Worldwide": 29100000,
- "Lattice Semiconductor": 585600000,
- "Laughing Planet": 10000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexcycle": 2400000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LivaNova": 1000000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lynden": 960000000,
- "M.C. Dean": 1000000000,
- "MFG Inc.": 30000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Maine Eastern Railroad": 6000000,
- "Marcus & Millichap": 1500000000,
- "Market of Choice Inc.": 300000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Matson": 4300000000,
- "McAfee": 2200000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meta Filter": 2400000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Service District": 1500000,
- "Microsemi": 1700000000,
- "MidAmerican Energy": 66000000,
- "Milliman": 1200000000,
- "Modere": 4900000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Mountain Mike's Pizza": 68000000,
- "Moyes Delta Gliders": 2100000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NBC Sports": 120000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "NOVESKE": 4600000,
- "National Celiac Association": 3700000,
- "National Model Railroad": 5300000,
- "Nau": 2400000,
- "Neah-Kah-Nie School District": 18300000,
- "Nemo Design": 9000000,
- "Nikon": 4900000000,
- "Ninkasi Brewing": 12000000,
- "Nordic Semiconductor": 756600000,
- "North Clackamas Christian School": 10000000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "Nosler": 15000000,
- "NuStar Energy": 3200000000,
- "ON Semi": 8300000000,
- "Oceana": 10000000,
- "Ollie's Bargain Outlet": 1700000000,
- "Olympia Provisions": 2500000,
- "OneMain Financial": 4100000000,
- "Open Alliance": 10000000,
- "Open Sesame": 26000000,
- "Orange Amps": 4200000,
- "Orbital UAV": 14400000,
- "Oregon forests": 9600000,
- "Orenco": 78000000,
- "Orkin": 1000000000,
- "Orrick": 975000000,
- "Otter Co-op": 42700000,
- "Outback Steakhouse": 2000000000,
- "Outside In": 10000000,
- "PECI": 34900000,
- "PEMCO": 500000000,
- "PGROUPD": 15000000,
- "PTV AG": 132700000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific High School": 15000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Palisades Hudson": 2300000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Perka": 2000000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pipeworks Studios": 14800000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Polk County Itemizer-Observer": 10000000,
- "Port of Hood River": 10000000,
- "Port of Morrow": 10000000,
- "Portland Christian Junior Senior High School": 4000000,
- "Post Carbon": 2800000,
- "Prairie Farms": 3100000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Procore": 664300000,
- "Propane Education & Research Council": 10000000,
- "Publicis Sapient": 2700000000,
- "Qorvo": 1200000000,
- "QuickSchools": 9900000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "REV Group": 2300000000,
- "RWDI": 26900000,
- "Rayonier": 1100000000,
- "Razorfish LLC.": 403900000,
- "Read the Docs": 10000000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "RedMonk": 42900000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Renkus-Heinz": 6900000,
- "RentHop": 1000000,
- "Rentrak": 115700000,
- "Revant Optics": 7000000,
- "Rexair": 35000000,
- "Rise Records": 11500000,
- "Roche Bobois": 8300000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Roehl Transport": 421300000,
- "Rohde & Schwarz": 2600000000,
- "Rotel": 38800000,
- "Royal Philatelic Society of Canada": 8600000,
- "Ruth's Chris": 350200000,
- "SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SRG Partnership": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Samaritan Health Services": 500000000,
- "San Antonio Shoemakers": 4700000,
- "Schmidt's Naturals": 5000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "ShadowMachine": 2500000,
- "ShadowTV": 3200000,
- "Shane Co.": 30800000,
- "Shari's": 240000000,
- "Shwood Eyewear": 6000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smart Growth America": 10000000,
- "Snyder's-Lance": 8600000000,
- "Solectrac": 2500000,
- "Soma Games": 6000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprudge": 6900000,
- "St. Joseph Academy": 3200000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stash Tea Company": 10000000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stimson Lumber": 380000000,
- "Storables": 3700000,
- "Student Transportation of America": 637200000,
- "Stumptown Coffee Roasters": 40000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Swbc Professional Employer Services I Llc.": 356800000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TMT Development": 4200000,
- "TOPS Club": 19600000,
- "TRUMPF": 10200000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "TeamUnify": 1700000,
- "Technology Student Association TSA": 10000000,
- "Tender Loving Empire": 4900000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Conservation Fund": 3900000,
- "The Dyrt": 4000000,
- "The Fruit": 10000000,
- "The Green Grid": 4900000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Register-Guard": 10000000,
- "The Scoular Company": 4000000000,
- "Tiffany's": 4400000000,
- "Tillamook County Creamery Association": 800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "TransAlta": 2100000000,
- "Transunion Chile": 3600000000,
- "True Digital Security": 14000000,
- "Trust for Public Land": 1200000,
- "Trusted Computing Group": 10000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFW": 4700000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "USB-IF": 10000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "University of Oregon Graduate Teaching Fellows Federation": 1800000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VTech": 2400000000,
- "Vajra Enterprises": 6400000,
- "Varonis": 457600000,
- "Veritiv": 7300000000,
- "Vernier": 50000000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Vibra Healthcare": 672800000,
- "Victim Rights Law Center": 17300000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volcom": 380000000,
- "W. L. Gore & Associates": 3800000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Webasto": 250000000,
- "Webtrends": 150000000,
- "Wellsprings Friends School": 12400000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Willamette Week": 10000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "Work & Co.": 58400000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xezo": 1500000,
- "Xylem": 5200000000,
- "Yamhill Carlton School District": 19000000,
- "ZEISS": 8800000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "u-blox Holding AG": 1800000000
- },
- "Pennsylvania": {
- "3D International": 4000000000,
- "AACOM": 2100000000,
- "AASHE": 24300000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AIG": 48700000000,
- "AIME": 23400000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ASEA Brown Boveri": 28800000000,
- "ATS Automation": 1800000000,
- "AVEVA": 1600000000,
- "AVG": 200000000,
- "Abacus Federal Savings Bank": 18800000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Acf Industries": 25000000,
- "Acorda": 122700000,
- "Acrisure": 3800000000,
- "Acuity Brands": 4000000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Alkemy X": 32700000,
- "Allegheny County": 20300000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Altoona Mirror": 10000000,
- "Altra Industrial Motion": 1900000000,
- "AmeriServ": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Annville-Cleona School District": 20000000,
- "Antietam School District": 10800000,
- "Applegreen plc.": 3400000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Argo Group": 1600000000,
- "Armenian Evangelical Church": 30900000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atlanta Public Schools": 38500000,
- "Atria Senior Living": 778500000,
- "Aurora Innovation Inc.": 145300000,
- "Australian Laboratory Services": 6600000000,
- "Avvo": 29900000,
- "Axalta": 4100000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BTS Group": 232600000,
- "Bachem": 455300000,
- "Baird investment bank": 3400000000,
- "Balboa Bank & Trust S.A.": 35000000,
- "Ballard Designs": 65000000,
- "Bankrate": 434200000,
- "Banner of Truth": 23700000,
- "Barbeque Integrated Inc.": 179000000,
- "Barber National": 37400000,
- "Barker Black": 14300000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Beckhoff": 1100000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Berkshire Hathaway GUARD Insurance Companies": 32100000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Bob O'Connor Golf Course": 10800000,
- "Bonney Forge": 168000000,
- "Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "BrabenderCox": 16700000,
- "Bradford White": 300000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Bucks County Courier Times": 30000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CRU Group": 69600000,
- "CSL": 1900000000,
- "CSSI Technologies": 22700000,
- "CURTISS-WRIGHT": 2500000000,
- "Calgon Carbon": 750000000,
- "Capital Area Transit": 36200000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carpenters' Hall": 19700000,
- "Casella": 1100000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Chewy": 9800000000,
- "Chichester School District": 10000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Condor": 10000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Convoy of Hope": 21500000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cornerstone Research": 250000000,
- "Corning Glass Works": 14500000000,
- "Cracker Barrel": 3300000000,
- "Cradles to Crayons": 30500000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cresco Labs": 17700000000,
- "Crown American Associates": 15200000,
- "Cruise Planners": 488000000,
- "Crystal Fountains": 17200000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "Cytokinetics": 148200000,
- "DECTRIS": 38500000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Diamond Foundry": 15000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "District Taco": 35000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorrance Publishing": 16100000,
- "Drexel Hamilton": 14800000,
- "Dynata": 380300000,
- "EMC Insurance": 645000000,
- "EOG Resources": 25000000000,
- "EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
- "EatStreet": 25000000,
- "Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Eland Publishing": 11000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elsevier": 3500000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equinix": 7300000000,
- "Erie City School District": 13400000,
- "Evonik Industries AG": 19700000000,
- "FOREST CITY REGIONAL SCHOOL DISTRICT": 14400000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Fashionphile": 57200000,
- "Federal Mine Safety and Health Review Commission": 11300000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "Flexport": 3300000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Financial Corporation": 1000000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GVT Rail": 26400000,
- "GardaWorld": 3800000000,
- "Garnet Valley School District": 14100000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "Gen Re": 9500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Gibbs & Cox": 100000000,
- "GiftCards": 78500000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gooseberry Patch": 14100000,
- "Gordon Food Service": 16000000000,
- "Graco Baby": 34700000,
- "Graebel": 1500000000,
- "Greater Johnstown School District": 14300000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grier": 13940000,
- "Grindline Skateparks": 27600000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "Guru": 100000000,
- "HBC": 5600000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Immunocore": 122000000,
- "Industrial Scientific": 182000000,
- "Inquirer": 12200000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Ishida Co. Ltd.": 1200000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenkintown School District": 20600000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jessica Kingsley Publishers": 29300000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Journeys company": 8600000,
- "Juniper Advisory": 14700000,
- "K&L Gates": 1000000000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Karns Quality Foods": 20000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kennedys Law": 284000000,
- "Kgb": 59500000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Koppers": 2000000000,
- "Kroll": 3000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LLR Partners": 20000000,
- "LUFKIN": 1500000000,
- "LVHN": 4900000,
- "Land O'Lakes": 16000000000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lenovo": 66000000000,
- "Leprino Foods": 3500000000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lions Gate": 3600000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Lord Abbett": 300000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "MFG Inc.": 30000000,
- "MSA Safety": 1500000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Marlboro Music": 36100000,
- "Marlow Industries": 1500000000,
- "Materion Corporation": 1800000000,
- "Maxwell Technologies Inc.": 77500000,
- "McAfee": 2200000000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metabo": 15900000,
- "Middle States Commission on Higher Education": 12500000,
- "Milliman": 1200000000,
- "Milton Hershey School": 1440000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Monetate": 35000000,
- "Money Management": 30000000,
- "Monroe County Transit Authority": 14900000,
- "Montgomery County MD": 24300000,
- "Moravian history": 98100000,
- "Morgan Lewis": 2400000000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning star": 1900000000,
- "Mosaic Inc.": 10000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Christian Foundation": 27800000,
- "National Resilience": 500000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "NetObjects": 26700000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "ON Semi": 8300000000,
- "OXO": 500000000,
- "OceanFirst": 17300000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Organic Consumers": 17900000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Development": 19600000,
- "Oxxford Clothes": 25000000,
- "PAN Foundation": 450400000,
- "PREIT Services LLC.": 300500000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patriot League": 23300000,
- "Penn National Insurance": 17400000,
- "Penn-Trafford": 22600000,
- "Pennsylvania Bar Association": 42500000,
- "Pennsylvania Turnpike Commission": 58200000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "Perkiomen": 21700000,
- "Philadelphia Folklore Project": 10900000,
- "Philadelphia Gas Works": 25700000,
- "Philadelphia Spinners": 10000000,
- "Philadelphia Water Department": 10000000,
- "Phocas": 50000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pocono Record": 11800000,
- "Post-Gazette": 34700000,
- "Powell Industries": 499400000,
- "Price Chopper": 1500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Quad Metalworks": 3100000000,
- "QuickChek": 1000000000,
- "Quiznos": 50000000,
- "RIDC Regional Industrial Development Corporation": 10000000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Radio Flyer": 26100000,
- "Rautaruukki Corporation.": 656500000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Renda Broadcasting": 10000000,
- "Republic Bank": 146400000,
- "Rexair": 35000000,
- "Riverside Partners": 14400000,
- "Roehl Transport": 421300000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ryan Office": 626000000,
- "S&P Global": 8200000000,
- "SAP": 33500000000,
- "SAP Ariba": 1600000000,
- "SCHOTT AG": 2800000000,
- "SEPTA": 145600000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SSC Space": 46100000,
- "SUVCW": 23000000,
- "SYSTRA": 656400000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsa Labs": 18000000,
- "Sam Ash": 400000000,
- "Santander Bank": 14800000,
- "Sapiens": 382000000,
- "Sarris Candies": 32000000,
- "Scala": 120000000,
- "Scandinavian Tobacco Group": 1200000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Schuylkill Transportation System": 44000000,
- "Seaboard": 11200000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "Select Medical": 6300000000,
- "Sharp HealthCare": 3800000000,
- "Sheetz'": 6200000000,
- "Shippensburg Area School District": 15600000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
- "Society for Protective Coatings": 200100000,
- "Somerset Trust Company": 24900000,
- "Sonoco": 6500000000,
- "South Williamsport Area School District": 48800000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Spread Group": 195000000,
- "St. Josaphat Eparchy": 16600000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stitch Fix": 2100000000,
- "Stoney River": 10300000,
- "Strasburg Rail Road": 39100000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Swedish Match": 2000000000,
- "Swift Transportation Company": 3400000000,
- "Synthomer": 3100000000,
- "T. Rowe Price": 6500000000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technetics Group": 100000000,
- "Technology Student Association TSA": 10000000,
- "Teck Resources": 12600000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Thales Group": 18000000000,
- "The Art of Shaving": 45000000,
- "The Ballinger Company": 37000000,
- "The Golf Association of Philadelphia": 10000000,
- "The Hartford": 21400000000,
- "The Hershey Company": 10100000000,
- "The Hotel Hershey": 13800000,
- "The Kiski School": 15790000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Recording Academy": 15800000,
- "The Swarthmore Phoenix": 25000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Timken": 4500000000,
- "Topflight Corporation": 10000000,
- "Topgolf International Inc.": 1100000000,
- "Topps Europe Ltd.": 567000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
- "Traffic Safety Store": 19900000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMH Properties": 193100000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union League": 10000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Upper Dublin School District": 20300000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vesuvius France S.A.": 2200000000,
- "Viatris": 17200000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vocelli Pizza": 14000000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WESCO International": 20700000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whitaker House": 36000000,
- "White Castle": 720600000,
- "Williams Companies": 11300000000,
- "Wilshire": 100000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "World of Beer": 40000000,
- "WuXi AppTec": 3400000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000
- },
- "Rhode Island": {
- "ABC Supply": 12100000000,
- "ABCya": 1000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "Ace Hardware": 7800000000,
- "Achievement First": 5500000,
- "Adore Me": 115000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Alesis": 6400000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Mathematical": 10300000,
- "American Society of Genealogists": 3600000,
- "American Society of Landscape Architects": 6700000,
- "American Tourister": 6000000,
- "Amgen": 26300000000,
- "Ampeg": 366000,
- "Andrew Christian": 8000000,
- "Annaly": 1500000000,
- "Armenian Evangelical Church": 30900000,
- "Armoloy": 49100000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "BJ's": 18700000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Best Buddies": 3600000,
- "Bob's Stores": 1000000,
- "Booz Allen": 8800000000,
- "Breeze Airways": 50000000,
- "Bridgeway Capital Management": 14000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Coast To Coast Tickets": 4300000,
- "Coca-Cola Europacific Partners": 279000,
- "College Hunks Hauling Junk": 100000000,
- "Compass Group": 111500000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crawford Composites": 6300000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "Day Pitney": 17300000,
- "Dayton Superior": 65000000,
- "Design Observer": 7000000,
- "Dollar General": 35300000000,
- "Dynata": 380300000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EVgo Services LLC.": 34400000,
- "East Bay Newspapers": 2800000,
- "Edelman Financial Engines": 80000000,
- "Electric Boat Co.": 10000000000,
- "Elevance Health": 153200000000,
- "Embrace Home Loans": 180600000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "ExxonMobil": 403200000000,
- "FM Global": 5000000000,
- "FatFace": 244700000,
- "Fenway Partners": 13600000,
- "Ferrellgas": 2100000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Genuine Parts Company": 20500000000,
- "Golden Minerals": 28200000,
- "Golden Spike": 2300000,
- "GreenPal": 1200000,
- "Greenwich Strategy": 10000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hanna Instruments": 220000000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hodgdon Yachts": 33100000,
- "Hyster-Yale": 3200000000,
- "IHEARTMEDIA": 3800000000,
- "IndependentRI": 15000000,
- "International Tennis Hall of Fame": 9000000,
- "Iron Mountain Incorporated": 5000000000,
- "Island Bar": 156000,
- "Itt Industries Luxembourg": 2900000000,
- "Ivory Ella": 2000000,
- "JUMP Bikes": 6000000,
- "Jeanneau": 600000000,
- "Jerry's Artarama": 932000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Laserperformance": 70000000,
- "Leaf Trading Cards": 2400000,
- "Leidos Holdings Inc.": 13700000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Loews Hotels": 950000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "M-Audio": 2300000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "MassChallenge": 22000000,
- "Materion Corporation": 1800000000,
- "Metal Supermarkets": 26800000,
- "Moe's Southwest Grill": 295500000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NRLC": 5400000,
- "National Celiac Association": 3700000,
- "National Grid": 24200000000,
- "Newport Jazz": 2700000,
- "Nordhavn": 7000000,
- "North Sails": 27500000,
- "ON Semi": 8300000000,
- "Oceana": 10000000,
- "Ollie's Bargain Outlet": 1700000000,
- "Oyster Yachts": 276000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "PrintWithMe": 1000000,
- "Providence Equity": 43100000,
- "Quick Lane": 6000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "RenaissanceRe": 4400000000,
- "Ryan Office": 626000000,
- "SEIU Local 1199NE": 10700000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Scott's-Bell 47": 6000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sharp HealthCare": 3800000000,
- "Showcase Cinemas": 2900000,
- "Smarte Carte": 26000000,
- "Sodexo": 22300000000,
- "Southern Airways Express": 43000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "St Andrew's School Rhode Island": 1100000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steel Dynamics": 22700000000,
- "Steiff": 3900000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Sylvan Learning": 12600000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "The Green House Project": 7900000,
- "The Motley Fool": 550000000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Providence Journal": 8300000,
- "The Walt Disney Privacy Center": 84400000000,
- "The Wheeler School": 4100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Technologies": 80000000,
- "USCIS": 15700000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "WoodSpring": 150000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Zumiez": 1100000000,
- "evoJets": 187000,
- "xTuple": 6400000
- },
- "South Carolina": {
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
- "ADP Roseland": 16900000000,
- "AGRU": 20000000,
- "AHT Cooling Systems": 576200000,
- "AL MAR Knives": 2000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "AVG": 200000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acura": 3800000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Aggreko": 1900000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Airliners": 3000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Battlefield Trust": 6000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Society of Landscape Architects": 6700000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Apple Ford": 17700000,
- "Applegreen plc.": 3400000000,
- "Arbordale Publishing": 24800000,
- "Ardagh Group S.A.": 9000000000,
- "Armoloy": 49100000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "Atotech": 1500000000,
- "Atria Senior Living": 778500000,
- "Avail Company": 4200000,
- "Avvo": 29900000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BELFOR": 2000000000,
- "BFGoodrich Tires": 7100000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berkeley County Airport": 4200000,
- "Berkeley County School District": 555700000,
- "BloomNation": 6000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bob Jones University Museum & Gallery": 12900000,
- "Bojangles": 560000000,
- "Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "BorgWarner": 15300000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Britax": 503100000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Bruster's Ice Cream": 2100000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "CACI": 6200000000,
- "CHEF'STORE": 1100000000,
- "CTG": 375200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Camden Property Trust": 2000000000,
- "Camfil": 863100000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carpenter Technology": 2400000000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "CertusBank": 2700000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Claro": 9200000000,
- "Clean Juice": 7000000,
- "Clemson Tigers": 1100000,
- "Cleva North America": 7000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia City Paper": 30100000,
- "Columbia Daily Tribune": 2900000,
- "CompX Security": 152400000,
- "Constantia Flexibles": 1700000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Tire the Americas LLC.": 230000000,
- "Core & Main Inc.": 6100000000,
- "Cornerstone Research": 250000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Cousins Maine Lobster": 5100000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Cradlepoint": 200000000,
- "Crane Merchandising Systems": 600000000,
- "Crate & Barrel": 1600000000,
- "Crawford Composites": 6300000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D.H. Griffin": 171000000,
- "DAV": 3900000,
- "DEX Imaging": 284000000,
- "DJC Oregon": 10000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
- "DataWorks Plus": 3000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Diversey Holdings": 2700000000,
- "Dollar General": 35300000000,
- "Dorchester School District 2": 2000000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "ECU Health": 1800000000,
- "ELCA South Carolina Synod": 1300000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Embrace Home Loans": 180600000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "FLETC": 1200000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "Finance & Commerce": 3700000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GG Archives": 3600000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Generac Power Systems": 4600000000,
- "Gentherm": 1100000000,
- "Gibson Brands Inc.": 366600000,
- "Globe Life Insurance": 5200000000,
- "Goldklang Group": 24800000,
- "Gordon Food Service": 16000000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greenville News": 75000000,
- "Greenville-Spartanburg International Airport": 17200000,
- "Greystar Real Estate Partners": 550000000,
- "Groz-Beckert": 108600000,
- "Guitar Center": 2300000000,
- "H&R Firearms": 21000000,
- "H. T. Hackney Company": 3900000000,
- "HBC": 5600000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "Hackensack Meridian Health": 4500000000,
- "Haemonetics": 1100000000,
- "Haggar": 300000000,
- "Haig Point": 8500000,
- "Hair Club": 400000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Harveys Supermarkets": 3100000,
- "Hayden Shapes": 12000000,
- "Heathwood": 29200000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hunter Douglas Group": 4600000000,
- "Hustle Gang": 2800000,
- "Hwy 55": 3400000,
- "Hy-Vee": 12000000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Imagine Schools": 14500000,
- "InTown Suites": 3400000,
- "Independent Mail": 6000000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Innisbrook Golf Resort": 8000000,
- "Instructure": 461100000,
- "Insurify": 9300000,
- "Integral Systems": 10000000,
- "Interfor": 354900000,
- "Invest Financial Corporation": 290000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "JMC Communities": 6000000,
- "Jackson Free Press": 5700000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jittery Joe's": 3100000,
- "Joe's Crab Shack": 345000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "Just Aircraft": 16500000,
- "KBR": 7700000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "L.G. Balfour Company": 290000000,
- "LGI Homes": 2300000000,
- "LSEG": 9500000000,
- "Laborie": 56300000,
- "Lancaster CSD": 11500000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "Level 3 Communications": 17500000000,
- "Lexington County School District One": 17500000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Diversified Architectural Consulting": 2000000,
- "Little Free Library": 9500000,
- "Lloyd's": 473500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lowes Foods": 1600000000,
- "M.C. Dean": 1000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McCormick Taylor": 83000000,
- "MedStar Health": 5600000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Metal Supermarkets": 26800000,
- "Meyer Davis": 9000000,
- "Miami Grill": 150000000,
- "Michelin": 28300000000,
- "Milliken & Co.": 2500000000,
- "Missoula Montana Airport": 22900000,
- "Moe's Southwest Grill": 295500000,
- "Montage Hotels": 400000000,
- "Mood Media": 475100000,
- "Morley Companies": 19600000,
- "Motiva Enterprises": 20800000000,
- "Mr. Tire": 5700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NCG Cinemas": 9100000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Wild Turkey Federation": 6000000,
- "Net Ministries": 4000000,
- "Newark": 450000000,
- "Nicholas Financial": 48200000,
- "North Sails": 27500000,
- "Northrim": 124500000,
- "Northwest Bank": 510300000,
- "OMNOVA": 750000000,
- "OceanaGold": 744700000,
- "Oerlikon": 3100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneBlood": 1300000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orano": 5400000000,
- "Orbit Books": 7000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Outokumpu": 9800000000,
- "Oxxford Clothes": 25000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Palmetto Electric Cooperative Inc.": 4400000,
- "Paris Baguette": 11200000,
- "Park National Bank": 367600000,
- "Park Seed Company": 8400000,
- "Parker Hannifin": 15900000000,
- "Patric Chocolate": 18900000,
- "Peace Frogs": 2400000,
- "PharMerica": 2100000000,
- "Piaggio Aerospace": 8200000,
- "Piedmont Augusta": 4300000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Port City Java": 3400000,
- "Pretzelmaker": 125000000,
- "PrimoHoagies": 2600000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Psych Central": 5100000,
- "Publix": 52200000000,
- "Quad Metalworks": 3100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "R. J. Corman": 420000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Rexair": 35000000,
- "Richland County School District Two": 26000000,
- "Risk International": 22900000,
- "Rite Rug": 9500000,
- "Roehl Transport": 421300000,
- "Roly Poly": 16400000,
- "Ron Jon Surf Shop": 18900000,
- "Rooms To Go": 2500000000,
- "Royal Terberg Group": 7000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SGS S.A.": 28000000000,
- "SHEEX": 4400000,
- "SIM": 4000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMS Holdings Corporation": 32800000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Santee Cooper": 1900000000,
- "Savills North America": 6000000,
- "Schaeffler Group": 15600000000,
- "SemaConnect": 29000000,
- "Senor Frog's": 8000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Smarte Carte": 26000000,
- "Society for Protective Coatings": 200100000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Spartanburg One": 19400000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanadyne": 23300000,
- "Standard Textile Company": 119500000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starlight Children's Foundation": 2700000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stephens": 2300000000,
- "Stern Pinball": 28500000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "SunOpta": 812600000,
- "Suominen": 491400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Synthomer": 3100000000,
- "TCBY": 8800000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technetics Group": 100000000,
- "Technology Student Association TSA": 10000000,
- "Teijin": 7300000000,
- "Tempur-Pedic": 24700000,
- "Tenable\u00ae": 577300000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Daily Gamecock": 2500000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Points Guy": 3400000,
- "The Scoular Company": 4000000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USALCO": 7300000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Urban Design Associates": 9000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "VT Group": 185000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Vericor": 26900000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vesuvius France S.A.": 2200000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Volkswagen": 51300000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Western & Southern Financial Group": 5300000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westminster Catawba Christian School": 1000000,
- "Which Wich": 79500000,
- "Wild Wing Cafe": 5400000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
- },
- "South Dakota": {
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Agropur": 7700000000,
- "Alamo Rent a Car": 2900000,
- "Alex Johnson": 16900000,
- "Alexander Street": 8800000,
- "Allison Transmission": 2700000000,
- "Alzheimer's Association": 81500000,
- "American College of Apothecaries": 3200000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Applied Instruments": 9000000,
- "Association of Free Lutheran Congregations": 6500000,
- "At Home store": 1700000000,
- "BBR Music Group": 2600000,
- "Bekins Van Lines Inc.": 33600000,
- "Beltone": 61600000,
- "Brain Injury Association of America": 10000000,
- "Buckle": 1300000000,
- "Cadex Defence": 7700000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Clark Brands": 23000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "Einstein Bros. Bagels": 500000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Exact Data": 20000000,
- "ExxonMobil": 403200000000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Ferrellgas": 2100000000,
- "Fiserv": 17700000000,
- "Foster Farms": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Beer": 20600000,
- "G&L Guitars": 8000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "Kirby Company": 500000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "L. G. Everist": 10000000,
- "Leaf Trading Cards": 2400000,
- "Leeann Chin": 2800000,
- "Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "Marine Turbine": 50000000,
- "MarketBeat": 7000000,
- "Marlin Firearms Company": 42800000,
- "Midwest Communications": 36300000,
- "NOAA Weather Radio": 36400000,
- "Norton": 1300000000,
- "NuStar Energy": 3200000000,
- "NuView IRA": 7000000,
- "One World Direct": 28000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PCL Construction": 6300000000,
- "POET": 310000,
- "Parker Hannifin": 15900000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Prairie Farms": 3100000000,
- "Principal Financial Group": 13900000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SONIFI": 10900000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schmitt Music": 20600000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silencer Central": 10000000,
- "Sleep Number": 2100000000,
- "Smartsheet": 712000000,
- "Society Tea": 4300000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Stanley Steemer": 9500000,
- "Steak Escape": 18500000,
- "Stericycle": 3600000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Summit League": 49000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Terex": 4400000000,
- "TigerDirect": 200000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "US Eagle": 35000000,
- "USGS": 5000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "University of South Dakota": 400000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
- "Wolters Kluwer": 5400000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Zumiez": 1100000000
- },
- "Tennessee": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "AUSA": 23000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acxiom": 1300000000,
- "Adore Me": 115000000,
- "Advantage Rent a Car": 150000000,
- "Aeroframe Services": 17500000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "American Greetings": 2000000000,
- "American President Lines": 1300000000,
- "American Psychopathological Association": 12000000,
- "American Tinnitus": 4200000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Apartment List": 37300000,
- "Arconic": 9000000000,
- "Ardent Records": 23200000,
- "Army News Service": 16400000000,
- "Artists Music Guild": 600000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Atlantic Natural Foods": 63800000,
- "Atlantic Union Bank": 689200000,
- "Atria Senior Living": 778500000,
- "Autistic Self Advocacy Network": 2500000,
- "Avant LLC.": 29800000,
- "Ave Maria Press": 3200000,
- "Axios": 76000000,
- "BBYO": 15800000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Ballet Memphis": 4900000,
- "Bank of Tennessee": 76100000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Bekins Van Lines Inc.": 33600000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bible in the Schools": 13800000,
- "Biscuit Love": 4000000,
- "Black Rifle Coffee": 233100000,
- "Blount County Rescue Squad": 27200000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
- "Borden Dairy": 1200000000,
- "Bossard": 920500000,
- "Boston Consulting Group": 8600000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "Bush's Beans": 250000000,
- "C Spire": 5000000000,
- "CELINE": 600000000,
- "CONCRETE MARKETING": 19400000,
- "CRA Racing": 14400000,
- "Camden Property Trust": 2000000000,
- "Camso": 1300000000,
- "Carpenter Technology": 2400000000,
- "Cellular Sales": 1700000000,
- "Chattanooga Area Regional Transportation Authority": 15900000,
- "Chattanooga Times Free Press": 17500000,
- "Check Into Cash": 1000000000,
- "Chester County Schools": 13500000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christ Community Health": 22900000,
- "Christian Television Network": 12200000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Coffee County Schools": 10000000,
- "Coker Tire": 37500000,
- "College Hunks Hauling Junk": 100000000,
- "Commercial Appeal": 150000000,
- "Commission on Accreditation for Respiratory Care": 5700000,
- "Community Coffee": 245000000,
- "Concord entertainment company": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "CoreCivic": 1900000000,
- "Cousins Maine Lobster": 5100000,
- "CoverMyMeds": 200000000,
- "Cracker Barrel": 3300000000,
- "CraftWorks Holdings": 720000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crown Financial Ministries": 10700000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D.H. Griffin": 171000000,
- "DENSO CORPORATION.": 43500000000,
- "DEX Imaging": 284000000,
- "DMI Inc.": 705000000,
- "Dalton School": 2800000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "EEOC": 10000000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Elasticsearch B.V.": 977800000,
- "Elavon": 550000000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equinix": 7300000000,
- "Ergon Refining": 4500000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Every Nation": 4400000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fluor Canada": 13700000000,
- "Fox Network": 3000000000,
- "Franklin Municipal Airport": 15600000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fund for Constitutional Government": 14200000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "GeenStijl": 1000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gibson Brands Inc.": 366600000,
- "Global Shares Trustees UK Limited": 18700000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Great Smoky Mountains Railroad": 4000000,
- "GreatSchools": 11000000,
- "Greystar Real Estate Partners": 550000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HVS": 47500000,
- "Haemonetics": 1100000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harrow Health": 72500000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hippocrene Books": 15700000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Hornsby Brand Design": 10300000,
- "Hudson": 2000000000,
- "ICICI Bank": 18100000000,
- "IDEMIA": 1100000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "International Bluegrass Music Association": 66200000,
- "International Comfort Products": 41800000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Johnson Braund": 11000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "Kelly Services": 5000000000,
- "Kendall Hunt": 37400000,
- "Kia Kima": 37900000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kingsport City Schools": 4600000,
- "Kirby Company": 500000000,
- "Knoxville Christian School": 16300000,
- "Knoxville News Sentinel": 1100000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kramer Guitars": 49800000,
- "Kroger": 130700000000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "Kuhn Rikon": 17500000,
- "Kwik Shop": 595000000,
- "L'Observatoire International": 21700000,
- "L.G. Balfour Company": 290000000,
- "LBMC": 28000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Liberty FCU": 11300000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lion Oil": 30800000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "Lyndhurst Foundation": 12200000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "MasterCraft": 761500000,
- "Maury County Public Schools": 39600000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Measurement Incorporated": 63000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Memphis International Airport": 300000000,
- "Metal Museum": 2700000,
- "Metal Supermarkets": 26800000,
- "Metro Nashville Public Schools": 5400000,
- "Meyer Davis": 9000000,
- "Midwest Communications": 36300000,
- "Milliken & Co.": 2500000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morning star": 1900000000,
- "Motiva Enterprises": 20800000000,
- "Mueller Water Products": 1200000000,
- "Multimatic": 1500000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "MyOutdoorTV": 7000000,
- "Mynavyexchange": 7000000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "National Christian Foundation": 27800000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Model Railroad": 5300000,
- "National Religious Broadcasters": 10000000,
- "Newark": 450000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "North Carolina Mutual Life Insurance Company": 17900000,
- "OOCL": 33600000,
- "OPEIU": 7400000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Oxxford Clothes": 25000000,
- "PERMA-PIPE": 37700000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Patriot Rail": 120200000,
- "Paulist": 18800000,
- "Pedernales Electric Cooperative": 496900000,
- "Peermusic": 46300000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "PharMerica": 2100000000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Pollo Tropical": 600000000,
- "Porsche France SAS.": 34300000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Prairie Farms": 3100000000,
- "Premier Drums": 10000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "ProFlowers": 209100000,
- "Progress Rail": 1500000000,
- "Proscan": 4000000000,
- "Protective Life": 6700000000,
- "Publix": 52200000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Reliance Partners": 13500000,
- "Republic Bank": 314200000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Riverside Partners": 14400000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Rotel": 38800000,
- "Ruth's Chris": 350200000,
- "Rutherford County Schools": 14800000,
- "Ryan Office": 626000000,
- "Ryman Hospitality Properties": 1100000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMS Holdings Corporation": 32800000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
- "Santander Bank": 14800000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster": 2000000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shelby County Sheriff's Office": 9500000,
- "Shoe Carnival": 1300000000,
- "Shore Fire": 24400000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stantec": 3100000000,
- "Stanton Chase": 57100000,
- "Starr Insurance Companies": 3500000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Streamsound Records": 1300000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Sun Chemical": 8500000000,
- "Sun Records": 4600000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TVA": 13000000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Talonbooks": 4600000,
- "Tandy Leather Factory": 81600000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Tennessee Department of Children's Services": 350000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas RioGrande Legal Aid TRLA": 21500000,
- "The Do Book Company": 6000000,
- "The Hershey Company": 10100000000,
- "The Melting Pot": 31500000,
- "The New Press": 10900000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Recording Academy": 15800000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomas Nelson": 20000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Toccata Classics": 15400000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "True Digital Security": 14000000,
- "Truxton Trust": 10000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UMH Properties": 193100000,
- "UNTUCKit": 350000000,
- "UPI": 17100000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vantiva": 3500000000,
- "Velsicol Chemical Corporation": 13200000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volkert": 124000000,
- "Volkswagen": 51300000000,
- "Vontier": 3100000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Waverly Central High School": 14700000,
- "Waves Audio": 32500000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Wienerberger": 4900000000,
- "Wild Wing Cafe": 5400000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000,
- "iXsystems": 100000000
- },
- "Texas": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AET Tankers": 25000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "AST SpaceMobile": 20100000,
- "ATF": 1000000000,
- "AXA XL": 7700000000,
- "Academy Sports Outdoors": 6600000000,
- "Accion U.S. Network": 13900000,
- "Achievement Hunter": 16900000,
- "Ack-Mac": 30000000,
- "Activ Solar": 10000000,
- "Acuity Brands": 4000000000,
- "Adcole": 15000000,
- "Adore Me": 115000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alief ISD": 10000000,
- "Alithya": 389900000,
- "AllClear ID": 12000000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "Altra Industrial Motion": 1900000000,
- "Alzheimer's Association": 81500000,
- "American Association of Clinical Endocrinologists": 23400000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Momentum Bank": 25000000,
- "American Trucking Associations": 180900000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Angelina & Neches River Railroad": 28600000,
- "Anglo Eastern": 6000000,
- "Apartment List": 37300000,
- "Applanix": 21100000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Ashford": 12900000,
- "AspenTech": 860300000,
- "At Home store": 1700000000,
- "Atos": 11400000000,
- "Austin\u2013Bergstrom International Airport": 17200000,
- "Australian Laboratory Services": 6600000000,
- "Avanade": 3900000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BTS Group": 232600000,
- "BYK Additives & Instruments": 1200000000,
- "Bassett Furniture": 521500000,
- "Baylor": 920500000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Bessemer Trust": 682100000,
- "Betterment LLC.": 50000000,
- "Black Rifle Coffee": 233100000,
- "BlueLinx": 4600000000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
- "Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brady High School": 20300000,
- "Braze": 298000000,
- "Breckenridge Brewery": 30000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Brown & Brown Insurance": 3400000000,
- "Brownsville South Padre Island International Airport": 22900000,
- "Brownwood Bulletin": 21700000,
- "Bruce Foods": 30000000,
- "Bureau Veritas": 5700000000,
- "C3 AI": 12900000,
- "CACI": 6200000000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CTG": 375200000,
- "Callaway Golf": 3700000000,
- "Capital Impact": 10000000,
- "CarParts": 645300000,
- "Carlisle Companies": 6600000000,
- "Castleberry ISD": 19000000,
- "Centene": 144500000000,
- "Ceros": 25000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Cloudera": 904800000,
- "Cloudflare": 894100000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Confie": 75000000,
- "Constant Contact": 361900000,
- "Consumer Affairs": 29300000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Electronics": 31800000,
- "CooperVision": 2200000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Corteva": 17100000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Critical Start": 89400000,
- "Cross Roads Independent School District": 10000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cyient Inc.": 575100000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DZS": 373600000,
- "Daikin": 34800000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Daystar": 15500000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Diageo": 18800000000,
- "Diamond Foundry": 15000000,
- "Dignity Memorial": 25000000,
- "DirecTV LA": 22400000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dooney": 40000000,
- "Drury Hotels": 620000000,
- "Dubber": 17500000,
- "Duchesne": 10100000,
- "E Trade": 2900000000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Einstein Bros. Bagels": 500000000,
- "El Paso Electric": 886900000,
- "El Paso Times": 25000000,
- "Electro Rent": 343800000,
- "Element Markets": 19900000,
- "Emirates SkyCargo": 3100000000,
- "Endress": 750000000,
- "Enfora": 17500000,
- "Eni": 134600000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Ethiopian Airlines": 4000000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "ExxonMobil": 403200000000,
- "Eyebuydirect": 235000000,
- "FWISD": 30100000,
- "FactSet": 1500000000,
- "Fagron UK Ltd.": 665700000,
- "Faithful & Gould": 241100000,
- "Fancy Fortune Cookies": 26800000,
- "Farmer Brothers": 469200000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "Flippa": 22000000,
- "Fluor Canada": 13700000000,
- "FormFactor": 747900000,
- "Fortinet": 4100000000,
- "Freedom Interior Decorators": 11200000,
- "Frontier Airlines": 3000000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GE Power Conversion": 519000000,
- "GMAC Ally Financial": 8400000000,
- "GSC Enterprises Inc.": 34000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gentherm": 1100000000,
- "Gilat Satellite Networks": 220300000,
- "Good Times Burgers": 138700000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Graphisoft": 93000000,
- "Grasim Bhiwani Textiles": 42400000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HBC": 5600000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Hensel Phelps": 5700000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Highland Park Independent School District Potter County Texas": 33600000,
- "Hilcorp": 4000000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Houston Airport System": 50000000,
- "Hudson": 2000000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "Hypergiant": 85000000,
- "Hyundai Motor America": 100700000000,
- "H\u00f6gan\u00e4s AB.": 1000000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "IU Health": 7900000000,
- "Indorama Ventures": 6600000000,
- "Information Systems Security Association": 13700000,
- "Ingenuity Cloud Services": 15000000,
- "Insightsoftware": 350000000,
- "International Society for Performance Improvement": 18300000,
- "Interpipe": 1100000000,
- "Intl Fcstone": 61700000000,
- "Intuit": 13300000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Nadel International": 100000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Jewelers of America": 26900000,
- "Johnny Rockets": 552000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "K&N Engineering": 138700000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kapsch CarrierCom AG": 123200000,
- "Karma Mobility": 10000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kenya Airways": 2300000000,
- "Kerrville ISD": 16200000,
- "Ketchum": 500000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kokomo Perspective": 16000000,
- "Kongsberg Gruppen": 3200000000,
- "L&T technology Services": 746800000,
- "LEARFIELD": 164200000,
- "LEGO": 8100000000,
- "La Quinta Inns & Suites": 975100000,
- "Landry's": 4600000000,
- "Laureate Education": 1200000000,
- "Lazy Dog Restaurants": 210000000,
- "LegalMatch": 17600000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Leprino Foods": 3500000000,
- "Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "LiuGong": 29700000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "MSC Industrial Supply": 3800000000,
- "MUFG": 50700000000,
- "Madison Metropolitan School District": 30500000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marquette Transportation": 350000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Messenger News": 48500000,
- "Methanex": 3100000000,
- "Metro McAllen": 19800000,
- "Micron Technology": 30800000000,
- "Mimi's Cafe": 23000000,
- "Mineralogical Society of America": 34700000,
- "Miss Texas": 10000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Montgomery County MD": 24300000,
- "Montgomery ISD": 18900000,
- "Morrison Foerster": 1200000000,
- "Mountain Mike's Pizza": 68000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Natera": 776000000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Oilwell Varco": 7200000000,
- "Nationwide": 42100000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "New Capital Partners": 13400000,
- "Niman Ranch": 65000000,
- "Nippon Steel": 46900000000,
- "Nokona": 12000000,
- "Novica": 19900000,
- "OCEF": 27700000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "OXXO": 150000000,
- "Odyssey Space Research": 18700000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Old Dominion Freight Line": 6000000000,
- "Omniplan Inc.": 10400000,
- "Orascom Construction": 3400000000,
- "Outback Steakhouse": 2000000000,
- "Outsmart Magazine": 11900000,
- "Ovintiv": 7000000000,
- "PCL Construction": 6300000000,
- "PERMA-PIPE": 37700000,
- "Pacific Dental Services": 1400000000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paramount": 32300000000,
- "Paramount Group": 10000000,
- "Parker Hannifin": 15900000000,
- "Parkland": 19500000000,
- "Patagonia": 1000000000,
- "Paulist": 18800000,
- "Penzeys": 26000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pioneer Natural Resources": 23500000000,
- "Pitney Bowes": 3500000000,
- "Plum Market Inc.": 26000000,
- "Polar Beverages": 50000000,
- "Praj": 180400000,
- "Principal Financial Group": 13900000000,
- "Publicis Sapient": 2700000000,
- "Qantas": 6300000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "QuikTrip": 11000000000,
- "RSM US": 3300000000,
- "Rackspace": 3100000000,
- "Rainforest Cafe": 10000000,
- "Redwood Materials": 35000000,
- "Regeneron": 13700000000,
- "Repsol": 79000000000,
- "Resideo": 6300000000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Rockwell Medical": 68800000,
- "Roehl Transport": 421300000,
- "Rohde & Schwarz": 2600000000,
- "Rolls-Royce": 15300000000,
- "Royal HaskoningDHV": 729500000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "Ryman Hospitality Properties": 1100000000,
- "SAP": 33500000000,
- "SCA Health": 2000000000,
- "SCHEELS": 800000000,
- "SCHUNK": 19000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SMTC Corporation": 250000000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Sanderson Farms": 5600000000,
- "Sapphire Ventures": 78100000,
- "Schlumberger Limited": 27800000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Scott Fetzer Company": 250000000,
- "Seaboard": 11200000000,
- "Seagate Technology": 9400000000,
- "Select Medical": 6300000000,
- "Shiseido": 8200000000,
- "Sigma Aldrich": 2800000000,
- "Simon Kucher": 406200000,
- "Simplot": 6000000000,
- "Skyline High School": 2200000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
- "SoftServe": 570200000,
- "Software Advice": 55000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spacetime Studios": 57800000,
- "Spanx LLC.": 400000000,
- "Spence Diamonds": 30000000,
- "Sprinkles Cupcakes": 15800000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "State Farm Insurance": 78900000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stone & Webster": 27400000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "Sundown High School": 19600000,
- "Swift Transportation Company": 3400000000,
- "Swisslog": 646000000,
- "Symbotic": 30000000,
- "Syngenta": 16700000000,
- "Synnex": 57900000,
- "TDK": 14000000000,
- "TOM FORD": 615000000,
- "TOPS Club": 19600000,
- "Taylor Farms": 2800000000,
- "Techint": 1500000000,
- "Teekay": 491500000,
- "Telcel": 2000000000,
- "Tempur-Pedic": 24700000,
- "Ternium": 8700000000,
- "Tetra Pak": 11100000000,
- "Texas Pacific": 594500000,
- "Texas Property and Casualty Insurance Guaranty Association": 11100000,
- "The Awty International School": 26900000,
- "The First Line": 18800000,
- "The Marketing Arm": 35000000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Ohio Farmer newspaper": 12700000,
- "The Parking Spot": 46000000,
- "The United Services Automobile Association": 35600000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Time4Learning": 19000000,
- "Times Record News": 19500000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Traffic Safety Store": 19900000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "Trellix": 483500000,
- "Tribe of Judah": 17900000,
- "Tricon Residential": 513200000,
- "TrueCar": 170700000,
- "Two Sigma": 1300000000,
- "TxDOT": 10000000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFP Technologies": 80000000,
- "UL Solutions": 2700000000,
- "UNX": 25000000,
- "UPS Capital": 50000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universal Weather": 252200000,
- "VCA Inc.": 1800000000,
- "VMware": 13200000000,
- "Varsity Brands": 1200000000,
- "Velsicol Chemical Corporation": 13200000,
- "Verso": 37100000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Vladar": 10000000,
- "Voith": 4800000000,
- "Volga-Dnepr": 29700000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waco Texas": 59800000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "Warwick Investment Group": 11500000,
- "Weidemann - Produktionswerk": 102000000,
- "West Orange-Cove Consolidated Independent School District": 10400000,
- "Westat Research inc.": 597000000,
- "Western Horseman": 15600000,
- "Wheatstone": 21100000,
- "Whirlpool": 20600000000,
- "WildTangent Inc.": 15700000,
- "Wilson Sonsini": 860000000,
- "WinCo Foods": 7700000000,
- "Wing-Time": 37200000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "World Journal": 37500000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Zynga": 2900000000
- },
- "Utah": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ARUP Laboratories": 135400000,
- "ASEA LLC.": 24600000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpine School District": 28500000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "Aman": 150000000,
- "America's Swimming Pool": 54600000,
- "American Civil Defense Associates": 36600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American Society of Genealogists": 3600000,
- "American Society of Landscape Architects": 6700000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrea Electronics": 2100000,
- "Andrew Christian": 8000000,
- "Applied Materials": 25200000000,
- "Arbiter Sports": 5600000,
- "Armada company": 10000000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Aspen Institute For Behavior": 152100000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "Australian Laboratory Services": 6600000000,
- "AutoGyro": 15000000,
- "Autocall": 6000000,
- "Avail Company": 4200000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BIOMERIEUX": 3800000000,
- "Ballet West": 7800000,
- "Barebabies": 3500000,
- "Barnes & Thornburg": 575500000,
- "Barrick": 11900000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "BeaverTails": 4100000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekins Van Lines Inc.": 33600000,
- "Berry Corporation bry": 698700000,
- "Best Buddies": 3600000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Black Rifle Coffee": 233100000,
- "Blendtec": 56000000,
- "Blick Art Materials": 245200000,
- "Bonneville International": 38600000,
- "Booster Juice": 8300000,
- "Booz Allen": 8800000000,
- "Boston Store": 7500000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brillio": 400000000,
- "Brown & Bigelow": 32700000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "Burton Snowboards": 400000000,
- "CHEF'STORE": 1100000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Casper's Ice Cream": 9700000,
- "Cedar Fort Inc.": 3200000,
- "Cellular Sales": 1700000000,
- "CentraCom": 51100000,
- "Chamberlain Group": 150000000,
- "Charitable Society for Social Welfare": 6300000,
- "Charles River Associates": 568700000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Circle K": 14700000000,
- "Civica Rx": 4800000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creditcall": 100000000,
- "Crossroads of the West Council": 29600000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "Davis School District": 5000000,
- "Dawn Foods": 1100000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Dematic": 3200000000,
- "Deseret": 4200000,
- "Discover": 12000000000,
- "Dollar General": 35300000000,
- "Doppelmayr Cable Car": 150000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
- "East Hollywood": 9400000,
- "Eastern Canvas Products Inc.": 50000000,
- "Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Edwards Lifesciences": 5400000000,
- "Einstein Bros. Bagels": 500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equality Utah": 4400000,
- "Ethan Allen": 845000000,
- "Evans & Sutherland - A Cosm Company": 69200000,
- "Evo company": 140000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Fibernet": 54300000,
- "Filevine Inc.": 38000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Forbes Marshall": 25600000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "Gibbs Smith": 7500000,
- "Global Payments Integrated": 1400000,
- "Globe Life Insurance": 5200000000,
- "GoHealth LLC.": 1200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gossner": 9300000,
- "GreenPal": 1200000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HZO": 48500000,
- "Haemonetics": 1100000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hart Ski Corporation": 7000000,
- "HealthEquity": 778000000,
- "Henry's Tavern": 7000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Home Exchange": 6700000,
- "HuHot Mongolian Grill": 7000000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hurricane City UT": 3300000,
- "Hydro": 21600000000,
- "ICE Mortgage Technology": 690100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "IPVM": 7000000,
- "ISISPACE": 12300000,
- "Ikanos Communications": 10000000,
- "InMoment": 278000000,
- "InTown Suites": 3400000,
- "Indian Affairs": 3700000,
- "Indiana Public Retirement System": 6200000,
- "Infinite Discs": 2500000,
- "Ingenuity Cloud Services": 15000000,
- "Instructure": 461100000,
- "Insurify": 9300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "JBT FoodTech": 1400000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Johnny Rockets": 552000000,
- "Journeys company": 8600000,
- "Junttan": 24000000,
- "KBR": 7700000000,
- "KGHM": 5200000000,
- "KONE": 10900000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Landmark Worldwide": 29100000,
- "Leaf Trading Cards": 2400000,
- "Leggett & Platt": 5300000000,
- "LendingClub Corporation": 1200000000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Love Home Swap": 10300000,
- "Lovesac": 389800000,
- "Lyon & Healy": 7000000,
- "M.C. Dean": 1000000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Major Drilling": 590400000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Masimo": 2000000000,
- "Materion Corporation": 1800000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Meyer Davis": 9000000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Milt's Stop & Eat": 36600000,
- "Mimi's Cafe": 23000000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Montage Hotels": 400000000,
- "Mountain Mike's Pizza": 68000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Auto Sport Association": 5900000,
- "National Celiac Association": 3700000,
- "National Commission for the Certification of Crane Operators": 12700000,
- "National Model Railroad": 5300000,
- "National Oilwell Varco": 7200000000,
- "Navajo Times": 2800000,
- "NetApp": 6500000000,
- "Niagara Conservation": 2500000,
- "Niman Ranch": 65000000,
- "Norbest": 115000000,
- "O.C. Tanner company": 540000000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "OS News": 10400000,
- "OnDeck": 485000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "PRINOTH AG": 76000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Park 'N Fly": 48500000,
- "Park Record": 9600000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Patriot Rail": 120200000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pho Hoa": 2500000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planned Parenthood": 1600000000,
- "Premier Lacrosse League": 2000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quad Metalworks": 3100000000,
- "Qualtrics": 1400000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "Rad Power Bikes": 138000000,
- "Radian": 1300000000,
- "Realtor": 118000000,
- "Red Leaf Resources": 47400000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Reputation": 18500000,
- "Rescale": 35000000,
- "Rexair": 35000000,
- "Rimac Automobili": 28200000,
- "Robinson Fresh": 11400000,
- "Rodgers Instruments Corporation": 6400000,
- "Ronald McDonald House Charities": 59500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "S-S Worldwide": 20000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Savills North America": 6000000,
- "Schiff Nutrition International": 8000000,
- "Schreiber Foods": 4800000000,
- "Scorpion company": 61900000,
- "SeaQuest aquariums": 2400000,
- "Seaboard": 11200000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seven Peaks Water Park Duneland": 21800000,
- "Shakey's": 112000000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simplot": 6000000000,
- "Skyworks Aeronautics": 3000000,
- "Sleep Number": 2100000000,
- "Smartsheet": 712000000,
- "Snyder's-Lance": 8600000000,
- "SoftServe": 570200000,
- "Sonoco": 6500000000,
- "Sorenson's Ranch School": 18300000,
- "Southwest": 22700000000,
- "Sprinkles Cupcakes": 15800000,
- "Stadler Rail": 8300000,
- "Standard-Examiner": 6100000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stitch Fix": 2100000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Swanson Industries": 6700000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
- "Sword Health": 6000000,
- "SyberJet": 7800000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Tata Chemicals": 1500000000,
- "Taylor Farms": 2800000000,
- "Taylorsville High School": 22100000,
- "Technology Student Association TSA": 10000000,
- "Telarus LLC.": 6800000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Channel": 25000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The Org company": 2000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "Thumbtack": 170600000,
- "Tiffany's": 4400000000,
- "Tom Balding": 7000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Tracerco": 47500000,
- "Trading Places": 27200000,
- "Traffic Safety Store": 19900000,
- "Tread Lightly": 5300000,
- "Tredegar Corporation": 42600000,
- "Trihedral Engineering": 6000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Ski and Snowboard": 3400000,
- "UFP Industries": 9700000000,
- "UMWA": 3000000,
- "UNTUCKit": 350000000,
- "US Eagle": 35000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "University Press of Colorado": 8300000,
- "Urban Design Associates": 9000000,
- "Usg Interiors LLC.": 3500000000,
- "Utah Education Network": 6200000,
- "Utah Retirement Systems": 23400000,
- "Utah Transit Authority": 4100000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vernal Regional Airport": 5000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wahoo Studios": 10100000,
- "Warby Parker": 573100000,
- "WebAIM": 8000000,
- "Whelen": 500000000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Workfront": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Zumiez": 1100000000
- },
- "Vermont": {
- "ABC Supply": 12100000000,
- "AMC Bridge": 19600000,
- "ANICHINI": 7500000,
- "ARA": 289500000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Genealogists": 3600000,
- "Army News Service": 16400000000,
- "AspenTech": 860300000,
- "Asure Software": 76600000,
- "Aubuchon Hardware": 128000000,
- "Barry Callebaut": 8400000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Black Diamond Equipment": 4400000,
- "BlueLinx": 4600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Burlington College": 112000,
- "Burlington Free Press": 4100000,
- "Burton Snowboards": 400000000,
- "Cadex Defence": 7700000,
- "Caledonia Spirits": 7000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Charles E. Tuttle Company": 2500000,
- "ChowNow": 70000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Einstein Bros. Bagels": 500000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "FatFace": 244700000,
- "GardaWorld": 3800000000,
- "GenealogyBank": 5700000,
- "Georgia Swarm": 7000000,
- "Global Health Council": 14000000,
- "Green Mountain Council": 1100000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Harpoon Brewery": 15000000,
- "Inventors": 10000000,
- "Ipswitch Inc.": 75000000,
- "Iron Mountain Incorporated": 5000000000,
- "JEI Learning": 1300000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kohler Kitchen & Bath": 6000000000,
- "L.L.Bean": 1600000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lyon & Healy": 7000000,
- "MBF Bioscience": 7000000,
- "MOBILE MINI": 593000000,
- "Mammut": 250000000,
- "Marlboro Music": 36100000,
- "Mazzio's": 6500000,
- "Melbourne Bowling Club": 244000,
- "Meta Filter": 2400000,
- "Mi9 Retail": 36200000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Music & Arts": 12400000,
- "NBT Bank": 30100000,
- "NOAA Weather Radio": 36400000,
- "Ollie's Bargain Outlet": 1700000000,
- "One Tree Planted": 3700000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Paleontological Research Institution": 4700000,
- "Park 'N Fly": 48500000,
- "Phoenix House": 3500000,
- "Planned Parenthood": 1600000000,
- "Price Chopper": 1500000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Putney School": 5000000,
- "Quick Lane": 6000000,
- "Realtor": 118000000,
- "Rokon": 3700000,
- "SKATOPIA": 4800000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Small Dog": 3700000,
- "Spectrum Youth and Family Services": 4100000,
- "St Albans Messenger": 4200000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stave Puzzles": 6000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Teradyne": 3300000000,
- "Terason": 6000000,
- "The Bus": 6000000,
- "The Humane Society of the United States": 30700000,
- "The Mountain Times": 22300000,
- "Torrid": 1300000000,
- "Trudeau 3.0": 30300000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "USCIS": 15700000,
- "UniFirst": 2000000000,
- "Union Bank Morrisville Vermont": 48000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "VCA Inc.": 1800000000,
- "Vermont Public": 5000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Virtium": 50000000,
- "Whelen": 500000000,
- "Wolters Kluwer": 5400000000,
- "World Learning": 7200000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Zumiez": 1100000000
- },
- "Virginia": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAHA": 24000000,
- "ABC Supply": 12100000000,
- "ABMC": 10000000,
- "ACE Cash Express": 600000000,
- "ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ARLnow": 10000000,
- "ASCE": 15700000,
- "ASI Government LLC.": 10100000,
- "ATF": 1000000000,
- "AUSA": 23000000,
- "Abbott's Frozen Custard": 10900000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "AeroVironment": 264900000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Airborne Tactical Advantage Company": 16400000,
- "Airlines Reporting Corporation": 150000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Management Association": 21700000,
- "American President Lines": 1300000000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anton Paar": 460000000,
- "Appian": 447200000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Atlantic": 59500000,
- "Atlantic Power": 271200000,
- "Atlantic Union Bank": 689200000,
- "Aubuchon Hardware": 128000000,
- "AvalonBay Communities": 2000000000,
- "Avanti Communications": 66900000,
- "AvePoint": 215800000,
- "Axios": 76000000,
- "B.F. Saul": 92300000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bay Coast Railroad": 26300000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Black Rifle Coffee": 233100000,
- "Bloomberg Industry": 736000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "BrabenderCox": 16700000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Bright Health Inc.": 3800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "C-VILLE": 22600000,
- "CACI": 6200000000,
- "CDW": 23800000000,
- "CHEF'STORE": 1100000000,
- "CJ Logistics": 1000000000,
- "CONRAD": 10600000,
- "CURTISS-WRIGHT": 2500000000,
- "Cambium Learning Group": 160000000,
- "Capital Impact": 10000000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Checkpoint Systems": 800000000,
- "Cheeburger": 55600000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Cirium": 10000000,
- "Citi Trends": 862200000,
- "Clyde's": 220000000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Constellis": 1000000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Coptic Orphans": 22000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Crutchfield": 12600000,
- "Cub Cadet": 350000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "Cyren": 30000000,
- "D.H. Griffin": 171000000,
- "DFAS": 10000000,
- "DISA": 120000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DTRA": 15100000,
- "DXC Technology Company": 14800000000,
- "Daily Gazette": 10200000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "Day & Zimmermann": 2400000000,
- "Department of Energy": 190000000,
- "Dexter Industries": 11400000,
- "Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "District Taco": 35000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "DonorsTrust": 31100000,
- "Dooney": 40000000,
- "Drury Hotels": 620000000,
- "E Trade": 2900000000,
- "EPAM": 4500000000,
- "ESFI": 10000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Easy Star Records": 10500000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Ekso Bionics": 10000000,
- "Elasticsearch B.V.": 977800000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Equinix": 7300000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Etihad Airways": 2700000000,
- "F&M Bank": 43000000,
- "FCPS": 400000000,
- "FHI 360": 690500000,
- "Fairfax Station Railroad Museum": 18100000,
- "Faithful & Gould": 241100000,
- "Families for Russian and Ukrainian Adoption": 60600000,
- "Fauquier County": 10900000,
- "Federal Realty Investment Trust": 1000000000,
- "Federated Wireless": 42500000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forrester": 525100000,
- "Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Franklin Municipal Airport": 15600000,
- "Fraternal Order of Police": 33900000,
- "Frazier Quarry": 44100000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Financial Corporation": 1000000000,
- "Future Publishing": 3300000000,
- "G4S Global": 9400000000,
- "GFL Environmental": 6400000000,
- "GMAC": 25000000,
- "GMC": 1000000000,
- "GW Medical Faculty Associates": 20200000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "Global Health Council": 14000000,
- "Globalvia": 600000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "GomSpace": 24700000,
- "Gordon Biersch - DTW": 89300000,
- "GovCIO": 15000000,
- "Gracies Dinnertime Theatre": 10400000,
- "Graham Media Group": 600000000,
- "Great Harvest": 21200000,
- "Greystar Real Estate Partners": 550000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guilford": 24500000,
- "Guitar Center": 2300000000,
- "Gun Owners": 10000000,
- "HCA Healthcare": 60200000000,
- "HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hanes": 6200000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Haynes and Boone": 15800000,
- "Headlam": 827100000,
- "Hensel Phelps": 5700000000,
- "Herbalife": 5200000000,
- "HistoryNet": 10000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Hoffman Construction": 1400000000,
- "HomeLight": 300000000,
- "Hotel 24 South": 27100000,
- "Huawei": 100000000000,
- "Hudson": 2000000000,
- "Hyundai Motor America": 100700000000,
- "IARPA": 15900000,
- "IBA Worldwide": 383200000,
- "IBFD": 18400000,
- "IDEMIA": 1100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "ISOC": 39700000,
- "Information Systems Security Association": 13700000,
- "International Centre for Missing & Exploited Children": 10000000,
- "Intuit": 13300000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Kapsch": 830500000,
- "Keefe Bruyette & Woods": 425000000,
- "Kellton": 111300000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
- "Knowland": 20000000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "Kymeta": 40000000,
- "L.G. Balfour Company": 290000000,
- "LBC Express": 103200000,
- "LCPS": 11700000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Landmark Worldwide": 29100000,
- "Lazy Dog Restaurants": 210000000,
- "LeaseWeb Netherlands B.V.": 100000000,
- "Lee's Famous Recipe": 10100000,
- "Leidos Holdings Inc.": 13700000000,
- "Leoni Special Cables": 5400000000,
- "Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Liggett Vector Brands": 200000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lumos Networks": 131000000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Madison Reed": 100000000,
- "Marcus & Millichap": 1500000000,
- "Markel Corporation": 12300000000,
- "Marlin Firearms Company": 42800000,
- "Marstel-Day": 22300000,
- "McAfee": 2200000000,
- "McLane Company": 50000000000,
- "Medallia": 477200000,
- "Medical Society of Virginia": 16200000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merck Sharp & Dohme": 59000000000,
- "Meridian Knowledge Solutions": 14300000,
- "Merrithew": 51000000,
- "Metropolitan Partnership": 24200000,
- "Micron Technology": 30800000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Motiva Enterprises": 20800000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NGA": 5000000000,
- "NJ TRANSIT": 818400000,
- "NJVC": 45000000,
- "NOAA Weather Radio": 36400000,
- "NSBA": 11300000,
- "Nady Systems Inc.": 12000000,
- "Nammo": 13700000,
- "National Association of Biology Teachers": 20500000,
- "National Automobile Dealers Association": 15700000,
- "National Commission for the Certification of Crane Operators": 12700000,
- "National Steel and Shipbuilding Company": 480000000,
- "National Taxpayers Union Foundation": 10000000,
- "Neiman Marcus": 2600000000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "New Kent High School": 18800000,
- "NiSource": 5400000000,
- "Nikola Corporation": 44000000,
- "NowSecure": 15300000,
- "Ocado": 3000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "OneWeb": 50000000,
- "Ooma": 179000000,
- "Orascom Construction": 3400000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Outsmart Magazine": 11900000,
- "Oxxford Clothes": 25000000,
- "PTV AG": 132700000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Parallels Holdings": 1000000000,
- "Paralyzed Veterans of America": 26500000,
- "Parents Television Council": 10000000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Partners Group": 2900000000,
- "Patagonia": 1000000000,
- "Paya Inc.": 276900000,
- "Peet's Coffee": 36700000,
- "People of Praise": 13100000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plateau Systems": 328000000,
- "Plex Systems": 150000000,
- "Primoris": 4400000000,
- "Prince William County Public Schools": 4200000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Protective Life": 6700000000,
- "Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "Quad Metalworks": 3100000000,
- "R. J. Corman": 420000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "Rackspace": 3100000000,
- "Realtor": 118000000,
- "Redwood Materials": 35000000,
- "Revature": 64300000,
- "Rexair": 35000000,
- "Richmond Boys Choir": 15000000,
- "Riverside Health System": 19000000,
- "Road Runners Club of America": 10000000,
- "Robeks": 396000000,
- "Rocket Lab USA Inc.": 186700000,
- "Roehl Transport": 421300000,
- "Rolls-Royce": 15300000000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Ryan Office": 626000000,
- "S&P Global": 8200000000,
- "SABRA DIPPING CO. LLC.": 450000000,
- "SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMART Technologies": 500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Sangamo": 112100000,
- "Savi Technology": 20000000,
- "Scality": 69000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Showplace Icon": 38900000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Society for Risk Analysis": 10000000,
- "Sodexo": 22300000000,
- "Softcat": 1600000000,
- "Somerset Trust Company": 24900000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Special Libraries Association": 15800000,
- "Spire Global": 72900000,
- "Splunk": 3300000000,
- "Stantec": 3100000000,
- "Starmont": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Stevens Reed Curcio & Potholm": 38800000,
- "Strategic Education Inc.": 1100000000,
- "Stratolaunch LLC.": 28700000,
- "Stride Inc.": 1400000000,
- "Suit Supply France SARL": 350000000,
- "Sun & Ski Sports": 15000000,
- "Superb Internet": 13800000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Synnex": 57900000,
- "Syska Hennessy Group": 60900000,
- "TEOCO": 186200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "Thales Group": 18000000000,
- "The Columbia Group": 10000000,
- "The Counter": 85000000,
- "The Country Club of Virginia": 42000000,
- "The Hook": 19000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Topps Europe Ltd.": 567000000,
- "Torrid": 1300000000,
- "Tostan": 32700000,
- "Tourneau": 32800000,
- "Transurban": 9400000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Trump Hotels": 75000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNOS": 63400000,
- "USCIS": 15700000,
- "Ukrop's Food Group": 1500000000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Mint": 3800000000,
- "Universal Leaf South Africa": 2500000000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "VMware": 13200000000,
- "VT Group": 185000000,
- "Varonis": 457600000,
- "Vera Bradley": 513100000,
- "Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Virginia State Bar": 10000000,
- "Virginia Transformer": 200000000,
- "Vista Outdoor": 3200000000,
- "Vocelli Pizza": 14000000,
- "Volcom": 380000000,
- "Volkswagen": 51300000000,
- "W.C. and A.N. Miller": 11800000,
- "WIDEPOINT CORPORATION": 13000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Westat Research inc.": 597000000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Wing": 13400000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Worldwide Responsible Accredited Production": 13400000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "Yext": 399900000,
- "Yogaville": 26200000,
- "ZEISS": 8800000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "Zynga": 2900000000,
- "u-blox Holding AG": 1800000000
- },
- "Washington": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "AQuantive": 112700000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
- "Absolute of Sa Ambulance Service": 118100000,
- "Acadia Healthcare": 2500000000,
- "Accel": 50000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Aditi Technologies": 72000000,
- "Affine": 17000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
- "Amazon": 2808000000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Management Association": 21700000,
- "American Seafoods": 600000000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Ankama": 42000000,
- "Appen Limited": 45000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Asure Software": 76600000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Australian Laboratory Services": 6600000000,
- "AvalonBay Communities": 2000000000,
- "Avanade": 3900000,
- "AvePoint": 215800000,
- "Avista Utilities": 1500000000,
- "Avvo": 29900000,
- "Axon": 1100000000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Banfield": 774400000,
- "Bardahl": 27800000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Belcan": 1000000000,
- "Bellevue School District": 250000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Beneficial State Bank": 42900000,
- "Bentley Motors": 3200000000,
- "Bessemer Trust": 682100000,
- "Bio-Rad": 2800000000,
- "Black Bear Diner": 18700000,
- "Blue Origin LLC.": 1000000000,
- "BlueLinx": 4600000000,
- "Bonchon": 60000000,
- "Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
- "Brillio": 400000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
- "Bsquare": 39900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "CDW": 23800000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "Cafe Rio": 215000000,
- "Canesta": 10000000,
- "Car Toys": 12800000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Cascade Investment Group": 13200000,
- "Cellular Sales": 1700000000,
- "Center For Children & Youth Justice": 13300000,
- "Center for Autism": 500000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Cloudera": 904800000,
- "College Hunks Hauling Junk": 100000000,
- "Columbian": 70000000,
- "Comfort Dental": 17800000,
- "Concrete Herald": 27300000,
- "Condor": 10000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Conversica": 35000000,
- "Cooley": 2000000000,
- "Core & Main Inc.": 6100000000,
- "Corporation Sealy": 1300000000,
- "Course5 Intelligence": 150000000,
- "Cozen O'Connor LLP.": 517300000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cyient Inc.": 575100000,
- "DLA": 3600000000,
- "DRW": 485000000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "Dawn Foods": 1100000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Detroit Water and Sewerage Department": 10000000,
- "Deutsche Telekom": 123400000000,
- "Digital Realty": 4700000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dow Jones": 1600000000,
- "E Trade": 2900000000,
- "EEOC": 10000000,
- "EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "EagleView": 182000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electric Boat Co.": 10000000000,
- "Electroimpact": 96300000,
- "Element Materials Technology Group Limited": 975000000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Epik": 12000000,
- "Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evolution Fresh": 21700000,
- "Exact Data": 20000000,
- "Exadel": 194000000,
- "ExtraHop": 140000000,
- "Fairwood Press": 17200000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Fiserv": 17700000000,
- "Flexport": 3300000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Fractal Design": 39500000,
- "Frito-Lay Inc.": 19600000000,
- "Funko": 1300000000,
- "GBC International Bank": 32900000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "Galileo Camps": 21000000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "Gilead": 27500000000,
- "Global Commercial Credit": 17600000,
- "Global HELP": 11400000,
- "Golder Associates Inc.": 1000000000,
- "Grab Holdings Inc.": 687000000,
- "Graebel": 1500000000,
- "Grand Central Baking Company": 20700000,
- "Grant Transit Authority": 36600000,
- "GreatSchools": 11000000,
- "Greek Gods Yogurt": 30000000,
- "Greenpeace International": 400000000,
- "Grenzebach": 52000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Grow": 14000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HCL Tech": 12000000000,
- "HOYA": 5000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanes": 6200000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Have A Heart": 12300000,
- "Hazelden Betty Ford": 186300000,
- "Hemp Industries Association HIA": 16100000,
- "Henry Pratt": 27700000,
- "Hensel Phelps": 5700000000,
- "Highline Times": 31600000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holland America Line": 300000000,
- "HomeLight": 300000000,
- "Hulu": 4400000000,
- "Hunter Douglas Group": 4600000000,
- "Hyperlite": 43400000,
- "ICE International Currency Exchange": 25000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "ILLFONIC Inc.": 23900000,
- "INB": 42000000,
- "Identity Digital": 58000000,
- "Inglewood Golf Club": 25900000,
- "Ingredion Incorporated": 7200000000,
- "Intelius": 175000000,
- "Interfor": 354900000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Ivi Inc.": 110000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "John L. Scott": 800000000,
- "Johnson Braund": 11000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "Juwai": 20000000,
- "KONE": 10900000000,
- "Kaas Tailored": 37800000,
- "Kaiser Permanente": 93100000000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kendall Hunt": 37400000,
- "Kill Rock Stars": 18800000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kinross": 4000000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Kymeta": 40000000,
- "L.G. Balfour Company": 290000000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LOUD Audio": 72000000,
- "Lake Washington School District": 221000000,
- "LatentView Analytics Corporation": 69200000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Gate": 3600000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logitech": 5500000000,
- "Long John Silver's": 404000000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Luminex": 437700000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "METER Group": 35000000,
- "MFG Inc.": 30000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Malaria No More": 10000000,
- "Marel hf.": 1600000000,
- "Matson": 4300000000,
- "McLane Company": 50000000000,
- "Meade": 16100000,
- "Measurement Incorporated": 63000000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Metzler": 700000000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Micron Technology": 30800000000,
- "Microsoft": 184900000000,
- "Midas Consoles": 21800000,
- "Miller Hull": 35000000,
- "Milliman": 1200000000,
- "Mindray": 1200000000,
- "Mineralogical Society of America": 34700000,
- "ModMed": 250000000,
- "Modelzone": 1684311838,
- "Mohawk Industries": 11800000000,
- "Monolith Productions": 17500000,
- "Morning star": 1900000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NCSOFT": 2200000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "NSF": 300000000,
- "Napster": 113000000,
- "Natera": 776000000,
- "National Christian Foundation": 27800000,
- "National Steel and Shipbuilding Company": 480000000,
- "Nautilus machines": 589500000,
- "NetApp": 6500000000,
- "NetJets": 816000000,
- "New Flyer": 2400000000,
- "NoaNet": 450000000,
- "North Sails": 27500000,
- "Northrim": 124500000,
- "Northshore School District": 23400000,
- "Northwest Bank": 510300000,
- "Northwest Kidney Centers": 131000000,
- "NowSecure": 15300000,
- "NuStar Energy": 3200000000,
- "Offer Up": 54600000,
- "OneDrive": 300000000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
- "OpenMarket Inc.": 200000000,
- "Orange Business": 9600000000,
- "Orrick": 975000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Research Company": 76800000,
- "PCL Construction": 6300000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pan Pacific DISCOVERY": 260000000,
- "Parallels Holdings": 1000000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Pateros": 14700000,
- "Patriot Rail": 120200000,
- "Paul Gauguin Cruises": 15000000,
- "Peacefire": 20300000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Perkins&Will": 670300000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "PharMerica": 2100000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "PitchBook": 250000000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "PlayNetwork": 86000000,
- "Plug Power": 571200000,
- "Porsche France SAS.": 34300000000,
- "Port of Bremerton": 66500000,
- "Port of Grays Harbor": 28300000,
- "Port of Longview": 27300000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Promethean World": 158800000,
- "Publicis Sapient": 2700000000,
- "Puget Sound Community School": 14700000,
- "Quantum Alliance": 402600000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Rad Power Bikes": 138000000,
- "Rainforest Cafe": 10000000,
- "Rayonier": 1100000000,
- "RealSelf": 19900000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Renewable Energy Group": 2900000000,
- "Rexair": 35000000,
- "RichRelevance": 87500000,
- "Robeks": 396000000,
- "Rolls-Royce": 15300000000,
- "Rosetta Stone": 182700000,
- "Royal Garden Hotel": 20000000,
- "Russell Investments": 566500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SDS": 10500000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMART Technologies": 500000000,
- "SRG Partnership": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salmon Terminals Inc.": 17800000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Schweitzer Engineering Laboratories": 1000000000,
- "Seagen": 203500000,
- "Seattle Art Museum": 26600000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Shakey's": 112000000,
- "Shane Co.": 30800000,
- "Shari's": 240000000,
- "Shiseido": 8200000000,
- "Sid Lee": 180000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "SingleStore": 100000000,
- "Siteimprove": 100000000,
- "Skylum": 18500000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
- "Snowflake": 1900000000,
- "Sonata Software": 853800000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Sound Transit": 35600000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spaceflight Inc.": 15000000,
- "Spacelabs Healthcare": 217000000,
- "Spark Foundry": 600000000,
- "Splunk": 3300000000,
- "Spokane Transit": 150000000,
- "Spokesman": 18100000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stratolaunch LLC.": 28700000,
- "Stride Inc.": 1400000000,
- "Stumptown Coffee Roasters": 40000000,
- "Suit Supply France SARL": 350000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Superb Internet": 13800000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TOM BIHN": 10000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Time NW": 26500000,
- "Tandy Leather Factory": 81600000,
- "Tanium": 525000000,
- "Taylor Farms": 2800000000,
- "Teach Town": 25000000,
- "Teague company": 75000000,
- "Technology Student Association TSA": 10000000,
- "Teck Resources": 12600000000,
- "Teddie": 45000000,
- "Tempur-Pedic": 24700000,
- "Teneo": 400000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Bellingham Herald": 12300000,
- "The Bitcoin Foundation Inc.": 10000000,
- "The Channel": 25000000,
- "The First Line": 18800000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Timberland Regional Library": 20600000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "TransAlta": 2100000000,
- "Transunion Chile": 3600000000,
- "Transurban": 9400000000,
- "Trelleborg": 3000000000,
- "Trinity Lutheran College": 18400000,
- "True Digital Security": 14000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Oil and Refining": 50000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USTR": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VMware": 13200000000,
- "Valpak": 43500000,
- "Ventec Life Systems": 18500000,
- "Veritiv": 7300000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Webasto": 250000000,
- "Weber Thompson": 41900000,
- "Webtrends": 150000000,
- "Whelen": 500000000,
- "Wienerschnitzel": 341000000,
- "WildTangent Inc.": 15700000,
- "Williams Companies": 11300000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wings Financial": 243000000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Woopra": 11000000,
- "World Concern": 19400000,
- "World Financial Group": 10000000,
- "World Justice Project": 10000000,
- "Wounded Warrior Project": 15300000,
- "XKL": 25800000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Yoogi's Closet": 10500000,
- "Yubico": 50000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zola company": 120000000,
- "Zumiez": 1100000000
- },
- "West Virginia": {
- "ABC Supply": 12100000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Battlefield Trust": 6000000,
- "American Eagle Outfitters": 5000000000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Australian Laboratory Services": 6600000000,
- "BBR Music Group": 2600000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bojangles": 560000000,
- "Booz Allen": 8800000000,
- "Brain Injury Association of America": 10000000,
- "Breezeline": 300000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Carpenter Technology": 2400000000,
- "Cellular Sales": 1700000000,
- "Chamberlain Group": 150000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DLA": 3600000000,
- "Davey Tree": 1500000000,
- "Dollar General": 35300000000,
- "Dominion Post": 10000000,
- "EMAC website": 5700000,
- "East of Chicago Pizza": 6000000,
- "Eclipse Foundation": 6200000,
- "Element Materials Technology Group Limited": 975000000,
- "Ellicott Development": 10000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "Generac Power Systems": 4600000000,
- "Globe Life Insurance": 5200000000,
- "GreatSchools": 11000000,
- "Greenbrier Academy": 23500000,
- "Grindline Skateparks": 27600000,
- "H. T. Hackney Company": 3900000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Hoss's Steak & Sea House": 4400000,
- "Hwy 55": 3400000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IPVM": 7000000,
- "Insurify": 9300000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KVC Health Systems": 7400000,
- "Kanawha Valley Regional Transportation Authority": 7000000,
- "Kimley-Horn": 722300000,
- "Koppers": 2000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Lag Guitars": 2400000,
- "Leidos Holdings Inc.": 13700000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "MarkWest": 2400000000,
- "Miss Virginia USA": 2700000,
- "Moe's Southwest Grill": 295500000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "NABET-CWA": 13400000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "Nikola Corporation": 44000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orange Amps": 4200000,
- "Orkin": 1000000000,
- "Orrick": 975000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Pactiv Evergreen": 45000000,
- "Parker Hannifin": 15900000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Planned Parenthood": 1600000000,
- "Pocahontas Times": 9000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Randox": 119700000,
- "Rexair": 35000000,
- "Riesbeck's Food Markets": 3600000,
- "Rokon": 3700000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "SGS S.A.": 28000000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Samaritan's Feet": 7400000,
- "Sarku Japan": 310000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Shoe Carnival": 1300000000,
- "Sleep Number": 2100000000,
- "Solectrac": 2500000,
- "Southern Airways Express": 43000000,
- "Special Metals Welding Products": 11400000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "TCBY": 8800000,
- "Technology Student Association TSA": 10000000,
- "Telos company": 236800000,
- "Terracon": 77100000,
- "The First Line": 18800000,
- "The Highland School": 21900000,
- "Tim Hortons": 2800000000,
- "Torrid": 1300000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UMWA": 3000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Vocelli Pizza": 14000000,
- "Voith": 4800000000,
- "W. W. Grainger": 15200000000,
- "Waffle House": 1300000000,
- "Waldo Hotel": 26000000,
- "West Virginia Department of Agriculture": 32100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Williams Companies": 11300000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellow Pages Directory": 15100000,
- "ZOOperstars": 5100000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
- "Wisconsin": {
- "12 Yard": 6000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACCO Brands": 2100000000,
- "ADM": 94400000000,
- "ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFRY": 2300000000,
- "AFSCME": 10800000,
- "AIBS": 20100000,
- "AMC Theatres": 3900000000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
- "AVL List": 2100000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Acuity Insurance": 120000000,
- "Aflac Incorporated": 19300000000,
- "AgStar": 1800000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agropur": 7700000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Command": 15100000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Family Insurance": 14200000000,
- "American Greetings": 2000000000,
- "American Indian College Fund": 7800000,
- "American Society of Genealogists": 3600000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Ansul Canada Ltd.": 37300000,
- "Applegreen plc.": 3400000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Argosy Foundation": 10000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Austin Straubel International Airport": 7000000,
- "Aviat Aircraft": 8000000,
- "BBR Music Group": 2600000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BW Papersystems": 300000000,
- "Bader Philanthropies": 3800000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "BelGioioso": 100000000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Boy Restaurants": 26600000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bossard": 920500000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Briggs & Stratton LLC.": 1700000000,
- "BrightStar Care": 300000000,
- "BrightStar Wisconsin Foundation": 1500000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "Burger Boat": 4200000,
- "Bush's Beans": 250000000,
- "CAMECA": 20000000,
- "CDW": 23800000000,
- "CNN Films": 1500000000,
- "CUNA": 68000000,
- "CURTISS-WRIGHT": 2500000000,
- "Camp Fire": 10000000,
- "Can-Am Off-Road": 6300000000,
- "Capital Brewery": 29100000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Castolin": 50000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chr. Hansen": 1100000000,
- "Christmas Tree Shops": 15900000,
- "Ciox Health": 19300000,
- "Circle Sanctuary": 28600000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "City of Middleton": 5500000,
- "Clark Brands": 23000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Comarch": 400900000,
- "ConjuChem LLC.": 15000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Craig High School": 18800000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
- "Cyclomedia Technology Inc.": 4800000,
- "D.P. Dough": 9400000,
- "DJC Oregon": 10000000,
- "DJO Global": 1200000000,
- "DKNY": 643000000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "Dirtnap Records": 3900000,
- "Discovery Toys": 4000000,
- "Dixon Ticonderoga": 23800000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drexel Hamilton": 14800000,
- "Drury Hotels": 620000000,
- "Dwight Foster Public Library": 2700000,
- "EDP Renovaveis": 2100000000,
- "EOG Resources": 25000000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "East Troy Electric Railroad": 20200000,
- "East-Central Synod of Wisconsin": 13000000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Ecumen": 165000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Experimental Aircraft Association": 15600000,
- "Fancy Feast": 10000000,
- "Farmer Brothers": 469200000,
- "Fat Brain Toys": 40000000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "Finance & Commerce": 3700000,
- "First Watch": 677600000,
- "Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Forman Mills": 296800000,
- "Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Froedtert Health Inc.": 2700000000,
- "Frontier Airlines": 3000000000,
- "Fulton Beer": 20600000,
- "Future Sonics": 4800000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gehl Company": 10000000,
- "Generac Power Systems": 4600000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "George Webb Interactive Inc.": 22400000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "Go To Transport": 9500000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Graef-USA Inc.": 40300000,
- "Great Harvest": 21200000,
- "Griffon Aerospace": 16000000,
- "Grindline Skateparks": 27600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guild Software": 23800000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "HSM company": 298100000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hal Leonard": 254000000,
- "Hall Render": 10700000,
- "Hamburger Mary's": 7000000,
- "Harbor Freight": 5000000000,
- "HealthSherpa": 9000000,
- "Hedberg Public Library": 21600000,
- "Hendricks Holding": 21400000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hilton Milwaukee City Center": 5000000,
- "Hobby Lobby": 5300000000,
- "HockeyTech Inc.": 10000000,
- "Holiday Stationstores": 3300000000,
- "Holy Family Memorial": 140000000,
- "Houzz": 500000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "Ingredion Incorporated": 7200000000,
- "Intelitek": 3300000,
- "Inventors": 10000000,
- "Invest Financial Corporation": 290000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Ishida Co. Ltd.": 1200000000,
- "Jacob Schmidt Brewing Company": 10000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John William Pope Foundation": 12900000,
- "Johnson Health Tech": 800000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KHS GmbH": 1400000000,
- "KONE": 10900000000,
- "KWIK TRIP": 5000000000,
- "Kalmbach": 49000000,
- "Kaplan": 1500000000,
- "Kaplan Financial": 12000000,
- "Kelly Services": 5000000000,
- "Kenosha News": 4300000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Foundation": 2000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Koss": 16600000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "L.L.Bean": 1600000000,
- "Land O'Lakes": 16000000000,
- "Laughlin": 95900000,
- "Lawrence University": 10000000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "Legendary Whitetails": 25500000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Lester Public Library": 3900000,
- "Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Los Angeles Athletic Club": 13500000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Luminex": 437700000,
- "Lupus Foundation of America": 13700000,
- "M.C. Dean": 1000000000,
- "MFJ Enterprises": 7800000,
- "MGIC Investment Corporation": 1100000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Madison Metropolitan School District": 30500000,
- "Manitowoc Public School District": 3600000,
- "Marcus & Millichap": 1500000000,
- "Maritime Metro Transit": 37700000,
- "Materion Corporation": 1800000000,
- "Mayo Clinic Health System": 27900000,
- "McLane Company": 50000000000,
- "Mecum Auctions": 600000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Midwest Communications": 36300000,
- "Milio's Sandwiches": 1800000,
- "Milliman": 1200000000,
- "Milorganite": 20200000,
- "Milwaukee Athletic Club": 28800000,
- "Milwaukee Mitchell International Airport": 6000000,
- "Modern Fix": 4600000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Moyes Delta Gliders": 2100000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NOAA Weather Radio": 36400000,
- "NOVARES": 1400000000,
- "National Bank of Commerce": 32600000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Model Railroad": 5300000,
- "National Mustard Museum": 17600000,
- "NetApp": 6500000000,
- "Networked Insights": 7500000,
- "Newark": 450000000,
- "News From Indian Country": 9200000,
- "Nexus Pharmaceuticals": 79600000,
- "Niagara Conservation": 2500000,
- "North Sails": 27500000,
- "OMNOVA": 750000000,
- "OPEIU": 7400000,
- "Oerlikon": 3100000000,
- "Old Dutch Foods": 5500000,
- "OnMilwaukee": 23200000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Pacific Cycle": 26300000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Parker Hannifin": 15900000000,
- "Payden": 10000000,
- "Peermusic": 46300000,
- "Peet's Coffee": 36700000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Progressive": 12200000,
- "Protective Life": 6700000000,
- "Pulaski Community School District": 3300000,
- "Quad Metalworks": 3100000000,
- "Quiznos": 50000000,
- "REV Group": 2300000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Letter Media": 6000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Reliance Partners": 13500000,
- "Renewable Energy Group": 2900000000,
- "Resideo": 6300000000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Rigibore": 19700000,
- "Rising Medical Solutions": 26000000,
- "Riverside University High School": 37300000,
- "Rock & Brews": 33300000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rosecrance": 3500000,
- "Russell Investments": 566500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "S&S Cycle": 35800000,
- "SC Johnson": 11000000000,
- "SCHEELS": 800000000,
- "SDS": 10500000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SOCIETY OF WETLAND SCIENTISTS": 4600000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schmidt's Naturals": 5000000,
- "Schmitt Music": 20600000,
- "Schnucks": 3000000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Schwinn Bicycle Company": 11400000,
- "ScrappleFace": 6000000,
- "Security Bank": 6000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "Sentry Safe": 120000000,
- "ServiceMaster Clean": 48500000,
- "Servo Robot Group": 7400000,
- "Sheboygan Christian": 6600000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Shopbop": 700000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Sleep Number": 2100000000,
- "Snapper Inc.": 21000000,
- "Snyder's-Lance": 8600000000,
- "Society Tea": 4300000,
- "Solectrac": 2500000,
- "Sonic Foundry": 27500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spectrum Industries": 10000000,
- "Speech and Debate": 5500000,
- "St. Lawrence": 3100000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Bar of Wisconsin": 18100000,
- "State of Wisconsin Investment Board": 7000000,
- "Steak Escape": 18500000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stevens Point Brewery": 200000000,
- "Stone & Webster": 27400000,
- "Suhr JS Technologies Inc.": 3600000,
- "SunSetter LLC.": 55300000,
- "Suominen": 491400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symbotic": 30000000,
- "Syngenta": 16700000000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TDK": 14000000000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Bull at Pinehurst Farms": 2500000,
- "The Conservation Fund": 3900000,
- "The First Line": 18800000,
- "The Marcus": 556600000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tilting Point Media LLC.": 53000000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "US-ASEAN": 5800000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "USTDA": 10000000,
- "UW Credit Union": 45900000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Urban Ecology Center": 3300000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VCY America": 9400000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Voith": 4800000000,
- "Volkswagen": 51300000000,
- "W. W. Grainger": 15200000000,
- "WOCCU": 10000000,
- "WSP": 8900000000,
- "Wacker Neuson SE": 2200000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Products": 3800000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wilo": 1800000000,
- "Windermere Real Estate": 500000000,
- "Wisconsin Institute for Torah Study": 11200000,
- "Wje": 150000000,
- "Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "Woodland Pattern": 8100000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "Zenair": 17900000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
- },
- "Wyoming": {
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "AFL-CIO": 138000000,
- "ANSAC": 6000000,
- "AR-15": 6000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Alzheimer's Association": 81500000,
- "Aman": 150000000,
- "American Eagle Outfitters": 5000000000,
- "Art of Living": 6000000,
- "Aviat Aircraft": 8000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bicycle Health": 8700000,
- "Black Diamond Equipment": 4400000,
- "Buckle": 1300000000,
- "Cafe Rio": 215000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Center for Inquiry": 306000,
- "Central Wyoming Regional Airport": 12900000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Cornerstone Research": 250000000,
- "Crossroads of the West Council": 29600000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "Denbury": 1700000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Episcopal Church": 96100000,
- "Express Arrow": 12300000,
- "FMC Indonesia": 5400000000,
- "FactSet": 1500000000,
- "Ferrellgas": 2100000000,
- "Fluor Canada": 13700000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "GardaWorld": 3800000000,
- "Gillette News-Record": 7000000,
- "Good Times Burgers": 138700000,
- "Grindline Skateparks": 27600000,
- "HUB International Ltd.": 3200000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Indiana Public Retirement System": 6200000,
- "Iron Workers": 2800000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Kaiser Permanente": 93100000000,
- "Kinder Morgan": 17700000000,
- "Kwik Shop": 595000000,
- "LUFKIN": 1500000000,
- "LeeWrangler Belgium Services BVBA": 371000,
- "Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Merit Energy": 9200000,
- "Mitchell Madison Group": 26300000,
- "Modere": 4900000,
- "Moyes Delta Gliders": 2100000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "OneMain Financial": 4100000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RIBA Journal": 2000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rodgers Instruments Corporation": 6400000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schlumberger Limited": 27800000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shari's": 240000000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Stag Arms LLC.": 16000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stewart & Stevenson": 367000000,
- "Sulzer": 13800000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Tata Chemicals": 1500000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Teton Gravity Research": 8000000,
- "The Dyrt": 4000000,
- "The Legal Aid": 18000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Torrington WY": 5400000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UL Solutions": 2700000000,
- "USGS": 5000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "VCA Inc.": 1800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "W. W. Grainger": 15200000000,
- "Western Sugar": 250000000,
- "Williams Companies": 11300000000,
- "Wolters Kluwer": 5400000000,
- "Wyoming Library": 32800000,
- "Wyoming State Bar": 20000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellow Pages Directory": 15100000,
- "Zumiez": 1100000000
- }
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/states_companies.py b/states_companies.py
index 44de889..5e65e27 100644
--- a/states_companies.py
+++ b/states_companies.py
@@ -34,6 +34,11 @@
"region": region
},
"strictness": 3
+ },
+ {
+ "attribute": "company_industry",
+ "relation": "equals",
+ "value": industry,
}
]
}
@@ -50,7 +55,7 @@
states = states.split(", ")
-def get_state_companies():
+def get_state_companies(industry):
companies = {}
with open("temp.json", "r") as f:
@@ -68,6 +73,8 @@ def get_state_companies():
except json.decoder.JSONDecodeError:
companies = {}
+ request_body["filters"]["and"][1]["value"] = industry
+
for state in states:
request_body["filters"]["and"][0]["value"]["region"] = state
company_counter = 0
@@ -131,7 +138,8 @@ def count_revenues():
# count_revenues()
-get_state_companies()
+
+get_state_companies("IT")
# response = requests.post(url, headers=headers, json=request_body, params=params)
# print(response.json()["result"])
# print(len(response.json()['result']))
diff --git a/temp.json b/temp.json
index 5ae9947..453e8ff 100644
--- a/temp.json
+++ b/temp.json
@@ -27,7 +27,6 @@
"Advanced Systems Development Inc. ASD": 28300000,
"Advanced Systems Unlimited": 6000000,
"AdverNETS": 15300000,
- "Aegis Foundry": 2400000,
"Agility Technology Group": 2400000,
"Agilon": 13900000,
"Airiam": 18000000,
@@ -51,7 +50,6 @@
"Anovys": 2400000,
"ApexFocus": 9900000,
"Appddiction Studio": 3800000,
- "Apple Inc.": null,
"Applied OLAP": 4300000,
"Archetype Inc.": 14900000,
"AristoCAT": 10000000,
@@ -120,7 +118,6 @@
"Certified Technical Experts": 3400000,
"Chad Lightner": 13900000,
"Charles H Dunn Attorney": 6100000,
- "Chronicle Studio": 6000000,
"Cinglenet": 7300000,
"Cintel": 12300000,
"CipherNova": 2400000,
@@ -135,12 +132,10 @@
"Community Tracking Services": 4900000,
"Company 52": 1400000,
"Concert IDC": 7200000,
- "Condusiv Technologies": null,
"Conserv": 2000000,
"Context A3": 1900000,
"Contrive Media": 1400000,
"Core Associates": 32300000,
- "CoreLogic": null,
"Cornerstone Research": 10800000,
"Corvid Technologies": 23700000,
"CostFlex": 20000000,
@@ -199,7 +194,6 @@
"Exeter Government Services": 35000000,
"F 1 Solutions": 4500000,
"F3 Solutions": 21300000,
- "FIS": null,
"FLERT LLC.": 15000000,
"FX Design Group": 13500000,
"Faultline Software Group Inc.": 15600000,
@@ -260,7 +254,6 @@
"ITSworks": 13500000,
"Icloud": 90000000,
"Ignition Digital": 5600000,
- "IkeGPS": null,
"Incsub": 11000000,
"India Document Solution Private Limited": 3100000,
"Indian Server Hosting": 3900000,
@@ -269,7 +262,6 @@
"InfoDrive Systems": 7000000,
"Integration Revision": 8500000,
"Intelligent Design Studio": 9000000,
- "Intergraph": null,
"Intermedia Group": 13400000,
"Interweave Technologies": 10200000,
"Invariant": 13000000,
@@ -358,21 +350,18 @@
"Mobular": 11900000,
"Montgomery Electronics & Communications": 67600000,
"MotionMobs": 6000000,
- "Motorola Solutions": null,
"Moundville Times": 9800000,
"Mozaik Software": 49400000,
"Mullins Computer Management": 25500000,
"My International Connection": 4400000,
"MyITRocks": 50600000,
"NASAinc": 26300000,
- "NEARMAP LTD": null,
"NMGI": 20400000,
"NRG Edge": 6000000,
"NXTsoft": 38000000,
"Net-to-Net": 16900000,
"NetGain Technologies": 47600000,
"Netpoint IT": 7600000,
- "Network Solutions": null,
"New Merkel Consulting Group": 1800000,
"Next Level Studio": 2400000,
"Nfina": 15300000,
@@ -388,10 +377,8 @@
"OnTarget Technologies": 31200000,
"One Hop": 19400000,
"Onyx Technologies": 9500000,
- "Oracle": null,
"Orbit GT": 1700000,
"P C Plus Inc.": 15300000,
- "PBS Systems": null,
"PCS Simplify with Technology": 25000000,
"PILEUM": 26800000,
"PINNACLE BUSINESS SYSTEMS": 26000000,
@@ -417,7 +404,6 @@
"Pomeroy": 850000000,
"Premier Driving Academy": 5600000,
"Presidio": 4400000,
- "Print Reach": 6300000,
"Pro Sys": 12700000,
"Pro-Computer Services": 13500000,
"Propelled Technologies": 21400000,
@@ -450,8 +436,6 @@
"S4 Inc.": 16500000,
"SGA Software": 31200000,
"SLK Software": 150000000,
- "SRA International": null,
- "SS&C Technologies": null,
"SVK Systems": 33800000,
"Sales Force & Associates": 13400000,
"Saunders Business Solutions": 4400000,
@@ -517,7 +501,6 @@
"Teksouth": 40000000,
"TeleVox": 61700000,
"Telos company": 236800000,
- "Temenos Group": null,
"Territory 3": 8200000,
"The Allison Agency": 34500000,
"The Ant Farm": 7300000,
@@ -530,7 +513,6 @@
"TheraNest": 3000000,
"Think VSS": 80000000,
"ThinkDataSol": 10000000,
- "ThinkGard": 9000000,
"ThinkLink": 15700000,
"ThreatAdvice": 7000000,
"Thrive NextGen": 150000000,
@@ -550,7 +532,6 @@
"Tshirt Factory Limited": 7900000,
"TurkReno": 2300000,
"Two Rivers Technologies": 23800000,
- "Tyler Technologies": null,
"UDA Technologies": 20700000,
"UNISULT": 23100000,
"UP2GeeK": 7700000,
@@ -560,7 +541,6 @@
"Valley of Birmingham": 11900000,
"Verinext": 83000000,
"VertiGIS Studio": 7500000,
- "Vertiv": null,
"Virtual Apexx": 3000000,
"Virtue Technology": 19100000,
"Visiology": 22900000,
@@ -599,612 +579,115 @@
"laurenmaryDESIGN": 2600000
},
"Alaska": {
- "49 Designs": null,
- "5th Avenue Design & Graphics": null,
- "60HERTZ": null,
- "907 Creative": null,
- "A Girl Friday Company": null,
- "A Visual Voice": null,
- "A Zen Say": null,
- "A-Teq": null,
- "AI Smart Art": null,
"AIRCRAFT INSTRUMENT REPAIR LLC.": 27700000,
- "AKAK": null,
- "ARD STETTS": null,
- "ARZ Host": null,
- "ASSISTE ITEC": null,
- "Ace Delivery & Moving Inc.": null,
- "Adkins Design": null,
- "Ae0n": null,
"Aegistics": 48800000,
- "Aerospace Safety Software": null,
- "Ajibycanya": null,
- "Ak Creative Design": null,
- "AkWebs": null,
"AlasConnect": 7600000,
- "AlasKaleidoscope": null,
"Alaska App Works": 459000,
- "Alaska Challenge Program Inc.": null,
- "Alaska Computer Support": null,
- "Alaska Dancer Emporium": null,
"Alaska Data Technologies": 10000000,
"Alaska Dog Wash Resort": 33600000,
- "Alaska Fashion Wigs": null,
- "Alaska I.T. Guys": null,
- "Alaska IT Group": null,
"Alaska Interstate Construction": 9800000,
- "Alaska Northstar Resources": null,
- "Alaska Rose": null,
- "Alaska SEO True Loyalty Company": null,
- "Alaska Systems and Software": null,
- "Alaska Tech Services": null,
- "Alaska Technical Solutions": null,
- "Alaska Technologies": null,
- "Alaska Web Designs": null,
- "Alaska Web Dynamics": null,
- "Alaska Web Sites": null,
- "Alaska Web Solutions": null,
- "Alaska Web Studio": null,
- "Alaska-WebDesign": null,
- "AlaskaOne": null,
- "Alaskaweb.pro": null,
- "Alejandro Santiago": null,
- "Aleknagik Technology": null,
- "AlertWet": null,
"Aleutian Islands Guide Service": 13200000,
- "All Things Alaska": null,
- "Allison McIntyre Media": null,
- "Amanda Hatton": null,
- "Amanda Stachowicz": null,
- "Ampersand TECHNOLOGY": null,
- "Amy Julian": null,
- "Anastasia Ward Illustrations": null,
- "Apex IT Services": null,
- "Apex Logic": null,
- "Apple Inc.": null,
"Applied Microsystems": 10700000,
- "Arctic Design Group": null,
- "Arctic Frontier Hosting & Service": null,
"Arctic IT": 8000,
- "Arctic Network Solutions": null,
"Arctic Pixel Digital Solutions": 35400000,
"Arctic Region Supercomputing Center": 10300000,
- "ArcticCon": null,
- "ArcticShield": null,
- "ArcticSoft": null,
- "Arthepsy": null,
- "Artixan Systems": null,
- "Aryana Solutions": null,
- "Asia Bauzon": null,
- "Astonish Software": null,
- "Atlas Codeworks": null,
- "Attack Company": null,
- "Aurora & Co. Brand Design": null,
- "Avia Design Group": null,
- "AvidXchange": null,
- "Awake Design Studios": null,
- "Axiom Data Science": null,
"Azavea": 11300000,
"AzeoTech": 2400000,
- "Azimuth Studio": null,
- "Azure Networks": null,
- "BAK Systems": null,
- "BLUESTONE APPS LLC.": null,
- "BMON Documentation": null,
- "BROCK FORRER": null,
- "Backlink Hero": null,
"Ballroom Dance Club Of Fairbanks": 16500000,
"Bandi Signs": 10900000,
- "Baskindigital": null,
- "BebasKertas": null,
- "Best Online Singles": null,
- "Bestvfile": null,
- "Beth Piltz Graphic Design": null,
- "Bianca Frank Design": null,
- "Bindle Binaries": null,
"Birchtree Studio": 16000000,
- "Bitsynx": null,
- "Blair Castagnetta": null,
- "Blended By Bridget": null,
- "Bold Cape": null,
- "BoogieMan Security": null,
- "Boreal Scientific Computing": null,
- "Brandon Grant": null,
- "Brandon Reid": null,
- "Brianna Reagan Art": null,
- "Brittany Gene": null,
- "Brooke shary": null,
- "Brothers IT Solution": null,
- "Brown Bear Software": null,
- "Brown Graphic Design": null,
- "Brown and Blue": null,
"Build In Motion": 4500000,
- "Business Application Developers": null,
- "Bymobai": null,
- "Byte Networking": null,
- "C-Fuscator": null,
- "CA Design Studio LLC.": null,
"CHRISTINE M TAIT": 30800000,
- "CI Consultants": null,
"CMC-AK": 146000,
"CP Marine": 7000000,
- "CREATIVE VISUAL MARKETING SOLUTIONS": null,
- "CYBERSOURCE": null,
- "Cade Midyett": null,
- "Calligraphy By Touchstroke": null,
- "CannaTech907": null,
- "Caring Companions": null,
- "Carlisle Graphics": null,
- "Cary M. King": null,
"Catapult Consulting": 1400000,
"CaterTrax": 15000000,
- "Chariot Group": null,
"Check Point Mobile": 9800000,
"Chenega MIOS": 5900000,
- "Christen Bouffard": null,
- "Christmas Websites": null,
"Cities Digital Inc.": 4300000,
- "Cloos Creative": null,
- "Cobra IT": null,
- "Cohoe Beach Campground": null,
- "Collaborli": null,
- "Common Access Card": null,
- "Communications Software Inc.": null,
"CompuNet Inc.": 146600000,
- "Computer Medics of Anchorage": null,
- "Computers Under Control": null,
- "Computing Alternatives": null,
- "Control Alt Delete": null,
- "Copper River Cyber Solutions": null,
"Copper River Enterprise Services": 11000000,
- "Copper River Technologies": null,
- "Corgi Creatives": null,
- "Corriv": null,
- "CreativeAK": null,
- "Cristina Vergara": null,
- "Crumrine Enterprises": null,
- "Cryeye": null,
- "CuplexUser99": null,
- "Custom Web Domination": null,
- "CyberCoreDefense": null,
- "Cybersecure Alaska": null,
- "D Fields Design": null,
- "D Michael Lewis": null,
- "DHCSTECH": null,
- "DIY Hosts": null,
- "DOCUMENTLY": null,
- "DUBAY": null,
- "Dan Miller Graphics": null,
- "DanTech Services": null,
- "Data Methods": null,
- "DataFlow Alaska": null,
+ "DanTech Services": 760000,
"Datahead Software Solutions": 29300000,
- "Datapolis": null,
- "Deep Dish Creative": null,
"Deep Forest Security": 10000000,
- "Deep Tree": null,
"Deeptree": 12600000,
- "Delana Green": null,
- "Delivago": null,
- "Delres": null,
- "Den Concepts": null,
"DenaliTEK": 9800000,
- "Denaze Defense": null,
- "Desginmi offical": null,
- "Design Manager": null,
- "Designz Pal": null,
- "Diawai": null,
- "Digital Designing": null,
- "DiscoverNode": null,
- "Discovery Engine": null,
- "Dossco Designs": null,
- "Dragon.codes": null,
- "Dream Net Designs": null,
- "DreamWeavers Cloud Teknologies": null,
- "Dubay Business Services": null,
- "Dug-UK": null,
- "Dumb Blonde Design Studio": null,
- "Dycore Solutions": null,
"Dynalaska": 10300000,
- "Dynamic Helical Systems": null,
- "E2VE Defense Enterprises": null,
- "ECS Computer Systems Inc.": null,
"EDUCATIONAL MANAGEMENT": 9300000,
- "EMILY G LONGBRAKE": null,
- "EVEREST OIL & GAS SDN BHD 974467-X": null,
- "Eagle Consulting Group LLC.": null,
- "Eagle Integrated Services": null,
- "Eagle River Anchorage AK - Suzanne Cool": null,
- "Edging Mind": null,
- "Elizabeth Mackey": null,
- "Ellen Wang Design": null,
"Encinitas Website Designs": 2700000,
- "Enraptored": null,
- "Epricot": null,
"Equilux": 490000,
- "Erin Cofer": null,
- "Erin Hamilton Design": null,
- "Ewebdubniya": null,
- "ExploitCon": null,
"Eyaktek": 10000000,
- "Ez Online FFL": null,
- "FLEETPLAN": null,
- "FRANCES L SCHOLZ": null,
- "FREEDOM FROM CHAINS INC.": null,
"FTF FOUNDATION INC.": 15200000,
- "FabHub": null,
- "Fairbanks Neighbors": null,
- "Fairbanks Tech Support": null,
"FarShore": 25000000,
- "Fiddlehead creative": null,
"Finsight LLC.": 50300000,
"Fireweed Studios": 60600000,
- "Fiveninetydesign": null,
- "Flammes Jumelles": null,
- "Flower-webdesign": null,
- "Flyntlok": null,
"Forte Systems": 4900000,
- "FractalHome": null,
- "FreshLogoz": null,
- "Friends of Mulesoft": null,
"Frustration Free IT": 22400000,
- "Fulvia Lowe": null,
"GCSIT": 3800000,
- "Gamerzgraphics": null,
- "Garryou": null,
- "Gate City Software Solutions": null,
- "GenieTek": null,
- "GeoApt": null,
"GeoNorth": 1300000,
- "Geodome Shelter Systems": null,
- "Global Reach Technologies LLC.": null,
- "Grant Magdanz": null,
- "Greatbearbrewing": null,
- "Green Martian Design": null,
- "Green Wing Outdoor Safety Solutions": null,
- "Greensparc": null,
- "Gregari": null,
- "Griffith Technologies Alaska": null,
- "Grizzly Peak Software": null,
- "Growth Bounce": null,
- "Gwen Kalve": null,
- "HLT global": null,
- "HTECH Solutions Pvt Ltd.": null,
"Hansen Gress": 1400000,
"Hanson Consulting & Accounting": 11800000,
- "Hewitt Technologies": null,
- "HiTech Alaska LLC.": null,
- "Hillbilly Universe": null,
- "Hire Wordpress Developer": null,
- "Hollingsworth Design": null,
- "Homer Web Designs": null,
- "Hordanso": null,
- "Host SMB": null,
- "Hostilike": null,
- "HostingSeekers": null,
- "HuMu Media": null,
- "I am cooley": null,
- "I-drive": null,
- "I3 i7drivers": null,
- "ICAFM": null,
- "ICartApp": null,
- "ILM Designs": null,
- "IN SOMNO": null,
- "IT Alchemy": null,
- "ITEC Alaska": null,
"IWS Design": 1400000,
- "Icicle Software": null,
"Icloud": 90000000,
- "Iconif": null,
- "IdealSpot": null,
- "Ideas Box": null,
"Imagenet LLC.": 38000000,
- "Inaharbor": null,
- "Infolific": null,
- "InteXX": null,
- "Interface Alaska": null,
- "Interior Family Studios": null,
- "International Bicycle Equipment Warehouse LLC.": null,
"International Data": 14800000,
- "Israel Brewster": null,
- "Ivy & Oak Studios": null,
- "JI Design": null,
- "JOGUMU Marketing and Design": null,
"JP Technical": 1400000,
- "JSR Business Services": null,
- "Jadin Tech": null,
- "Jeff Quade .Net LLC.": null,
"Jenna! Fleur Designs": 31200000,
- "Jenness Graphic Design": null,
- "Josh Frontend": null,
"JusticeTrax": 5000000,
- "K & H Graphics": null,
- "KB Design Photo": null,
"KGH LLC.": 16100000,
- "KUiBSO": null,
- "Kallensoft": null,
"Kangaroo IT Services": 2400000,
- "Kartorium": null,
- "Kat Maus": null,
- "Katherine Martin Design": null,
- "Keeni": null,
- "Khan Howe": null,
- "Kierin": null,
"Kimografix": 1600000,
- "Kinoogeix": null,
- "Knik Country": null,
- "Koniag": null,
- "LAYMON DESIGN LLC.": null,
- "LIAISE STUDIO": null,
"LMJ Consulting": 7000000,
- "LPLV-SECURED": null,
"LUCID Digital Marketing Services": 2200000,
- "Landry Conrady": null,
- "Last Frontier Designs": null,
- "Lasvegaslomi": null,
- "LaunchUX": null,
- "Legalverse": null,
- "Leverage Information Systems": null,
- "Levi Oyster Designs": null,
- "Levinology": null,
- "Lexi Macht": null,
- "Little Bird Design Studio": null,
- "Local Data": null,
- "LogicNet": null,
- "Lolihanna Training Co.": null,
- "Lorraine Hebert": null,
- "Lucent Bloom": null,
"Luciddms": 6300000,
- "Lucie Marche": null,
- "Luminant Data": null,
- "Lunova Studio": null,
- "Lux Technology": null,
- "MAEGIC": null,
- "MARY ANNE WILSON": null,
- "MATTHEW KNUTSON": null,
- "META FREQ": null,
"MH2X": 191000,
- "MWBAILEY": null,
- "MacFadyen": null,
- "Mad Dog Graphx": null,
- "Martello Design": null,
- "Maxwell IT": null,
- "McGraw IT Services": null,
- "Meg Smith Art Design": null,
- "Merlin Media LLC.": null,
- "Microinriko": null,
- "Middle Rock Designs": null,
- "MilitaryCAC": null,
- "Miner Design LLC.": null,
"Miovision": 35000000,
- "Mix Fonts": null,
- "Molly Willson Perry": null,
- "Mountainside Solutions": null,
- "Mrcl": null,
- "MyCodeBlock": null,
- "NETDAIS": null,
- "NIUTOUCH": null,
- "NORDLUM F HOLLY": null,
- "NORTH CREATIVE": null,
- "Nanook Innovation": null,
- "Nate Padavick": null,
- "Nelson Kempf": null,
- "Network Business Systems": null,
- "New Age Consulting": null,
- "Nico leffel": null,
- "No Backflow": null,
- "Nodsafe": null,
"North Star Multimedia": 13000000,
"North Tech Group": 5900000,
"NorthWest Data Solutions": 480000,
- "Northern Core": null,
- "Northern DataComm": null,
- "Northern Technologies": null,
- "Northern Vista Designs Alaska Web Development": null,
- "Northern Web Development": null,
"Nu Solutions Consulting": 27100000,
- "NuTech Solutions": null,
- "Nuvem Apps": null,
"Nuvem Apps Inc.": 1400000,
- "Nydardoric LLC.": null,
- "Odyssey Tech Solutions": null,
- "OhDeven": null,
- "OmniSIEM": null,
- "OneDollarWebHostings": null,
- "Online Tool Site": null,
- "Open Data Network": null,
- "OpenSARlab-Docs": null,
- "Optimal Results": null,
- "Orbital Studios": null,
"Order N Development": 1400000,
- "Orr Systems": null,
- "Owldownloading": null,
- "P & S Solutions": null,
- "P.J. Gardner": null,
- "PC Booster": null,
- "PETERSON & ASSOCIATES INC.": null,
- "PNC IT": null,
- "POLARIS GROUP": null,
"POWTEC": 21000000,
- "Pagesculptor Studios": null,
- "Paladium": null,
- "PaloHaus": null,
"Pango Technology": 8300000,
"Paradigm Consulting Co.": 3100000,
"Pathagoras": 19700000,
- "PhD Code": null,
"Pixel & Plume Design Co. LLC.": 336000,
- "Poetica": null,
"PointMan": 13000000,
- "Polaris Design Lab": null,
- "Police Takip": null,
- "Premium Tile and Stone": null,
- "PrismaPixel Studios": null,
- "ProRotator": null,
- "Procrackhub": null,
- "Procurelogic": null,
- "Profesional Computing and Networking": null,
- "Projekt 907": null,
"Prominent Edge": 2400000,
- "Promotional Products Anchorage": null,
- "Propensa": null,
- "PulseMaps": null,
- "Pure Innovations": null,
- "Quantum Tech Labs": null,
- "Quecon": null,
- "Queryon": null,
- "Quurow": null,
- "RFIVE LLC.": null,
- "RGB Enterprises": null,
- "RNT Professional Services": null,
"RainMaker Software": 3000000,
- "Real RP": null,
- "RedStar Hospital": null,
"Rent Manager": 40900000,
- "Res3D": null,
"Resource Data": 32000000,
- "Richard Stephens": null,
- "Roland Adams2": null,
- "Rsurrency": null,
- "Ryan Nixon": null,
- "SAAFI DESIGN & GRAPHICS LLC.": null,
"SDSpro": 3200000,
- "SEAK Systems": null,
"SGV International LLC.": 10000000,
- "SMAKmobi": null,
"SPOOX INK.": 6800000,
"STS Systems Integration": 25000000,
- "STS Systems Support": null,
- "SaaS Design": null,
- "Sadli Data Solusindo": null,
- "Samantha Starks": null,
- "San Bernardino Mountain": null,
"Sandhill Studios": 2400000,
- "Sarah K. Glaser Illustration": null,
- "SaxtonIP": null,
"Script Technology": 5100000,
- "Security Breach 911": null,
- "Serverion": null,
- "Shashankshetty": null,
- "Signal Associates": null,
- "Signol": null,
- "Sitezly": null,
- "Skunkworks Data Services": null,
- "Sockeye": null,
"Softmouse 3D": 10000000,
- "Software North": null,
- "Solv Engineering": null,
- "Solve It Alaska": null,
- "Solve Solu-Tech": null,
- "Sorellaweb": null,
"Southeast Micro Consultants": 25700000,
- "Sparrow Development": null,
"Spearhead Consulting": 1400000,
- "SpinUp Creative": null,
"SplatDot Inc.": 374000,
"Stallion is": 1500000000,
- "Stanifer Designs": null,
- "Stanton Innovation": null,
- "StartAlaska IT": null,
- "Status - UA.": null,
- "Str8Mind Design": null,
- "Stratus Services": null,
- "Stringbin": null,
- "Stroitel'nyi forum Remfor": null,
"Structured": 15000000,
- "Sugpiat Defense": null,
- "Sugpiat Group": null,
- "Sundog Media": null,
- "Swarm Intel": null,
- "Sydney Cain": null,
- "Synchrony Trust Cyber Security Services": null,
- "THE WRIGHT PERSPECTIVE": null,
- "Tailored Ai": null,
- "Tandem Labs": null,
- "Tangible Technosis": null,
- "Tap Doan Lien Minh Viet": null,
- "Tara Horton": null,
- "TaskKlock": null,
- "Taylor Leasing Trailer Sales": null,
- "Tcayoti": null,
- "Tech Dev Zone": null,
- "Tech Empower Innovations": null,
- "Tech GN": null,
- "Tech Treta": null,
- "Tech Wise Systems": null,
- "TekForge": null,
"Tex R Us LLC Conference Room": 2000000,
- "The AIRIS Project": null,
- "The Anchor Pub and Club": null,
- "Threat Informant": null,
- "Tiger Eye Studios": null,
- "Todd Savoie": null,
- "Top Art Media": null,
- "Tophat Security": null,
- "TotalView": null,
- "Touch N' Go Systems Inc.": null,
- "Trunk Creative": null,
- "Tundra Technologies": null,
- "Tuuq Drilling LLC.": null,
- "Twiz'd Genetics Technology Network": null,
- "UAA Robotics": null,
- "UKG": null,
- "UP Frame": null,
- "US App Solutions": null,
- "Umnye resheniia": null,
- "Unleash Granite": null,
- "Unlock the Power of AI Tools Your Ultimate Resource Hub": null,
- "VMC Designs": null,
- "Valley Business Machines": null,
- "Valley Records Management LLC.": null,
- "VarPro": null,
- "VerifyLab": null,
- "Vicinity Group LLC.": null,
- "Viraledemo": null,
- "Vista Defense": null,
- "WILLIAM A BARNES": null,
- "WOEHLER AARON": null,
- "WSS Hosts": null,
"Warweb Designs": 7400000,
- "Wave Financial": null,
- "Weather Data by Zip Code": null,
- "Web Alaska": null,
- "Web Toolkit": null,
- "Web wadih": null,
"WebSiteManagers": 52000000,
- "WebSmith International": null,
- "WebbRes": null,
- "Webmusher Studio": null,
- "Website Alaska": null,
- "Webthings Solutions": null,
- "Wellspring Data": null,
"Weston Technology Solutions": 98000,
- "White Boxx Studios": null,
- "Wilford Mynah": null,
- "Windwood Marketing": null,
"Wolters Kluwer": 5400000000,
- "Wood River Federal": null,
"Xiologix": 5500000,
"Xola": 4500000,
"Yuit": 3800000,
- "Z Squared Studio": null,
- "Zemper Codes": null,
- "Zengage Design": null,
- "Zillion Labs": null,
"a. SMS Pro": 8000000,
- "eDocsAlaska": 26400000,
- "eWorX": null,
- "iHSOS iHealthCare Software & Office Solutions": null,
- "neXus Data Solutions": null,
- "www.777-Host": null
+ "eDocsAlaska": 26400000
},
"Arizona": {
"A 2 Z dot ORG": 15400000,
"A B Hazelton Design": 20900000,
"A Mix of Pixels": 26300000,
+ "A-1 Computer Service": 11300000,
"ADP Roseland": 16900000000,
"ARCTEV TECHNOLOGY": 15700000,
- "ARM Holdings": null,
"ASA Solutions": 11800000,
"ASUS": 19200000000,
"AWSMCreative": 21200000,
@@ -1212,7 +695,6 @@
"AZWEB": 25000000,
"Accram": 20900000,
"Accscient": 10000000,
- "Acronis": null,
"Acronymics": 12300000,
"Actual Metrics": 11300000,
"Adentro": 35000000,
@@ -1222,20 +704,17 @@
"Affine Tech Systems": 57100000,
"Affinity Technology": 10500000,
"Agent Spam": 10400000,
- "Agilysys": null,
"Akal Tech": 30200000,
"Akorn Software": 18000000,
"Aleksandar Cvetkovic": 21000000,
+ "Allbound": 10000000,
"Alltech Solutions AZ": 33200000,
- "Altus Group": null,
- "Ambient Weather": null,
"Andi West Web and IT Consulting": 32600000,
+ "Andrew Tritt": 16100000,
"AngelTech Creations": 20300000,
"Apex Creative": 14600000,
"Apisero": 45000000,
"App Game Guide": 29200000,
- "Appcelerator": null,
- "Apple Inc.": null,
"Applied Computer": 18300000,
"Apps Associates": 96000000,
"Apt Mobile Solutions": 19200000,
@@ -1248,12 +727,9 @@
"Augeo Sales Consulting": 11900000,
"Avail Company": 4200000,
"Avani Technology Solutions": 65000000,
- "Avant Communications": 65000000,
- "Avaya LLC.": null,
"Avesys Computer": 11400000,
"Avidex": 27000000,
"Avolve Software": 23100000,
- "Axway Software": null,
"B2 Software": 18600000,
"B2Gnow": 11300000,
"BASELAYER": 540000000,
@@ -1262,9 +738,7 @@
"Barney Davey": 18100000,
"Bc designs": 19000000,
"Be By You Health Coaching": 60700000,
- "Beachhead Solutions": null,
"Below Zero Productions": 33200000,
- "BeyondTrust": null,
"Big Red Rooster": 25900000,
"Binary Pulse LLC.": 14900000,
"Bishop Fox": 26500000,
@@ -1272,14 +746,11 @@
"Blase Design": 46800000,
"Bloom Design & Landscape LLC.": 13600000,
"Blue Spinner": 10400000,
- "Blue Yonder": null,
"Brainwave GRC": 13000000,
"BriComp IT Consulting Services": 21800000,
"Bright Idea Productions": 10000000,
- "BrightTALK": null,
"Business Integration Group": 10000000,
"Bva Technology Services": 14700000,
- "CA Technologies": null,
"CAMWorks": 10700000,
"CDN Solutions": 11800000,
"CDW": 23800000000,
@@ -1289,10 +760,7 @@
"COMPASS NETWORK SOLUTIONS INC.": 18500000,
"CSP Technologies": 140000000,
"CTC Software": 25000000,
- "CXT Software": null,
"Canyon Software LLC.": 24800000,
- "Capable Software": 13900000,
- "Capgemini": null,
"Caritor Solutions": 75000000,
"Catchlight Design": 13400000,
"Cavecreek": 15500000,
@@ -1300,36 +768,29 @@
"Centrilogic": 20000000,
"Certified Network Consultants LLC.": 28000000,
"Cetrom": 26000000,
- "Check Point Software Technologies Ltd.": null,
- "Chetu": null,
"CityWideHost": 26600000,
"Clairvoyant": 20000000,
"ClassicSoft": 10000000,
"ClearDATA": 16500000,
"Clearnine": 14600000,
"Clevart": 20200000,
- "Coderiver": 14700000,
"Coding Algorithms": 18400000,
"Column5": 20300000,
"Colyar Technology Solutions": 12100000,
"Comlink Southwest LLC.": 29300000,
"Commerce Server Solutions": 15700000,
- "CompuCom": null,
"CompuFor": 18300000,
"CompuNet Inc.": 146600000,
"Computer Accounting Solutions": 39400000,
"Computer Dimensions": 23800000,
"Computer Guidance": 37500000,
"Computerized Business": 15500000,
- "Computershare": null,
"Computing Insights": 17600000,
- "Condusiv Technologies": null,
"Consergius": 11600000,
"Consys": 21100000,
"ConvergeOne": 1600000000,
"CoreCodec": 15600000,
"Corvid Technologies": 23700000,
- "Covid Watch": null,
"Creative IT Resources": 21900000,
"Creative Insanity Designs": 30000000,
"Crosshatch Media": 23600000,
@@ -1337,16 +798,12 @@
"Cubex LLC.": 11000000,
"Cut and Paste Design": 34800000,
"Cyber Patrol": 24800000,
- "CyrusOne": null,
"D'pace Digital Media": 31100000,
- "DDC-I": null,
+ "DL Web Works": 21100000,
"DTK Austin Styling": 11800000,
"Dallenbach Art & Design": 34800000,
"Daoutova Creative": 15800000,
- "Dapper Gentlemen": 18200000,
"Dar Zarrouk": 22700000,
- "Darktrace Holdings Limited.": null,
- "DataBits Software": 20400000,
"Datalink Software Consultants": 15600000,
"Dataprise": 52100000,
"Dataworks LLC.": 14500000,
@@ -1354,7 +811,6 @@
"Dbhq": 15000000,
"DeWitt Gibson": 11800000,
"Deena Warner Design": 35400000,
- "Deft": null,
"Deluxemodern Design": 24200000,
"Design Dimension": 31500000,
"Design Strategics": 31500000,
@@ -1362,7 +818,6 @@
"DewNet": 31600000,
"Digital Dogs": 19100000,
"Digital Realty": 4700000000,
- "Dimension Data": null,
"Discoverture": 15700000,
"Domains By Proxy": 120000000,
"Doxim": 67000000,
@@ -1378,22 +833,18 @@
"EMI Software": 10000000,
"ERGOS": 10000000,
"EXB Solutions": 21000000,
- "Edgio": null,
"Edwards Area Comm Corp": 11800000,
"Ellamint": 34800000,
"Emily Peak Photography": 22700000,
- "Emolument": null,
"Engage3": 35000000,
"Envox": 15000000,
"Ephibian": 12200000,
- "Eplus": null,
"Epps Digital Forensics": 11600000,
"Ergoweb": 32500000,
- "Esper Media": 20000000,
"Esser Design": 29500000,
"Eureka Documentation Systems": 30500000,
"EverView": 280000000,
- "Evercast": null,
+ "Evolution IT Management Services": 11500000,
"Ex Libris": 7000000,
"Executech": 14800000,
"Expedient": 200000000,
@@ -1422,7 +873,6 @@
"Gentech Sh.p.k": 28300000,
"GeoCivix": 19000000,
"Gistic": 13100000,
- "GitKraken": null,
"GlobalMeet": 15300000,
"Globe Infotech": 18900000,
"GoStats": 10000000,
@@ -1441,17 +891,13 @@
"Harquahala Fire District": 26300000,
"Health Care System Images of Arizona": 12600000,
"HealthTrio": 10200000,
- "Hexagon": null,
"Higher Logic": 59600000,
"Holly Holt Design": 12000000,
- "Hoopo": null,
"HostingChoice": 26000000,
"Hunt Design": 10000000,
"Hybrid Domains": 13200000,
"Hybrid IT Services": 14000000,
- "IBM": null,
"IDISCOVER Global": 10400000,
- "IIUG": null,
"IONOS": 617800000,
"IPX Tech Solutions": 15100000,
"IQzone Inc.": 9700000,
@@ -1466,18 +912,13 @@
"In2itdesigns": 20300000,
"InEight": 71000000,
"Informs": 510000000,
- "Infosys": null,
"Infosys BPM Limited": 38200000,
- "Ingram Micro": null,
"Inmass": 16100000,
"Innosoft": 62900000,
"Innovsafe": 32100000,
- "Inovalon": 749600000,
- "Insight Enterprises": null,
"Integra Business Systems": 27000000,
"Integrated Consulting": 35000000,
"Intellectual Technology Inc.": 10000000,
- "Internap": null,
"Intertec International": 90000000,
"Intouch Technology": 10000000,
"Intuitive Pear": 30600000,
@@ -1491,33 +932,27 @@
"Jumping Cholla": 26600000,
"K 2 G Computer Consulting": 10900000,
"K Frank Designs": 10300000,
- "Keap": null,
"Keith Fimreite": 20100000,
"Kersey Scott & Associates": 20900000,
- "Kiddoware": null,
"Kira Scheck.": 14000000,
"Kirsten Price": 24800000,
- "Kontron": null,
- "Kudelski Group": null,
"KwikTag": 10000000,
"Kyle Phan": 10500000,
"K\u00eanh T\u1eed Vi": 13400000,
- "L3Harris": null,
"LIONSITES": 14500000,
"LVA Urban Design Studio": 19300000,
"LVM Systems": 12000000,
"Landon Taylor Design Group": 10200000,
"Landro": 10700000,
"LaserVault": 10000000,
+ "Lavender Sage Designs": 25800000,
"LeaseWeb Netherlands B.V.": 100000000,
"LeeShanok Network Solutions": 19900000,
"Level 3 Audiovisual": 27700000,
"Level 3 Communications": 17500000000,
- "Lexis Nexis": null,
"Lifespan Technology": 63900000,
"Lighthouse Switzerland GmbH": 50000000,
"Liquid Sky Studio": 27100000,
- "LiveSquare Security": 14200000,
"Locus Logic": 15300000,
"Look See Studios": 21800000,
"Lynk Software": 15600000,
@@ -1530,33 +965,27 @@
"MJL Microsystems": 18200000,
"MODAL Design Works": 17900000,
"MST Solutions": 15700000,
+ "Macy Web": 21600000,
"Magellan 21": 14800000,
"Mahonesa De Mahon": 33500000,
"Main Advantage": 14900000,
- "ManTech International": null,
"Managed Care Systems": 17900000,
"Mann Interactive": 23600000,
- "Manthan": null,
"Menayas": 13800000,
- "Micro Center": null,
- "MicroAge": null,
"MicroSupport": 11200000,
"MicroWorks System Solutions": 17500000,
"MindScripts Technologies Nigdi": 57700000,
- "Mindtree": null,
"Mirametrics": 16800000,
"Mobibrick": 44700000,
"MoiaGroup": 16700000,
"More Than Stick Figures": 43400000,
"Moruga": 15000000,
- "Mosaic451": null,
- "Motorola Solutions": null,
- "Mphasis": null,
"MrGuy": 17900000,
"My Graphics Guy": 27600000,
"MyServer Inc.": 29700000,
"Myriad Services": 17400000,
"NET'N COM": 11900000,
+ "NICitPartner": 249000000,
"Namecheap": 149000000,
"NarrativeWave": 10000000,
"Natalie Bazaar": 14400000,
@@ -1565,7 +994,6 @@
"Nerds On Site": 11300000,
"Net Android": 35000000,
"NetApp": 6500000000,
- "Nettime solutions": null,
"Nevrona": 27400000,
"Newtek Technology Solutions": 14300000,
"NexStep AZ": 10000000,
@@ -1576,26 +1004,21 @@
"Noma Technologies": 16900000,
"Northstar IT Business Solutions": 11300000,
"Norton": 1300000000,
- "Norton LifeLock": null,
"NucleusTeq": 15000000,
"NuzoTech": 48400000,
- "OPC Foundation": 10000000,
"ORCAS": 15000000,
"OXYGEN CORP LTD.": 17600000,
"Object Computing": 42500000,
"Omniq": 61200000,
"Online Service Management Software": 10400000,
"Open Window": 10000000,
- "OpenText": null,
- "Oracle": null,
"Orion Health": 150000000,
"OroGraphics": 12700000,
"Osorio multimedia": 33000000,
- "Owl Labs": null,
"PALOMEQ DESIGN": 34800000,
"PCMRP": 50700000,
+ "PCNET Inc.": 12300000,
"PHXAD": 13800000,
- "PTC Inc.": null,
"Papago Painting": 21600000,
"Paper & Pixels Design": 22700000,
"Paradox Vietnam": 10000000,
@@ -1605,7 +1028,6 @@
"Party Track": 18600000,
"Patron Designs": 37400000,
"Patterson Designs": 26400000,
- "Paycom": null,
"Pehnava": 63100000,
"Penguin Designing": 33200000,
"Penguin Solutions": 65000000,
@@ -1613,7 +1035,6 @@
"Permutations": 40000000,
"Phoenix NAP": 82500000,
"Phreedom": 11500000,
- "Pillir": null,
"Pinnacle Cart": 22300000,
"Pinnacle Technology": 35000000,
"Pircle": 55600000,
@@ -1623,21 +1044,19 @@
"PowWow Inc.": 25700000,
"Precision Computing Arts": 11000000,
"ProVantage Software": 17300000,
- "Profile Software": null,
"Progent": 13200000,
- "Projector PSA": null,
"Proven IT": 60900000,
"PruTech": 43000000,
"Q Ware CMMS": 75000000,
"Q1 Technologies": 12300000,
"QCM Technologies": 21800000,
"Quality America": 11900000,
- "Quality Technology Services": null,
"Quilters Market": 20000000,
"R B Balch & Associates": 16100000,
"RWA Graphics": 23800000,
"Rachel Kim": 21100000,
"Randen TruckingInc": 15700000,
+ "Ravenworks": 21500000,
"Red Horse Creative": 50700000,
"Redtail Technology": 26100000,
"Remedy Creative": 20500000,
@@ -1646,21 +1065,16 @@
"Reynolds Logistics Corporation": 23700000,
"Robin Locke Monda": 35200000,
"RoboVu": 30500000,
- "Rockwell Automation Inc.": null,
"SAP": 33500000000,
- "SAS - DACH": null,
"SCAN TOOLS": 14100000,
"SEDONA'S FINEST INNS": 35400000,
- "SHI International Corp.": null,
- "SOFTWARE QUALITY CENTER": 10000000,
- "SRA International": null,
"STAND 8": 10600000,
"STAT Computer Services": 14500000,
- "Safari Micro": 16800000,
"Safe Communications": 10000000,
"Sage Group": 2100000000,
"Sage Logix": 29000000,
"Sai Software Solutions": 25000000,
+ "Saltriver Computer Systems": 19200000,
"Scott Sanders": 12300000,
"Sean M Shields": 28400000,
"Seidor": 650000000,
@@ -1675,10 +1089,7 @@
"SiteLock": 48700000,
"Smalltimer": 23800000,
"Smart Data Center": 10000000,
- "Software Development": 27300000,
"Software Verify": 15000000,
- "SoftwareOne": null,
- "Sogeti": null,
"Solution54": 10000000,
"Sona Data Systems": 19600000,
"Sonatafy": 35000000,
@@ -1690,29 +1101,24 @@
"Stevens Screen Printing": 22600000,
"Stoke Interactive": 18100000,
"StorageRep": 25500000,
- "Stratus Technologies": null,
"Stream Data Centers": 13600000,
"Structured": 15000000,
"Stylups": 33500000,
"Sublime IT Solutions": 18400000,
- "Sunquest Information Systems": null,
"Sure IT": 28500000,
"SurveyMethods": 10200000,
"Swdoit": 12400000,
"Symbotic": 30000000,
"Synel Americas": 25000000,
- "SystemTrends": 39700000,
"Systems Technology Group": 20600000,
"TAE Technologies": 21000000,
"TASC Solutions": 34700000,
"TBConsulting": 25000000,
"TEKSystems Global Services Pvt. Ltd.": 7000000000,
- "TIBCO Software": null,
"TS Communications Associates": 17300000,
"Tabs3": 12200000,
"Taetion": 14000000,
"Teal Tec": 15900000,
- "Tech Data": null,
"Tech Gird": 16200000,
"Tech-ease": 32500000,
"Technology Plus": 15200000,
@@ -1733,30 +1139,25 @@
"Tomko Design": 18800000,
"Trace3 LLC.": 1400000000,
"Treo Design": 24400000,
- "Trimble": null,
"Trinodus S.l.": 25700000,
"TrueNorth ITG": 42000000,
"TruePoint Solutions": 49900000,
"Trumpet Inc.": 10600000,
"TurboImageHost": 10000000,
- "Tyler Technologies": null,
"UTC RETAIL": 10000000,
"Unwired Revolution": 11100000,
"Uvation": 62900000,
"Uzyteczni": 27700000,
"Valeo Networks": 12100000,
"Validation": 34200000,
- "Van Smyth Design": 32600000,
"Vanzoft": 37400000,
"Varonis": 457600000,
- "Veeam": null,
"Vensoft Inc.": 16900000,
"Veras Retail": 10000000,
"Verint Systems": 899800000,
- "Vertiv": null,
+ "VersaSoft": 10000000,
"Vigilant Technologies": 10700000,
"VinNOW": 45200000,
- "Vincit": null,
"VirMedice": 28100000,
"Vires Media": 13800000,
"Vision 7 Software": 22100000,
@@ -1770,6 +1171,7 @@
"WWDL": 19600000,
"Water Weaver": 25000000,
"Web Design Ledger": 10000000,
+ "Web Hosting Hero": 19000000,
"Web-Horizons Holdings": 17800000,
"WebPulse": 32500000,
"Webgility": 15000000,
@@ -1777,21612 +1179,18712 @@
"Well Hello World": 12900000,
"Wengert": 19400000,
"Whos.amung": 10000000,
- "Wipro Limited": null,
"Wireless Trolling Pro": 12100000,
"Wolters Kluwer": 5400000000,
"Word of Life Christian Center": 27300000,
"Workflow By Design": 21800000,
"Workiva": 468700000,
+ "World Tree Technologies": 15100000,
"XADEK DESIGN": 26500000,
"Xcase -": 37500000,
"Z-Micro Technologies LLC.": 20300000,
- "Zenefits": null,
- "Zensar": null,
"Zuma Group": 57800000,
"etoddtDesign": 10000000,
"ez CPAP LLC.": 18900000,
"iBit Soft": 11000000,
"iFancy Media Design Limited.": 26400000,
- "iPage": null,
"iTRACS": 39400000,
"kTech Systems": 12700000,
"nMetric": 19400000,
"nderson Information Systems LLC.": 10800000
},
"Arkansas": {
- "2 Ultra Media": null,
- "3B Cyber": null,
"479 DESIGN": 25600000,
- "640Square": null,
- "8020Tech": null,
"A Fearless Venture": 4700000,
- "A Phillips Design": null,
"AHLSORT": 6000000,
"AHNI TECH": 13100000,
- "AJB Consulting": null,
- "ANVIRA": null,
- "AS Creative Design": null,
"ATLAS Technology Group": 6000000,
- "AV SYSTEMS OF ARKANSAS": null,
- "AVI Inc.": null,
- "AVNation TV": null,
"AccountabilIT": 2000000,
"Acuit": 2400000,
"Acxiom Impact": 4200000,
- "Adams Brown Technology Specialists": null,
"Adroit Worldwide Media": 4000000,
"Advanced Solutions Inc. - ASI": 6500000,
- "Affirma": null,
- "Alamo Software Inc.": null,
"Allied Technology Group": 5600000,
- "Alloy OS": null,
- "AllurEssens": null,
"Almany Designs": 3800000,
"Americana Corporation": 6000000,
- "Americanbread": null,
- "Amy's Amazing Share Group": null,
"Anastasia Ad Design": 4100000,
"AnsenCreative": 3700000,
- "Apex Systems": null,
- "Apollo IT Services": null,
- "Appily App Builder": null,
- "Apple Inc.": null,
"Apprentice Information Systems": 4000000,
"Apptegy": 4500000,
"ArcBest Technologies": 37500000,
- "Archivists' Toolkit": null,
"Ariamoons": 658000,
- "Arkansas Software Development": null,
"Arkansas Trading and Loan Inc.": 3800000,
"Artistik Salon & Sensory Savvy": 435000,
"Astonished Man Design": 197000,
- "Auben": null,
"Avani Technology Solutions": 65000000,
- "Avaya LLC.": null,
- "AvidXchange": null,
- "Avionics & Systems Integration Group": null,
- "AzureVantage Hosting": null,
- "BASE2 Software": null,
- "BPSNA": null,
- "BROADY Company": null,
- "BYTEnostic Solutions": null,
"Barracuda MSP": 19500000,
"Baugh Chapel Baptist Church -- Austin Arkansas": 17100000,
- "Beckham Squared": null,
"Bee Culture": 5500000,
- "Believe Branding": null,
"Big-Bot Design": 3900000,
"BitPivot": 6300000,
- "Bitech Consulting. Ltd.": null,
- "BizTranSights": null,
- "Black Diamond Apps": null,
- "Black Label Creatives": null,
"Black Oak Analytics": 6000000,
- "Bloggers Deals": null,
- "Blue Simplific": null,
- "Blue Sky Dogs": null,
"BlueFish Systems": 7800000,
- "Bluegrass Media": null,
- "Bodark Design": null,
"BondDotAi": 2400000,
- "Boots 2 Cyber": null,
- "Bpoecell": null,
"Brian Eller Graphics": 22700000,
- "Brittany Phillips Design": null,
- "Browning Design & Photography": null,
- "Bulk Logic": null,
"Business Network Solutions": 4600000,
- "Butram": null,
- "By Holguin": null,
"Byars Hickey & Hall Pllc": 10700000,
- "Byrd Haus": null,
- "CA Technologies": null,
- "CALNOX": null,
"CAT Squared": 7500000,
"CCR Computer Consulting & Repair Inc.": 24700000,
- "CEROVO d.o.o.o": null,
"CHR Solutions": 70000000,
- "CISA": null,
"CLOUDWHALE": 22200000,
- "CLPSS": null,
"CNK Computer Service": 14000000,
- "CS2AI": null,
"CTC Software": 25000000,
- "CUSTOM WEB DESIGN by Jim E. Martin": null,
- "CW Creative Media": null,
- "CYBERSURGE": null,
"Cahaba Sign & Design": 5900000,
"Cambria": 28300000,
"CaterTrax": 15000000,
- "Cedar Technology": null,
- "Cedarview IT Solutions": null,
- "Celerit": null,
"Central Research": 14500000,
"Centricity Technologies": 1400000,
"Chargerback": 2400000,
"CheckPoint ID": 2100000,
- "Cherwell Software LLC.": null,
"Choice Solutions": 1900000,
"Chris Ragan Design": 5800000,
- "Chyve": null,
- "Cignal Tech Solutions": null,
- "Cimco Inc.": null,
- "Citadel Systems": null,
"Clanwarz": 314000,
"Cloud Carpenter": 9800000,
- "Cloud Centric Inc.": null,
- "Cloud Media llc.": null,
"Cloudyboss": 12000000,
"Code Authority": 3600000,
- "Code Junkiez": null,
- "Code Kindly": null,
- "CodePalma": null,
- "Collab Design": null,
- "Complete Computer Solutions": null,
"Compsys Inc Bentonville AR": 5400000,
- "Comptek": null,
"Compunet": 6000000,
- "Condusiv Technologies": null,
"Confiz": 90000000,
- "Conformance CyberSecurity": null,
- "Continental Computers": null,
- "Continental Utility Solutions": null,
- "CopiedCode": null,
- "Cossey Web Solutions": null,
- "Covalent Designs": null,
"Cpdigital": 17500000,
- "Creations 4 You": null,
"Critical Edge": 4000000,
"CrossFleet": 6000000,
- "Crying Eagle Resort": null,
"Cumulus Technologies Group": 2400000,
- "Custer Creative": null,
"Custom A Design": 7000000,
"CyberSpyder": 244000,
- "Cybersecurity Insiders": null,
"Cyderes": 300000000,
- "Cypress Technology Group": null,
- "DEPROCESS": null,
"DSWi": 6000000,
- "Dark Web Security": null,
- "Data by Dobbs": null,
- "DataCom Inc.": null,
"DataPath": 42700000,
"DataScout": 12400000,
- "Datacom is": null,
"Datalink Networks": 2200000,
- "Datametrikacg": null,
"Dataretrieval": 29800000,
"Davis IT Solutions": 789000,
- "Dependibot Solutions": null,
"DesignMatters LLC.": 314000,
"Designs By A.J.": 9300000,
"DevOps Live": 189000,
- "Devstruggle": null,
"Digital Forensics Team": 4100000,
- "Digitalmation": null,
"Diversified": 458900000,
- "DracoArts Studio": null,
- "Drake White": null,
"Drupal Soul": 418000,
"Dsci": 16100000,
- "Duch Computer Consulting": null,
- "DueTrade": null,
- "Dunnhumby": null,
"Dynamic Domains": 67600000,
- "E2open": null,
- "EK Solutions Group": null,
- "EMH Graphics": null,
"ER Assist": 4700000,
- "ETHAN O'LESKE": null,
"EVT Corp": 5000000,
"Ed4U": 10000000,
- "Edafio": null,
"Elyxor": 6000000,
- "Emertech": null,
"EngwIT": 7900000,
"Enscape": 1200000,
"Ensono": 650000000,
- "Envision Technologies": null,
- "Evenly Odd Inc.": null,
- "Everything 4 Business": null,
- "Evolve Here": null,
- "Ewys perfomances Lc": null,
"Excel Nation": 20700000,
- "FI Works": null,
- "FIS": null,
"FX Design Group": 13500000,
"Federal Soft Systems": 7000000,
- "Field Agent company": null,
- "Figurattez": null,
- "Fintstudios": null,
"Fiserv": 17700000000,
- "Fisher Metrical": null,
"Flatter Files": 207000,
- "Flora Luna Creative": null,
"Floranext": 4400000,
- "Forecasting A B.": null,
- "Formada Creative": null,
- "Frontier Computer Solutions": null,
- "GA Graphics": null,
"GOFF Concepts": 2400000,
"Gainwell Technologies": 1400000000,
"Gartman": 10000000,
"GeoConex": 1400000,
"Gerwitz LLC.": 128000,
- "Go Bizrk": null,
"Graphic-Worx": 11700000,
"Graphics Unique": 8200000,
- "Grayce Holcomb Creative": null,
- "Green Lit Hosting": null,
- "Guardian Technology Consultants": null,
- "Gulfwebs": null,
"Guyer Enterprises": 2700000,
"HEBCO": 11100000,
"HIVERY": 7500000,
- "Hammer Solutions": null,
"Hardwyre": 10000000,
- "Hashku": null,
- "Haven Managed Services": null,
"Healthstar Physicians Of Hot Springs Pllc": 18200000,
"Heartland Business Systems": 147300000,
- "Heather Link Designs": null,
- "Henderson Backhoe": null,
- "Hewlett Packard Enterprise": null,
"High Impact Analytics": 1100000,
- "Hoax Fish": null,
"Hobart Design Group": 33600000,
- "Horvath Software Solutions": null,
- "Hot Rock Hosting": null,
"Hotwire Design": 1400000,
"Hudson Technology Professionals": 19100000,
- "I Am Technology": null,
- "IBM": null,
- "IConnectIT": null,
"IDM Inc.": 15700000,
- "IFWORLD": null,
"IMAGEADICTION": 4900000,
"IMC Technology": 19100000,
- "IPCGPS": null,
- "ISP Canopus": null,
- "IT Savior": null,
- "Idea Creative Services": null,
"Idestini": 5600000,
"Imaginnovate": 6400000,
- "Imperial Graphics": null,
"Incite Local Mobile": 369000,
"Infiniti Systems": 2400000,
- "Infosys": null,
"Inkopolis Design Service": 6300000,
- "Innomatiq": null,
- "InnovaSIM": null,
"Innovative Systems Inc.": 551000,
- "Insight Enterprises": null,
"Integrated Axis Group": 6000000,
"Integrated Retail": 10000000,
"Inteliblue": 6700000,
"InterNext": 2400000,
- "Invincible Tech Systems": null,
- "JB Fresh Organics": null,
- "JVZOO AARIGO LIVE": null,
"Jackrabbit": 1700000,
"Jmz Software LLC.": 605000,
- "Jones Girls 3-Cs LLC.": null,
- "Josh's Web Services": null,
- "Just Your Type Branding": null,
"JusticeTrax": 5000000,
"KCI Web Design": 26500000,
"KEG Media": 3100000,
- "Kalmer Solutions": null,
- "Kara Darling Creative": null,
- "Kate Wells Design & Photography": null,
"Keetechgroup": 2400000,
- "Keltech Designs": null,
"Keystone Design": 6300000,
- "Kind Creative Co.": null,
- "Kirkham IronTech": null,
"Kitestring": 14900000,
- "KlinTech": null,
- "KonBriefing": null,
- "Kristen the Designer": null,
- "Kudzu": null,
- "LBC Studio": null,
"LOFTY LABS LLC.": 1100000,
- "LaGrone Design": null,
- "Lakeside Technology Services": null,
"Laravel": 5000000,
- "Len OToole": null,
"Level 3 Communications": 17500000000,
- "Lexamica": null,
- "Liberty Informatics": null,
- "Libertycom": null,
- "Lightning Hosting": null,
- "Ligohi": null,
- "Lindsey Wilbanks": null,
- "Lingo Technologies": null,
- "Link Light Networking": null,
- "LinkWell Solutions": null,
"Little Rock Media": 280000,
- "Little Wing": null,
- "LiveRamp": null,
- "Local Data": null,
- "Logarc": null,
- "Loopy Gypsy": null,
"Lunamark": 1400000,
- "M3 Incorporated": null,
- "MAKE Design Company": null,
- "MAKIRA": null,
- "MANATT WEB": null,
- "MAT Action": null,
- "MORETECH": null,
"MRI Contract Intelligence": 6400000,
- "Machine Mobile": null,
"Mainstream Technologies": 3500000,
- "MarDii Dsign": null,
- "Marri Desing": null,
"Martin Fed": 16900000,
- "Marty Smith Art": null,
- "Mass Vector": null,
- "Matchstick Studio": null,
"Matters in Motion": 1400000,
"Medicare Island": 6000000,
- "Meem Health": null,
"Mentor Technologies - Technology Solutions": 549000,
- "Merchant Labs": null,
"Metova": 10500000,
- "MicDrop Design Studio": null,
- "Micro Focus": null,
- "Midian Digital Creations": null,
"Millcreek Software": 629000,
- "Miller Cyber Technologies": null,
"Miovision": 35000000,
"Mmhmm": 2100000,
- "Momint": null,
"Mookstr": 5600000,
- "Moonlight Developments": null,
- "Morgan Horton": null,
"Movista": 15900000,
"MyVR": 3100000,
"NFONICS Solutions": 2200000,
- "NGramdata": null,
"NOF Technologies": 24100000,
- "NTS Innovations": null,
"NanoWatt Design": 10000000,
"Nanomech": 4400000,
- "National Cash Register": null,
- "National Soft Systems": null,
- "Natural Insight": null,
- "Nephos Integration": null,
- "Net Engine": null,
"NetGain Technologies": 47600000,
"NetTech IT Support": 1800000,
"Netsmart": 526000000,
- "New Spark Strategy": null,
- "Nile Tech Innovations": null,
- "NimStudios": null,
- "Niner Consulting": null,
- "Noel Kalmus": null,
- "NonProfit Rate": null,
- "Notably Known Marketing And Design": null,
- "NstefNet": null,
- "OZARK GLOBAL Trade Services": null,
"Old Fort Software": 861000,
"Optimal Software Development Group": 3000000,
- "Oracle": null,
"Orange 42": 1400000,
- "Ordenx": null,
- "Other World Designs and Poodles": null,
- "Outstanding Sites": null,
- "Oxley Art Graphic Design": null,
- "Ozark Analytics": null,
- "Ozark Technology": null,
- "Ozone Techno Services": null,
"PACid": 366000,
"PCSI": 4600000,
"PEAK Solutions - a Technology Solutions Provider": 2400000,
- "PINC AI": null,
"PINNACLE BUSINESS SYSTEMS": 26000000,
- "PRITNA": null,
- "PXL Business": null,
- "Palumbo.design": null,
- "Patti Worden": null,
"Pearson-Kelly Technology": 13400000,
- "Perfectly Imperfect Digital": null,
"Pinnacle IT": 42400000,
- "Pivital": null,
"Pivotal Concept": 1400000,
"Pixel Perfect Creative": 4400000,
"Poly Adaptive": 2400000,
- "PopLabSec": null,
- "Post Noctem": null,
- "Prairie Sky Guide Service": null,
"Pratum": 11200000,
- "Praxis 8": null,
"PredictHQ": 2000000,
"Preferred Office Technologies": 3500000,
- "Present Solutions": null,
"Presidio": 4400000,
- "Prime Software Solutions": null,
- "ProVision Virtual Solutions": null,
"Protech Solutions Inc.": 10500000,
"Pure Heart Studios": 3800000,
- "QMS Digital Design": null,
- "QO BOX": null,
- "QUBICS": null,
"Qbox": 3000000,
"Quadrivium": 22300000,
- "Quality Computer Consultants Inc.": null,
- "Quality Global Services Inc.": null,
- "QuikTek": null,
"Quintergy": 124000,
- "Quintero Solutions": null,
"R&R Solutions": 75000000,
- "R10 Development": null,
- "R10 Development LLC.": null,
- "RAMP iTech": null,
- "RB Graphic Design": null,
- "RECLAMATION HOUSE": null,
- "RED RIVER LOG CABINS INCORPORATED": null,
"REPL Group Part of Accenture": 42900000,
"RICEFW TECH": 464000,
- "Radix Soft": null,
- "RazorCity IT": null,
- "Razorrock": null,
- "Reason Creations": null,
- "Red Letter Solutions": null,
- "RedFoxDS": null,
- "RedLeif Systems": null,
- "Redamancy365": null,
- "Redbeard Creative": null,
- "Reformable": null,
- "Refuge Graphics & Design": null,
"Registrar . Register your .LTD": 9800000,
- "Reineck Design": null,
"Relativity Inc.": 10000000,
- "Rental Information Systems": null,
"ResMan": 16500000,
"RevUnit": 15200000,
"Richardson Roofing": 24600000,
- "RoadManTech": null,
"Robert Lane Design": 7000000,
"Rock Two Associates": 9700000,
- "Rocket Software": null,
"Rome Technologies Inc.": 19400000,
"RoyceFamily Computer Services": 10500000,
"SBSC": 1800000,
- "SEO for Growth": null,
- "SISCO DESIGN LLC.": null,
- "SMS digital": null,
- "SYS": null,
- "Salesforce in the South": null,
- "SambaPOS": null,
- "Sara Landis - Freelance Marketing Communications": null,
- "Scaled Agile DevOps": null,
- "Scoreboard Buzz": null,
- "ScriptWorks": null,
"Sebastian Tech Solutions": 7000000,
- "Segra Software Solutions": null,
"Sequretek": 3500000,
- "Serrabellum": null,
- "ServiceNow Italy": null,
"Sharefaith": 10000000,
- "Sharp Solutions": null,
- "Sharp Tek Minds": null,
"ShiftWizard": 29000000,
"ShilohNEXT": 3100000,
- "Silicon Valley Web Design & Hosting": null,
- "Silverlake Design Studio": null,
- "Simplex Software": null,
"SimpliField": 3100000,
- "Simplient": null,
"Softron": 7000000,
- "Softwyre": null,
"Soltel Tech Network": 6900000,
"SpartanTec": 6900000,
- "Spinnsol": null,
- "Sprintiva": null,
"StabiliServers": 2700000,
"Standard Computer": 1400000,
- "Stefany Web Design": null,
"Stopwatch": 5600000,
"Strategic Companies": 7500000,
- "Strato Security": null,
- "Streamline Business Software": null,
"Stronghold Data": 24800000,
- "Studio 707 Graphic Designs": null,
"Sugars International": 17500000,
- "Sunday Creative": null,
- "System Visions Web Services": null,
- "Systemtec Information Services & Technology": null,
"TEKSystems Global Services Pvt. Ltd.": 7000000000,
- "TMarieB DESIGN STUDIO": null,
- "Talent Techies": null,
"TeamLogic Inc.": 7200000,
- "Techy Junkie": null,
"Tejas Technologies": 6000000,
"Tek Trendz": 17000000,
"Telaid Industries": 80000000,
- "Terrell Rohrbach Photography": null,
"The 20 MSP": 3300000,
- "The 20.": null,
"The Accent Group": 346000,
"The Advanced System Technologies Group": 20000000,
"The Bausinger Group": 1400000,
- "The Computer Station": null,
- "The Design Verse": null,
- "The Easy Organization": null,
- "The Kendle Touch": null,
- "The MVP Connection": null,
- "The RT Creative": null,
- "The Sage Mages": null,
"The Sparks Solution": 3700000,
- "The Web Design Crew": null,
- "The Write House": null,
"Think VSS": 80000000,
"TierPoint": 405000000,
- "TimesPlusDot": null,
- "Tome Brand Studio": null,
- "Tredence": null,
- "Triple C - Design Agency": null,
- "Trout Media": null,
- "TruPhysics": null,
- "TrueView Cloud Auditing": null,
- "Tuggles Investment Realty And Auction Company": null,
"Twb Services": 36700000,
- "Tyler Technologies": null,
- "UNITED SOFT SOLUTIONS": null,
- "US-Data Recovery Fort Smith": null,
"Uncaged Creative": 22700000,
- "Unified Technology Solutions": null,
- "Uniforce Technologies": null,
- "Unique Logic Solutions": null,
"Uplink Networks": 1400000,
- "V Point Solutions LLC.": null,
- "VACCARO LUMBER COMPANY": null,
"VITEC": 10600000,
- "ValuePro": null,
- "VanLoon Writing & Design": null,
- "VanderNet": null,
- "Ventress Technologies": null,
- "Venyo App": null,
- "Verto Tech Solutions": null,
- "Vidi Design & Marketing": null,
"Vijay Software": 19000000,
- "Virtualizor": null,
- "Vision Data Spaces": null,
- "WLR Creative": null,
- "WP Shifu": null,
- "Wave Financial": null,
- "WeDiscoverData": null,
- "Web & Paper Design Co.": null,
"WebSite Warehouse": 10000000,
- "Webcraft UK.": null,
- "Websani": null,
- "Websbird": null,
"What If Creative": 8000000,
"White Rock Technologies": 2400000,
"WhyteSpyder": 10500000,
- "Wicked Analytics": null,
- "Wifidesigns": null,
- "Wipro Limited": null,
"Wired Technology Partners": 6000000,
"Wolters Kluwer": 5400000000,
- "WorkSmart LLC.": null,
"WrightCore": 8800000,
- "X Legio Partners": null,
"Xtreme Locator": 5000000,
"Yaz The Brand": 6100000,
- "Yoder\u2019s Country Cupboard": null,
- "YogiProductions": null,
"Zapshark Technologies": 26200000,
- "Zencanna": null,
"a.i. solutions Inc.": 3000000,
- "eMobileCampus": null,
"eSSETS": 4500000,
"eUnify": 60400000,
- "iCAT Solutions Inc.": 3900000,
- "iTJames - Web Design & Web Development": null,
- "skippITs": null,
- "validoc. Your digital partner.": null,
- "wpXPRESS": null,
- "za Bungo": null
+ "iCAT Solutions Inc.": 3900000
},
"California": {
- "3D International": 4000000000,
- "AAHA": 24000000,
- "ABC Supply": 12100000000,
- "ABS Capital": 65000000,
- "ADM": 94400000000,
+ "ADARA Networks": 10000000,
"ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
+ "AIGA": 2400000,
"ASUS": 19200000000,
- "AVL List": 2100000000,
+ "AVG": 200000000,
"Abc.xyz": 282100000000,
- "Abcam": 425500000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Acuity Brands": 4000000000,
- "Adventist Health": 4700000000,
- "Aera Energy": 2000000000,
- "Aeroflot": 6600000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air India": 1600000000,
- "Alhambra Unified School District": 31000000,
- "Alkemy X": 32700000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpine Electronics": 2500000000,
+ "Absolute of Sa Ambulance Service": 118100000,
+ "Accel Frontline Ltd.": 55800000,
+ "Acuant": 58100000,
+ "AdGate Media": 1000000,
+ "AddToAny": 6300000,
+ "Adentro": 35000000,
+ "Affine": 17000000,
+ "Airpush": 25000000,
"Altair Engineering": 552600000,
- "AmTrust Financial": 4700000000,
- "American Bookbinders Museum": 13000000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American Greetings": 2000000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anastasia Beverly Hills": 370000000,
- "Andes Technology": 29300000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Applied Materials": 25200000000,
- "Aramex": 1600000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "August Capital": 20000000,
- "Australian Laboratory Services": 6600000000,
+ "Amplitude": 238100000,
+ "Anaplan": 592200000,
+ "Animaker": 3000000,
+ "Anoto": 8200000,
+ "Antec": 43700000,
+ "Anthropic": 1000000,
+ "AppScale": 5000000,
+ "Appian": 447200000,
+ "Approov": 7000000,
+ "Aryaka": 25000000,
+ "Atlantic": 59500000,
+ "Aujas": 17500000,
+ "Auticon": 20000000,
+ "Avail Company": 4200000,
"Avanade": 3900000,
- "Axalta": 4100000000,
- "BBDO": 1800000000,
- "BGW Systems Inc.": 51100000,
- "BTS Group": 232600000,
- "Balyasny Asset Management": 110000000,
- "Barrick": 11900000000,
- "Barry Callebaut": 8400000000,
- "Beach Cities Transit": 10000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berry Corporation bry": 698700000,
- "Bessemer Trust": 682100000,
- "Bird Kingdom": 14200000,
+ "AvePoint": 215800000,
+ "Backblaze": 80900000,
+ "BatchMaster": 40900000,
+ "Benetech": 10600000,
+ "Big Panda": 18000000,
"Bitmovin": 30000000,
"BlackBerry": 705000000,
- "Blue California Company": 10000000,
- "Blue Coast Records": 35500000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
+ "BlackLine": 522900000,
+ "BlazeMeter": 5000000,
+ "Blippar": 6000000,
+ "Bluebeam": 69600000,
+ "Bluedot Innovation": 4300000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Brambles": 3300000000,
- "Breather Products Inc.": 15000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
+ "Boundary": 7000000,
+ "Bountysource": 2000000,
+ "Boxbe": 13700000,
+ "Braze": 298000000,
+ "Brillio": 400000000,
+ "Bubble": 7000000,
+ "Bugsense": 7000000,
+ "C3 AI": 12900000,
"CACI": 6200000000,
- "CCCERA": 33100000,
+ "CDP": 23100000,
"CDW": 23800000000,
- "CH Media": 25000000,
- "CHINT Electric": 11400000000,
- "CRH": 31000000000,
- "CSL": 1900000000,
- "California Water Service Group": 816500000,
- "Callaway Golf": 3700000000,
- "CapitaLand": 1700000000,
- "Capital Impact": 10000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Clariant Ltd.": 5500000000,
- "Clinkle": 35000000,
+ "CUJO AI": 4800000,
+ "Camara": 1800000,
+ "CapLinked": 6100000,
+ "CenterServ International Ltd.": 9000000,
+ "Ceros": 25000000,
+ "Chemaxon": 1500000000,
+ "Chronicle": 7000000,
+ "Cincom": 196800000,
+ "Cirrascale Cloud Services": 7000000,
+ "CivicActions": 20000000,
+ "Claris International Inc.": 35900000,
+ "Cloud Credential Council": 3200000,
+ "Cloud Software Group": 14600000,
+ "CloudBolt": 23000000,
+ "Cloudera": 904800000,
+ "Cloudflare": 894100000,
"Cobalt Technologies": 21100000,
+ "Code Dx": 2100000,
"CodeGear": 150000000,
- "Columbia Elementary School District": 16700000,
- "Conduent Business Services LLC.": 3900000000,
- "Conrad N Hilton Foundation": 44600000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "CooperCompanies": 3200000000,
- "CooperVision": 2200000000,
- "CoreCivic": 1900000000,
- "Corning Glass Works": 14500000000,
- "Corteva": 17100000000,
- "County of Santa Clara": 16100000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Creditcall": 100000000,
- "CrossBar Website": 18000000,
- "Cub Cadet": 350000000,
- "Cue Health": 529200000,
+ "Codeanywhere": 1000000,
+ "Codementor": 3000000,
+ "Compose": 6000000,
+ "Conversica": 35000000,
+ "Coraid": 17100000,
+ "Coralogix": 6000000,
+ "Couchbase": 148300000,
+ "Critical Software S.A.": 1100000,
+ "Crunchbase": 60000000,
"CyberPowerPC Help Center": 52800000,
- "Cyient Inc.": 575100000,
- "DENSO CORPORATION.": 43500000000,
- "DJI": 2900000000,
- "DKNY": 643000000,
- "DLA": 3600000000,
+ "Cyclomedia Technology Inc.": 4800000,
+ "Cyren": 30000000,
+ "DDN": 70000000,
+ "DNN Corp.": 9500000,
"DXC Technology Company": 14800000000,
- "Dahua Technology": 4000000000,
- "Daiwa Securities Group": 6300000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Diageo": 18800000000,
- "Dignity Health": 14200000000,
- "Dimensional Fund Advisors": 200000000,
- "Diodes": 128800000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Dnata": 1500000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Done Dusted": 28700000,
- "Doosan Group": 10500000000,
- "Downey Unified School District": 17400000,
- "Drop": 26400000,
+ "Dasient": 6000000,
+ "Datavant": 8500000,
+ "Deepgram": 5300000,
+ "DemandTec": 75000000,
+ "Diffbot": 5000000,
+ "Digital Bridge": 8000000,
+ "Digital Realty": 4700000000,
+ "Dorado Software": 10500000,
+ "DreamFactory Software": 6000000,
"Dropbox": 2300000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
+ "Dropsuite": 955000,
+ "ECI": 48000000,
+ "ECOST": 10000000,
+ "ENCORE SOFTWARE LLC.": 6600000,
"EPAM": 4500000000,
- "ESCADA MAINLINE S S.": 122400000,
"EarnIn": 46800000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edwards Lifesciences": 5400000000,
- "Egnater amps": 45100000,
- "Emerald Cloud Lab": 19300000,
- "Endress": 750000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
+ "Ebix": 991100000,
+ "Ecube Labs": 55000000,
+ "Edmodo": 15000000,
+ "Edocr": 1700000,
+ "Elasticsearch B.V.": 977800000,
+ "Endless OS Foundation": 6000000,
"Equinix": 7300000000,
- "Etihad Airways": 2700000000,
- "Evolution Fresh": 21700000,
- "Evonik Industries AG": 19700000000,
+ "Even": 12500000,
+ "Exadel": 194000000,
"FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmers Business Network": 60000000,
- "Farmers Insurance Group": 8000000000,
- "Fedrigoni": 1800000000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrovial": 7800000000,
- "FilmLight": 22000000,
- "Fincantieri - Cantieri Navali Italiani S.p.A.": 4600000000,
- "Firestone Walker": 29500000,
- "First National Bank": 1300000000,
+ "FarSite Communications Limited": 23400000,
+ "Faronics": 10000000,
+ "FastSpring Limited.": 35000000,
+ "FinancialForce": 140000000,
+ "First Databank": 70000000,
"Fiserv": 17700000000,
+ "Fivetran": 100000000,
+ "Fixya": 3500000,
+ "Flurry company": 50000000,
+ "Flutter": 10000000,
+ "Formsite": 6000000,
"Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Fremont Bank": 269900000,
- "Frette": 55700000,
- "Frontpage Mag": 10000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GILLIG": 475000000,
- "GMAC Ally Financial": 8400000000,
+ "Fotor": 7600000,
"Gandi": 42300000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gaumont": 236300000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
+ "Genies": 8000000,
+ "GeoTrust": 4000000,
+ "GestureTek": 10000000,
+ "GetAccept": 8100000,
"Getac": 887700000,
- "GiftCards": 78500000,
- "Gilead": 27500000000,
- "Godinez Fundamental High School": 20900000,
- "Graff": 340200000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Groupe SEB": 8800000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guthy-Renker": 350000000,
- "HCA Healthcare": 60200000000,
+ "Gfycat": 9000000,
+ "Gigster": 50000000,
+ "Gradescope": 3500000,
+ "Graphisoft": 93000000,
+ "Gupshup": 18200000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Hapoalim Bank": 5100000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hensel Phelps": 5700000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Horizon Therapeutics": 3700000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "IDG Ventures": 15200000,
- "IMG": 375000000,
- "Indaba Music": 14500000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
+ "Hacker Earth": 5000000,
+ "Happy Returns company": 9200000,
+ "Harmonic Inc.": 3600000,
+ "Hustle company": 5000000,
+ "IC MANAGE": 20500000,
+ "IONOS": 617800000,
+ "ISheriff": 5000000,
+ "Incognia": 5000000,
+ "Informatica": 1500000000,
+ "Ingenu": 20000000,
+ "Insightly": 40000000,
+ "Insightsoftware": 350000000,
+ "Instabug": 10000000,
"Instructure": 461100000,
- "Integra Technologies": 27300000,
- "Intrepid Travel": 10000000,
+ "Intaver": 139000,
"Intuit": 13300000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Ishida Co. Ltd.": 1200000000,
- "Italian Wikipedia": 91200000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Jewish Partisan Educational Foundation": 10300000,
- "Jinko Solar": 6300000000,
- "John Burroughs High School": 10600000,
- "Jones Day": 2400000000,
- "Journeys company": 8600000,
- "June Oven": 28500000,
- "K&N Engineering": 138700000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
+ "Jacobi Inc.": 8500000,
+ "Jive Software": 250000000,
+ "Jungo": 1800000,
+ "Kajabi": 8300000,
"Kareo": 71400000,
- "Katerra": 1800000000,
- "Keller Rohrback": 39800000,
- "Kemet Electronics Services": 1600000000,
- "Kennedys Law": 284000000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kmart Corporation": 6000000000,
- "Kongsberg Gruppen": 3200000000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L'Observatoire International": 21700000,
- "L-Acoustics": 202500000,
- "LA Cleantech Incubator": 235000000,
- "LANDBANK": 9000000,
- "LEGO": 8100000000,
- "LGT Bank AG": 2300000000,
- "Ladenburg Thalmann": 1500000000,
- "Lambda Legal": 11600000,
- "Larsen & Toubro Infotech": 2100000000,
- "Last Chance for Animals": 16300000,
- "LeTip International": 12700000,
- "Leaf Group": 231000000,
- "Legend Films Inc.": 11100000,
- "Leggett & Platt": 5300000000,
- "Leica Camera": 429400000,
- "Leidos Holdings Inc.": 13700000000,
+ "Kenandy": 24100000,
+ "Kinara": 2000000,
+ "LatentView Analytics Corporation": 69200000,
+ "LaunchDarkly": 36000000,
"Lenovo": 66000000000,
- "Leonard Green": 20600000,
- "Leoni Special Cables": 5400000000,
"Level 3 Communications": 17500000000,
- "Lexar": 456000000,
- "Lexmark": 3600000000,
- "Liberty Mutual": 48200000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Life360": 16100000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Liveops": 80000000,
- "Livestream": 26000000,
- "Llaollao": 12000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Luciano Barbera": 51000000,
- "Lux Capital": 14100000,
- "MODERN TIMES GROUP": 586400000,
- "MOL company": 4900000000,
- "MSA Safety": 1500000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "MUFG": 50700000000,
- "MYKITA": 50000000,
- "Magellan GPS": 26600000,
- "Magnite": 145200000,
- "Mandarin Oriental": 1100000000,
- "Mapp Biopharmaceutical": 10600000,
- "Marlow Industries": 1500000000,
- "Mass Appeal": 22200000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Mechanix Wear Canada Inc.": 12900000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "MegaVision": 100000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Mettler-toledo Inc.": 3900000000,
- "Micron Technology": 30800000000,
- "Mirati": 11800000,
- "Mixografia": 10000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
+ "Lever company": 20000000,
+ "Locus Technologies": 7000000,
+ "Logikcull": 27000000,
+ "Logitech": 5500000000,
+ "Loom Inc.": 15000000,
+ "LumenVox": 10000000,
+ "MainConcept": 16500000,
+ "Mapbox": 100000000,
+ "Markmonitor": 80000000,
+ "Matroid": 2300000,
+ "McAfee": 2200000000,
+ "Medallia": 477200000,
+ "Meedan": 1700000,
+ "MessageMe": 1800000,
+ "Metaweb": 10000000,
+ "Mi9 Retail": 36200000,
+ "Mirakl": 100000000,
+ "Miro Technologies": 28000000,
+ "Mitchell 1": 170000000,
+ "Miva": 9200000,
+ "MoVoxx": 7000000,
+ "Mobile Roadie": 1100000,
"Moloco": 110000000,
+ "Monetate": 35000000,
+ "MongoDB": 898800000,
"Monotype": 304000000,
- "Mood Media": 475100000,
- "Morrison Foerster": 1200000000,
- "Mothers2mothers": 10200000,
- "Mountain House High School": 18800000,
- "Move": 473000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NCSOFT": 2200000000,
+ "Movial": 5000000,
+ "NComputing Co. LTD.": 33000000,
"NETSOL Technologies": 56500000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "Nady Systems Inc.": 12000000,
- "Napster": 113000000,
- "National Oilwell Varco": 7200000000,
- "National Steel and Shipbuilding Company": 480000000,
- "Natsume Company": 27400000,
- "Neiman Marcus": 2600000000,
+ "Namecheap": 149000000,
+ "Nanotronics": 226900000,
+ "Nervana": 6000000,
"NetApp": 6500000000,
- "New Harbinger": 14200000,
- "Nikon": 4900000000,
- "Niman Ranch": 65000000,
- "Nium": 14500000,
- "Nobel Biocare": 890100000,
- "Novo Nordisk": 22900000000,
- "ON Semi": 8300000000,
- "OXXO": 150000000,
- "Obihai Technology": 12000000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Omega": 163000000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
- "Orange Business": 9600000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
+ "NetObjects": 26700000,
+ "NextLabs": 3400000,
+ "Nextbio": 3000000,
+ "Nividous": 34400000,
+ "Norton": 1300000000,
+ "NowSecure": 15300000,
+ "ON24": 196300000,
+ "OneTrust": 180000000,
+ "Onfleet": 11000000,
"PACE Anti-Piracy": 20300000,
- "PCB Bank": 105100000,
- "Pacific Dental Services": 1400000000,
- "Pacific Gas": 21600000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Panda Restaurant Group": 3500000000,
- "Paramount": 32300000000,
- "Parker Hannifin": 15900000000,
- "Penzeys": 26000000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "Phillips Edison": 496900000,
+ "PGP Corporation": 22600000,
+ "PSSC Labs": 5200000,
+ "Padlet": 1000000,
+ "Panda Security": 105000000,
+ "Paramount Defenses": 310000,
+ "Paylocity Corporation": 923400000,
+ "Peel Technologies": 5000000,
+ "Persona Identities Inc.": 6900000,
+ "Phocas": 50000000,
"Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planetary": 12000000,
- "Plum Market Inc.": 26000000,
- "Porsche France SAS.": 34300000000,
- "Premiere Networks Inc.": 30000000,
- "Principal Financial Group": 13900000000,
- "Printronix": 850000000,
- "ProFlowers": 209100000,
- "Proscan": 4000000000,
+ "PlanGrid": 85300000,
+ "Postman": 45000000,
+ "Practice Fusion": 190000000,
+ "Praxis EMR": 80000000,
+ "PriceGrabber Inc.": 8000000,
+ "PrivateCore": 12700000,
+ "Procore": 664300000,
"Publicis Sapient": 2700000000,
+ "Pythian": 100000000,
+ "Pyze": 5000000,
+ "QAD Allocation": 12000000,
+ "QCT": 388000,
"QLogic": 455900000,
- "Qantas": 6300000000,
- "Qatalyst": 100000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "RTL": 7500000000,
- "Rabobank": 11700000000,
- "Radio Flyer": 26100000,
- "RealD": 150000000,
- "Redwood Materials": 35000000,
- "Respawn Entertainment LLC.": 23400000,
- "Rickenbacker": 35000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Rohde & Schwarz": 2600000000,
- "Rolls-Royce": 15300000000,
- "S&P Global": 8200000000,
+ "Qualtrics": 1400000000,
+ "Qualys": 468700000,
+ "Quantum Alliance": 402600000,
+ "QuickSchools": 9900000,
+ "Quicksilver": 7000000,
+ "RadiumOne": 115100000,
+ "Redgate": 67700000,
+ "Remind": 20100000,
+ "Replicon company": 50000000,
+ "Reputation": 18500000,
+ "Rescale": 35000000,
+ "Retool": 5000000,
+ "Revionics Inc.": 46600000,
+ "RichRelevance": 87500000,
+ "RightSignature": 11000000,
+ "RobotLAB": 190000,
+ "Rockset Inc.": 3000000,
"SAP": 33500000000,
- "SC Johnson": 11000000000,
- "SCA Health": 2000000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMBC Group": 40800000,
- "SMUHSD": 21200000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SAP Ariba": 1600000000,
+ "SOFTONIC": 20000000,
+ "SYSPRO": 130000000,
+ "SafeBreach": 9000000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Diego Country Club": 10600000,
- "Santa Barbara Police Department": 17600000,
- "Sapphire Ventures": 78100000,
- "Sauce Labs": 70000000,
- "Save the Children USA": 835900000,
- "Scality": 69000000,
- "Schlumberger Limited": 27800000000,
- "Scotiabank": 14900000,
+ "SageTV LLC.": 39200000,
+ "Sama Group": 15000000,
+ "Samsara": 614100000,
+ "Scala": 120000000,
"Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Select Medical": 6300000000,
- "Shakey's": 112000000,
- "Sharp Global": 20900000000,
- "Sharp HealthCare": 3800000000,
- "Shiseido": 8200000000,
+ "SecureDrive": 8000000,
+ "Semantic AI": 8000000,
+ "ServiceMax": 180000000,
+ "ShareThis": 80000000,
"Shopkick": 40000000,
- "Sierra Ventures": 11400000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Skyhook": 17000000,
- "SmartDrive Systems": 120000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
- "Social Capital": 10400000,
- "Sodexo": 22300000000,
+ "Shopmonkey": 6100000,
+ "Shoreline Software Inc.": 2000000,
+ "Sibers Group Ltd.": 35000000,
+ "Signifyd": 150000000,
+ "SingleStore": 100000000,
+ "Sitejabber": 19800000,
+ "Slack": 1100000000,
+ "SlideShare": 25000000,
+ "Snowflake": 1900000000,
"Solace": 65000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spanx LLC.": 400000000,
- "Stanadyne": 23300000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stitch Fix": 2100000000,
- "Student Transportation of America": 637200000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunCore Corporation": 43400000,
- "Supermicro": 3800000000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
+ "Sonata Software": 853800000,
+ "SonoSim": 14000000,
+ "Sourcegraph": 12000000,
+ "Spire Global": 72900000,
+ "Splunk": 3300000000,
+ "Spokeo": 86000000,
+ "Stackify": 3300000,
+ "Stamen": 2300000,
+ "StatMuse": 4500000,
+ "StorSimple": 2200000,
+ "Streamwise": 1500000,
+ "Streetprices": 6000000,
+ "Sumtotal Systems LLC.": 120000000,
+ "Swiftype Inc.": 6000000,
"Symbotic": 30000000,
- "Syngenta": 16700000000,
"Synnex": 57900000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "THQ Nordic": 261900000,
- "TP-Link": 2200000000,
- "TVA": 13000000000,
- "Taiwan Daily": 13700000,
- "Tandem Diabetes": 790700000,
- "Tatung": 10000000,
- "Taylor Farms": 2800000000,
- "Technetics Group": 100000000,
- "Teck Resources": 12600000000,
- "Teneo": 400000000,
- "Tessenderlo": 2400000000,
- "Tetra Pak": 11100000000,
- "Thales Group": 18000000000,
- "The Art of Shaving": 45000000,
- "The Hillman Group - Corporate Headquarters": 1500000000,
- "The Legal Aid": 18000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Save Mart Companies": 4800000000,
- "The Scoular Company": 4000000000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thermaltake": 112500000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Toys for Bob Inc.": 21800000,
- "Tracerco": 47500000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
+ "Syxsense": 15000000,
+ "TabletKiosk": 3700000,
+ "Taboola": 1400000000,
+ "Tanium": 525000000,
+ "Tenor": 6000000,
+ "Tetrate": 1200000,
+ "The Foundry Visionmongers": 46000000,
+ "The Org company": 2000000,
+ "The Society of Illustrators of Los Angeles": 450000,
+ "TigerDirect": 200000000,
+ "Timesys": 6200000,
+ "Tinkercad": 7000000,
+ "TixTrack": 20200000,
+ "Tom's Hardware": 6600000,
+ "Topcoder Inc.": 34000000,
+ "Toptal": 200000000,
+ "Trace3 LLC.": 1400000000,
+ "TrackR": 2000000,
+ "Trellix": 483500000,
"True Digital Security": 14000000,
- "Turtle Beach": 248700000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "USCIS": 15700000,
+ "Truviso": 3000000,
+ "Turbot": 8000000,
+ "Tuya": 302100000,
+ "UNANIMOUS AI": 3000000,
"UberConference": 15000000,
- "Ultimate Ears": 47500000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "Upromise Inc.": 10700000,
- "Upwork": 618300000,
- "VCA Inc.": 1800000000,
+ "UniSoft": 39900000,
+ "Uniphore": 19500000,
+ "Upstart Holdings": 1100000000,
+ "UserVoice": 6900000,
+ "VAST Data": 100000000,
"VMware": 13200000000,
- "Valens": 70700000,
- "Vallarta Supermarkets": 24400000,
- "Vantiva": 3500000000,
- "Verifone": 1800000000,
+ "Valarm": 4200000,
+ "Vercel": 7000000,
"Verint Systems": 899800000,
- "Vestas": 15500000000,
- "Victoria's Secret": 5400000000,
- "Videndum": 25000000,
- "Viking Cruises": 1300000000,
- "Virgin Music": 39000000,
- "Virtium": 50000000,
- "Virtusa": 1300000000,
- "Visy": 5000000000,
- "Voya Financial": 6900000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Wahoo's": 69100000,
- "Western Digital": 13000000000,
+ "Virsto": 21100000,
+ "Vuze Inc.": 6600000,
+ "WANdisco": 10500000,
+ "WOKcraft": 2700000,
+ "WORKetc": 7000000,
+ "WP Engine": 200000000,
+ "Webroot Inc.": 250000000,
"Whalerock Industries": 25000000,
- "Whip Media": 10000000,
- "WinCo Foods": 7700000000,
- "Wine Institute California": 10000000,
+ "Wikihow": 2400000,
+ "Willow Garage": 10000000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
"Woopra": 11000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "Zoetis Inc.": 8000000000,
- "Zynga": 2900000000,
- "eBay Inc.": 21700000,
- "iHire": 15900000,
- "inDrive": 242000000
+ "Work & Co.": 58400000,
+ "Yellow AI": 719000,
+ "Yellowbrick Data": 23500000,
+ "Yodlee": 190000000,
+ "Yubico": 50000000,
+ "Zadara": 35000000,
+ "Zeobit": 1100000,
+ "cloudHQ": 5700000,
+ "eRacks": 3000000,
+ "iXsystems": 100000000,
+ "pCloudy": 3400000,
+ "parcelLab": 12500000
},
"Colorado": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAHA": 24000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "AC Golden": 10000000,
- "ACE Cash Express": 600000000,
- "ACI Worldwide": 1400000000,
- "ADB": 450000000,
+ "66degrees": 13100000,
+ "A pplied P roduct": 18400000,
+ "A-Jour Net": 21200000,
+ "ACCI Copy": 12900000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AIME": 23400000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ARA": 289500000,
- "Accion U.S. Network": 13900000,
- "Ace Hardware": 7800000000,
- "Ack-Mac": 30000000,
- "Active Interest Media": 200000000,
- "Acuity Brands": 4000000000,
- "Adams 14": 58500000,
- "Advantage Rent a Car": 150000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Furniture Warehouse": 648400000,
- "American General Media": 41900000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Apartment List": 37300000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Asian Pacific Development Center": 42700000,
- "Aspen Institute For Behavior": 152100000,
- "At Home store": 1700000000,
- "Ateme S.A.": 91800000,
- "Atlantic Power": 271200000,
- "Atria Senior Living": 778500000,
- "Aurora Organic Dairy": 30100000,
- "Australian Laboratory Services": 6600000000,
- "AvalonBay Communities": 2000000000,
- "Avvo": 29900000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Beckhoff": 1100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berry Corporation bry": 698700000,
- "Bessemer Trust": 682100000,
- "Bio-Rad": 2800000000,
+ "AIM Consulting": 64000000,
+ "AJ's Security LLC.": 25700000,
+ "ALLOut Security": 25200000,
+ "ASP Technologies": 11300000,
+ "AUSAware": 15400000,
+ "Abacus Solutions": 17200000,
+ "AbsenceSoft": 10200000,
+ "Absolute Performance": 10700000,
+ "Accedere": 10000000,
+ "Accuer Inc.": 10000000,
+ "Ace Reader": 14400000,
+ "Achieve Web Design & Internet Marketing": 13500000,
+ "Actieve": 30200000,
+ "Activity Software": 14600000,
+ "Adaptive Tactics": 26000000,
+ "Addons Inc.": 22900000,
+ "Adeena LLC.": 30000000,
+ "Adjacent Solutions": 15500000,
+ "Advanced IT Solutions": 11900000,
+ "Advantage Integrated Solutions": 32500000,
+ "Aellius": 13600000,
+ "Aerowebworks": 24300000,
+ "Airpush": 25000000,
+ "Alert Rental": 10000000,
+ "Alexander Smith Design": 11700000,
+ "Alliance Storage Technologies": 29300000,
+ "Amnet Inc.": 24000000,
+ "Anchovy Software": 31600000,
+ "Andrew Pargeter & Associates": 21400000,
+ "Another Color": 40500000,
+ "Apiva": 21600000,
+ "AppColl": 12000000,
+ "Application Solution Providers": 12200000,
+ "Applied Software GRAITEC Group": 14600000,
+ "Apptio": 342500000,
+ "Archetype 5": 24700000,
+ "Arks Tek": 28400000,
+ "Artblosser": 26400000,
+ "Artwork Portfolio": 29200000,
+ "Arvada Technologies": 45400000,
+ "Ascolta Training": 10100000,
+ "Aspensoft": 21100000,
+ "Aspenware": 17500000,
+ "Auction Systems": 17100000,
+ "Aureus Tech Systems": 10800000,
+ "Automox": 65000000,
+ "AvePoint": 215800000,
+ "BOLDfx": 10100000,
+ "BRTT": 10900000,
+ "BTS Wireless Inc.": 22300000,
+ "Bersearch": 29400000,
+ "BillingPlatform": 20000000,
+ "BirdDog Partners": 10300000,
+ "BiselTech": 17700000,
+ "BitFlip": 24600000,
"Bitmovin": 30000000,
- "Black Bear Diner": 18700000,
+ "Bits In Glass": 14000000,
+ "Black Swan Image Works": 13700000,
+ "BladeRoom": 10000000,
+ "Blend360": 19200000,
+ "BlooGoo": 13400000,
"Bloomfire": 11000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
+ "Blue Acorn iCi": 43600000,
+ "Blytheco": 31200000,
+ "Bolder Technology": 32800000,
"Booz Allen": 8800000000,
- "Borro": 20000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Brain Injury Association of America": 10000000,
- "Breckenridge Brewery": 30000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "Burton Snowboards": 400000000,
+ "Boulder Labs": 13600000,
+ "Boyum IT Solutions": 22700000,
+ "Bright Rain": 26800000,
+ "BrightStores": 13000000,
+ "Bross Group": 15600000,
+ "Builder Consulting Group": 10800000,
+ "C'motion": 10000000,
"CACI": 6200000000,
- "CBA The Association for Christian Retail": 10000000,
- "CNN Films": 1500000000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Can-Am Off-Road": 6300000000,
- "Candlewick": 15000000,
- "Carroll County Public Schools": 378500000,
- "Cascade Investment Group": 13200000,
- "Cellular Sales": 1700000000,
- "Cerner": 5800000000,
- "Cherry Creek School District": 15000000,
- "Chicago Swordplay Guild": 17600000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clovis Oncology": 145000000,
- "College Hunks Hauling Junk": 100000000,
- "Comfort Dental": 17800000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Core-Mark": 17200000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Craftsy": 26900000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crispin Porter Bogusky": 175000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "D. E. Shaw": 625000000,
- "DFCU Financial": 179900000,
- "DISA": 120000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Davis Graham & Stubbs": 38200000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
+ "CEC Services": 22100000,
+ "CEI America": 92400000,
+ "CENSHARE": 40000000,
+ "CMIT Solutions": 60000000,
+ "Cadamier": 13300000,
+ "Cartegraph": 25000000,
+ "Castillo Creations": 23000000,
+ "Celero Partners Corporation": 48500000,
+ "Centella Consulting": 11900000,
+ "ChatLingual": 15000000,
+ "Chiocca": 11700000,
+ "Choice Property Brokers Ltd.": 17700000,
+ "Cimarron Design": 26800000,
+ "Clarktech Group": 26900000,
+ "ClearShark": 40000000,
+ "Clearlight Communications": 16000000,
+ "Climb Channel Solutions": 510000000,
+ "Cloudhesive": 11300000,
+ "Cloudrise": 16500000,
+ "Coderiver": 14700000,
+ "Cold Creek Solutions": 29400000,
+ "Coldwell Banker Res. Brokerage": 268500000,
+ "CommunityViz": 24700000,
+ "Concepts Unlimited": 27400000,
+ "Contentsquare": 125000000,
+ "Convercent": 22000000,
+ "Convergent Communications": 311800000,
+ "Counter Trade": 37300000,
+ "Credera": 28300000,
+ "Crossroads Pub": 19100000,
+ "Crownpeak": 19200000,
+ "CyberSecOp": 10000000,
+ "Cybertech Systems": 18100000,
+ "DCNC": 29000000,
+ "DDN": 70000000,
+ "DNA Medical Software": 13500000,
+ "DOS Integrators": 36000000,
+ "DS Softech": 10000000,
+ "DSG Systems": 12400000,
+ "DSI Tech": 37200000,
+ "Dan Ahrens Design": 17800000,
+ "Data Driven Enterprises": 12300000,
+ "Data Ductus": 17600000,
+ "Datamine": 32000000,
+ "David Herron": 20100000,
"Deacom LLC an ECI Software Solutions Company": 50000000,
- "Deep Foods": 58000000,
+ "Dealer Information Systems": 30000000,
+ "Deeply Digital": 26800000,
"Deepwatch": 120000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Denbury": 1700000000,
- "Denver International Airport": 591800000,
- "Department of Energy": 190000000,
- "Dexter Industries": 11400000,
- "Dignity Health": 14200000000,
- "DirecTV Stream": 33300000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "E Trade": 2900000000,
- "EDA": 10000000,
- "EDP Renovaveis": 2100000000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
+ "Delphix": 142000000,
+ "Denovo Ventures LLC.": 74000000,
+ "Denver SEO Services": 23500000,
+ "Design Divine": 10700000,
+ "Design Studio Aspen2": 46400000,
+ "DesignStudio Network": 27300000,
+ "DevelopmentDigital Assets Inc.": 14600000,
+ "Deyton Group": 11800000,
+ "Digital Bridge": 8000000,
+ "Digital DataComm": 16400000,
+ "Digital Design Group": 24300000,
+ "Discount Attention Getters": 10000000,
+ "Discountmountainsoftware": 12600000,
+ "DisplayGround Development": 14600000,
+ "Distilled Art & Design": 20400000,
+ "Drawbridge": 15400000,
+ "E Central": 25600000,
+ "E fense": 27800000,
+ "EVS LLC.": 10000000,
"Ecube Labs": 55000000,
- "Edelman Financial Engines": 80000000,
- "Elavon": 550000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elevance Health": 153200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
+ "Elasticsearch B.V.": 977800000,
+ "Envision Technology Partners": 30200000,
"Equinix": 7300000000,
- "Estes Rockets": 30600000,
- "Ethan Allen": 845000000,
+ "Etlon": 12200000,
"Exadel": 194000000,
- "Express Arrow": 12300000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmer Brothers": 469200000,
- "Fathom Events": 80000000,
- "Federal Mine Safety and Health Review Commission": 11300000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
+ "Faction Inc.": 21800000,
+ "FileInvite": 16500000,
"Fiserv": 17700000000,
"Fivetran": 100000000,
- "Flexport": 3300000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
+ "Flair Data Systems": 35000000,
+ "Flatirons Technology Group": 27100000,
+ "Flex Systems": 10000000,
+ "Floyd Dog Design": 20100000,
"Formstack": 38000000,
- "Fort Collins Coloradoan": 12000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franco-Nevada": 1300000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
"FreeWave": 26600000,
- "Frette": 55700000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G4S Global": 9400000000,
- "Galileo Camps": 21000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gates Family Foundation": 17900000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gibson Brands Inc.": 366600000,
- "Giordanos": 175000000,
- "Glaston Oyj Abp": 206900000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Gogo Inflight Internet": 370100000,
- "Golden Minerals": 28200000,
- "Golder Associates Inc.": 1000000000,
- "Good Sam Club": 19800000,
- "Goodman Global Group Inc.": 1900000000,
- "Graebel": 1500000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Greeley West High School": 24600000,
- "Greeley-Weld County Airport": 13200000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
+ "Fresh bytes design": 15500000,
+ "Front Row Solutions": 10000000,
+ "Full Circle Creative": 27400000,
+ "FullContact": 20000000,
+ "Geneva Technical Services": 31100000,
+ "GeoSpatial Experts": 11700000,
+ "GetSwift": 31100000,
+ "GigaSpan Solutions": 32100000,
+ "Gika Inc.": 18400000,
+ "Global-D Solutions": 12700000,
+ "Gordon Laurens": 14400000,
+ "Granicus": 145000000,
+ "Granite Software": 40900000,
+ "Green Drake": 12700000,
+ "Greystone Technology": 44700000,
+ "GroundWorksDesign": 16400000,
+ "Guthrie CAD GIS Software Pty Ltd.": 12400000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haggar": 300000000,
- "Hall Render": 10700000,
- "Halliburton": 19000000000,
- "Hanmi Bank": 258600000,
- "Harbor Freight": 5000000000,
- "Harkins": 13700000,
- "Haworth": 2300000000,
- "Hawthorne Books": 17200000,
- "Haynes and Boone": 15800000,
- "Hazelden Betty Ford": 186300000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Helmerich & Payne": 1400000000,
- "Hemlock Society": 10000000,
- "Hensel Phelps": 5700000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Honeybee Robotics Spacecraft Mechanisms Corporation": 27000000,
- "Hudson": 2000000000,
- "Hudson River Trading": 35000000,
- "Hunter Douglas Group": 4600000000,
- "Husk Power Systems": 29000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "ILLFONIC Inc.": 23900000,
- "Independent Energy Partners": 19500000,
- "Indiana Public Retirement System": 6200000,
- "Ingredion Incorporated": 7200000000,
- "IntelePeer": 112500000,
- "Inventors": 10000000,
- "Iofina": 29700000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "JUWI": 57500000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
+ "Hacker Factor": 22000000,
+ "Harris Data Integrity Solutions": 25000000,
+ "Hills at Piney Creek": 24200000,
+ "Hilltop Consulting": 27400000,
+ "Hoke Digital Llc.": 11400000,
+ "Housecall Pro": 36400000,
+ "I.T. Guru": 31300000,
+ "ICITA": 22100000,
+ "IQware": 35000000,
+ "ISSQUARED": 26900000,
+ "Ibis Computer Consulting Inc.": 20300000,
+ "Idea Shop": 23100000,
+ "Ignite Tech": 20000000,
+ "Illumiti": 95000000,
+ "Incite LLC.": 12600000,
+ "Independent Software": 17600000,
+ "Infogen": 25000000,
+ "Integral Data Solutions": 44800000,
+ "Integrative IT": 24100000,
+ "Intellectyx": 13400000,
+ "IntenseDebate": 10000000,
+ "InterArts": 14700000,
+ "International Revenue": 24400000,
+ "Intersystems": 24000000,
+ "IsupportU": 30200000,
+ "Isys Technologies": 36100000,
+ "Itransition": 38000000,
+ "J.T. Excavating": 33100000,
"Jive Software": 250000000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jord International": 97000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan Financial": 12000000,
- "Kemet Electronics Services": 1600000000,
- "Kendall Hunt": 37400000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "L. G. Everist": 10000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Landmark Worldwide": 29100000,
- "Lazy Dog Restaurants": 210000000,
- "LeTip International": 12700000,
- "Leadville Colorado and Southern Railroad": 21900000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Juice Creative Graphic Design": 10000000,
+ "Julien Design Studio": 52400000,
+ "KB Legacy Designs": 12000000,
+ "KHH Tech": 28300000,
+ "Kabotie Software": 12000000,
+ "KeepTraK": 34200000,
+ "Kernel Drivers": 33400000,
+ "Keyhole Software": 16900000,
+ "Kin Carta": 80000000,
+ "Korem": 13600000,
+ "Langr Software Solutions": 15400000,
+ "Laurie Anderson": 21400000,
+ "Learning Pool": 25500000,
"Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Loro Piana": 842800000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Main Event": 678000000,
- "MarkWest": 2400000000,
- "Marlow Industries": 1500000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Meade": 16100000,
- "MediaNews Group": 75100000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Moleskine": 199100000,
- "Molson Coors": 8100000000,
- "Molycorp Inc.": 460400000,
- "Money Management": 30000000,
- "Morrison Foerster": 1200000000,
- "Mountain States Legal Foundation": 15700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NABET-CWA": 13400000,
+ "Lincoln Loop": 10000000,
+ "Lindhunde Dog Training": 22300000,
+ "Lindsay Berger": 10700000,
+ "Linearmagnetics": 15300000,
+ "Lineup Systems": 14500000,
+ "Linko Technology": 16300000,
+ "Linux ETC": 18800000,
+ "Localist": 38300000,
+ "Logical Steps": 35000000,
+ "Long View Systems": 400000000,
+ "LunarG": 6000000,
+ "MAG Softwrx": 11200000,
+ "MCA Connect": 50000000,
+ "MODEL Software": 29900000,
+ "MacGPS Pro": 31400000,
+ "Macsystem": 20200000,
+ "MainStreet Applications Inc.": 23200000,
+ "Makeena": 17500000,
+ "Managed Business Solutions": 32700000,
+ "Masabi Limited": 3500000,
+ "Mathcom": 25200000,
+ "Mayo Software": 15900000,
+ "Mecca Hosting": 10300000,
+ "Medical Design Studios": 38200000,
+ "MeetingOne": 13500000,
+ "Melissa Rich": 14500000,
+ "Meriplex": 20000000,
+ "Method Inc.": 18400000,
+ "MicroBlue Software": 15700000,
+ "MindShare HDV": 14900000,
+ "Miovision": 35000000,
+ "Mirror The Life": 29800000,
+ "Mirway": 27000000,
+ "Mission Critical Partners": 10000000,
+ "Moogsoft": 37000000,
+ "Morris Design": 29700000,
+ "Moving Pixels Creative": 10300000,
+ "NAVSYS": 21300000,
"NETSOL Technologies": 56500000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "National Association of Biology Teachers": 20500000,
- "National Christian Foundation": 27800000,
- "National Day of Prayer": 29000000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
- "Nest Seekers": 551700000,
+ "NICHEZ": 11800000,
+ "NTT Global Networks": 70000000,
+ "NTegrity Networks": 13900000,
+ "Nelson's Design": 23000000,
"NetApp": 6500000000,
- "NetJets": 816000000,
- "New World Interactive": 50000000,
- "Nikola Corporation": 44000000,
- "Niman Ranch": 65000000,
- "Niner bicycle company": 11000000,
- "NuStar Energy": 3200000000,
+ "NetServ Applications": 70000000,
+ "Nettech Enterprises": 63200000,
+ "New Media One": 16400000,
+ "New Moon Multimedia": 36100000,
+ "Nex Gen Technologies Inc.": 14200000,
+ "NexTec Group": 40000000,
+ "Niwot Networks": 30600000,
+ "Nuspire": 31200000,
"ON24": 196300000,
- "Odell Brewing": 32000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ogilvy": 387500000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "OtterBox": 650000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "PPLD": 10000000,
- "PRINOTH AG": 76000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Packers Plus": 240000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Partners Group": 2900000000,
- "Patagonia": 1000000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "Perella Weinberg Partners": 631500000,
- "Perkins&Will": 670300000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
+ "One Call Networks": 24300000,
+ "Open Design": 14000000,
+ "Opteamix": 16200000,
+ "Organica Research": 29500000,
+ "Original Code Consulting": 30600000,
+ "Orion Registrar": 25200000,
+ "Ouray Canyoning Festival": 27000000,
+ "Outlaw Art": 29300000,
+ "Output Services": 35600000,
+ "PERSICHETTI JOHN": 12300000,
+ "PH Associates LLC.": 26800000,
+ "PIXI3": 30200000,
+ "PROMATIS": 11300000,
+ "PSImetrix": 36200000,
+ "Packet Storm": 6000000,
+ "Party Track": 18600000,
+ "Pathlock": 32100000,
+ "Pax8": 283000000,
+ "Perfection Data": 34200000,
+ "Performance Associates": 28600000,
+ "Phi design": 16700000,
+ "PhoenixCTI": 23200000,
+ "Phonz": 64800000,
+ "Pinnacle Cart": 22300000,
+ "Pixel Graphics": 14800000,
+ "Planet Technologies": 11600000,
+ "PointMan": 13000000,
+ "PortalTown": 14100000,
+ "Prakat": 23800000,
+ "Precision Pages": 24400000,
+ "Pressplay Computer Consultants": 26800000,
+ "PriceAdvantage": 20000000,
+ "Process Innovations": 17800000,
+ "ProofID": 10200000,
"Publicis Sapient": 2700000000,
"QAD Allocation": 12000000,
- "Quaker Houghton": 1900000000,
+ "QeH2": 14700000,
"Quantum Alliance": 402600000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "RTD - Denver": 1100000000,
- "Rad Power Bikes": 138000000,
- "Rapid City Regional Airport": 23100000,
- "Raven Rotorcraft": 32500000,
- "RealD": 150000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Riverside Partners": 14400000,
- "Rock River Arms": 50200000,
- "Rocky Mountaineer": 185000000,
- "Rosetta Stone": 182700000,
- "Royal Gold": 566700000,
- "S&P Global": 8200000000,
- "SAF Tehnika": 10700000,
+ "R.stoeber": 13000000,
+ "RC Consulting LLC.": 16400000,
+ "RTL Networks": 34500000,
+ "RainTech": 19700000,
+ "Randall Consulting": 34800000,
+ "Real Time Solutions": 10000000,
+ "Red Canary": 100000000,
+ "Red Hen Systems": 36300000,
+ "Redpoint Solutions": 16800000,
+ "Reflex Integrated": 12600000,
+ "Reliable IT Healthcare": 60000000,
+ "ResellerMoney": 21900000,
+ "Rheal": 35000000,
+ "Richard Price Design": 17100000,
+ "RoboRealm": 30800000,
+ "Rock Solid Design": 10800000,
+ "Rocksolid Technologies": 26000000,
+ "Rocky Mountain Grow Lights": 14700000,
+ "Rothwell Group": 11000000,
+ "Royal Roofing 303 New Roof": 30400000,
+ "Rusty Pistol Sporting LLC.": 31300000,
+ "S4 Inc.": 16500000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SM Energy Company": 3500000000,
- "SPACE MICRO INC.": 26000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
+ "SGV International LLC.": 10000000,
+ "SOLUTE": 25000000,
+ "Sacred Mountain Retreat": 11700000,
+ "Sagewing": 19300000,
"Sapiens": 382000000,
- "Schmitt Music": 20600000,
+ "Scomo Design": 11500000,
+ "Scriptek": 10300000,
"Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shea Properties": 293900000,
- "Shoe Carnival": 1300000000,
+ "Secure64": 45000000,
+ "Seidor": 650000000,
+ "Seneca Software & Solar": 21400000,
+ "SentricHR": 30000000,
+ "Seris Solutions": 10700000,
+ "Sev1Tech": 45600000,
+ "Shadow Pc.": 22000000,
"Shopkick": 40000000,
"Sibers Group Ltd.": 35000000,
- "Signarama": 55000000,
"Signifyd": 150000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "SilverDoor Apartments": 35000000,
- "Simplot": 6000000000,
+ "Silicon Mountain Memory": 50500000,
+ "Silver Earth": 31400000,
+ "Siri InfoSolutions": 17500000,
+ "Sirius Onsite Support": 17700000,
+ "Six Leaf Design": 40800000,
+ "Skye Road Systems": 10300000,
"Slack": 1100000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snowboard Magazine": 38100000,
+ "Smart Data Center": 10000000,
+ "Smartsheet": 712000000,
+ "SnapMonkey": 18800000,
"Snowflake": 1900000000,
- "Sodexo": 22300000000,
+ "SoftTech Design": 28900000,
+ "Softchoice": 957500000,
+ "Software Verify": 15000000,
+ "Solid Software": 17200000,
"Sonata Software": 853800000,
- "Sonoco": 6500000000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
+ "Spc server": 37700000,
+ "Spectra Logic": 98000000,
"Spire Global": 72900000,
"Splunk": 3300000000,
- "Sprague Energy": 4300000000,
- "St. Vrain Valley Schools": 25900000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stewart & Stevenson": 367000000,
- "Stoney River": 10300000,
- "Student Transportation of America": 637200000,
- "Suit Supply France SARL": 350000000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sunnova": 346700000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
- "T. Rowe Price": 6500000000,
- "TGS": 716600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Taft Stettinius & Hollister": 100000000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Telluride Regional Airport": 21200000,
- "Telluride School": 19600000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Gores Group": 272000000,
- "The Hillman Group - Corporate Headquarters": 1500000000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "The United Services Automobile Association": 35600000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
+ "Stallion is": 1500000000,
+ "Standing Cloud": 25500000,
+ "Steven A. Martis": 44800000,
+ "Stone Enterprises": 31200000,
+ "Strijek Design": 31100000,
+ "Studio Wilke": 21700000,
+ "SupportTechs": 15400000,
+ "SymphonyAI Media": 25000000,
+ "Syncronicity": 27000000,
+ "Syntellis": 80000000,
+ "T5 Data Centers": 13600000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TEQ Media": 33500000,
+ "Tako Technologies": 14000000,
+ "Talient": 23300000,
+ "Tammy Seidick": 21500000,
+ "TazzyT": 19100000,
+ "TechR2": 32100000,
+ "TechWest Computer Services": 36200000,
+ "Techtonic Inc.": 12500000,
+ "Tek My Biz": 11600000,
+ "Teksun": 10000000,
+ "Terri Bradford": 15700000,
+ "Terry's Ace Hardware & Mountain Home Furnishings": 37800000,
+ "The Brush Geek": 16100000,
+ "The Corner Studio": 51100000,
+ "The Enterprise Program": 39000000,
+ "The Hanover Company": 35900000,
+ "The Scanning Company": 12500000,
+ "TheAppsFactory": 10200000,
+ "Themesoft": 20000000,
+ "Timberline Technologies LLC.": 10400000,
+ "TimeSuite Software": 29900000,
+ "Titus Corporation": 13900000,
+ "Totality Software": 20900000,
"Trace3 LLC.": 1400000000,
- "TransAlta": 2100000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Mint": 3800000000,
- "University of Colorado Law School": 4200000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VITAC": 63300000,
+ "TrackVia": 685000,
+ "Tree Frog Software": 18100000,
+ "True Blue Software": 22100000,
+ "Turn Commerce": 44500000,
+ "Tuscany Valley": 10800000,
+ "U2logic": 11000000,
+ "UniversityTickets": 10000000,
+ "Unzipped Design": 23800000,
+ "Ushur": 10000000,
"VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Vermilion Energy": 1600000000,
- "Vestas": 15500000000,
- "Viasat": 2800000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
+ "Verint Systems": 899800000,
+ "Verisma": 20000000,
+ "Veterans InfoSec Services": 26400000,
+ "Via Tek": 12000000,
+ "Vibrant Technologies": 20600000,
"Video Professor": 75000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "Volcom": 380000000,
- "Von Roll UK Ltd.": 340700000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "WeatherTech": 500000000,
+ "Visionlink": 10000000,
+ "Vital Network Solutions": 35800000,
+ "Vivere Design": 16500000,
+ "Web Systems Inc.": 47500000,
+ "WebDev AZ": 28600000,
"Webroot Inc.": 250000000,
- "Western Sugar": 250000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Dwarf": 17500000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "Wilshire": 100000000,
- "Wilson Sonsini": 860000000,
- "Winchell's Donut House": 16900000,
- "Wje": 150000000,
+ "Western Belting": 12000000,
+ "Whale Acoustics": 33700000,
+ "Whitestar Corporation.": 10800000,
+ "Windward Studios": 12000000,
+ "WitsEnds": 18400000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
+ "Workato": 150000000,
"Workiva": 468700000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Wounded Warrior Project": 15300000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Yellow Pages Directory": 15100000,
+ "Xdata Corporation": 15000000,
+ "Xebec Data": 36700000,
+ "Xigole Systems": 26800000,
+ "Xtensible": 17600000,
+ "Xtensive Strategy": 13600000,
+ "Y & S Technologies": 28600000,
+ "YAGUARA": 10100000,
"Yext": 399900000,
- "Zumiez": 1100000000
+ "Zero Point Corporation": 15100000,
+ "Zunesis": 15000000,
+ "crackedapple LLC.": 26000000,
+ "e-Spirit": 25000000,
+ "section Incorporated": 12400000
},
"Connecticut": {
- "3D International": 4000000000,
- "A&E Television Networks LLC.": 3800000000,
- "A2A Simulations": 8400000000,
- "ABC Supply": 12100000000,
+ "9to9 Software": 25000000,
+ "A-One Systems inc.": 28000000,
+ "A.k.a. prototype": 10100000,
+ "ADNET Technologies": 19000000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ANSAC": 6000000,
- "AR-15": 6000000,
- "ARRL": 9800000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
- "ASPCA": 260200000,
- "ASSIST Scholars": 30400000,
- "AXA IM": 850000000,
- "AXA XL": 7700000000,
- "Abcam": 425500000,
- "Ace Hardware": 7800000000,
- "Achievement First": 5500000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Alamo Rent a Car": 2900000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "American Academy of Sleep Medicine": 24300000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Trucking Associations": 180900000,
- "Amway North America": 9500000000,
- "ApiJect": 6000000,
- "Apostles of the Sacred Heart of Jesus": 26500000,
- "Archdiocese of Hartford": 28000000,
- "Ardene": 38400000,
- "Armoloy": 49100000,
- "Aspetuck Land": 5100000,
- "At Home store": 1700000000,
- "Athletic Brewing": 70000000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
- "Autocall": 6000000,
- "AvalonBay Communities": 2000000000,
- "BAUSCH STROEBEL": 190000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BUILDON": 20300000,
- "BYK Additives & Instruments": 1200000000,
- "Baird investment bank": 3400000000,
- "Balyasny Asset Management": 110000000,
- "Bankrate": 434200000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baystate Health": 2500000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bessemer Trust": 682100000,
- "Best Buddies": 3600000,
+ "AES Technologies": 10000000,
+ "AIR SOFTWARE": 11200000,
+ "ALL U DESIGN": 12900000,
+ "AM Associates Creative Services": 10000000,
+ "AMI Solutions": 24900000,
+ "AMP TECH CONSULTING": 7800000,
+ "AMSoft Group": 7000000,
+ "ARInsights": 10000000,
+ "ATSS Limited Liability Company": 34400000,
+ "Aaryana Technologies": 15700000,
+ "Abacus Group": 28500000,
+ "Accel International Holdings": 12200000,
+ "Acorn Studio": 24500000,
+ "Activate The Space": 10400000,
+ "Advance Software": 27000000,
+ "Advanced Computer Technologies": 38600000,
+ "Advanced Computer Technologies Inc.": 19100000,
+ "Advanced Computers": 21400000,
+ "Advanced Network Designs": 38700000,
+ "Advanced Office Systems": 13700000,
+ "Aegis Information Systems": 27600000,
+ "Aegis Technology Partners": 10000000,
+ "Afcon SWS": 35000000,
+ "Airius": 21900000,
+ "Aithene Multimedia": 21300000,
+ "Algorim": 10300000,
+ "Alisor": 12500000,
+ "Alphaserve Technologies": 37900000,
+ "Amc Construction Llc.": 33800000,
+ "Ampcus": 72800000,
+ "Anchor Solutions": 14900000,
+ "Andeco Software": 23800000,
+ "Andrews Consulting": 35000000,
+ "AnswerYES": 14200000,
+ "Anthony J\u2019s Bistro": 12800000,
+ "Apogee Inc.": 35000000,
+ "Apollo Data Solutions Web Development and Marketing": 11600000,
+ "Apple Auto Wholesalers": 11700000,
+ "Appspace": 10000000,
+ "Aquastone Graphic Arts & Print": 10400000,
+ "AristoCAT": 10000000,
+ "Arrowpoint Technologies": 10000000,
+ "Arvensys Group": 7000000,
+ "Ashway": 24400000,
+ "Aspire Systems": 21500000,
+ "Ataccama": 40000000,
+ "Audet Web Design": 24100000,
+ "Automated Concepts": 30100000,
+ "Avery publishing solutions Pvt Ltd.": 75000000,
+ "Axon Inc.": 21400000,
+ "BALIANTI": 10000000,
+ "BASA Technologies": 28100000,
+ "BCS365": 12700000,
+ "BURROUGHS MEDIA": 14500000,
+ "Banana Design": 10900000,
+ "Barrett Advertising": 21700000,
+ "Basic Innovations": 14300000,
+ "Bentz Engineering": 37400000,
+ "Bill Brown Design": 5300000,
+ "Bilt-Rite Conveyors Inc.": 10000000,
"BlackLine": 522900000,
- "Blick Art Materials": 245200000,
- "Blue Owl Capital": 991600000,
- "Bluemercury": 918000000,
- "Bob's Stores": 1000000,
- "Bobby's Burger Palace": 10300000,
- "Bonchon": 60000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brynwood Partners": 15500000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "Blue Acorn iCi": 43600000,
+ "Blue Cube IT": 14400000,
+ "Blue Factor": 15400000,
+ "Bodkin Creative": 11700000,
+ "Bogart Computing": 27100000,
+ "Brainhat": 33700000,
+ "Brian Miller Design": 18300000,
+ "Brown Bear Creative": 39200000,
+ "Browser Daily": 42100000,
+ "Bsa Troop 146 - West Hartford": 18700000,
+ "Burrington's Solar Edge": 29600000,
+ "Business Electronics BEI": 55700000,
+ "CAPS Centers": 22000000,
+ "CCAII": 27300000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CNA": 9100000000,
- "CT Mirror": 4500000,
- "CURTISS-WRIGHT": 2500000000,
- "Caffe Nero": 1500000000,
- "Cannondale": 300000000,
- "Capital Power": 1900000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Central New England Railroad": 18100000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Choate": 5900000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cimbali": 5000000,
- "Circle Commerce": 44200000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Commission on Accreditation for Law Enforcement Agencies": 4100000,
- "Concord's Colonial Inn": 7000000,
- "Conduent Business Services LLC.": 3900000000,
- "Connecticut Audubon": 6200000,
- "Connecticut Food Bank": 69800000,
- "Constellis": 1000000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Control Module": 15000000,
- "Convenience": 12800000,
- "Cooper Robertson": 4100000,
- "CooperCompanies": 3200000000,
- "Coppertone": 8000000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Cumulus Media": 946800000,
- "Current Publishing": 6000000,
- "Cyient Inc.": 575100000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DKNY": 643000000,
- "DRW": 485000000,
- "Dandelion Energy": 4000000,
- "Daniel Hand High School": 6300000,
- "Danske Commodities": 972400000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "Diageo": 18800000000,
+ "CIGNEX": 74300000,
+ "CIT Services": 17500000,
+ "CMIT Solutions": 60000000,
+ "CONNECT Computer": 14000000,
+ "CP Systems": 12400000,
+ "CS Canada": 10900000,
+ "CSA Data": 17500000,
+ "CSD Branding": 14900000,
+ "CT Micronet": 23100000,
+ "CT Network Solutions": 20300000,
+ "CTComp": 31800000,
+ "CYBERGENX": 25500000,
+ "Cabot Partners": 22800000,
+ "Cambria": 28300000,
+ "Carrison Design": 17600000,
+ "Castle Systems": 30600000,
+ "Cedar Gate": 10000000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Chateaux": 10500000,
+ "Chesapeake Technology": 14600000,
+ "Chestnut Street Townhomes": 22100000,
+ "Chi Consulting": 51900000,
+ "CieTrade": 8000000,
+ "Cirrata": 13000000,
+ "Client Associated Businesses Inc.": 32600000,
+ "Code Consulting": 16300000,
+ "Colossal Ventures": 10000000,
+ "ComCentric Network Designs": 10000000,
+ "Command Technology": 11800000,
+ "CompStreet": 1400000,
+ "Compass MSP": 23000000,
+ "Comprehensive Computer Services Incorporated": 25500000,
+ "Computer Development Systems Inc.": 42700000,
+ "Computer Systems Consultants": 32200000,
+ "Computing Technology Corporation": 20400000,
+ "Concrete Supplement Co The": 14500000,
+ "Connecticut Software Consortium": 36500000,
+ "Conquest Consulting": 25500000,
+ "Consolidated Computing": 22500000,
+ "CorCystems": 13100000,
+ "Core Dynamic Services": 23600000,
+ "Coss Systems": 18200000,
+ "Creative Change": 21700000,
+ "Creative Whack": 13500000,
+ "Creative technology Solutions inc.": 21100000,
+ "Crescendant": 25500000,
+ "Criterion HCM": 15400000,
+ "CrowdFlik": 10000000,
+ "Crum Creative": 36700000,
+ "Cummings & Good": 13300000,
+ "Custom Automations": 29100000,
+ "Cyber Solutions LLC.": 24900000,
+ "CyberSecOp": 10000000,
+ "DAC Systems": 20100000,
+ "DSD Business Systems": 14000000,
+ "DTS-NET": 21000000,
+ "Dactyl": 16800000,
+ "Data Titans": 16200000,
+ "DataPrep Inc.": 13200000,
+ "Datahal": 44800000,
+ "Davex Consulting": 21400000,
+ "Decision Options": 21800000,
+ "Delonti": 23500000,
+ "Denyer DeZignz": 16500000,
+ "Design Images": 24200000,
+ "DesignCorp": 19600000,
+ "Designs For Growth": 17700000,
+ "Designsmith Collaborative": 63200000,
+ "Desktop Guerrillas": 24500000,
+ "Destiny Corporation offers": 18800000,
+ "Detrition": 11100000,
+ "DevCare": 22100000,
+ "Device42": 30000000,
+ "Dexter Systems": 10700000,
+ "Dhansol": 11800000,
+ "Digital Design Chick": 31600000,
+ "Digital Publishers": 28300000,
"Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Display Social": 1500000,
- "Distressed Children & Infants International DCI": 18700000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "Doosan Group": 10500000000,
- "Duchess restaurant": 3200000,
- "Dynata": 380300000,
- "D\u2019Angelos": 2400000,
- "E-The Environmental Magazine": 3900000,
+ "Directive Analytics": 26500000,
+ "E solutions Group": 15300000,
+ "E-Tech Solutions": 35000000,
+ "EBM Inc.": 35800000,
"ECI": 48000000,
- "EMAC website": 5700000,
"EPAM": 4500000000,
- "EPI": 10000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Eldridge Industries": 8000000,
- "Electric Boat Co.": 10000000000,
- "Element Materials Technology Group Limited": 975000000,
- "Embrace Home Loans": 180600000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Essex Savings": 25000000,
- "Ethan Allen": 845000000,
- "Eucerin": 8000000,
- "Eversource": 11700000000,
- "Evonik Industries AG": 19700000000,
+ "ERP VAR.": 10000000,
+ "EVERNET Consulting": 21700000,
+ "Efficient Solutions": 11300000,
+ "Eka Software Solutions": 75000000,
+ "Eklektos": 21400000,
+ "Electric Data Systems": 10000000,
+ "Ender Design": 21400000,
+ "ErikAllison - web & graphic design marketing": 10400000,
+ "Evolution Technologies LLC.": 14000000,
+ "Eximware": 19800000,
"FactSet": 1500000000,
- "Fairfield Public Schools": 16600000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Ferrellgas": 2100000000,
- "First Reserve Management L.P.": 17800000,
- "First United Bank Insurance Solutions Inc.": 10000000,
+ "FergTech": 11500000,
+ "Finario": 6400000,
+ "Firefly LLC.": 28700000,
"Fiserv": 17700000000,
- "Forrester": 525100000,
- "Fortress Investment Group": 1200000000,
- "Fox Network": 3000000000,
- "Foxon Park": 31400000,
- "Franklin Electric": 2000000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "FuelCell Energy": 10000000,
- "G&L Guitars": 8000000,
- "GI Partners": 14000000,
- "GP Strategies": 482000000,
- "Gaffney Bennett & Associates": 10900000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gen Re": 9500000000,
- "Gesell Institute of Child Development": 6800000,
- "Gillette Ridge Golf Club": 3700000,
- "Global Infrastructure Partners": 1000000000,
- "Golden Krust": 6100000,
- "Gooseberry Patch": 14100000,
- "Graff": 340200000,
- "GreenPal": 1200000,
- "Greenwich Art Society School of Visual Art": 27600000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H.I.G. Capital": 7000000000,
+ "Focus 5": 22600000,
+ "Fonantrix": 7000000,
+ "Foresite": 12100000,
+ "FormSprint": 31300000,
+ "Fortes Technology": 21500000,
+ "Fosse-Previs Design": 17400000,
+ "Fresh Wata | Las Vegas": 33500000,
+ "From Positive Impact Corporation Pic": 15200000,
+ "Future Tech Systems": 19900000,
+ "GDIT": 7900000000,
+ "Geek Team": 10300000,
+ "Geeks for Good": 21400000,
+ "Geer Mountain Software": 24900000,
+ "Gillware": 10800000,
+ "Ginger LaBella": 21700000,
+ "GiveSmart": 12000000,
+ "Glenville Technologies": 10800000,
+ "Gnu designs": 15200000,
+ "Good Design LLC.": 12100000,
+ "Gotham Technology Group": 140500000,
+ "Granite Bay Design": 31600000,
+ "Graphicways Design": 26200000,
+ "Great Island Software": 22700000,
+ "Group C Inc.": 11000000,
+ "GuestALL": 10600000,
+ "GuruAid": 10200000,
"HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hammacher": 180000000,
- "Harbor Freight": 5000000000,
- "HarpWeek": 5000000,
- "Harris Beach": 34600000,
- "Hartford Public Schools": 5500000,
- "Haworth": 2300000000,
- "Haynes International": 490500000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hispanic Federation": 3300000,
- "Hobby Lobby": 5300000000,
- "Homesense": 4100000,
- "Hoosier Tire": 181300000,
- "Hopkins School": 10200000,
- "Housatonicbsa": 22800000,
- "Hunger and Homelessness": 6100000,
- "Hustle Gang": 2800000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IPTP Networks": 22700000,
- "IQOR": 1000000000,
- "Innocence Project Inc.": 10400000,
- "Insurify": 9300000,
- "Integrative Oncology": 4500000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "International Universities Press": 27300000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "JAX": 484600000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jordan's": 1500000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "K2 Advisors": 20000000,
- "KBJ Architects": 19300000,
- "KONE": 10900000000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kent School": 5800000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Knights of Columbus": 10400000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kongsberg Gruppen": 3200000000,
- "Krell Industries": 7000000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "L&T technology Services": 746800000,
- "L.G. Balfour Company": 290000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Lag Guitars": 2400000,
- "Laserperformance": 70000000,
- "Lauralton Hall": 237200000,
- "Leaf Trading Cards": 2400000,
- "Lectra": 188800000,
+ "Haddonfield Vision": 13000000,
+ "Hagware": 31300000,
+ "Harmony Software": 10700000,
+ "Harty Integrated Solutions": 37700000,
+ "Hatchwise": 2400000,
+ "Heckman Consulting": 39000000,
+ "Himebaugh Consulting": 11900000,
+ "Historical Art Prints": 35800000,
+ "Hughes BrandMix": 9800000,
+ "Hull Graphic Design": 27000000,
+ "Huntington Technology": 13600000,
+ "Huyssen": 14400000,
+ "I-M Technology": 1400000,
+ "I.T. Resources": 37500000,
+ "IAC Webservices": 21600000,
+ "IB Tech Consulting": 30500000,
+ "ICONN Computer": 33100000,
+ "IFI CLAIMS Patent Services": 12000000,
+ "IIS Technology": 38200000,
+ "IMT Computers": 16100000,
+ "INTERTEQ": 62900000,
+ "ION Group": 825000000,
+ "Illustration Source": 14300000,
+ "Impact Business Technology": 16200000,
+ "In the KEW": 15200000,
+ "InScope": 2400000,
+ "InfoPulse": 11800000,
+ "InfoSource": 16000000,
+ "Information Systems LLC.": 45800000,
+ "Infowave Systems": 23700000,
+ "Infoway Software": 10000000,
+ "Innotech Llc.": 6000000,
+ "Innovative Information Solutions": 53700000,
+ "Innovative Network Solutions": 23400000,
+ "Innovative Research and Products Inc.": 11400000,
+ "InsiteOne": 12000000,
+ "Integrated Financial Systems": 22400000,
+ "Integration Inc.": 12400000,
+ "Intelligent Clearing": 20300000,
+ "Intelliquip": 10700000,
+ "Inter Weave": 12500000,
+ "Intralearn": 15800000,
+ "J B Computer Consulting": 26600000,
+ "JHRS30LIFE": 10600000,
+ "Jack Tom": 10800000,
+ "Jill Butler": 42000000,
+ "John M. Waller": 35000000,
+ "Joyce Media": 17400000,
+ "Judges Farm Perennials": 24200000,
+ "JuneBug Multimedia": 33200000,
+ "KEDIT": 14300000,
+ "KNK Publishing Software": 11000000,
+ "KOL LLC.": 14800000,
+ "KT International": 25500000,
+ "KTech Software": 18500000,
+ "Karsun System": 16700000,
+ "Kazer": 13200000,
+ "Kelser": 78500000,
+ "Keyseries": 10000000,
+ "Kisco": 42100000,
+ "Kittelson IT Solutions": 32700000,
+ "Kousen IT": 19700000,
+ "Kraft Kennedy": 29600000,
+ "LA Engine Computer Svc.": 29700000,
+ "LANDGRAPHICS": 12500000,
+ "LANRover": 11600000,
+ "La Rana Design": 33200000,
+ "LabLite": 20800000,
+ "Leaden": 24000000,
+ "Left Brain Games": 46300000,
+ "Leidan Consulting": 39200000,
+ "LemonPeak": 25000000,
+ "Lentner Technology": 50400000,
+ "Lester Infoservices.": 17900000,
+ "Lester USA": 600000000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Love146": 4300000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
+ "LightSites": 16100000,
+ "Liquid Technology": 22000000,
+ "Lymeware": 22800000,
+ "MACDAC": 41200000,
+ "MPI Systems": 19300000,
+ "MachroTech": 33400000,
+ "MadCap Software": 21700000,
+ "Madd Graphix": 11800000,
"Made Thought": 5000000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Marvelwood": 8700000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Media Storm LLC.": 145400000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Microsemi": 1700000000,
- "Middletown Press": 20000000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Mister Softee": 7000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Morley Companies": 19600000,
- "Motiva Enterprises": 20800000000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBC Sports": 120000000,
- "NBT Bank": 30100000,
- "NEWSru": 17100000,
- "NIDEC": 15600000000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Conference for Community and Justice": 4200000,
- "Naugatuck Railroad": 24200000,
- "Nest Seekers": 551700000,
- "New Canaan High School": 10300000,
- "New England Air Museum": 2400000,
- "News 12 Networks": 10000000,
- "Nikola Corporation": 44000000,
- "Nobel Biocare": 890100000,
- "North Sails": 27500000,
- "North Street Capital LP.": 10000000,
- "Norwalk Public Schools": 3800000,
- "Norwich Bulletin": 35800000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "Ooma": 179000000,
- "Orange County Choppers": 12400000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "Oxxford Clothes": 25000000,
- "P. C. Richard & Son": 15100000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Packaging Corporation of America": 8400000000,
- "Palisades Hudson": 2300000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phibro": 19100000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pomfret School": 6200000,
- "Portmeirion Group": 143000000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reed's": 52100000,
- "Relax The Back": 11600000,
- "RenaissanceRe": 4400000000,
- "Rigibore": 19700000,
- "Ritani": 71500000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robertson Airport": 10000000,
- "Rosetta Stone": 182700000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
+ "Magnai": 19000000,
+ "Marcucio": 10000000,
+ "Marlin Firmware": 47000000,
+ "Mastercam": 60000000,
+ "Matsco Solutions": 10000000,
+ "Mays Systems": 12300000,
+ "McClendon Corporation": 650900000,
+ "Medacist": 14300000,
+ "Media Refined": 11900000,
+ "MediaGroup Inc.": 10800000,
+ "Meeting King": 10000000,
+ "Megahits Internet": 13900000,
+ "Mendola Artists Representatives": 18100000,
+ "Metropolitan Interactive": 15000000,
+ "Micro Systems Integration Inc.": 13500000,
+ "Miggs B Design": 15900000,
+ "Milford Technology Associates LLC.": 19100000,
+ "Millennium Technology Solutions": 26000000,
+ "Miovision": 35000000,
+ "Mission Critical Software": 27300000,
+ "Moebius Technology Solutions": 26600000,
+ "Monahan Design": 24300000,
+ "Moore Nanotechnology Systems LLC.": 24200000,
+ "Mouseworksmedia": 7900000,
+ "Mr. Computer": 26500000,
+ "Mresult Services": 67600000,
+ "MultiWare": 10000000,
+ "MyChapterRoom": 17500000,
+ "MyWebDept": 5900000,
+ "NAUGATUCK VALLEY AUDUBON SOCIETY INC.": 31200000,
+ "NORTHERN TECHNOLOGIES CORPORATION": 16900000,
+ "NRG Networks": 14300000,
+ "Nah design": 30000000,
+ "Namo Buddha Publications": 20500000,
+ "NanoNotion": 6000000,
+ "Nanoholdings": 10600000,
+ "Naylor Technology Xchange": 11800000,
+ "Net at Work": 53000000,
+ "NetHosters": 22500000,
+ "NetLib Security": 21500000,
+ "New England Computer Solutions": 11100000,
+ "New Era Technology": 22200000,
+ "New Wave Tek": 20300000,
+ "New World Multimedia": 38300000,
+ "NexVue": 25100000,
+ "Nexgen Public Safety Solutions": 27600000,
+ "Nfina": 15300000,
+ "Night & Day Media": 15100000,
+ "Nihilent": 53400000,
+ "Nodal PT": 20800000,
+ "Nuvem Networks Inc.": 17400000,
+ "O'Keefe Illustration & Design": 48000000,
+ "OC4": 2400000,
+ "OLEONMEDIA": 27000000,
+ "Olm webaxxs": 25800000,
+ "Omni Data": 12200000,
+ "OnSite Support": 30200000,
+ "Online Mooring": 14300000,
+ "Open311": 13300000,
+ "Optical Software": 12000000,
+ "Optimized Micro Devices": 31800000,
+ "Orient Lodge": 10700000,
+ "Orpheus Design": 14500000,
+ "OutSecure": 33400000,
+ "P3 Technologies": 25600000,
+ "PCS Computer Systems": 26900000,
+ "PEM Software": 10000000,
+ "PNT Data": 14500000,
+ "POMFRET": 25800000,
+ "Paint Estimating": 51200000,
+ "Pali Solutions": 12900000,
+ "PelicanCorp": 35000000,
+ "Pharmaceutical Data Services": 35500000,
+ "Pivot Point Security": 11200000,
+ "Planet Earth Projects": 14500000,
+ "Plot IP": 10000000,
+ "Pomeranz Drayton & Stabnick": 25800000,
+ "Post Reporting Svc": 10000000,
+ "PostAds Group": 1400000,
+ "Precision Computer Services": 24600000,
+ "Predictive Motion": 23000000,
+ "ProTraxx": 27500000,
+ "Progressive Data Systems": 11800000,
+ "Proligence": 19800000,
+ "Pyramid Marketing": 24400000,
+ "Pyxis Systems": 10000000,
+ "Qmarkets": 7000000,
+ "Qualedi": 19900000,
+ "Qualitest Group": 220000000,
+ "Quality Data Service": 20300000,
+ "Questcon Technologies": 20600000,
+ "Quinnipiac Software": 27300000,
+ "RBD Group": 17100000,
+ "RESAVUE Exhibits": 18400000,
+ "RING Associates": 18500000,
+ "RPSystems": 26600000,
+ "RS Metrics": 14300000,
+ "Raymond Creative": 44300000,
+ "ReGenerating": 25700000,
+ "RealData": 10400000,
+ "Red Door Software": 28400000,
+ "Redstor": 30000000,
+ "Redtail Technology": 26100000,
+ "Related Media": 18900000,
+ "Reliance Technologies": 18500000,
+ "Resolute Partners": 13600000,
+ "Responsive Technologies": 26800000,
+ "Retail Optimization": 13100000,
+ "Riege": 12000000,
+ "Rock Solutions Group": 18400000,
+ "Rome Technologies Inc.": 19400000,
+ "Rosebud Development": 25600000,
"SAP": 33500000000,
- "SEIU Local 1199NE": 10700000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SJW Corp": 580000000,
- "SKECHERS USA Inc.": 6900000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "San Antonio Shoemakers": 4700000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Santander Bank": 14800000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Save the Children USA": 835900000,
- "Savills North America": 6000000,
+ "SD Consultants": 21000000,
+ "SD Data Center": 70000000,
+ "SGA Software": 31200000,
+ "SNP": 10000000,
+ "SYMPOSIUM TECHNOLOGIES INCORPORATED": 10600000,
+ "Sagarsoft": 17500000,
+ "Saiko Consulting": 13400000,
+ "Salix L.L.C": 23100000,
+ "Sandbox Design": 21700000,
+ "Sarata": 17800000,
+ "Saugatuck Technology": 18400000,
+ "Savage Joy": 10000000,
+ "Savvysoft": 25600000,
"Scan-Optics": 19200000,
- "Schaeffler Group": 15600000000,
- "SeaQuest aquariums": 2400000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Severud Associates Consulting Engineers P.C.": 7000000,
- "Signarama": 55000000,
- "Sikorsky CU": 15600000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snuggle": 5300000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Sports Mogul": 12500000,
- "Sprague Energy": 4300000000,
- "St. Luke's School": 11300000,
- "Stag Arms LLC.": 16000000,
- "Stanadyne": 23300000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Stericycle": 3600000000,
- "Stew Leonard's": 277000000,
- "Stewart & Stevenson": 367000000,
- "Stokke\u00ae": 90000000,
- "Stone Point": 6900000,
- "Strategic Value Partners": 53400000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "Sulzer": 13800000000,
- "Sun Life": 17200000000,
- "Suominen": 491400000,
- "Sylvan Learning": 12600000,
- "Synapse Group": 35000000,
- "TRUMPF": 10200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tauck": 155000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Hartford": 21400000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The New Journal": 6200000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
+ "Scientific Computing Associates": 11800000,
+ "Scott Larsen": 29900000,
+ "Sectra": 207300000,
+ "SenecaGlobal": 25000000,
+ "Sequentra": 11400000,
+ "Service Express": 130000000,
+ "Shelf": 10500000,
+ "Shift Click": 13100000,
+ "Shoreline PC LLC.": 43000000,
+ "Sigmund Software": 10000000,
+ "Silver Brook": 14500000,
+ "SilverSky": 50000000,
+ "Simplus": 18900000,
+ "Sincera": 24300000,
+ "Skygate Media": 10000000,
+ "Slacktronics": 20200000,
+ "Smallbits": 32100000,
+ "Smart Data Center": 10000000,
+ "Softchoice": 957500000,
+ "Softdel": 10000000,
+ "Software Systems Solutions": 11000000,
+ "Sound Technology Services": 21500000,
+ "Soundstring Cable": 10500000,
+ "Sourcepass": 32000000,
+ "SphereGen": 22800000,
+ "Squad 16": 21800000,
+ "Square 9": 15700000,
+ "Stafford Associates": 22600000,
+ "Star Computers LLC.": 25900000,
+ "Steinberg Designs": 26500000,
+ "Stova": 10000000,
+ "Studio 9 Web Design": 40100000,
+ "Studio Three Design": 25400000,
+ "Summit Technologies Inc.": 10000000,
+ "Sunsky": 29600000,
+ "Supportian": 21300000,
+ "Surya Software Systems Private Limited": 35000000,
+ "Swift Farms": 42700000,
+ "Synchrony Systems": 18600000,
+ "Synergy Corporate Technologies": 14400000,
+ "Synetek Solutions": 35100000,
+ "Systech Solutions": 25100000,
+ "System Solutions LLC.": 24100000,
+ "Systems-Consulting": 16900000,
+ "T2 Creative": 21600000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "THAMES VALLEY COMMUNICATIONS I": 27400000,
+ "TIGER TP": 21000000,
+ "TLP Software": 13000000,
+ "TRUEBADORE": 25500000,
+ "TSG WEB PLUS": 39000000,
+ "TWB Systems": 26100000,
+ "Tabs3": 12200000,
+ "Tantillo Osborne": 51100000,
+ "Tasacom": 12500000,
+ "Taskbusiness": 10700000,
+ "TechNet Solutions": 33300000,
+ "Techgrains": 52300000,
+ "Techliner Web": 19800000,
+ "Technology for Marketers": 21400000,
+ "Technosoft": 17100000,
+ "Tekniligenz": 17600000,
+ "Telaid Industries": 80000000,
+ "The Allen Group": 16300000,
+ "The Design Company": 20200000,
+ "The Game Agency": 18000000,
+ "The Nth Power": 12200000,
"The Org company": 2000000,
- "The Parking Spot": 46000000,
- "The Travelers Companies, Inc.": 31000000000,
- "The Williams School": 3200000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilcon": 23900000,
- "Timbercreek Capital": 80000000,
- "Tomasso Group": 6000000,
- "Torrid": 1300000000,
- "Torrington School District": 19200000,
- "TradeWinds": 5900000,
- "TransRe": 500000000,
- "Translators without Borders": 6300000,
- "Trillium Brewing": 6400000,
- "Tropicana": 8000000,
- "Tuff Shed Incorporated": 300000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Games Systems": 6000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UGG": 35000000,
- "UIL Holdings Corporation": 1500000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "UPS Capital": 50000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "Unite For Sight": 2600000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Upstate New York Collegiate Hockey League UNYCHL": 1500000,
- "Upstream Online": 35000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Virtusa": 1300000000,
- "Vista Outdoor": 3200000000,
- "Volkswagen": 51300000000,
- "Voya Financial": 6900000000,
- "W. R. Berkley Corporation": 7000000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "WWE": 1300000000,
+ "The Pinnacle Group": 126000000,
+ "The Site": 45500000,
+ "Thrive NextGen": 150000000,
+ "TierPoint": 405000000,
+ "Torino Systems": 32500000,
+ "Town USA": 25900000,
+ "Treehouse Technology": 27100000,
+ "Trilogix": 10000000,
+ "Triton Group Web": 40500000,
+ "Turbo Technicians": 6100000,
+ "Tuscany Ristorante": 16500000,
+ "Twin Media": 32500000,
+ "U.S. Computer Connection": 22000000,
+ "UBEO": 15000000,
+ "USSupernet": 47200000,
+ "UX2 LLC.": 20400000,
+ "Ubiquitour": 10600000,
+ "Unidesign": 13900000,
+ "Universal Software": 34400000,
+ "UniversityTickets": 10000000,
+ "VISTECH": 26900000,
+ "VLink": 25000000,
+ "VSef": 1000000,
+ "VanAmburg Design Associates": 35400000,
+ "Vbrick": 23300000,
+ "Vector Information Systems": 38800000,
+ "Vectro": 36200000,
+ "Veoci": 12000000,
+ "Vilece Technology Services": 11600000,
+ "Virtual Density": 1200000,
+ "Vision Technologies LLC.": 28300000,
+ "Vista IT Solutions": 14800000,
+ "Vteams": 54100000,
"Walker Digital": 20900000,
- "Wampanoag Country Club": 27200000,
- "Warby Parker": 573100000,
- "Wassaic Project": 6100000,
- "West Hartford Public Schools": 9200000,
- "Westover School": 37300000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "Wilbraham & Monson Academy": 22100000,
- "Windels Marx": 19500000,
- "Windham Airport": 23600000,
- "Wisk": 7900000,
- "Wje": 150000000,
+ "Wallmedien": 28900000,
+ "We Care Computers": 12900000,
+ "Web Burner": 20000000,
+ "Web Space Outlet": 26400000,
+ "Webaholic Design": 27800000,
+ "Webilent": 13400000,
+ "Webkudu": 12200000,
+ "Wengert": 19400000,
+ "West Highland": 32600000,
"Wolters Kluwer": 5400000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xtralis": 34500000,
- "Yale Daily News": 4900000,
- "Zest": 9900000,
- "Zumiez": 1100000000
+ "X-RAY Scientific": 13900000,
+ "Xcase -": 37500000,
+ "Yuskales Graphic & Website Design": 33500000,
+ "Zack IT Solutions": 29600000,
+ "Zen Software": 31300000,
+ "Zentech Incorporated": 26400000,
+ "ZeusLogic": 11300000,
+ "Zoomadog": 28400000,
+ "cxLoyalty": 21000000,
+ "deFacto Global": 9000000,
+ "e-Biz Technologies": 14900000,
+ "eFishDesign": 18700000,
+ "eLatta": 14400000,
+ "eLumindata": 11600000,
+ "i-Logic": 26900000,
+ "iGRAFIX": 14500000,
+ "iSolve": 25400000,
+ "iceDQ": 5000000,
+ "netCentrix": 23600000,
+ "r4 Technologies": 15000000,
+ "webKazoo": 28200000
},
"Delaware": {
- "ABC Supply": 12100000000,
+ "10 Types": 6100000,
+ "A&O IT Group": 1000000,
+ "A. P. Croll & Son Inc.": 12800000,
+ "AB INNOVATIVE": 35000000,
+ "ACN Infotech": 75000000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ASI Central": 15000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acorn Energy": 6800000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "American Birding": 4800000,
- "American Eagle Outfitters": 5000000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Arotech": 91300000,
- "Art of Living": 6000000,
- "Ashland Inc.": 2400000000,
- "Atlanta Bread": 5200000,
- "Autocall": 6000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "Barnes & Thornburg": 575500000,
- "Barrett": 2800000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Bessemer Trust": 682100000,
- "Block & Leviton": 18900000,
- "Bonchon": 60000000,
- "Brookdale": 2700000000,
- "Brooklyn Bicycle": 3400000,
- "Bruster's Ice Cream": 2100000,
- "Carvel": 5700000,
- "Catchafire": 6000000,
- "Cellular Sales": 1700000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chesapeake Utilities": 653800000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
+ "AMN Forms": 5000000,
+ "AP Consultants": 30800000,
+ "AQORN": 1400000,
+ "AR Solutions Inc.": 4500000,
+ "ATOS zData": 2000000,
+ "Aaseya": 14500000,
+ "Accudata Systems": 15200000,
+ "AceFlex": 16900000,
+ "Actimage": 35000000,
+ "Adaps": 75000000,
+ "Add ins": 51900000,
+ "Adiscon": 17500000,
+ "Advocately": 1500000,
+ "Aesthetica Studios": 24400000,
+ "Agility IO": 4000000,
+ "Airim": 1000000,
+ "Aiven": 20000000,
+ "AllWorldIT": 75000000,
+ "Allsystemsup": 11500000,
+ "Almuqeet": 46400000,
+ "Alpha Technologies Inc USA": 25000000,
+ "Alzone Software": 5000000,
+ "Amalgam Rx": 20000000,
+ "Amplify Mindware": 21500000,
+ "Anspire Agency": 6000000,
+ "AntStack": 2000000,
+ "Apex Loyalty": 4500000,
+ "Aphrosoft": 5300000,
+ "Aponia": 2400000,
+ "AppFutura": 1000000,
+ "Approve": 1000000,
+ "AppsBow": 4000000,
+ "Appsdesigndesk Llc.": 3800000,
+ "Apriorit": 3800000,
+ "Aquia": 10000000,
+ "Arkieva": 25000000,
+ "Arth.Team": 2400000,
+ "Artua": 6200000,
+ "AssetOne": 24400000,
+ "AttendanceBot": 2400000,
+ "Autodata": 13000000,
+ "Automizy": 1500000,
+ "Averox": 5000000,
+ "BAS Design": 10700000,
+ "BEPRO Europe": 1500000,
+ "BIZSPICE": 4900000,
+ "Bar Code Software Inc.": 21400000,
+ "Barcroft Technology": 14800000,
+ "Bay Color": 3900000,
+ "Bay E-Solutions": 2900000,
+ "Bay Tech Team": 19700000,
+ "Beachaus": 12300000,
+ "Belsham": 2700000,
+ "Bering Labs": 2400000,
+ "Berri Yummi Frozen Yogurt": 2200000,
+ "BiddingForGood": 8400000,
+ "Big Top Designs": 8600000,
+ "BitNinja": 2400000,
+ "Bizcord": 18100000,
+ "Bizdesire": 6300000,
+ "Black Bear MSSP": 61000000,
+ "BlackSwan Technologies": 3000000,
+ "Blackbell": 6000000,
+ "BladeRoom": 10000000,
+ "Blair Computing Systems Inc.": 9400000,
+ "BluEnt": 52300000,
+ "BlueVault": 5600000,
+ "Boyum IT Solutions": 22700000,
+ "Breckenridge Software": 13100000,
+ "Brindley Technologies": 2100000,
+ "Brio Technologies": 7000000,
+ "Brisa Technologies": 8000000,
+ "Broadcast Software International": 20000000,
+ "Broom Street Software": 26900000,
+ "ByteScout": 4000000,
+ "C&S Computer Consulting": 51500000,
+ "CIM Concepts": 26100000,
+ "CJ Technology Solutions": 17900000,
+ "CLOUDCOM": 23000000,
+ "COGNITRO": 7000000,
+ "CONREP": 10000000,
+ "CSM Tech": 7700000,
+ "CYFIRMA": 8900000,
+ "Calligo": 25000000,
+ "Camlytics": 3900000,
+ "CanCon Group": 13900000,
+ "CanvasJS": 10000000,
+ "Cardinal Data Systems": 40400000,
+ "Cardiomo": 2000000,
+ "Carrier Software": 14800000,
+ "Catalyst Visuals": 13900000,
+ "CellStrat Hub": 3900000,
+ "Certa": 2500000,
+ "Cheap Domains Center": 4900000,
+ "Cheapsslsecurity": 11500000,
+ "Chimera Technologies": 10000000,
+ "ChistaDATA": 1000000,
+ "Clarip": 5000000,
+ "Clariti Software": 12000000,
+ "Class IT": 4800000,
+ "Clearout": 1000000,
+ "ClickSSL": 25000000,
+ "Cliff Support": 6100000,
+ "Clootrack": 3000000,
+ "Cloud Advisory": 7000000,
+ "CloudScale 365": 3000000,
+ "CloudSigma": 19000000,
+ "Cloudez": 25000000,
"Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Constant Contact": 361900000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Coppola Foods": 4400000,
- "Core & Main Inc.": 6100000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DJO Global": 1200000000,
+ "Clym": 1000000,
+ "CodeWave": 34100000,
+ "Cognosys": 1000000,
+ "Communication Crafts": 10000000,
+ "Conjure": 22900000,
+ "ContentGuard": 30600000,
+ "Contractbook": 7000000,
+ "CoolGeeks": 17700000,
+ "Cora Systems": 33400000,
+ "Cr 24": 2400000,
+ "Cubistix": 2400000,
+ "Cybellum": 15500000,
+ "Cynere": 25000000,
+ "D-ID": 3000000,
+ "DIEKO": 22600000,
+ "DTC Force": 75000000,
"DXC Technology Company": 14800000000,
- "Davey Tree": 1500000000,
- "Delaware River and Bay Authority": 10100000,
- "Discover": 12000000000,
- "DistantJ ob": 8000000,
- "Dogfish": 40000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eastern Pennsylvania Rugby Football Union Geographical Union": 108000,
- "Eastman": 10600000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Einstein Healthcare Network": 1200000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "FMC Indonesia": 5400000000,
- "Faegre Drinker": 512900000,
+ "Data Canopy": 2000000,
+ "DataNumen": 10000000,
+ "Datacy": 1700000,
+ "Datapad": 1600000,
+ "DecisivEdge": 25000000,
+ "DeckRobot": 8000000,
+ "Dedoco": 1000000,
+ "Delasoft Inc.": 20500000,
+ "Delaweb Designs": 26500000,
+ "Delbridge": 23600000,
+ "Delmarva Group LLC.": 1400000,
+ "DesignCorp": 19600000,
+ "Designhill": 28500000,
+ "Designrr": 2400000,
+ "DevShala Technologies": 4000000,
+ "Diceus": 3400000,
+ "Digitail": 2000000,
+ "DipTrace": 5000000,
+ "DirectDefense": 11200000,
+ "Directory Wizards": 42100000,
+ "Dista": 7000000,
+ "Diversido": 7000000,
+ "Diversio": 2000000,
+ "Django Stars": 5000000,
+ "Dotnetspider": 10000000,
+ "DreamOrbit": 12000000,
+ "DurableDNS": 7000000,
+ "Dynacom": 15000000,
+ "Dynalogic": 3600000,
+ "EC Infosolutions": 52500000,
+ "EMPIRE-214": 16700000,
+ "ERBrains": 27400000,
+ "Eastlake Crossing": 6000000,
+ "EasySend": 10000000,
+ "EchoEcho Domains": 1400000,
+ "Ecolibrium": 10000000,
+ "EdbMails": 57200000,
+ "Einstein Technologies": 17700000,
+ "ElifTech": 4800000,
+ "Elio Plus": 4600000,
+ "Emblem Technologies": 35400000,
+ "Encaptechno": 5000000,
+ "Endeavour Solutions": 20000000,
+ "Enlightened Governance": 15700000,
+ "Enrique Armani Design": 13800000,
+ "Enterprise Business Solutions": 5500000,
+ "Envirotower": 14500000,
+ "Envisage Design Services": 4900000,
+ "Eptikar": 1400000,
+ "Eqservers": 1500000,
+ "Eraneos": 37500000,
+ "Eventzilla": 15000000,
+ "Everstage": 3500000,
+ "Extreme Scale": 3000000,
+ "EziLine": 1000000,
+ "FAJSYSTEMS LLC.": 1400000,
+ "Fenopix": 10000000,
+ "FieldCircle": 1900000,
+ "Fieldproxy": 1000000,
"Fiksu": 22700000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
+ "First State Web Designs": 10000000,
+ "Firstbase combines": 11100000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Forman Mills": 296800000,
- "Fractal Design": 39500000,
- "Franklin Resources Inc.": 2900000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fulton Financial Corporation": 1000000000,
- "G3 Telecom": 3400000,
- "GardaWorld": 3800000000,
- "Gay and Lesbian Activists Alliance": 26900000,
- "Goodman Global Group Inc.": 1900000000,
- "Grant & Eisenhofer": 8600000,
- "Greenberg Traurig": 2000000000,
+ "FloristWare": 2900000,
+ "Fluid Design Group": 1400000,
+ "Four-Eyed": 18400000,
+ "Free Website": 27600000,
+ "FrontStream": 35000000,
+ "Frontier Technologies": 11800000,
+ "Futurelytics": 1900000,
+ "G reenetworks": 4800000,
+ "GDI Enterprise Software Development": 23500000,
+ "GESTURES": 2600000,
+ "GMetri": 3000000,
+ "GO WEB BABY": 4300000,
+ "GammaStack": 32100000,
+ "GaragePlug": 2800000,
+ "Genwin": 1300000,
+ "GetResponse": 80000000,
+ "GlobeHosting": 7500000,
+ "GoAudits": 2400000,
+ "GoProtoz": 3300000,
+ "GoScale": 2000000,
+ "Golden Recursion": 10200000,
+ "GraceBlood": 31700000,
+ "Graphicgrooves": 8500000,
+ "Graphy": 4200000,
+ "Green Hippo": 7000000,
"Gripeo": 4000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "High's": 6400000,
- "Hobby Lobby": 5300000000,
- "Homesense": 4100000,
- "Houzz": 500000000,
- "IHEARTMEDIA": 3800000000,
- "ILC Dover": 145000000,
+ "HEADSTREAM": 4600000,
+ "HIGH TECH GENESIS": 1400000,
+ "HREF": 14100000,
+ "Hal Streams": 1000000,
+ "Hallmark Global Technologies Inc.": 60600000,
+ "Hansen House": 3000000,
+ "HashRoot": 2800000,
+ "Hashnode Engineering": 3000000,
+ "Healex": 21100000,
+ "Hexaroot": 46500000,
+ "Heymoj o": 1000000,
+ "HiTech Service": 6000000,
+ "Hindavi": 3800000,
+ "Hinton & Associates": 16000000,
+ "Hogan Mcdaniel Attorneys At Law": 9700000,
+ "Home Services Realty Inc.": 11900000,
+ "Hoover Computer Services": 9200000,
+ "Horses & Clouds": 52700000,
+ "How mpegcam": 19300000,
+ "Hubilo": 35000000,
+ "Hughes Design Studios": 11100000,
+ "HumanPredictions": 2200000,
+ "Hunter Web Services Inc.": 18100000,
+ "I.S. Partners": 3000000,
+ "IKANDE": 25800000,
+ "INTELLIGENT TRIANGLE": 3000000,
"IONOS": 617800000,
- "ITILITE TECHNOLOGIES PRIVATE LIMITED": 2900000,
- "Ink Global": 14700000,
- "Inspiration Mars Foundation": 1300000,
- "InterDigital": 481300000,
- "Interesting Engineering": 1000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "JEI Learning": 1300000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jerry's Artarama": 932000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Juan de la Cuesta Hispanic Monographs": 10100000,
- "Junttan": 24000000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Keepgo": 1000000,
- "Kennedys Law": 284000000,
- "Kilwins": 50000000,
+ "IOTech Systems": 1200000,
+ "IT Resources": 75000000,
+ "IT Solutions Consulting": 25000000,
+ "ITiyam": 7000000,
+ "Impact Logo Design": 6800000,
+ "Impact corporate logo design": 2700000,
+ "Impiger Technologies": 8500000,
+ "Implify": 6700000,
+ "Inacom Information Systems": 47200000,
+ "Info Solutions": 6700000,
+ "Information to Imaging Technologies": 7000000,
+ "Innoapps India": 18700000,
+ "Inspire Technologies": 13300000,
+ "Intel 471": 31000000,
+ "Intellify Solutions": 21700000,
+ "InterContinental Technology": 11300000,
+ "InvGate": 9500000,
+ "Invensis": 180000000,
+ "Invent Softlabs": 22800000,
+ "Ipsilon Developments": 1200000,
+ "Itemize": 5000000,
+ "Itexus": 2200000,
+ "JSAS Tech": 2400000,
+ "JWB Consulting": 10200000,
+ "Jade Growth": 26300000,
+ "Janet Dodrill": 2800000,
+ "Jeo Graphics": 40500000,
+ "John Snow Labs": 7000000,
+ "Juriba": 12400000,
+ "KPI": 11200000,
+ "Kaloke Technologies": 10500000,
"Knowland": 20000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "LabWare": 150000000,
- "Law Debenture Corporation": 148000000,
- "Let Freedom Ring": 5800000,
+ "Known Factors": 2000000,
+ "Krtya": 7000000,
+ "LEAFIO": 2300000,
+ "LITSLINK": 2500000,
+ "LS Intranet": 2400000,
+ "Latlon Technologies": 16500000,
+ "Laurel Bridge": 18700000,
+ "Learning Pool": 25500000,
+ "Legacy Beta": 5200000,
+ "Lepton Software": 15000000,
"Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Lokring": 12000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MFJ Enterprises": 7800000,
- "Main Event": 678000000,
- "McCormick Taylor": 83000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Michael-Bruno": 10200000,
- "Middle States Commission on Higher Education": 12500000,
- "Moe's Southwest Grill": 295500000,
- "Mount Pleasant High School": 3800000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "NEMO Equipment": 8000000,
- "New Castle Presbytery": 7200000,
- "Nielsen Norman Group": 2000000,
- "Oak Knoll": 3000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Paxful": 6900000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepco - An Exelon Company": 4700000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Port City Java": 3400000,
- "PrimoHoagies": 2600000,
- "Principal Financial Group": 13900000000,
- "Printify": 10000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reid Collins & Tsai": 6200000,
- "Relax The Back": 11600000,
- "Resideo": 6300000000,
- "Riverside Partners": 14400000,
+ "Linchpin Labs": 2000000,
+ "Little Utopia": 17500000,
+ "Lityx": 2500000,
+ "Liveware": 39200000,
+ "Liz Kain Designs": 29300000,
+ "LogSat": 17100000,
+ "Longwall Security": 2000000,
+ "Luxms VC": 10000000,
+ "MAD House Graphics": 5600000,
+ "MEBU Design & Marketing": 4500000,
+ "MIS Utilities": 7000000,
+ "MSR Cosmos": 120000000,
+ "Magenest": 1200000,
+ "Mapcreator": 7000000,
+ "Markit Australia": 4100000,
+ "Mass Mailer": 2400000,
+ "Masters Group Design": 5200000,
+ "Maven Security": 36200000,
+ "Max Dedicated": 16500000,
+ "Maxeler": 15000000,
+ "Mayura Inc.": 12600000,
+ "Meganet Technologies": 27000000,
+ "Method Hub": 25000000,
+ "Microlog": 10000000,
+ "Mighty Deals": 10000000,
+ "Miller Studio": 13600000,
+ "Minkatec Computer Services": 13600000,
+ "Miovision": 35000000,
+ "Miracle Group": 4000000,
+ "Mobiotics": 1000000,
+ "Modality Systems": 60500000,
+ "Monarch Watch": 13000000,
+ "Moxie IT": 35200000,
+ "Multiledgers": 1300000,
+ "Musikaar": 35000000,
+ "MySchedule": 21700000,
+ "NCM Online": 6200000,
+ "NCrypted": 4400000,
+ "NENASAL": 2600000,
+ "NORTH STAR GROUP": 3500000,
+ "Nabler": 10000000,
+ "Napier AI": 10000000,
+ "Nayatek": 6800000,
+ "NeoLore Networks": 8100000,
+ "Nesh Inc.": 9700000,
+ "Net Square": 7000000,
+ "NetSet Software Solutions": 1800000,
+ "Netcore Cloud": 12000000,
+ "Netjectives": 4000000,
+ "Neutrinos": 10000000,
+ "Nevron": 15700000,
+ "Newoldstamp": 1100000,
+ "Ni2": 7000000,
+ "Nighthawk Apps": 10000000,
+ "Nimb": 7000000,
+ "NoBlue": 12000000,
+ "Novacoast": 100000000,
+ "Ntirety": 25000000,
+ "Nubik": 8500000,
+ "Nyros Technologies": 2000000,
+ "OMNINET INTERNATIONAL INC.": 2400000,
+ "ORCA BI": 9200000,
+ "OTIS Information Technologies": 7200000,
+ "Octeth": 7000000,
+ "Odwebdesign": 31100000,
+ "Olam Solutions": 2100000,
+ "Olark": 14000000,
+ "Omnimaven": 27200000,
+ "OnceHub - Meeting Journey Builder": 22000000,
+ "OpenLM": 1400000,
+ "OptimizeX": 29400000,
+ "Opulent soft": 10700000,
+ "Orbitshift": 1000000,
+ "Outplay": 3000000,
+ "PCH Technologies": 18300000,
+ "Paessler": 59000000,
+ "Paperflite": 2400000,
+ "Paradatec": 7000000,
+ "Paradiso Solutions": 14200000,
+ "Parth Systems": 24600000,
+ "Partners Plus": 18900000,
+ "Pcacme": 28600000,
+ "Perfomatix": 2900000,
+ "Pharos Enterprise Intelligence": 2400000,
+ "PiServe": 26900000,
+ "Piccone IT": 25600000,
+ "Pier Vantage": 6000000,
+ "Pixtra": 25200000,
+ "Playcast by RealtyDAO": 12100000,
+ "Plexis POS": 29700000,
+ "Plytix": 3800000,
+ "Pointstone": 4500000,
+ "Postindustria": 48300000,
+ "PredictHQ": 2000000,
+ "PredictLeads": 1000000,
+ "ProHance": 6000000,
+ "Proactive Performance Solutions": 21600000,
+ "Progressive Infotech Pvt Ltd- Bangalore": 220000000,
+ "Prosares": 12400000,
+ "Prospus": 14700000,
+ "Provar Testing": 5800000,
+ "Purely CRM": 12100000,
+ "PyLadies": 2400000,
+ "QUBYX": 13100000,
+ "QiO": 7000000,
+ "Quality Unit": 5600000,
+ "Quavo": 11500000,
+ "RNF Technologies": 6100000,
+ "Raas Infotek": 25000000,
+ "Ram Tech Systems": 15500000,
+ "Ratchet Infotech LLC.": 1600000,
+ "RealityCorp": 3900000,
+ "Red Buffer": 5400000,
+ "RedHorse Systems": 3500000,
+ "ReplaceMagic": 1000000,
+ "Resourcifi": 3500000,
+ "Rezorce": 9400000,
+ "RgB Design Group": 1400000,
+ "Right Angle Design": 32200000,
+ "Right-Hand Cybersecurity": 11600000,
"RobotLAB": 190000,
- "Ronald McDonald House Charities": 59500000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Same Sky": 3500000,
- "Santander Bank": 14800000,
- "Sarku Japan": 310000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Serviam Girls Academy": 4900000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Showcase": 2000000,
- "Signarama": 55000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Southern Glazer's": 21000000000,
- "Stanley Steemer": 9500000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tatnall": 2200000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
+ "Roistat Inc.": 2600000,
+ "Ross W Burnam CPA PA": 2400000,
+ "Round Infinity": 1000000,
+ "SAPSOL": 26300000,
+ "SBL Infotech UK": 25000000,
+ "SBW Designs": 2400000,
+ "SCALE FOCUS": 30000000,
+ "SGA Software": 31200000,
+ "SIGA OT Solutions": 2300000,
+ "SISL Infotech": 8400000,
+ "SKC Consulting": 20500000,
+ "SMART 360": 2100000,
+ "SOLUNTECH": 6300000,
+ "SUMURI": 6000000,
+ "Sattrix": 10000000,
+ "Schmidt Advertising and Design": 23400000,
+ "School Jotter": 3800000,
+ "Second Front Systems": 3000000,
+ "SecurEyes": 7000000,
+ "Securden": 3400000,
+ "Secure Action": 30200000,
+ "SecureLayer7": 10000000,
+ "Sensedia": 16100000,
+ "Sensr": 6600000,
+ "Sergeant Schedule": 2400000,
+ "ServMask": 3100000,
+ "ServerGuy": 28400000,
+ "Shabbosapp": 5700000,
+ "Shape Integrated Software": 6800000,
+ "SharePoint Frontier": 6100000,
+ "Sherweb": 95000000,
+ "ShowMyPC": 5300000,
+ "ShowMyPC Inc.": 4400000,
+ "SignNow": 32500000,
+ "Simplica": 7200000,
+ "SiteCube": 10000000,
+ "SmartKarrot": 7000000,
+ "Smile CDR Inc. doing business as Smile Digital Health": 15400000,
+ "SmileBack": 2400000,
+ "SnapB2B": 2400000,
+ "SoftSys Hosting": 5700000,
+ "Software Mind": 11900000,
+ "Software4Nonprofits Cooperstock Software": 2400000,
+ "Solution Analysts": 11900000,
+ "Souktel": 9500000,
+ "Source Corp": 7000000,
+ "SourceEdge": 10000000,
+ "Sourcepass": 32000000,
+ "Soveren": 1500000,
+ "Splash Designworks": 15300000,
+ "SteepGraph": 35000000,
+ "Stellans Technosoft": 5900000,
+ "Stratio": 9000000,
+ "Streamline technologies": 4600000,
+ "Streamon Technologies": 12100000,
+ "Strong Business Services - StrongWP": 2400000,
+ "Suma Soft": 15000000,
+ "SuperOps": 2000000,
+ "Syncplify": 3700000,
+ "SystemSeed": 4400000,
+ "TMMI": 10000000,
+ "TRITON IT SOLUTIONS": 1000000,
+ "TRM Technologies": 6600000,
+ "Tabs3": 12200000,
+ "Taction Software": 3000000,
+ "Take Off Labs": 24000000,
+ "Talkie": 2200000,
+ "Talkpush": 6600000,
+ "TeamLogic Inc.": 7200000,
+ "Tecala Group": 4500000,
+ "Tech-Savvy Consulting": 14000000,
+ "Technie Code": 7000000,
+ "Technolution": 35000000,
+ "Techvedic": 8900000,
+ "TekisHub Consulting Services": 50000000,
+ "Tekstrom": 9100000,
"Tenorshare": 4400000,
- "Thales Group": 18000000000,
- "The Fresh Grocer": 2800000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "Things Remembered": 300000000,
+ "Tera Technology Group": 2200000,
+ "The AppSolutions": 12000000,
+ "The Productive Company Inc.": 2400000,
+ "ThinkSecureNet": 4500000,
+ "Thinkitive": 7000000,
"TigerDirect": 200000000,
+ "Timersys": 10700000,
"Toptal": 200000000,
- "Torrid": 1300000000,
- "Tucson Weekly": 8700000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
+ "Torito Web": 2600000,
+ "TotalTrax Inc.": 4100000,
+ "Tquanta": 61000000,
+ "Unified AR": 1300000,
+ "Urban Chirp": 1400000,
+ "V odaHost": 5100000,
"V2 Cloud": 6000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "Waffle House": 1300000000,
- "West Pharmaceutical Services": 2900000000,
- "Westfield Insurance": 2000000000,
- "Wilson Sonsini": 860000000,
+ "V2S": 25000000,
+ "VCloud Technology Group": 23500000,
+ "VISTA InfoSec": 6800000,
+ "VTECH SOLUTION": 10200000,
+ "Vakoms": 12200000,
+ "Vault Infosec": 1300000,
+ "Vedaham": 13500000,
+ "Vega Computing": 4300000,
+ "Velan Info": 13700000,
+ "Vendio": 8300000,
+ "Veridian": 7000000,
+ "Verito": 2000000,
+ "Verrex": 10000000,
+ "Versalign": 10500000,
+ "Viaro": 4400000,
+ "ViewTec": 1200000,
+ "VironIT": 1000000,
+ "Virtual Promotions": 10700000,
+ "Visual ClubMate": 2000000,
+ "Voree IT Solutions": 8700000,
+ "W3Softech": 15000000,
+ "Waffor": 2100000,
+ "Waterservices LLC.": 11700000,
+ "WaveBL": 3000000,
+ "Waydev": 3000000,
+ "Web Design Relief": 3100000,
+ "Web whiteboard": 150000000,
+ "WebHostFace": 6000000,
+ "Weberience": 5800000,
+ "Websahibi": 16700000,
+ "Webtrix": 27000000,
+ "Wedge Networks": 16200000,
+ "WinMagic": 23500000,
+ "WireLoad": 1400000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Photography Organisation": 201000,
- "XPO Logistics": 7700000000,
- "YET2": 20000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zumiez": 1100000000,
- "flyADVANCED": 6300000,
- "iFarm": 2500000
+ "Womply": 30000000,
+ "Workflow Technologies": 6000000,
+ "World Wireless Solutions": 20700000,
+ "Xamaze": 6200000,
+ "Xandermar": 7100000,
+ "Xpert Tek Solutions": 22100000,
+ "Xpres Servers": 6800000,
+ "Xpress Computer Systems": 2800000,
+ "Zachary Piper": 5000000,
+ "Zailab": 30000000,
+ "Zapbuild": 25000000,
+ "Zed Systems": 1400000,
+ "Zerowait": 5500000,
+ "Zilicus": 6600000,
+ "Zip24": 1900000,
+ "Zomentum": 2200000,
+ "aCloudVPS": 13200000,
+ "doeLEGAL": 13400000,
+ "eGlobal Insight": 11600000,
+ "iLeap": 7000000,
+ "mTouch Labs": 2400000,
+ "mondCloud": 7000000,
+ "vGIS": 1500000,
+ "xAssets": 26800000,
+ "zCon Solutions": 4000000
},
"Florida": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AACSB": 22500000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "5i Solutions": 15800000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "ATR": 1800000000,
- "Academy Sports Outdoors": 6600000000,
+ "ADY Corporation Inc.": 34400000,
+ "AKA Consulting": 13900000,
+ "APEX Digital Imaging": 14100000,
+ "APPLIED DATA CORP UK LIMITED": 17300000,
+ "APls web development": 28100000,
+ "ASKAR TECHNOLOGIES": 17800000,
+ "AVALON Design Studio": 14100000,
+ "AVG": 200000000,
"Accusoft": 27000000,
- "Acron Group": 2400000000,
- "ActionQuest": 15800000,
- "Advantage Rent a Car": 150000000,
- "Aerolineas Argentinas": 1500000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Airlines Reporting Corporation": 150000000,
- "Akerman": 879000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "America's Swimming Pool": 54600000,
- "American Association of Clinical Endocrinologists": 23400000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Momentum Bank": 25000000,
- "American Trucking Associations": 180900000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Aperture": 11800000,
- "Aqua-Aston Hospitality": 43000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Associated Grocers of Florida": 800000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
+ "Advanced Business Computers of America ABCoA": 35100000,
+ "Aenigma 10": 11000000,
+ "Alan Hamilton Ceramic Installation": 15100000,
+ "Alaric Asia Pacific": 27600000,
+ "Alchemy Digital Media": 28600000,
+ "Algorithm": 37000000,
+ "Alpha II": 25000000,
+ "Anona Bay": 31300000,
+ "AppRiver": 94600000,
+ "ApparelMagic": 19500000,
+ "Appboost - Cross Promotion Platform": 27300000,
+ "Archimedes Global": 11000000,
+ "Associated Veterans": 12800000,
+ "Asure Software": 76600000,
"Atlantic": 59500000,
- "Atria Senior Living": 778500000,
- "Aurubis": 14300000000,
- "Avvo": 29900000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BAUSCH STROEBEL": 190000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "BLU PRODUCTS": 345000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baldwin Middle-Senior High School": 1500000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Bartow Airport": 37300000,
- "Baseball Factory": 10000000,
- "Bebe Stores": 186500000,
- "Beckman Coulter": 2100000000,
- "BeenVerified": 14500000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Bessemer Trust": 682100000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Boeing Store": 13900000,
- "Bonchon": 60000000,
+ "Atlanticsoft": 19000000,
+ "Audra Jon Hoover": 11600000,
+ "Auritas": 12300000,
+ "Automated Case Management Systems ACMS Incorporated": 12500000,
+ "Awesome Cloud": 13500000,
+ "Awesome Motive": 12000000,
+ "B K Design": 38200000,
+ "Barnard Software": 11000000,
+ "Basement Light Design": 21400000,
+ "Bay Systems": 24900000,
+ "Beachaus": 12300000,
+ "Benchmark Consulting": 30000000,
+ "Benchmark IT Solutions": 25000000,
+ "Blue Centaur": 14800000,
+ "Bluewater Internet": 27700000,
+ "Blytheco": 31200000,
+ "Bonzzu": 17200000,
"Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
- "Brookfield Global Integrated Solutions": 17500000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "Boss Design & Sign - Fargo ND": 12800000,
+ "Bride To Do": 16700000,
+ "Bright Smile Labs": 23800000,
+ "BrixTec": 17600000,
+ "Brushstroke": 28900000,
+ "Bubble": 7000000,
+ "Business Systems Design & Software Inc.": 39600000,
+ "C alytrix": 10000000,
"CACI": 6200000000,
"CDP": 23100000,
"CDW": 23800000000,
- "CRH": 31000000000,
- "CSL": 1900000000,
+ "CP Web Hosting": 10700000,
+ "CPR Software": 13600000,
+ "CSI Technology": 10000000,
"CVidya": 12100000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Centene": 144500000000,
- "Certegy Payment Solutions LLC.": 25000000,
- "Cheap flights": 135800000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
+ "CYBER MARKETING & RESEARCH LLC.": 20500000,
+ "Case Soft": 22000000,
+ "Cedar Technology": 25000000,
+ "Celi Creative": 24300000,
+ "Centella Consulting": 11900000,
+ "Central Park Realty Corporation": 13000000,
+ "Chaiban Engineering Consultants": 15700000,
+ "CiberC": 31100000,
+ "Clearstream": 856400000,
+ "ClinIntell": 27400000,
+ "Cloud Software Group": 14600000,
"Cloudflare": 894100000,
- "College Hunks Hauling Junk": 100000000,
- "Community Christian Academy": 12100000,
- "Community Christian School": 30000000,
- "Community Coffee": 245000000,
- "Concord entertainment company": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Corgan": 191300000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
+ "Cobalt Technologies": 21100000,
+ "Cobra Tech": 13600000,
+ "Comdex Enterprises": 29300000,
+ "Communication Experts Incorporated": 27700000,
+ "Compass Solutions": 20300000,
+ "Complete Care IT": 39400000,
+ "CompuTrends": 25800000,
+ "Computer Point": 15800000,
+ "Computer Tech Pro": 20000000,
+ "ConcealNET": 12300000,
+ "Connectivity Based Integration Inc.": 22800000,
+ "Container Corp Inter": 23200000,
+ "Continuum IT Solutions": 16600000,
+ "Convene Inc.": 15700000,
+ "Convox": 10200000,
+ "Cove Systems": 24200000,
+ "Cyber Planet Designs": 14400000,
"Cyren": 30000000,
- "DEX Imaging": 284000000,
- "DFCU Financial": 179900000,
- "DISA": 120000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DZS": 373600000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "DirecTV LA": 22400000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Disney Institute": 33800000,
- "Dnata": 1500000000,
- "Dogfish": 40000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "Douglas": 3800000000,
- "Dual Electronics": 11900000,
- "E Trade": 2900000000,
- "ECN Capital Corporation": 256600000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastern Association for the Surgery of Trauma": 34200000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Elavon": 550000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elnec": 12200000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
+ "DDC Net Services": 53200000,
+ "DECTEK": 14500000,
+ "DRAFT LLC.": 31500000,
+ "DashboardMD": 31200000,
+ "Data Age": 32100000,
+ "Data Futures": 30700000,
+ "Datamaxx": 12000000,
+ "Dawn of Designs": 11800000,
+ "Deanna Sutton Realty Inc.": 28300000,
+ "Deepwatch": 120000000,
+ "Delgar": 11500000,
+ "Dental Billing Software": 42000000,
+ "Design for Context": 21400000,
+ "Design360": 26300000,
+ "Designapolis": 31100000,
+ "Deyton Group": 11800000,
+ "Digital Bridge": 8000000,
+ "Digital Realty": 4700000000,
+ "Digiware": 46500000,
+ "Disaster Solutions": 11100000,
+ "DomPrice": 19100000,
+ "Domain": 6200000,
+ "Donstudio": 43300000,
+ "Drawbridge": 15400000,
+ "Durateq": 15300000,
+ "E-Micro Solutions": 35900000,
+ "EIT Networks": 48100000,
+ "EXALT Technologies": 35000000,
+ "Edocr": 1700000,
+ "Effective Consulting": 10200000,
+ "Emphasys": 25000000,
+ "Enlightened Software": 24600000,
+ "Enterra Poker": 17600000,
"Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evite": 44400000,
- "Exact Data": 20000000,
- "FLY Leasing": 334400000,
- "Faegre Drinker": 512900000,
- "Fanatics": 2600000000,
- "Farmer Brothers": 469200000,
- "Fashionphile": 57200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrari": 8700000000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Choice": 10000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Equisolve": 16000000,
+ "EveryMatrix Software Limited": 10000000,
+ "Exactis LLC.": 35600000,
+ "FX Design Group": 13500000,
"Fiserv": 17700000000,
- "Flexport": 3300000000,
- "FlixBus": 450000000,
- "Florida Department of Management Services": 150000000,
- "FormFactor": 747900000,
+ "Flagship Solutions Group": 223900000,
+ "Floridom": 11500000,
"Fortinet": 4100000000,
- "Foundever": 4400000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
"FreeWave": 26600000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "GP Strategies": 482000000,
- "Gama Aviation": 246800000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "Gas South": 460000000,
- "GasBuddy": 13900000,
- "Gaumard": 120000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Gilead": 27500000000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
+ "Fresh Byte": 22300000,
+ "Full Time Artists": 12600000,
+ "GDIT": 7900000000,
+ "GLESEC": 26600000,
+ "GNSOL": 10000000,
+ "Gainwell Technologies": 1400000000,
+ "Geek 3.": 11500000,
+ "Gene's Plastics Inc.": 30700000,
+ "GeoDecisions": 35000000,
+ "Go Computek": 23800000,
+ "Gossimer": 17500000,
+ "GovPilot": 36000000,
+ "Granat Design": 26300000,
+ "Graybarsoft": 11000000,
+ "HCIQ": 10000000,
"HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hallandale Beach FL": 10000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Hazelden Betty Ford": 186300000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Herbalife": 5200000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holland America Line": 300000000,
- "Holy Name of Jesus": 27800000,
- "HomeLight": 300000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "I Squared Capital LLC.": 35000000,
+ "HD Interactive Inc.": 30000000,
+ "HIPAAT": 17300000,
+ "HLP Integration": 11400000,
+ "Hack The Box": 5000000,
+ "Halborn": 8900000,
+ "Halfaker": 166000000,
+ "Harbour Mastery": 21400000,
+ "Harraka Software LLC.": 31300000,
+ "Hayes Computer Systems": 22600000,
+ "Hivelocity": 10000000,
+ "Hostess Job Italy": 16100000,
+ "Hotel Software": 19600000,
+ "House Mindwellness": 16100000,
"I-ON Digital": 35000000,
- "I.U.P.A": 10000000,
- "IBO": 32300000,
- "IMG": 375000000,
- "INSIGHTEC": 72000000,
- "IQOR": 1000000000,
- "Imagine Schools": 14500000,
- "Institute for Supply Management": 35100000,
- "IntelePeer": 112500000,
+ "ICG is": 10000000,
+ "IT Direct": 26600000,
+ "ITE Tech": 18800000,
+ "ITS Nationwide": 38800000,
+ "Illumination Creative Group": 35200000,
+ "InLigo": 17000000,
+ "Incisive Solutions": 24800000,
+ "Infinite Ideas": 30800000,
+ "InfoSight": 15000000,
+ "Infotech Systems Inc.": 62100000,
+ "Inner Four": 8800000,
+ "Innovative Document Solutions": 29900000,
+ "Intaver": 139000,
+ "Integra Business Systems": 27000000,
+ "Integra Computer Systems": 17600000,
+ "IntelliChief": 12000000,
+ "IntelliDocX": 26400000,
+ "Intelliform": 24900000,
+ "Intelligent Technology Services Incorporated": 26500000,
+ "InterVision": 19000000,
+ "Interact2Day": 19000000,
+ "Intergraphic": 32600000,
"Intetics": 28500000,
- "Iron Mountain Incorporated": 5000000000,
- "Italian Wikipedia": 91200000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jinko Solar": 6300000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Jumeirah": 2000000000,
- "K9s For Warriors": 12900000,
- "KBR": 7700000000,
- "KKR & Co. Inc.": 7400000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Kaplan Financial": 12000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knight Foundation": 12800000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kroll": 3000000000,
- "LAC Group": 60000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LOCMAN": 17500000,
- "La Madeleine": 35200000,
- "Lake County Sheriff's Office": 37900000,
- "Laureate Education": 1200000000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
+ "Intive": 75000000,
+ "Invermidas": 10100000,
+ "Invictus Group Inc.": 10800000,
+ "Iocomp": 17500000,
+ "Ithikon": 16600000,
+ "JADEE": 35600000,
+ "JAMIS": 35000000,
+ "Jai Infoway": 31700000,
+ "James Marsh": 22700000,
+ "KATWA": 10000000,
+ "KIMON GROUP INC.": 16200000,
+ "Kamel Software": 13900000,
+ "Kasha Fahy": 25600000,
+ "Katina Creative": 22700000,
+ "Ke`aki Technologies": 36000000,
+ "Kim Parrish": 32500000,
+ "Kisters": 150000000,
+ "Knovos": 14900000,
+ "KnowBe4": 289200000,
+ "Lanicom": 33500000,
+ "Lapstix": 17100000,
+ "Lauren Mann Design": 25300000,
+ "Leedom Bhph World Convention": 14000000,
"Lenovo": 66000000000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Look company": 56000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Technik": 4600000000,
- "MBIA": 124000000,
- "MOOYAH": 11700000,
- "Madison Reed": 100000000,
- "MagicJack": 101000000,
- "Main Event": 678000000,
- "Malaysia Airlines": 461900000,
- "Mandarin Oriental": 1100000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Marriott Vacations Worldwide": 4700000000,
- "Mayo Clinic": 14000000000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Mettler-toledo Inc.": 3900000000,
- "Miami Police": 29000000,
- "Miami-Opa Locka Executive Airport": 10100000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
+ "Limezoft": 37400000,
+ "Linda Carter Realtor": 26400000,
+ "Link Tech Computer Services": 26600000,
+ "LinkDat Inc.": 14000000,
+ "Louis Porter Jr. Design": 21600000,
+ "MD Global Technologies": 10000000,
+ "MDVERB": 12500000,
+ "MVI Solutions": 26400000,
+ "Mag": 3200000,
+ "MapLogic": 27300000,
+ "Mastech Digital": 211700000,
+ "Matta Design Studio": 12200000,
+ "MedEZ\u00ae": 1500000,
+ "Mega-Data Services": 28000000,
+ "Meperia": 33800000,
+ "Meteorite Informatics": 25300000,
+ "Mi9 Retail": 36200000,
+ "Michael-clarke Co Inc.": 17100000,
+ "Mile2": 1900000,
+ "Millennium Information Group": 12000000,
+ "Miva": 9200000,
+ "MobileBits Corporation": 7500000,
"ModMed": 250000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Mosaic": 7200000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NFTE": 11400000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "National Resilience": 500000000,
- "National Steel and Shipbuilding Company": 480000000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "NextEra Energy Partners": 1200000000,
- "Nikola Corporation": 44000000,
- "ORBCOMM": 255200000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Orange Business": 9600000000,
- "Orange County Choppers": 12400000,
- "Orlando Weekly": 32800000,
- "Outback Steakhouse": 2000000000,
- "Outokumpu": 9800000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "Pacific Dental Services": 1400000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Park 'N Fly": 48500000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "Paulist": 18800000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Pepperidge Farm": 28200000,
- "Perkins&Will": 670300000,
- "Phillips Edison": 496900000,
+ "Momentum Consulting Corporation": 29300000,
+ "My Docs Online": 31000000,
+ "NDS Systems LC": 13100000,
+ "NMGI": 20400000,
+ "NU GRAFFIKA LLC.": 12000000,
+ "Need A Geek": 24900000,
+ "NetNerds": 32300000,
+ "NetVPro": 45100000,
+ "NetX Consulting": 20000000,
+ "NetXQ": 13200000,
+ "Netsirk Technologies Inc.": 29400000,
+ "Network Extreme": 20800000,
+ "NexSDS": 33500000,
+ "Nick France Design": 13300000,
+ "Novacomp": 25000000,
+ "Nu-Legynds": 19600000,
+ "OCALA GRAN PRIX": 27400000,
+ "ON24": 196300000,
+ "OSI Affiliate": 25000000,
+ "Obsidian Solutions Group": 38000000,
+ "One World Technologies": 33700000,
+ "OneGlobe": 48700000,
+ "Open Software Technologies Inc.": 23300000,
+ "Optimi": 27200000,
+ "Origin World Labs": 10000000,
+ "Outr": 20200000,
+ "PYA Wise Software Solutions": 22500000,
+ "Panda Security": 105000000,
+ "Paradise Pointe Rv Resort": 28100000,
+ "Patriotic Dream Llc.": 12900000,
+ "Paylocity Corporation": 923400000,
+ "Penny Taylor-miller P. A.": 28700000,
+ "Pentasys": 15700000,
+ "Phase One Computing": 12000000,
"Phocas": 50000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
+ "Picus Security": 12500000,
+ "Pin Oak Web Designs": 20800000,
"Pipedrive": 85000000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Pollo Tropical": 600000000,
- "Porsche France SAS.": 34300000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Proskauer": 38000000,
- "Protective Life": 6700000000,
+ "Piper Technology": 10400000,
+ "Pondurance": 7400000,
+ "Powers Design": 24400000,
+ "Praxi Solutions": 12900000,
+ "PrismCS": 17000000,
+ "Procore": 664300000,
+ "Professional Systems Associates": 61500000,
+ "Progeny Genetics": 10000000,
+ "Project DocControl": 15000000,
+ "Promixis": 27200000,
+ "Proteus Blue": 29400000,
"Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "Quanta Services": 17100000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Rad Power Bikes": 138000000,
- "Rainforest Cafe": 10000000,
- "Red Wing Shoes": 700000000,
- "Regal Springs AG": 450500000,
- "Renco Electronics": 28000000,
+ "Puma Telecommunications": 20900000,
+ "QLX": 25000000,
+ "QNotes": 23700000,
+ "QuickSeries Publishing": 74500000,
+ "RED ESIGNS": 53900000,
+ "Rauland Florida": 67300000,
+ "ReMilNet": 12100000,
+ "Reksoft": 10000000,
+ "Reliable Computer Services": 17500000,
+ "RemoteWorks": 20600000,
+ "Reonomy": 18300000,
"Reputation": 18500000,
- "Rexair": 35000000,
- "Rising Medical Solutions": 26000000,
- "Riverside Health System": 19000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rohde & Schwarz": 2600000000,
- "Ronald McDonald House Charities": 59500000,
+ "Retina-X Studios": 4500000,
+ "Retroluxe": 20400000,
+ "Revalize": 50000000,
+ "Revolent Group": 1500000000,
+ "Rltcorp Software Development S": 26900000,
+ "Rocky Mountain Technology Ventures": 15800000,
+ "Roller Graphics": 18200000,
"Roper Technologies": 6200000000,
- "Ryman Hospitality Properties": 1100000000,
- "R\u00f6hlig Logistics": 36500000,
+ "RoundTableHQ": 10000000,
+ "S4 Solutions Inc.": 39000000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SATEL": 46600000,
- "SBA Communications": 2500000000,
- "SGS S.A.": 28000000000,
- "SGTM": 25700000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "STRATEC": 289900000,
- "Saber Interactive": 25000000,
- "Safelite": 2400000000,
- "Safilo": 150000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Samford": 173000000,
- "Santander Bank": 14800000,
+ "SVAM": 20000000,
+ "Sage Outsource": 13300000,
+ "Sage-Graphics": 32100000,
+ "Salvo Graphics": 20100000,
+ "Sandshot Software": 26800000,
"Sapiens": 382000000,
- "Sawgrass Country Club": 71200000,
- "Scandinavian Tobacco Group": 1200000000,
- "Schmitt Music": 20600000,
- "Seaboard": 11200000000,
+ "Sarah Ruediger": 18500000,
+ "Scott Ross": 15700000,
+ "Scurto Marketing": 57400000,
+ "Sdsecure": 12000000,
"Seagate Technology": 9400000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Smart Growth America": 10000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snyder's-Lance": 8600000000,
- "SoBe Entertainment": 13300000,
- "Sodexo": 22300000000,
+ "Seattle New Media": 13200000,
+ "SensiGuard": 10200000,
+ "Shababsoft": 16300000,
+ "Share-ify": 70000000,
+ "Siebenthaler Creative": 20600000,
+ "SilverFast": 7000000,
+ "Simone Ems": 13300000,
+ "Simplified Technology": 23000000,
+ "Siri InfoSolutions": 17500000,
+ "Sites by Karen": 47200000,
+ "Slack": 1100000000,
+ "SmarTek21": 27000000,
+ "Smart Solutions International": 77800000,
+ "SmartProIT": 27100000,
"SoftServe": 570200000,
- "Solmetric": 19300000,
- "Solomon Partners LP.": 10000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Grocers": 9600000000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spanx LLC.": 400000000,
- "Squire Patton Boggs": 701000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Starr Insurance Companies": 3500000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stride Inc.": 1400000000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Swatch Group": 32000000000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Swire Properties": 14500000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syniverse": 840000000,
+ "Software Applications And Cmpt": 11100000,
+ "Software Business Tools": 13000000,
+ "Software Design": 22800000,
+ "Software Shelf International": 8000000,
+ "Software Tool": 39700000,
+ "Spirion": 15000000,
+ "Squeegie Studios": 21100000,
+ "Stature Software": 36100000,
+ "Studio B 2": 41500000,
+ "Sumtotal Systems LLC.": 120000000,
+ "SunDial Technologies": 35500000,
+ "Sunsky": 29600000,
+ "Superlicious Design": 21100000,
+ "Swyft": 15000000,
+ "Symbotic": 30000000,
+ "Syncsite": 20000000,
"Synnex": 57900000,
- "TOM FORD": 615000000,
- "Tactical Air Support": 10300000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "TechCrunch": 525000000,
- "Telcel": 2000000000,
- "Telefonica S.A.": 17500000,
- "TelevisaUnivision": 17500000,
+ "Syntropy Software": 18000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TGA Design": 15800000,
+ "TNT Computers Inc.": 13300000,
+ "Tech Hero": 20100000,
+ "TechnoPark": 20400000,
"Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Thales Group": 18000000000,
- "The Hartford": 21400000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Sandspur": 20400000,
- "The Scoular Company": 4000000000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilting Point Media LLC.": 53000000,
- "Time4Learning": 19000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Tree Hill Nature Center": 10900000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Trump Hotels": 75000000,
- "Tupperware Brands Corp": 9900000,
- "Tutor Perini": 10000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UM Motorcycles": 850000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Ultragenyx": 363300000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universa": 14900000,
- "Universal Orlando Resort": 281600000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
+ "Tempest Harding": 18100000,
+ "The Allen Group": 16300000,
+ "The Org company": 2000000,
+ "The Web Griffins": 18600000,
+ "Thunderbird Software": 23400000,
+ "Tickspot": 14400000,
+ "TidalWave Software": 14300000,
+ "TigerDirect": 200000000,
+ "ToddSantoro": 16300000,
+ "TopView Software": 18800000,
+ "TowStor": 12700000,
+ "Trans-Market": 30000000,
+ "TransGenex": 15500000,
+ "Trek Associates": 23000000,
+ "Trihedral Engineering": 6000000,
+ "Trinity Software Distribution": 25300000,
+ "True Digital Security": 14000000,
+ "Trusted Genius": 19400000,
+ "Truth & Deception Technologies": 13600000,
+ "Twisted Technologies": 28300000,
+ "User In Mind": 34500000,
+ "Ushur": 10000000,
+ "Uvation": 62900000,
"VMware": 13200000000,
- "VP Records": 50800000,
- "VT M\u00c4K": 100000000,
- "Venus Fashion": 200000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Verifone": 1800000000,
+ "Validity": 10200000,
+ "Vates'": 50000000,
"Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "VetDepot": 25000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Virtusa": 1300000000,
- "Vistra": 600000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
+ "Verity Partners": 24400000,
+ "Vision Computer Programming": 14500000,
+ "Vns International Inc.": 21800000,
+ "VocalPoint Consulting": 28500000,
+ "Vortech Solutions": 47000000,
"Vuram": 12000000,
- "W. W. Grainger": 15200000000,
+ "W.I.T. Group": 42300000,
+ "WASP MOBILE LLC.": 16400000,
"WP Engine": 200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Western Beef": 220000000,
- "Western Digital": 13000000000,
- "Westfield Insurance": 2000000000,
- "Westminster Christian School": 47800000,
- "Whelen": 500000000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Wilson Sporting Goods": 769700000,
- "Wings Financial": 243000000,
+ "WareITis": 27200000,
+ "WarrenTEK": 24800000,
+ "Watergraphics": 19700000,
+ "Web": 750800000,
+ "Wise-Networks": 19000000,
"Wolters Kluwer": 5400000000,
- "Women In Distress": 10000000,
- "Women's Golf Coaches Association": 20000000,
- "World Golf": 22700000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Zama Group": 14500000,
- "iHire": 15900000
+ "Worldwide Systems": 36500000,
+ "XZ Backup": 14200000,
+ "Xorca": 19900000,
+ "Yext": 399900000,
+ "aXiom Informatics": 16300000,
+ "djmiller Services": 19200000,
+ "e-RP Systems": 20400000,
+ "eLicense": 20000000,
+ "eSilo": 16000000,
+ "nTier Solutions": 42700000
},
"Georgia": {
- "3D International": 4000000000,
- "AACSB": 22500000,
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
+ "6th Street Consulting": 23500000,
+ "AACRO": 17200000,
+ "ACR 2 Solutions": 24100000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
- "ATF": 1000000000,
- "ATR": 1800000000,
- "AUMUND Fordertechnik GmbH": 15900000,
- "Abeka": 20000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
+ "AGI Worldwide": 27300000,
+ "AIGA": 2400000,
+ "AIS Solutions Group LLC.": 10000000,
+ "AK Access": 13600000,
+ "AODCX": 12000000,
+ "Aattech": 27500000,
+ "Ably": 10000000,
+ "Accelerated Solutions": 29100000,
+ "Accolade Technology": 28200000,
+ "Accusoft": 27000000,
+ "Achieva IT": 31100000,
"Acuant": 58100000,
- "Acuity Brands": 4000000000,
- "Advanced Armament": 15100000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
+ "Adametrix": 20700000,
+ "Admin Pro Tools": 25200000,
+ "Advanced Automation Technology": 10600000,
+ "Advanced IT Solutions": 11900000,
+ "Advantage Programming Concepts": 24400000,
+ "AdvertEyes": 28900000,
+ "Affine": 17000000,
+ "Air2Web": 22700000,
+ "Albany Networks": 18200000,
+ "Algorithm": 37000000,
"Alithya": 389900000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alogent": 50000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Management Association": 21700000,
- "American President Lines": 1300000000,
- "American Trucking Associations": 180900000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Americus Times-Recorder": 28300000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Arconic": 9000000000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Association for Information Systems": 26900000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlanta Gas Light": 500000000,
- "Atlanta Public Schools": 38500000,
- "Atlanta Regional Airport": 19800000,
- "Atria Senior Living": 778500000,
- "Augusta Country Club": 10400000,
- "Australian Laboratory Services": 6600000000,
+ "Allied Informatics": 10400000,
+ "Alucid": 23000000,
+ "American Design Source": 14100000,
+ "American Network Expert": 48800000,
+ "Ameris Bank Correspondent and Wholesale Services": 11200000,
+ "Anderson Taylor": 25900000,
+ "AntFarm": 24300000,
+ "Anywhere365": 54000000,
+ "AppRiver": 94600000,
+ "Apptad": 15000000,
+ "Apto Solutions": 33100000,
+ "Arbela Technologies": 22200000,
+ "Archibus": 20000000,
+ "Arinze Design": 14100000,
+ "Arke": 14500000,
+ "Assima": 20000000,
+ "Assurance Technologies": 20000000,
+ "Athens Micro": 14500000,
+ "Atlanta SPIN": 11000000,
+ "Atrius": 21400000,
+ "AudioEye Inc.": 28700000,
+ "Avail Company": 4200000,
"Avanade": 3900000,
- "Awesome Inc.": 29600000,
- "BBDO": 1800000000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bessemer Trust": 682100000,
+ "Avs computer services": 48900000,
+ "Axiomatic Systems": 31500000,
+ "BBL Systems": 18900000,
+ "BSP Software": 17000000,
+ "Benchmark Technology Group": 17200000,
"BetterCloud": 31400000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bobby's Burger Palace": 10300000,
- "Boehringer Ingelheim": 23300000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
+ "Big Fish Technology": 11200000,
+ "Big Red Rooster": 25900000,
+ "Blue Ridge Global": 28700000,
+ "BlueVision Software": 20600000,
"Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Bounce TV": 15300000,
- "Boxlight": 215200000,
- "Boys & Girls Clubs of America": 320000000,
- "Brambles": 3300000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "Brainbench": 35000000,
+ "BridalLive": 10300000,
+ "Bridge Interactive": 22500000,
+ "Brightree": 500000000,
+ "Bugsense": 7000000,
+ "Business Technology Solutions": 32000000,
+ "Byteware Inc.": 15800000,
"C3 AI": 12900000,
+ "CASAAS": 17500000,
"CDP": 23100000,
- "CELINE": 600000000,
- "CRH": 31000000000,
- "Cabot Corporation Foundation": 28000000,
+ "CULLY Technologies": 26000000,
"Calendly": 80000000,
- "Camden Property Trust": 2000000000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carrs-Safeway": 10400000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Chainalytics": 34000000,
- "Charles River Associates": 568700000,
- "Chick-fil-A": 5800000000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
+ "Camelot Integrated Solutions": 10000000,
+ "Capricorn Systems": 10000000,
+ "Centella Consulting": 11900000,
+ "Central Georgia Technology": 22200000,
+ "CheckWorks": 18100000,
+ "Cheetah RAID": 17300000,
+ "Chickamaugapres": 41600000,
"Cirium": 10000000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
"CloudBolt": 23000000,
+ "CloudFran": 12000000,
"Cloudera": 904800000,
- "Coats Group PLC.": 1500000000,
- "College Hunks Hauling Junk": 100000000,
+ "Cloudmed": 205400000,
+ "Code Knights": 21300000,
+ "CodeScience": 24000000,
+ "Cohn Consulting Corporation": 12000000,
"Comarch": 400900000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
- "Corgan": 191300000,
- "Corteva": 17100000000,
- "CoverMyMeds": 200000000,
- "Cox Enterprises": 20000000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Curry Up Now": 13800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dayton Superior": 65000000,
- "DeKalb County GA": 40000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delta Galil": 2100000000,
+ "Comlite Systems": 43100000,
+ "Complete Discovery Source": 35000000,
+ "Computer Atlanta": 35800000,
+ "Computer Resources": 28300000,
+ "Computer Service & Network Center": 23200000,
+ "Configero": 12000000,
+ "Conservation Resource Solutions": 15000000,
+ "Content Thread": 11000000,
+ "Cool Dog Interactive Inc.": 16400000,
+ "Copeland Studios Inc.": 30000000,
+ "Coraid": 17100000,
+ "Creative Designworx LLC.": 33700000,
+ "Credit Central Inc.": 20700000,
+ "Cyberlyte": 21700000,
+ "Cypress Cloud": 10000000,
+ "Cyviz": 35200000,
+ "DaLee": 25800000,
+ "Datasite": 150000000,
+ "Decision First": 17500000,
+ "Delboy": 16600000,
"DemandTec": 75000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Deutsche Telekom": 123400000000,
+ "Deposco": 19000000,
+ "Design for Context": 21400000,
+ "Devise Inc.": 23600000,
+ "Diamond Software Systems": 15800000,
+ "Digital Agent": 32800000,
+ "Digital Positions": 18700000,
"Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Direction Nationale du Contr\u00f4le de Gestion": 20000000,
- "Discovery Sports": 150000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dow Jones": 1600000000,
- "Druid Hills Golf Club": 31900000,
- "Drury Hotels": 620000000,
- "Dynacraft Wheels": 25000000,
- "E Trade": 2900000000,
- "EEOC": 10000000,
+ "Digital Resolve": 22000000,
+ "Discovery Computer Forensics & Investigations": 16600000,
+ "Diversified Computer Solutions": 28000000,
+ "DomainVIP": 36200000,
+ "Dotnetspider": 10000000,
+ "Doxim": 67000000,
+ "DreamFactory Software": 6000000,
+ "Drive Retail": 22100000,
+ "Durateq": 15300000,
+ "EASON": 27400000,
+ "ECS Solutions": 11300000,
+ "EXALT Technologies": 35000000,
+ "Eagleson Consulting": 37400000,
+ "EarthCam": 15000000,
+ "Eastern Management Inc.": 28800000,
"Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electric Boat Co.": 10000000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Elring Klinger": 1800000000,
- "Embrace Home Loans": 180600000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Equifax": 5100000000,
+ "Ebryit": 13200000,
+ "EchoSpan": 43500000,
+ "EchoViz": 13900000,
+ "Eclipse Networks": 24600000,
+ "Electrical & Computer Resources": 14300000,
+ "Elsym": 12800000,
+ "Enablus": 27500000,
+ "Ensure Technologies": 18800000,
"Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "FIAMM": 46400000,
+ "EquusNox": 35000000,
+ "Eracent": 10000000,
+ "Eucon": 18000000,
+ "Evocative": 44000000,
+ "Excel-O-Data": 35000000,
+ "Exenta": 14800000,
+ "Exponential AI": 10000000,
"FINEOS Corporation Ltd.": 71400000,
- "Farmer Brothers": 469200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Watch": 677600000,
+ "FUTREND": 27500000,
+ "FX Design Group": 13500000,
+ "Famteck": 21700000,
+ "Far Point": 10100000,
+ "Feathr": 11000000,
+ "Featurespace": 40000000,
+ "Finished Art": 16700000,
+ "Firstlogic": 10000000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Fortress Investment Group": 1200000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gas South": 460000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Genuine Parts Company": 20500000000,
- "Georgia Department of Education": 10000000,
- "Georgia Ports Authority": 19000000,
- "Georgia Power Company": 9300000000,
- "Georgia Public Broadcasting": 16300000,
- "Girls Inc.": 15200000,
- "Globe Life Insurance": 5200000000,
- "Godrej Consumer Products": 1600000000,
- "Golder Associates Inc.": 1000000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "GreatSchools": 11000000,
- "GreenSky LLC.": 518100000,
- "Greenberg Traurig": 2000000000,
- "Grenzebach": 52000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Groz-Beckert": 108600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Gwinnett County School District": 75800000,
- "HCA Healthcare": 60200000000,
+ "Five Years Forward": 23300000,
+ "Flairsoft": 27700000,
+ "Flywheel Building Intelligence Inc.": 10000000,
+ "Foresight Software": 17800000,
+ "Fractal Solutions": 11700000,
+ "Fredrick Group": 28100000,
+ "Frontline Managed Services - St. Louis": 15000000,
+ "FusionLink": 25400000,
+ "G-NET GLOBAL NETWORK": 13300000,
+ "GC&E Systems Group": 59000000,
+ "GRM Information Management": 100000000,
+ "Gail Bean Design": 15400000,
+ "Gainwell Technologies": 1400000000,
+ "GalleriaByLeah": 16300000,
+ "Genesis Networks": 1200000000,
+ "Genogram": 14600000,
+ "Georgia Technologies": 26900000,
+ "GicSoft": 37100000,
+ "GiveSmart": 12000000,
+ "Global Digital Forensics": 12000000,
+ "Global Technologies Inc.": 31000000,
+ "GlobalMeet": 15300000,
+ "Glowing Spirit": 35500000,
+ "Govitec": 10100000,
+ "Gray Tech Systems": 22500000,
+ "Great Web Stuff": 15200000,
+ "Grid Dynamics": 243600000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Haworth": 2300000000,
- "Hendricks Holding": 21400000,
- "Heraeus": 33400000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Houchens": 3000000000,
- "Hudson": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "Imagination Technologies": 109700000,
+ "Hagerman": 35000000,
+ "Health Institute For Preventive Care": 15400000,
+ "Heck Design Group": 22500000,
+ "Hexaware": 971000000,
+ "Highland Software": 47500000,
+ "Hivelocity": 10000000,
+ "Host Experts": 29700000,
+ "Hotel Booking Solutions": 10000000,
+ "HyperDrive Inc.": 11100000,
+ "IGT Solutions": 230000000,
+ "IIT WorkForce": 24000000,
+ "INLOGIC": 11100000,
+ "IOMAXIS": 15400000,
+ "IRIS Software Group": 104900000,
+ "ITSOLUTIONS SAS.": 50300000,
+ "Identity One": 36200000,
+ "Illuminate Design Co.": 27900000,
+ "Illumiti": 95000000,
+ "InComm Product Control": 40400000,
+ "InReality": 10100000,
+ "Infaccess": 13900000,
+ "Infinium Technologies": 45500000,
+ "Infopath Inc.": 37200000,
+ "Informatic Tech": 16000000,
"Infosys BPM Limited": 38200000,
- "Interfor": 354900000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Irwin County High": 28500000,
- "Itron": 10000000,
- "JBT FoodTech": 1400000000,
- "Jabil": 33500000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
+ "Infosys Equinox": 34100000,
+ "Ingenuity Cloud Services": 15000000,
+ "Input Technologies": 35500000,
+ "IntelliGenesis": 32400000,
+ "Intelliquip": 10700000,
+ "Internet Resource Centers": 14300000,
+ "Intersec Worldwide": 34700000,
+ "IoT2WAN": 10300000,
+ "Itineris": 68900000,
+ "JAS Graphics": 12100000,
+ "JDL Technologies": 14800000,
+ "JFL Corp": 10500000,
+ "JNetCreations": 13500000,
+ "JS Computer": 31700000,
+ "Joel Rozier": 65600000,
"John Galt Solutions Inc.": 10500000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "KBR": 7700000000,
- "KHS GmbH": 1400000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kapsch": 830500000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kendall Hunt": 37400000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimball International": 635100000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Kroger": 130700000000,
- "Kymeta": 40000000,
- "L.K. Bennett": 91700000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LUFKIN": 1500000000,
- "Lambda Legal": 11600000,
- "Landmark Worldwide": 29100000,
- "Larsen & Toubro Infotech": 2100000000,
- "Lazy Dog Restaurants": 210000000,
- "Lectra": 188800000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
+ "KATWA": 10000000,
+ "KH International": 26500000,
+ "KOSTYA": 16200000,
+ "Kaavian Systems": 10000000,
+ "Keller Williams Atlanta-north Fulton Commercial - Bev Lilghtfood": 16500000,
+ "Keller Williams Realty - Benjamin Jolly": 36200000,
+ "Kount": 60000000,
+ "Lanfire Systems": 28900000,
+ "Lanier Consultants": 43100000,
+ "LeaseQuery": 28400000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Liberty Mutual": 48200000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lincoln International": 224000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "M.C. Dean": 1000000000,
- "MFG Inc.": 30000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Macon Transit Authority": 12700000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marist": 38300000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meetup": 25000000,
- "Mellow Mushroom": 69000000,
- "Melrose Industries": 375000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metzler": 700000000,
- "Microsemi": 1700000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molnlycke": 2200000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Moody's Analytics": 5700000000,
- "Mosaic": 7200000000,
- "Mueller Water Products": 1200000000,
- "Mullen": 93200000,
- "Munich Re": 73300000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NERC": 70000000,
- "NIIT": 211100000,
- "Natera": 776000000,
- "National Christian Foundation": 27800000,
- "Naugatuck Railroad": 24200000,
- "Neiman Marcus": 2600000000,
+ "Libelle": 35000000,
+ "Life Style Kitchen & Bath": 30300000,
+ "Linux Labs": 33200000,
+ "Linxent \u2122": 12800000,
+ "Liquid Squid Studios": 11000000,
+ "Logic Choice": 18000000,
+ "Logic Speak": 20100000,
+ "Logicpath": 23400000,
+ "MARJAC": 26100000,
+ "MBA Business Software": 33100000,
+ "MRI TECHNICAL SERVICES INC.": 11500000,
+ "Matrix Incorporated": 14100000,
+ "MatrixCare": 122000000,
+ "McAfee": 2200000000,
+ "McGregor Shott": 22900000,
+ "Med-Easy": 17100000,
+ "MediStreams": 12500000,
+ "Media Graphics Design": 22700000,
+ "Merchant Technology Services": 33200000,
+ "Meridian Cooperative": 46000000,
+ "MetaMatrix": 7000000,
+ "Micajah": 16600000,
+ "Mike M": 15900000,
+ "Mindwave Solutions": 27700000,
+ "Mirability": 13000000,
+ "My Home Net": 13100000,
+ "Myownasp": 17300000,
+ "NAPC": 12700000,
+ "NEOWorks Workplace Automation Tool": 14700000,
+ "NXTsoft": 38000000,
+ "Namecheap": 149000000,
+ "NeatWorks": 19000000,
"NetApp": 6500000000,
+ "NetCentriX": 16000000,
+ "NetServ Applications": 70000000,
"New Atlanta": 33300000,
- "Newt Gingrich 2012 presidential campaign": 10600000,
- "Nichia": 1000000000,
- "Niman Ranch": 65000000,
+ "NewClarity": 10000000,
+ "Next Media Inc.": 21600000,
+ "Nexwave Talent Management Solutions LLC.": 19300000,
+ "Niyasys": 15900000,
"Norton": 1300000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
+ "Nutri-Link Technologies": 13600000,
+ "OIC Group": 13000000,
+ "Object Frontier": 100000000,
+ "Oblong": 25500000,
+ "Octane5": 16300000,
+ "Old Dude Vintage Parts & Service": 33800000,
+ "Omnitracs": 120000000,
+ "One Federal Solution": 14500000,
"OneTrust": 180000000,
- "Ooma": 179000000,
- "Orange Business": 9600000000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "PBS Velk\u00e1 B\u00edte\u0161": 55000000,
- "PCB Bank": 105100000,
- "Pace Analytical": 450000000,
- "Pacific Cycle": 26300000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Peach Belt Conference": 21100000,
- "Peet's Coffee": 36700000,
- "Penzeys": 26000000,
- "Perkins&Will": 670300000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pindrop": 55000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pollo Tropical": 600000000,
- "PolyVision company": 19000000,
- "Porsche France SAS.": 34300000000,
- "Principal Financial Group": 13900000000,
- "Professional Photographers of America": 21000000,
+ "Open Design": 14000000,
+ "Operative IQ": 10400000,
+ "Opti Doc": 22500000,
+ "Optimi": 27200000,
+ "Orbit Analytics": 35000000,
+ "Orion Law": 23300000,
+ "Ormandy": 23800000,
+ "Orpine": 11000000,
+ "OutSystems": 200000000,
+ "PC Avenues": 13700000,
+ "PCI Technologies": 25000000,
+ "PDI Technologies": 37500000,
+ "Peachtree Geographics": 10000000,
+ "Peachtree Type & Design": 21400000,
+ "PeoplesWarehouse Inc.": 21000000,
+ "Personal DBA": 12400000,
+ "Phillips Solutions": 50000000,
+ "Planet DDS": 19800000,
+ "Pluto7": 42700000,
+ "PointClear Solutions": 11000000,
+ "Pomeroy": 850000000,
+ "Ponder Pro Serve": 10200000,
+ "Practice Enhancers": 14900000,
+ "Premier Logic": 10000000,
+ "Pro Sys": 12700000,
+ "ProActive Solutions": 13300000,
+ "ProRep": 14900000,
+ "Prometheus Group": 110000000,
+ "Promo Design": 26300000,
+ "Propertybase": 26000000,
+ "Proton Data Security": 10100000,
+ "Proxyclick": 10000000,
"Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "PureTalk": 10200000,
"QAD Allocation": 12000000,
- "Quality Control Music": 49800000,
- "Quanta Services": 17100000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "RADIANT3": 18900000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "Razorfish LLC.": 403900000,
- "Red Wing Shoes": 700000000,
+ "QCT": 388000,
+ "RCS Professional Services": 19900000,
+ "Rare Medium": 16900000,
+ "Reflexis": 75000000,
+ "RegmagiK": 22200000,
+ "Relevantz": 34000000,
+ "Relitek Solutions": 30200000,
"Revionics Inc.": 46600000,
- "Robertson Airport": 10000000,
- "Rolls-Royce": 15300000000,
- "Rome Newswire": 17500000,
- "Roswell High School": 35000000,
- "Rubbermaid": 3000000000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
+ "Ribaldo Technologies": 13600000,
+ "Right Networks": 70000000,
+ "S3 Technology": 20300000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGH": 149000000,
- "SGS S.A.": 28000000000,
- "SK Tools USA LLC.": 20000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Technologies": 500000000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SIS LLC.": 18500000,
+ "SMLA": 12800000,
+ "SUMO Scheduler": 10800000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
"Samsara": 614100000,
- "Sanderson Farms": 5600000000,
- "Sawnee EMC": 17500000,
- "Schreiber Foods": 4800000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster": 2000000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simon Kucher": 406200000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Skydive Houston": 19500000,
- "Smallwood": 30000000,
+ "Savannah Software": 19000000,
+ "Sciberus": 14600000,
+ "Search Technology Inc.": 15700000,
+ "See see eye": 22600000,
+ "SenecaGlobal": 25000000,
+ "ServTrax": 32200000,
+ "Serverfarm ATL1 Atlanta": 14600000,
+ "Sevaa Group": 13300000,
+ "Sierra-Cedar": 85000000,
+ "Simplified Technology": 23000000,
+ "Siri InfoSolutions": 17500000,
+ "Sirius Graphics": 21700000,
+ "Sleignnet": 11700000,
+ "Smartsoft International Inc.": 34500000,
"Snowflake": 1900000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sodexo": 22300000000,
+ "Softpath": 49600000,
+ "Software Plus": 14400000,
+ "Soholaunch": 10000000,
+ "SolGenie": 27500000,
"Solace": 65000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Starr Insurance Companies": 3500000000,
- "Starwood Capital Group": 750000000,
- "State Farm Insurance": 78900000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
+ "Solvit Software": 26500000,
+ "Sonata Software": 853800000,
+ "Sourceone Technology Solutions Inc.": 21300000,
+ "Sparity": 10000000,
+ "Sparq Inc.": 15900000,
+ "Spireon": 251600000,
+ "Splash BI": 14800000,
+ "Sports Techie": 21700000,
+ "Spyrel Inc.": 32100000,
+ "Steem": 23000000,
+ "Stellar Services": 11400000,
"Stibo DX A/S": 35000000,
- "Stitch Fix": 2100000000,
- "Stokke\u00ae": 90000000,
- "Stoney River": 10300000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Swbc Professional Employer Services I Llc.": 356800000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
+ "Stibo Systems": 76700000,
+ "Strategies Group": 11200000,
+ "Stratocore": 10000000,
+ "Stratosphere Inc.": 10000000,
+ "StratusVue": 10000000,
+ "Strunk": 10000000,
+ "StudioSysAdmins": 150000000,
+ "Susan Searway Art & Design": 16100000,
+ "Susies Rugs And Pillows": 14500000,
"Synnex": 57900000,
- "TEOCO": 186200000,
- "THK": 2700000000,
- "TOM FORD": 615000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
+ "Synpros Corporation": 17000000,
+ "TDC Systems Intergration": 17400000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "THINCSYS": 22600000,
+ "TLC Web": 28900000,
"Taboola": 1400000000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Counter": 85000000,
- "The Howard School": 18150000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Red and Black": 35600000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
+ "Takeoff Live": 26800000,
+ "TeamFlow": 31700000,
+ "TechStar Group": 24000000,
+ "Technical & Scientific Application Inc. TSA Inc.": 15000000,
+ "Technodata Solution": 46400000,
+ "Technology Atlanta Corporation": 29200000,
+ "Technology Source": 34500000,
+ "Techtic": 25300000,
+ "The Attivo Group": 10000000,
+ "The Coleman Group": 11600000,
+ "The Org company": 2000000,
+ "ThinManager": 10000000,
+ "Thinkit Design": 12300000,
+ "Tibersoft": 234700000,
+ "TigerDirect": 200000000,
"Trace3 LLC.": 1400000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
+ "Tradeshow Equipment Rentals": 28900000,
+ "Transaction Assurance Group": 11100000,
+ "Tri-Star Solutions": 18100000,
+ "Trisectrix": 10800000,
"True Digital Security": 14000000,
- "Truxton Trust": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
+ "TwoCat Internet Services": 17000000,
"Uniphore": 19500000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "Usher's New Look": 13000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
+ "United Tool Rental Inc.": 14900000,
"VMware": 13200000000,
- "Valdosta Regional Airport": 17300000,
- "Valpak": 43500000,
- "Vantiva": 3500000000,
- "Verdura": 49000000,
- "Vericor": 26900000,
- "Verifone": 1800000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Virginia Transformer": 200000000,
- "Virtusa": 1300000000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Ware County": 10300000,
- "Watson Realty Corp.": 83900000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Wieland Group": 6100000000,
- "Wilo": 1800000000,
- "Wings Financial": 243000000,
- "Wiregrass Electric Cooperative": 336000000,
+ "VOC Systems": 34700000,
+ "VP Technologies Inc.": 24100000,
+ "VTECH SOLUTION": 10200000,
+ "Vates'": 50000000,
+ "Vauto": 150000000,
+ "Verinext": 83000000,
+ "Verint Systems": 899800000,
+ "Versona Systems": 12300000,
+ "Virtual Internet": 16700000,
+ "Virtual Mindset": 20000000,
+ "Vision Casters Network": 24000000,
+ "Visionary Design Group": 10600000,
+ "Visiprise": 75000000,
+ "Visual K": 35800000,
+ "Visual Visitor Sales Intelligence Platform": 12900000,
+ "WareITis": 27200000,
+ "Web-Site-Builders": 14800000,
+ "WebHoster": 10700000,
+ "WebToolset": 28900000,
+ "Westinis": 47300000,
"Wolters Kluwer": 5400000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000
+ "Work & Co.": 58400000,
+ "Wren Design": 32600000,
+ "Yash Solutions": 16600000,
+ "Z3 Technologies": 23200000,
+ "Zarkatech": 14800000,
+ "Zeewise": 20700000,
+ "Zonenetlink": 21000000,
+ "coMakeIT": 26700000,
+ "evenTech": 10000000,
+ "iLink Digital": 280000000,
+ "microNovations": 25700000,
+ "nFront Security": 34100000,
+ "nSage": 19400000
},
"Hawaii": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
+ "1547 Critical Systems Realty": 10000000,
+ "1shoppingcart": 1000000,
+ "22nd Century Solutions": 166300000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "APM Monaco": 50000000,
- "Ace Hardware": 7800000000,
- "Advantage Rent a Car": 150000000,
- "Adventist Health": 4700000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Savings Bank": 301900000,
- "American Water": 3800000000,
- "Aqua-Aston Hospitality": 43000000,
- "Army News Service": 16400000000,
- "Australian Laboratory Services": 6600000000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bess Press": 2000000,
- "Best Buddies": 3600000,
- "Bishop Museum": 15000000,
+ "ActioNet": 364200000,
+ "Adex Labs": 47800000,
+ "Advanced Vapors": 13600000,
+ "AkuShaper": 466000,
+ "Alicia Nagel Creative": 1400000,
+ "Alterpop": 3000000,
+ "Ardent MC": 23300000,
+ "Art & Anthropology": 3100000,
+ "Art To Print Hawaii": 4900000,
+ "BCS ProSoft": 10000000,
+ "BDC Software": 11900000,
+ "BioTrack": 12000000,
+ "Bkmacdaddy designs": 4400000,
"Booz Allen": 8800000000,
- "BrightStar Care": 300000000,
- "Brown & Brown Insurance": 3400000000,
- "Bubba Gump": 7000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "CELINE": 600000000,
- "Cellana": 5000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Commission on Accreditation for Law Enforcement Agencies": 4100000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cyanotech": 36000000,
- "DAV": 3900000,
- "DLA": 3600000000,
- "Davey Tree": 1500000000,
- "DeconGel": 6700000,
- "Dolce & Gabbana": 600000000,
- "EMAC website": 5700000,
- "Electric Boat Co.": 10000000000,
- "Episcopal Church": 96100000,
- "Evangelical Free Church of America": 5200000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Frito-Lay Inc.": 19600000000,
- "GMC": 1000000000,
- "General Mills": 19200000000,
- "Gordon Biersch - DTW": 89300000,
- "Gracie Barra": 987000,
- "Great Harvest": 21200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUGO BOSS": 3600000000,
- "Hale Koa": 6000000,
- "Hanalani": 982000,
- "Harbor Freight": 5000000000,
- "Harold KL Castle Foundation": 5300000,
- "Hawai'i County": 10000000,
- "Hawaii Tribune-Herald": 5100000,
- "Henry's Tavern": 7000000,
- "Hensel Phelps": 5700000000,
- "Hinduism Today": 6200000,
- "Hongwanji Mission School": 5100000,
- "Honolulu Star-Advertiser": 4300000,
- "IHEARTMEDIA": 3800000000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Jamba": 70000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Kaneohe Ranch": 10000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kona Ice": 25700000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "Lag Guitars": 2400000,
- "Le Jardin Academy": 4900000,
- "Leidos Holdings Inc.": 13700000000,
- "Leonisa": 5600000,
+ "Branditecture": 16800000,
+ "Build In Motion": 4500000,
+ "Busch Consulting": 183000,
+ "CNS Technical Group Inc.": 2400000,
+ "CYPAC - Cybersecurity & IT": 14300000,
+ "Centella Consulting": 11900000,
+ "Cetra Technology": 6000000,
+ "Chargerback": 2400000,
+ "Chris Ota Designs": 4500000,
+ "Clarence Lee Design & Associates": 5400000,
+ "Cloud Computing Technologies": 638000,
+ "Cloudnexa": 34500000,
+ "Collateral Analytics": 5000000,
+ "Command Post Technologies": 7400000,
+ "Communication Consulting Services INC.": 16900000,
+ "Computer Presentation Systems": 4000000,
+ "Computers Made Easy Hawaii": 387000,
+ "Comtech Services Inc.": 35100000,
+ "Connecticut's Beardsley Zoo": 4700000,
+ "Cyber Hui": 7300000,
+ "CyberCom": 3000000,
+ "Cyberonyx": 19000000,
+ "DAVetTechs": 2400000,
+ "DIGITALSPEC": 16200000,
+ "DRFortress": 10000000,
+ "DataHouse - Local Solutions. Global Impact.": 9500000,
+ "Design Spells": 42100000,
+ "DigeTekS": 1400000,
+ "Digi Tech Hosting": 23600000,
+ "Digital Dividend": 7900000,
+ "Digital Forensics Team": 4100000,
+ "Dodecki": 6800000,
+ "Dot C Software Inc.": 14400000,
+ "DynastySoft": 4200000,
+ "EMSS Inc.": 53700000,
+ "ETC.STUDIOS": 7100000,
+ "Ekahi Design": 1600000,
+ "Elastic Computing Solutions": 2400000,
+ "Electric Horse Software": 2800000,
+ "Elijahtech": 9800000,
+ "Enterprise Answers": 24500000,
+ "FX Design Group": 13500000,
+ "Forward Slope": 13400000,
+ "Geeks for Good": 21400000,
+ "Gigaisland": 4400000,
+ "Giovanni Jubert": 136000,
+ "HI Tech Hui": 329000,
+ "Hacksy": 26900000,
+ "Hawaii Tech Support": 7200000,
+ "Hemmersbach": 288000000,
+ "Hi-Tech Hawaii": 1500000,
+ "Hindsight Labs": 1400000,
+ "Homeland Forensics": 10000000,
+ "Homes By Sachiko": 4400000,
+ "Ignite Solutions Group": 6800000,
+ "Ignite Studios": 5200000,
+ "Ikayzo": 13200000,
+ "In2lytics": 1500000,
+ "Indus Technology": 36000000,
+ "Inoa Technologies": 475000,
+ "Inovaware": 22800000,
+ "Integrated ComTel": 12800000,
+ "Integrated IT Solutions": 4500000,
+ "Iron Bow Technologies": 872100000,
+ "Island Micro Solutions": 12200000,
+ "JKOM Designs": 217000,
+ "JTSI is": 32100000,
+ "JusticeTrax": 5000000,
+ "K3designz": 3000000,
+ "KAPALYA": 3300000,
+ "KPOI-FM": 240000,
+ "KTrick": 470000,
+ "Kauai Design": 26400000,
+ "Ke`aki Technologies": 36000000,
+ "Kord Information Systems": 35200000,
+ "Kris Jolls Designs": 5400000,
+ "Lankar": 2400000,
"Level 3 Communications": 17500000000,
- "Liberty Mutual": 48200000000,
- "Liquid Robotics": 9000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lynden": 960000000,
- "MOMO Srl.": 5000000,
- "Manta Pacific": 2500000,
- "Matson": 4300000000,
- "Meadow Gold Dairies": 161000,
- "Medline Industries": 20200000000,
- "Mineralogical Society of America": 34700000,
- "Miss Hawaii USA": 2900000,
- "Modere": 4900000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Montage Hotels": 400000000,
- "Mortgage Choice": 199800000,
- "Moss & Associates": 1200000000,
- "Moyes Delta Gliders": 2100000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NOAA Weather Radio": 36400000,
- "National 4-H Council": 68000,
- "National Auto Sport Association": 5900000,
- "National Christian Foundation": 27800000,
- "Neiman Marcus": 2600000000,
- "North Sails": 27500000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PCL Construction": 6300000000,
- "Pacific Links": 4000000,
- "Pacific Science": 34600000,
- "Park West Gallery": 12400000,
- "Patagonia": 1000000000,
- "Paul Gauguin Cruises": 15000000,
- "PeekYou": 6000000,
- "Penhaligon's": 39700000,
- "Pennymac": 1200000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Premiere Networks Inc.": 30000000,
- "Pretzelmaker": 125000000,
- "Qantas": 6300000000,
+ "LifeAt": 2400000,
+ "Linux Veda": 335000,
+ "LiveAction": 11300000,
+ "Local Orbit": 5900000,
+ "MCRO Solutions": 18900000,
+ "MED2000": 12300000,
+ "MeetingSift": 373000,
+ "Midori Designs": 8400000,
+ "Miovision": 35000000,
+ "Mo Hawaii Dot Com Inc.": 11600000,
+ "Mobile IT Force": 2000000,
+ "Modtech Solutions": 7000000,
+ "Multi-servicios De Ingenieria Msi Monclova": 6000000,
+ "Nanopoint Inc.": 2400000,
+ "Nanosoft Solutions": 8000000,
+ "Nanowerk": 5000000,
+ "NetEnterprise": 6000000,
+ "NetWorks Incorporated": 22200000,
+ "NuoRDS": 518000,
+ "ONYX SOLUTiON": 2600000,
+ "Obsidian Solutions Group": 38000000,
+ "OnceHub - Meeting Journey Builder": 22000000,
+ "Ono Web Design": 32300000,
+ "Orbit GT": 1700000,
+ "Ozolio": 310000,
+ "PDC Systems": 11200000,
+ "POH": 40100000,
+ "Pacific Document Imaging": 1400000,
+ "Pacific IT Support": 2800000,
+ "Pacific Pro-Tech Services": 10000000,
+ "Parker Group": 7000000,
+ "Paul Brown": 10500000,
+ "Plum Amazing": 675000,
+ "Premier Solutions Hi": 7000000,
+ "Prominent Edge": 2400000,
+ "Prosis Hawaii": 37700000,
+ "Psynapsis": 3900000,
"Quicksilver": 7000000,
- "Quiznos": 50000000,
- "Red Wing Shoes": 700000000,
- "RentHop": 1000000,
- "RevoluSun": 12100000,
- "Rexair": 35000000,
- "Rodgers Instruments Corporation": 6400000,
- "Royal Hawaiian": 3900000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis School": 14000000,
- "Sally Beauty Holdings": 2300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Shakey's": 112000000,
- "Sheraton Princess Kaiulani Hotel": 6000000,
- "Shiseido": 8200000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spectrum OC16": 558000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Superb Internet": 13800000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TOM FORD": 615000000,
- "Telstra Wholesale": 150000000,
- "The Counter": 85000000,
- "The Kahala Hotel & Resort": 52000000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "Tiffany's": 4400000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
- "Trading Places": 27200000,
- "Trump Hotels": 75000000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UGG": 35000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Ulupono": 385000,
- "United States Environmental Protection Agency": 50000000,
- "University of Hawaii Press": 3300000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waianae Coast Comprehensive Health Center": 68600000,
- "Whelen": 500000000,
- "Wje": 150000000,
+ "RVCM": 8200000,
+ "RaneWorks": 1600000,
+ "RapidTek Solutions": 8700000,
+ "Rising Tide LLC.": 9200000,
+ "River's Edge Business Solutions Inc.": 3400000,
+ "Roland Schorr": 4800000,
+ "Rome Technologies Inc.": 19400000,
+ "Rumpus Studios": 17400000,
+ "Runjob Software": 1400000,
+ "Runtime Software": 16200000,
+ "SD Data Center": 70000000,
+ "SMX": 227600000,
+ "SYNCADD": 26100000,
+ "Sachidesigns": 9700000,
+ "Sae Design Group": 20200000,
+ "Seabrooks": 32100000,
+ "Secure Hosting Hawaii": 2300000,
+ "Secure Technology Hawaii": 22700000,
+ "SeismicAI": 5000000,
+ "Silversword Studios": 26400000,
+ "Skyfarm 808": 303000,
+ "Somace Design": 2600000,
+ "Space Cryogenics Workshop": 2900000,
+ "Speridian": 220000000,
+ "Stacey Leong Design": 9800000,
+ "Stephanie Chang Design Ink": 3900000,
+ "Stoked Industries": 13000000,
+ "Studio H2G": 6000000,
+ "Sudokrew": 10000000,
+ "Sunland I.T": 1800000,
+ "Surefly Studio": 3900000,
+ "Swell Fundraising": 85000,
+ "SyFlex": 32600000,
+ "Sybee Designs": 30000000,
+ "SydanTech": 4300000,
+ "System Optimization & Support SOS Hawaii": 18200000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tapiki": 1400000,
+ "Taylor Wong Studio | Owl Graphics Hawaii": 14000000,
+ "Thom Little Associates": 22900000,
+ "Thought Focus": 50000000,
+ "Titan Technologies": 7000000,
+ "Tivoli Associates": 13900000,
+ "Tour Software": 14300000,
+ "Tran Creative": 23900000,
+ "Tsunami Marketing": 32700000,
+ "Upena Systems": 8400000,
+ "Upspring": 3600000,
+ "Videre": 11400000,
+ "W3C Web design": 35400000,
+ "WISENIC": 35000000,
+ "Wakelight": 39300000,
+ "Wall-to-Wall Studios": 5900000,
+ "Web Styles Hawaii": 6300000,
+ "Wet Sand": 3200000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
+ "WujiTech": 3400000,
+ "dck worldwide LLC Arizona Construction Services": 55000000,
+ "eProject Direct": 3200000,
+ "eWorldES": 25800000,
+ "iFIXpro": 2000000
},
"Idaho": {
- "ABC Supply": 12100000000,
+ "22nd Century Solutions": 166300000,
+ "3D Technology Services": 3400000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Ada County Highway District": 5700000,
- "Aflac Incorporated": 19300000000,
- "Agropur": 7700000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Birding": 4800000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Applied Instruments": 9000000,
- "Applied Materials": 25200000000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "AutoGyro": 15000000,
+ "AFPdesign": 7000000,
+ "AH Digital FX Studios": 34800000,
+ "AHG Inc.": 5100000,
+ "AR Now Online": 14700000,
+ "ATOS zData": 2000000,
+ "Actieve": 30200000,
+ "Adager": 17100000,
+ "Adaptium": 1400000,
+ "Advanced Carpet Installations": 20600000,
+ "Agency Software Inc.": 8200000,
+ "Allata": 15500000,
+ "AlloSys": 9100000,
+ "AllyDVM": 2400000,
+ "AlterHosting": 25600000,
+ "Angrypets": 27000000,
+ "Apex Manufacturing Solutions": 4200000,
+ "ApogeeINVENT": 10000000,
+ "Apropos LLC.": 6100000,
+ "ArcherPoint": 296000,
+ "Arixio\u00ae": 2400000,
+ "Arlo G Lott Trucking Inc.": 33700000,
+ "Arq Backup": 2400000,
+ "Artcolab": 3000000,
+ "Artstudios": 21100000,
+ "Avalanche Graphics": 11000000,
"Avercast": 7700000,
- "Avista Utilities": 1500000000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Bishop Kelly High School": 24900000,
- "Black Bear Diner": 18700000,
- "Bodybuilding": 360000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "CHEF'STORE": 1100000000,
- "CITY PASS": 5800000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Caldwell Executive Airport": 15600000,
- "Camp Fire": 10000000,
- "Cellular Sales": 1700000000,
- "Chelton Flight systems": 12600000,
- "Chick-fil-A": 5800000000,
- "Chr. Hansen": 1100000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clearwater Paper": 2000000000,
- "ClickBank": 201600000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coeur Mining": 783400000,
- "Coeur d'Alene Press": 32000000,
- "Coeur d'Alene School District": 14600000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Cradlepoint": 200000000,
- "Crossroads of the West Council": 29600000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "Dave Smith Motors": 30900000,
- "Department of Energy": 190000000,
- "Docusearch": 9000000,
- "Dollar General": 35300000000,
- "Dynata": 380300000,
- "EMAC website": 5700000,
- "Ecumen": 165000000,
- "Einstein Bros. Bagels": 500000000,
- "Empire Airlines": 10800000,
- "Enphase Energy Inc.": 2000000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Fluor Canada": 13700000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "Gossner": 9300000,
- "Gracie Barra": 987000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hillcrest High School": 22400000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "IGA": 250000000,
- "Idaho Spud": 4400000,
- "Infinite Discs": 2500000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jervois'": 2900000,
- "John L. Scott": 800000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kimley-Horn": 722300000,
- "Kirby Company": 500000000,
- "Knots of Love": 4300000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
+ "BACS Consulting Group": 5900000,
+ "BATT 3": 1400000,
+ "BOLDelite": 10900000,
+ "BUSTRACE": 34700000,
+ "BannerSolar\u2122": 2400000,
+ "Barton Consulting": 5900000,
+ "Basic Safe": 3500000,
+ "Bc creative": 246000,
+ "BeMyApp": 10200000,
+ "Bear Brochures": 2800000,
+ "Best Web Design Agencies": 10000000,
+ "Black Moon Graphic Design": 31300000,
+ "Blind Mice Studio": 12900000,
+ "Boise Hosting": 15200000,
+ "Born Creative": 390000,
+ "BrandWorx": 116000,
+ "Bridge Technologies and Solutions": 6000000,
+ "Business Techs": 13300000,
+ "C Flinn": 13200000,
+ "CMIT Solutions": 60000000,
+ "CRI Advantage": 25300000,
+ "CS Wilson & Associates": 10200000,
+ "CYCG": 2000000,
+ "Carew Co. Inc.": 6200000,
+ "CaterTrax": 15000000,
+ "Celiveo": 7000000,
+ "Cerium Networks": 32500000,
+ "Chaplin designs": 4600000,
+ "Chargerback": 2400000,
+ "Christian Web Hosting": 11500000,
+ "Cirkadia": 20900000,
+ "Classic System": 6000000,
+ "Clean Web Design": 171000,
+ "Clearwater Web Solutions": 21700000,
+ "Coeur d": 15600000,
+ "Cognitics": 20200000,
+ "Completelyprivatefiles": 2400000,
+ "ComplyNet": 11800000,
+ "CompuNet Inc.": 146600000,
+ "Computer Arts": 4400000,
+ "Computer Consulting Associates": 24000000,
+ "Computer Talk Services": 37200000,
+ "Comstock Software": 1400000,
+ "Confetti Productions": 19400000,
+ "Connect 4 Solutions": 2300000,
+ "ConsignCloud": 1400000,
+ "Controlled Capture Systems": 13300000,
+ "ConvergeOne": 1600000000,
+ "ConvertKit": 25000000,
+ "Coolsoft": 38600000,
+ "Crites-Moscow Growers Inc.": 21000000,
+ "Customated": 234000,
+ "CyberHawk Systems": 17500000,
+ "Cytec Computer Consulting": 27000000,
+ "DEVONtechnologies": 10000000,
+ "DH Consulting": 1400000,
+ "DQ Technologies": 18400000,
+ "DRC Software": 5100000,
+ "Daida": 22400000,
+ "Daniel Wood Design": 278000,
+ "Darien Design": 5500000,
+ "Dark to Light Productions": 5700000,
+ "DataMate Solutions": 36800000,
+ "Datawav-IS": 30200000,
+ "Dave Nelson": 26400000,
+ "Decker Consulting": 6700000,
+ "Delorum": 26300000,
+ "Denodo": 35000000,
+ "Designcloud24": 454000,
+ "Divine Spirit Healing": 9500000,
+ "Docutech": 50000000,
+ "Dominion Technologies": 26500000,
+ "E 3 Technology": 6000000,
+ "EKM Global": 1000000,
+ "Ednetics": 65000000,
+ "Element N Squared": 11600000,
+ "Engage Technologies Group": 3000000,
+ "Ensign Software": 31100000,
+ "Entre Technology Services": 32900000,
+ "Entrust Managed Root CA": 2600000,
+ "Ephesoft": 15300000,
+ "Equation Technologies": 6000000,
+ "EstiMate Software": 288000,
+ "Eternal Hope": 10800000,
+ "Exbabylon": 407000,
+ "F.Y.I. Technologies": 13900000,
+ "FFW": 12200000,
+ "Fairfield Research": 9900000,
+ "Fast Enterprises": 290000000,
+ "Fast Foundry": 23200000,
+ "FatGeek Computer Service": 10900000,
+ "First Team Restoration": 26800000,
+ "Fluent Edge": 28100000,
+ "Foerstel Design": 10000000,
+ "Foerstel Hosting Services": 1400000,
+ "Foundry Interactive": 6000000,
+ "Gainwell Technologies": 1400000000,
+ "Gem State Specialists": 18200000,
+ "Genware": 2000000,
+ "Glenns Ferry Health Center": 25500000,
+ "Global Inti Teknologi": 67300000,
+ "Good Boy Rufus Designs": 30700000,
+ "Goodsell Global": 9000000,
+ "Graphic Alchemy Design": 3100000,
+ "Great Big Lake": 11200000,
+ "H&W Computer Systems": 9000000,
+ "Halloran": 18900000,
+ "Hands On Painting": 31500000,
+ "Hansen Creative": 11700000,
+ "Hardware Asylum": 21400000,
+ "Hawk Ridge Systems": 53500000,
+ "High Rev Applications": 1400000,
+ "Hostetler Bakkie Design": 4300000,
+ "Hunt Design": 10000000,
+ "IGTG": 1400000,
+ "IT Service Works": 11700000,
+ "Iceberg Managed Solutions": 6000000,
+ "Idaho IT Managed Services": 19400000,
+ "Identity Automation": 10000000,
+ "Imagenet LLC.": 38000000,
+ "Impac Services": 9500000,
+ "In Time Tec": 12000000,
+ "Infininaut": 39400000,
+ "Inland NW Tech": 1400000,
+ "Innovative Network Solutions": 3200000,
+ "Intact US Inc.": 8500000,
+ "Integrinet IT": 24600000,
+ "Intentional Branding": 294000,
+ "International Outsourcing Inc.": 1400000,
+ "Involta": 60000000,
+ "J H Blake and Associates": 15800000,
+ "J. Murphy Designs": 26300000,
+ "JMR Motorcycles and Repair": 21900000,
+ "Jack Fisher": 1100000,
+ "JoeCode": 12200000,
+ "Johnny Carinos": 44300000,
+ "JumpBox Central": 4200000,
+ "Justinen Creative Group": 15000000,
+ "KC Computing": 4800000,
+ "KJW Network": 38100000,
+ "KMD Medical Design": 28100000,
+ "KOOLdezine": 23600000,
+ "KV Web Solutions": 4700000,
+ "KickBack Systems": 37300000,
+ "Kingbird Software": 19800000,
+ "Knackly": 3900000,
+ "Konexus": 3100000,
+ "Kount": 60000000,
+ "Kwixas": 37100000,
+ "L 2 Data": 1400000,
+ "L&L Mechanical": 15500000,
+ "LabStats": 6000000,
+ "Landscaping Estimator": 19700000,
+ "Law Offices of Robert Townsend": 12200000,
+ "LazoTEK Computer Solutions": 57300000,
+ "LeanLaw": 6500000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Lotus Communications": 16000000,
- "Lovesac": 389800000,
- "Lynden": 960000000,
- "Lyon & Healy": 7000000,
- "MOBILE MINI": 593000000,
- "Magic Valley Regional Airport": 31100000,
- "Marcus & Millichap": 1500000000,
+ "LibertyID for Business": 6000000,
+ "Lightcast": 21000000,
+ "Lithium PC.": 38100000,
+ "LollyLaw": 4600000,
+ "M.Berndt Design": 3100000,
+ "MCX Technologies": 6400000000,
+ "MKM Creations": 310000,
+ "MOD Mission Critical": 2900000,
+ "Maestro Inc.": 2400000,
+ "Magnuson Design": 2500000,
+ "Manufactured Homes": 5000000,
+ "Manwaring Web Solutions": 5900000,
+ "Marin Technologies": 5000000,
+ "Mark Ward Design": 1300000,
"Markmonitor": 80000000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mountain Mike's Pizza": 68000000,
- "Mt. Airy News": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Model Railroad": 5300000,
- "North Gem High School": 22600000,
- "ON Semi": 8300000000,
- "Omega Morgan": 249000,
- "One Stone": 1500000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Parker Hannifin": 15900000000,
+ "Matraex": 9100000,
+ "MaxGiving": 21300000,
+ "Meal Ticket": 6000000,
+ "MiNET inc.": 39800000,
+ "MicroTech Systems": 12300000,
+ "Micronet Systems": 29200000,
+ "Miovision": 35000000,
+ "Mobile Business Systems": 15500000,
+ "Modus eDiscovery": 35000000,
+ "Morning Breath": 246000,
+ "Mountain Dreamworks": 5200000,
+ "Murie": 6100000,
+ "NearLo Technologies": 1400000,
+ "Neighborhood All-Stars": 1400000,
+ "Nerdy Dragon": 3400000,
+ "Net Key Consulting": 10600000,
+ "NetEFX": 16200000,
+ "Netbest Internet Services": 14500000,
+ "Netgen": 3600000,
+ "New Details Design": 1100000,
+ "Northwind Inc.": 146000,
+ "Nuvek": 33100000,
+ "Obsidian Solutions Group": 38000000,
+ "Olive Tree Bible Software": 12400000,
+ "OneBridge Solutions": 7000000,
+ "OpenPotion": 3200000,
+ "Organik Advertising": 4400000,
+ "Origin Design": 5800000,
+ "Orion Integration Group": 4100000,
+ "Orion Network Solutions": 1300000,
+ "Osborne IT Solutions": 3200000,
+ "Overcommitted": 327000,
+ "PC Users": 18000000,
+ "PSI Planner": 9400000,
+ "Pace Software": 3000000,
+ "Panaton": 7000000,
+ "PartnerHero": 4000000,
+ "Paskainos": 4900000,
"Paylocity Corporation": 923400000,
- "PharMerica": 2100000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Planned Parenthood": 1600000000,
- "Pocatello Regional Airport": 10700000,
- "Pretzelmaker": 125000000,
- "Pride Foundation": 4100000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Rexair": 35000000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Saskatchewan Mining and Minerals": 15000000,
- "SeaQuest aquariums": 2400000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shari's": 240000000,
- "Shelley High School": 5600000,
- "Shoe Carnival": 1300000000,
- "Shoshone News-Press": 53200000,
- "Shoshone-Bannock School District No 512": 12000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Snake River Alliance": 6300000,
- "Snc Lavalin": 5600000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Special Libraries Association": 15800000,
- "Sports Afield Trophy Properties": 7000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stimson Lumber": 380000000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandem Diabetes": 790700000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "TigerDirect": 200000000,
- "Tom Balding": 7000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trace3 LLC.": 1400000000,
- "Trading Places": 27200000,
- "Translators without Borders": 6300000,
- "TriGeo Network Security": 25000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universities Space Research Association": 44200000,
- "VCA Inc.": 1800000000,
- "Valley Regional Transit": 8000000,
- "Valpak": 43500000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virginia Transformer": 200000000,
- "Vision Source": 11700000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wendell High School": 6600000,
- "Whelen": 500000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Ziply Fiber.": 370000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
- },
+ "Pipl": 18000000,
+ "PlexTrac": 6000000,
+ "Populi": 4400000,
+ "Portage Communications": 1000000,
+ "Portworx": 21000000,
+ "Precise MRM": 7200000,
+ "Presidio": 4400000,
+ "Print Tracker": 30100000,
+ "Pro Service Boise": 5800000,
+ "Propertybase": 26000000,
+ "Pygraphics Inc.": 5700000,
+ "QPG Ltd. Co.": 1600000,
+ "QualityLogic": 13900000,
+ "R. I. Enterprises": 22800000,
+ "RANGE US": 24000000,
+ "RITE Help Desk": 30500000,
+ "Randy Thaemert": 1900000,
+ "Ready Receipts": 6000000,
+ "Realhound": 10000000,
+ "Red Couch Creative": 4400000,
+ "Resource Data": 32000000,
+ "Retrolux": 2000000,
+ "Reveal Digital Forensics & Security": 4800000,
+ "Rexburg Saver Coupon Magazine": 21400000,
+ "Riafox": 9000000,
+ "Ridgeline Design": 11800000,
+ "Right! Systems": 80000000,
+ "Rimot Support": 288000,
+ "Ripplestone": 3600000,
+ "Risingline": 6900000,
+ "Ritam": 36700000,
+ "Rocktek": 3500000,
+ "Roland Forbes": 22700000,
+ "Rome Technologies Inc.": 19400000,
+ "Royal Jay": 6000000,
+ "Rylex Consulting": 39200000,
+ "SGA Software": 31200000,
+ "Sage Technology & Development LLC.": 6300000,
+ "SavvyData": 1400000,
+ "Sector One": 24000000,
+ "Security Ideals": 658000,
+ "ShiftSchedules": 20600000,
+ "Shlomo Swidler": 6000000,
+ "Side Software": 2900000,
+ "Silver Creek Software": 17800000,
+ "Silverdraft": 394000,
+ "Siriniti": 75000000,
+ "Site Seer": 2400000,
+ "Sixkiller Software": 23300000,
+ "Small Business Outsource": 402000,
+ "SmartStory": 2000000,
+ "Snoack Studios": 2400000,
+ "Software Outfitters": 30500000,
+ "Software Verify": 15000000,
+ "Sovereign Services": 131000,
+ "Spur": 19200000,
+ "Stability Networks": 10000000,
+ "Stafftopia": 20200000,
+ "Stand Studio": 5800000,
+ "Streamline Imaging": 6000000,
+ "Structured": 15000000,
+ "Studio Lazuli": 121000,
+ "Sturdy": 2000000,
+ "Sure Leader Websites": 256000,
+ "Symphony RetailAI": 120000000,
+ "Symtec": 10700000,
+ "System Solutions Development": 409000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tackle Platform Company": 9200000,
+ "Tactical FLEX": 2200000,
+ "Taos an": 220000000,
+ "Techevo": 6400000,
+ "Technical Professional Sinc": 16400000,
+ "The Center for Performing Arts Inc.": 15000000,
+ "The Marshall Company": 12100000,
+ "The Thinkery": 21700000,
+ "TigerDirect": 200000000,
+ "TotalCare IT": 15000000,
+ "Trace3 LLC.": 1400000000,
+ "Tracer AI": 6000000,
+ "Tractcard": 1600000,
+ "Tran Creative": 23900000,
+ "Trancite": 10200000,
+ "TriGeo Network Security": 25000000,
+ "Trinity Networx": 3400000,
+ "Twin Falls County ID": 26100000,
+ "Tyrone Cook Design": 270000,
+ "Unique Solutuons": 6300000,
+ "Unity Media Group IT": 39200000,
+ "UpCodes": 2000000,
+ "VLCM": 78500000,
+ "VRI Technology": 10000000,
+ "Valli Information Systems": 31500000,
+ "VectorNS": 2200000,
+ "Ventive": 3900000,
+ "Virtual IT": 10900000,
+ "Virtually Everything": 15600000,
+ "Vynyl": 6000000,
+ "Web Options": 3300000,
+ "Webmajik": 6400000,
+ "Webstoreku": 327000,
+ "White Cup": 10000000,
+ "White Moon Graphics": 42100000,
+ "Whitestone Design Werks": 30700000,
+ "Wickett": 12300000,
+ "WinDrivers": 19600000,
+ "Windshield Repair Idaho": 28600000,
+ "Wolters Kluwer": 5400000000,
+ "Wovax": 6000000,
+ "Write Now Design": 2200000,
+ "Xbabylon": 407000,
+ "Xiologix": 5500000,
+ "ZAG Technical Services": 10000000,
+ "Zachary Piper": 5000000,
+ "Zasio": 7300000,
+ "aACE Software": 7000000,
+ "bMobile Route Software": 25600000,
+ "cloudPWR": 7400000,
+ "iBCSCORP Durban South Africa": 7000000,
+ "iMountain": 4200000
+ },
"Illinois": {
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "2nd Watch": 45000000,
+ "66degrees": 13100000,
+ "ADGO": 17000000,
"ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Acuity Brands": 4000000000,
- "Acxiom": 1300000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air China Cargo": 1600000000,
- "Air India": 1600000000,
- "Akorn New Jersey": 682400000,
+ "AIT Resource Group": 25000000,
+ "Ablesoft Solutions": 32000000,
+ "Accurate Computer Consulting Inc. |": 18300000,
+ "Accuvoice": 11900000,
+ "Acextic": 21400000,
+ "Ackerman Farms": 30000000,
+ "Ag Mechanical": 23000000,
+ "Ahma": 12600000,
+ "Alcor": 24000000,
"Alithya": 389900000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Allstate": 39800000000,
- "Alorica": 2500000000,
- "Alpha MOS": 13000000,
- "AmTrust Financial": 4700000000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Anesthesiologists": 12300000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrews McMeel": 24200000,
- "Anna Community Consolidated School District 37": 28300000,
- "Anton Paar": 460000000,
- "Applied Materials": 25200000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Ashtead Group": 10000000000,
- "Assurant": 8700000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Austrian": 565000000,
+ "Altair Engineering": 552600000,
+ "AmeriNet": 42600000,
+ "Ami Koenig Design": 21400000,
+ "Apexon": 75000000,
+ "Apolis RJT Compuquest": 52000000,
+ "AppMe Solutions": 25000000,
+ "Apptio": 342500000,
+ "Aprimo": 61300000,
+ "Apro Home Inspection": 23300000,
+ "Araygor Web Design": 10200000,
+ "Arc Technology Group": 109000,
+ "Arcadia Solutions": 32500000,
+ "Argo SE": 16300000,
+ "Art On The Loose": 26000000,
+ "Atlas Software Technologies": 150000000,
+ "Atom Groom": 58800000,
+ "Aureus Tech Systems": 10800000,
+ "Automated Information": 25500000,
+ "Automated Information Management": 20700000,
+ "Avail Company": 4200000,
"Avanade": 3900000,
"AvePoint": 215800000,
- "Avigilon": 14600000,
- "Axalta": 4100000000,
- "Axis Communications": 1300000000,
- "BBDO": 1800000000,
- "BJC HealthCare": 5700000000,
- "BTS Group": 232600000,
- "BUNN Commercial": 400000000,
- "Back Yard Burgers": 120000000,
- "Bain Capital": 1000000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Bell Helmets": 800000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Bio-Rad": 2800000000,
+ "Avocation Software": 62900000,
+ "BAI Security": 27400000,
+ "BIKO Technologies": 28300000,
+ "BOSETEK": 12700000,
+ "BSCI Chicago": 46800000,
+ "Babel Street": 20000000,
+ "Berco Jewelry Company": 28900000,
+ "BigMachines": 52300000,
"BlackLine": 522900000,
- "Blue Owl Capital": 991600000,
- "Bollinger Shipyards": 1000000000,
- "Bonchon": 60000000,
+ "Bluebeam": 69600000,
"Booz Allen": 8800000000,
- "Boral Limited": 10800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Boyden-Hull Community Schools": 18600000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
- "Bureau Veritas": 5700000000,
+ "Braze": 298000000,
+ "Brillio": 400000000,
+ "C3 AI": 12900000,
"CACI": 6200000000,
+ "CAT Technology": 15000000,
"CDW": 23800000000,
- "CJ Logistics": 1000000000,
- "CNA": 9100000000,
- "Cameo": 100000000,
- "Capital Power": 1900000000,
- "CarParts": 645300000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Casella": 1100000000,
- "Center For Research Libraries": 33800000,
- "Certification Commission for Healthcare Information Technology": 10000000,
- "Charles River Laboratories": 4000000000,
- "Chicago Maritime Festival": 17600000,
- "Chick-fil-A": 5800000000,
- "Christian Association for Psychological Studies": 19200000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
+ "CIeNET": 600000000,
+ "COMPUTER AUTOMATION SYSTEMS": 37500000,
+ "CTI Meeting Technology": 13800000,
+ "CacheNetworks LLC.": 20000000,
+ "Cavedweller Studio": 24700000,
+ "Centella Consulting": 11900000,
+ "Certero": 10000000,
+ "Chi Networks": 26000000,
+ "Cirium": 10000000,
"Cision US Inc.": 900000000,
- "City Year": 162300000,
+ "Civis Analytics": 8300000,
+ "Clear Object": 22900000,
+ "Cloudera": 904800000,
"Cloudflare": 894100000,
- "College Board": 1100000000,
- "Comfort Dental": 17800000,
- "Conduent Business Services LLC.": 3900000000,
- "Conference of Consulting Actuaries": 40400000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Cornerstone Research": 250000000,
- "Corteva": 17100000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Cradles to Crayons": 30500000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
- "D'Artagnan": 114500000,
- "DELSEY": 46500000,
- "DISA": 120000000,
- "DRW": 485000000,
- "DWF group": 415600000,
- "Dacor": 90000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Deep Foods": 58000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delmark Records": 22700000,
- "Dematic": 3200000000,
- "Diageo": 18800000000,
- "Dictionary Society of North America": 15200000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Dnata": 1500000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dooney": 40000000,
- "Drexel Hamilton": 14800000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
+ "CodeMyBrand": 45800000,
+ "Coheron": 44700000,
+ "Comarch": 400900000,
+ "Community Service Partners": 15900000,
+ "Comodo": 178500000,
+ "Compass MSP": 23000000,
+ "Computer Packages": 15000000,
+ "Concurrent Systems": 26900000,
+ "Creative Tech": 15700000,
+ "DBMS": 10500000,
+ "DBeaver": 10000000,
+ "Dalmia Consulting": 32500000,
+ "Danico Enterprises": 41300000,
+ "Data options": 12800000,
+ "Datametica": 12000000,
+ "Dataretrieval": 29800000,
+ "David LaFontaine": 10600000,
+ "DePaJa Design Pro": 31100000,
+ "Decision Systems": 17400000,
+ "Deneb Corporation": 18500000,
+ "Design Data Co.": 24500000,
+ "Design loft": 14400000,
+ "Dieselpoint": 31700000,
+ "Digital Forces": 30700000,
+ "Digital Realty": 4700000000,
+ "Dimonoff": 10000000,
+ "Dixa": 50000000,
+ "Dk Office Consulting & Service": 21700000,
+ "DonationCoder": 2400000,
+ "Donmilla#designs": 10000000,
+ "Dragyn Studios": 32700000,
+ "E7 Solutions": 17500000,
"ECI": 48000000,
- "EDA": 10000000,
- "EMC Insurance": 645000000,
- "EQ Office": 37500000,
- "EVBox": 86000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Economic Margin": 10000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Eloan": 40000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
+ "ETEK-IT": 10300000,
+ "ETHOSystems": 22900000,
+ "ETS Technology Solutions": 31600000,
+ "Elasticsearch B.V.": 977800000,
+ "Elevate Creative": 10000000,
+ "Elite Technology Group": 44300000,
+ "Emerald Datacom Products": 33500000,
+ "Emerging Technologies - SPR": 75000000,
+ "Enhancement Software": 14300000,
"Equinix": 7300000000,
- "Ergon Refining": 4500000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Etihad Airways": 2700000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "Evonik Industries AG": 19700000000,
- "ExxonMobil": 403200000000,
- "FIAMM": 46400000,
+ "Equisoft": 19600000,
+ "Ethan Group": 22000000,
+ "Evocomm Inc.": 10000000,
+ "Ex Libris": 7000000,
+ "Excelify": 13200000,
+ "FLJ": 21100000,
+ "FX Design Group": 13500000,
"FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Watch": 677600000,
+ "FastModel Sports": 10000000,
+ "FieldWare": 30000000,
+ "Firebelly Design": 15800000,
"Fiserv": 17700000000,
- "Flexport": 3300000000,
- "Fluor Canada": 13700000000,
- "Forman Mills": 296800000,
- "Fortune Brands Home & Security": 8000000000,
- "Fortune Brands Innovations": 5000000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Getir": 245000000,
- "Global Commercial Credit": 17600000,
- "Global Infrastructure Partners": 1000000000,
- "Globe Life Insurance": 5200000000,
- "GoHealth LLC.": 1200000000,
- "Gogo Inflight Internet": 370100000,
- "Goldwind": 7900000000,
- "GoodLife Fitness Centres Inc.": 559600000,
- "Graebel": 1500000000,
- "Graef-USA Inc.": 40300000,
- "GreatSchools": 11000000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Gun Owners": 10000000,
- "H.I.G. Capital": 7000000000,
+ "Fluent Edge Works": 29000000,
+ "Formsite": 6000000,
+ "Forte Group": 20000000,
+ "Fortress Data Management": 10000000,
+ "Foundant": 11100000,
+ "Fusion Systems": 10000000,
+ "Glass House System Inc.": 90000000,
+ "Global Data Sciences": 32400000,
+ "Global Point IT Solutions": 34400000,
+ "Globonix": 10500000,
+ "Granicus": 145000000,
+ "Graphisoft": 93000000,
+ "Grid Dynamics": 243600000,
+ "Gtron": 15500000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
"Hallow": 18200000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Heartland Foody": 10100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hesteel Group": 55800000000,
- "Higher learning commission": 19600000,
- "Hinsdale Township High School District 86": 38800000,
- "HistoryNet": 10000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holy Family Memorial": 140000000,
- "Horizon Therapeutics": 3700000000,
- "Huawei": 100000000000,
- "Hudson River Trading": 35000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "Hyundai Motor America": 100700000000,
- "IAPMO": 34100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "INB": 42000000,
- "IQOR": 1000000000,
- "Ignatius": 19500000,
- "Illini West": 13700000,
- "Imo's. Pizza": 200000000,
- "Indiana Public Retirement System": 6200000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Insureon": 40000000,
- "InterCall": 1400000000,
+ "Hawk Design": 23100000,
+ "Hexaware": 971000000,
+ "Holtz Group": 13100000,
+ "Host Duplex.": 34800000,
+ "Hostillery": 35400000,
+ "Hupp Information Technologies": 13800000,
+ "IBSS": 20000000,
+ "IGT Solutions": 230000000,
+ "IIS Solutions": 21500000,
+ "IMAS Corporation": 17300000,
+ "INOC": 12600000,
+ "IT Services Group Inc.": 12800000,
+ "IT Siren": 25400000,
+ "ITI Data": 21100000,
+ "Imbo Gallery": 26600000,
+ "InBase": 17600000,
+ "InRule": 6000000,
+ "Indian Boundary": 24000000,
+ "Infinitech Sourcing": 15600000,
+ "InfoDesk": 19800000,
+ "Infobahn Softworld": 10000000,
+ "Informatica": 1500000000,
+ "Information Resource Systems Corp": 21800000,
+ "Information Technology Partners": 25300000,
+ "Informs": 510000000,
+ "Inline Data Systems": 27300000,
+ "Inriver": 21000000,
+ "Insightsoftware": 350000000,
+ "Instana": 24000000,
+ "Instinct Incorporated": 25300000,
+ "Intaver": 139000,
+ "Integrated Software Specialists": 15700000,
"International Center on Deafness and the Arts": 61700000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Judah Christian School": 11000000,
- "Judy's Book": 14800000,
- "Juniper Advisory": 14700000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kalitta Air": 200000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kennedys Law": 284000000,
- "Kimball International": 635100000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LSV Asset Management": 11900000,
- "Lambda Legal": 11600000,
- "Landmark Worldwide": 29100000,
- "Landry's": 4600000000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leica Microsystems GmbH": 960700000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Interstate Systems": 23700000,
+ "Irish Eyes Design": 46800000,
+ "J rooney": 11700000,
+ "JAK Creative Design & Jak Premiums": 12300000,
+ "JJconsulting": 21400000,
+ "JasonV": 12700000,
+ "John Galt Solutions Inc.": 10500000,
+ "John Polacek": 12100000,
+ "Jon Thom Agency": 25800000,
+ "KB Consulting Services": 24800000,
+ "Kat Tech Systems": 35300000,
+ "Keen Infotek": 33800000,
+ "Kellton": 111300000,
+ "Kenna Creative": 11700000,
+ "KickApps": 703000,
+ "Kin Carta": 80000000,
+ "Kin Workplace Software": 33200000,
+ "King Technology Inc.": 15200000,
+ "Kinsey": 40300000,
+ "LAITEK": 52000000,
+ "LAP Services and Solutions": 30600000,
+ "LatentView Analytics Corporation": 69200000,
"Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lightbank": 35000000,
"Lightricks": 180000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
+ "Limited Visual Services": 49600000,
"Litera": 200000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lloyds Bank": 379700000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Louis Vuitton": 14000000000,
- "Lufthansa Cargo": 3400000000,
- "Luminex": 437700000,
- "MDA": 86800000,
+ "Logon Group": 16800000,
+ "M & M Art Studio": 11500000,
+ "MBA Business Software": 33100000,
+ "MCC Technology": 15700000,
"MHR": 82500000,
- "MSA Safety": 1500000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Manatt": 336800000,
- "Manufacturers\u2019 Agents National Association MANA": 11500000,
- "Mayfair Games": 12900000,
- "McAndrews": 32700000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "MedMen": 172700000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Mettler-toledo Inc.": 3900000000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Minnesota Mining and Manufacturing": 34000000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
+ "MJGraphics": 21400000,
+ "MRV Systems": 19000000,
+ "Maas Database Applications GmbH": 13400000,
+ "MadGuy Design": 10400000,
+ "MajorKey Technologies": 53000000,
+ "Makfinity": 39600000,
+ "Marco Technologies": 400000000,
+ "Mariah Technology": 31100000,
+ "Mastech Digital": 211700000,
+ "Mavens": 12000000,
+ "Mavent Analytics": 28700000,
+ "McAfee": 2200000000,
+ "Me Too Software": 36500000,
+ "Media Micro": 29500000,
+ "Mednet Software": 35600000,
+ "Meridian Group International": 210000000,
+ "Metmox": 18000000,
+ "Micro Thunder": 43300000,
+ "Micro-Tech USA": 31500000,
+ "Mimecast": 575300000,
+ "Minitab Pty Ltd.": 82000000,
+ "Missouri Guerrillas": 36600000,
+ "Miwa Design Studio": 26600000,
+ "Monkeymen": 10900000,
"Monotype": 304000000,
- "Morning star": 1900000000,
- "Mosaic": 7200000000,
- "Mott Foundation": 36300000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBC Sports": 120000000,
- "NIDEC": 15600000000,
+ "Mosaic Inc.": 49000000,
+ "N 2 LLC.": 29900000,
+ "N'Vek": 39000000,
+ "NBS Consultants": 31900000,
+ "NICSYS": 28300000,
"NJVC": 45000000,
- "NRDC": 190000000,
- "Nagle Hartray Architecture": 41000000,
"Nanex": 35500000,
- "National Center for Healthcare Leadership": 10000000,
- "National Oilwell Varco": 7200000000,
- "National Rosacea": 10000000,
- "Naymz": 17500000,
- "Neiman Marcus": 2600000000,
+ "NanoIntegris": 3400000,
+ "Nectel Technologies": 22700000,
+ "NeoSmart": 10200000,
"NetApp": 6500000000,
- "NetJets": 816000000,
- "Nether Realm Studios": 10000000,
- "New Flyer": 2400000000,
- "NewsNation": 61700000,
- "Nikola Corporation": 44000000,
- "Nippon Steel": 46900000000,
- "North Sails": 27500000,
+ "Netra Technologies": 28300000,
+ "Netrix Global": 140000000,
+ "Network Computer Systems": 23100000,
+ "Networked Insights": 7500000,
+ "New Era Technology": 22200000,
+ "NexGenCAM": 17200000,
+ "Nfina": 15300000,
"Norton": 1300000000,
- "Novacam": 10000000,
- "Oerlikon": 3100000000,
- "Office For Visual Interaction": 19200000,
- "Ogilvy": 387500000,
- "Old Republic Insurance": 9000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
- "Orange Business": 9600000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Pacific Cycle": 26300000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Parker Hannifin": 15900000000,
- "Performance Health Holding Inc.": 190000000,
- "PhillipCapital": 200000000,
- "Phillips Edison": 496900000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Preqin": 94900000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Printronix": 850000000,
+ "NowSecure": 15300000,
+ "Nvizion Solutions": 14000000,
+ "O'Connor Design Works": 34700000,
+ "Ocellus": 25000000,
+ "Old-Tyme Supply Inc.": 23500000,
+ "On Line Computer Products": 11900000,
+ "On-Site Computer Services": 12000000,
+ "One Zero Charlie": 33700000,
+ "Onward Technologies": 44100000,
+ "Open311": 13300000,
+ "Optime Supply Chain": 10000000,
+ "Optimi": 27200000,
+ "Otus": 6000000,
+ "PCS International": 12500000,
+ "PSD Solutions": 11300000,
+ "PSSC Labs": 5200000,
+ "Pace Systems": 14200000,
+ "Page Foundry": 22800000,
+ "Pangaea Information Technologies": 28400000,
+ "Patrick Painting LLC.": 21600000,
+ "Paul Altmann Graphic Design Inc.": 15000000,
+ "Paylocity Corporation": 923400000,
+ "Petri": 13000000,
+ "Pixel Witch": 13600000,
+ "Plumadore": 51600000,
+ "Pondurance": 7400000,
+ "PositiveVision": 13000000,
+ "Practical Data": 11500000,
+ "PrideVel": 28500000,
+ "Prophecy1": 11800000,
"Publicis Sapient": 2700000000,
+ "PyroGraphics": 11200000,
"QAD Allocation": 12000000,
- "Qantas": 6300000000,
- "Quality Control Music": 49800000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "REISS": 298800000,
- "RRB": 46600000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
- "Razorfish LLC.": 403900000,
- "Realtor": 118000000,
- "Renewable Energy Group": 2900000000,
- "Riddell Sports Group Inc.": 75000000,
- "Rising Medical Solutions": 26000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rock River Arms": 50200000,
- "Rolls-Royce Motor Cars": 940000000,
- "Rosetta Stone": 182700000,
- "Russell Investments": 566500000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "S&P Global": 8200000000,
+ "Quadtec": 10100000,
+ "Qubix": 10000000,
+ "Quintum Technologies": 11200000,
+ "RECSOLU Inc.": 30000000,
+ "RL Canning": 26200000,
+ "Realnets": 22700000,
+ "Reputation": 18500000,
+ "Revactive": 38100000,
+ "Rhino Group": 42800000,
+ "Ronan Design": 13400000,
+ "Royal Cyber": 12000000,
+ "Ruby on Rails": 10000000,
"SAP": 33500000000,
- "SCA Health": 2000000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMBC Group": 40800000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SAP Ariba": 1600000000,
+ "SBP Digital": 35000000,
+ "SES-imagotag": 545200000,
+ "SLG Innovation": 11300000,
+ "SLK Software": 150000000,
+ "SV Tech Systems": 17900000,
+ "SWK Technologies": 38500000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Schlarman Academy": 14600000,
- "Schnucks": 3000000000,
- "Seasons 52": 300000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "Serbian National Defense Council": 37000000,
- "ServiceMaster Clean": 48500000,
- "Seyfarth": 717400000,
+ "SageTV": 19700000,
+ "SageTV LLC.": 39200000,
+ "Samplesaint Inc.": 31500000,
+ "Sandbox Studio": 34400000,
+ "Sapiens": 382000000,
+ "Sentry360": 20000000,
"ShareThis": 80000000,
- "Shiseido": 8200000000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simon Kucher": 406200000,
- "Sleep Number": 2100000000,
- "Smurfit Kappa": 12300000000,
- "Snyder's-Lance": 8600000000,
- "SoCalGas": 4500000000,
- "Sodexo": 22300000000,
+ "Sibers Group Ltd.": 35000000,
+ "Silver Leaf Design": 13400000,
+ "Silver Oaks": 25900000,
+ "Silver Xis": 75000000,
+ "Simplement": 17600000,
+ "Simplus": 67100000,
+ "SkyByte": 11000000,
+ "Smartgate": 35200000,
+ "Soaring Eagle Computer Services": 30100000,
+ "Software Verify": 15000000,
+ "SoftwareCEO": 19500000,
+ "Softweb Solutions": 80000000,
"Solace": 65000000,
- "Sonoco": 6500000000,
- "Sonova": 3600000000,
- "Sound World Solutions": 21600000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spark Foundry": 600000000,
+ "Specialized Data Systems Inc.": 10000000,
"Spokeo": 86000000,
+ "Spoon Lake Activity Team - Oak Run Dahinda Il": 33600000,
"SpringCM": 25000000,
- "St Lawrence County Historical Association": 13000000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Stanza Living": 10200000,
- "Starwood Capital Group": 750000000,
- "State Farm Insurance": 78900000000,
- "Steadfast Networks": 10100000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "Storck": 3400000000,
- "Straight Dope": 10000000,
- "Student Transportation of America": 637200000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Superb Internet": 13800000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syngenta": 16700000000,
+ "St. Gregory the Great High School": 6600000,
+ "Stability IT Solutions": 34100000,
+ "Stan's-LPS Midwest": 13900000,
+ "Starfish ETL": 10000000,
+ "Stargate Systems": 15000000,
+ "StratusVue": 10000000,
+ "Stroz Friedberg": 31500000,
+ "Subnetworx": 29200000,
+ "Sumtotal Systems LLC.": 120000000,
+ "Sundog it": 17500000,
+ "SupportTechs": 15400000,
+ "Symbotic": 30000000,
+ "Symphony Systems": 26200000,
"Synnex": 57900000,
- "Syska Hennessy Group": 60900000,
- "T. Rowe Price": 6500000000,
- "TAYLOR & COMPANY PRODUCTS": 315000000,
- "TDK": 14000000000,
- "TGG Group": 25900000,
- "THK": 2700000000,
- "TOM FORD": 615000000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Tetra Pak": 11100000000,
- "Teuscher": 29700000,
- "Thales Group": 18000000000,
- "The Brattle Group": 241000000,
- "The Care of Trees": 49000000,
- "The Center for Healthcare Governance": 21400000,
- "The First Line": 18800000,
- "The Hershey Company": 10100000000,
- "The Legal Aid": 18000000,
- "The Marketing Arm": 35000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Threadless": 132000000,
- "Tiffany's": 4400000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TLIQuest": 25800000,
+ "TMW GOV IT": 12300000,
+ "TRIPP DESIGN": 12600000,
+ "Taboola": 1400000000,
+ "Tabs3": 12200000,
+ "Tahoe Partners": 13200000,
+ "Taylor Bruce Design Partnership": 12700000,
+ "TechViz": 5700000,
+ "The Global Web Company": 14000000,
+ "The Graphic Shop": 27600000,
+ "The Org company": 2000000,
+ "Threekit": 17000000,
"TigerDirect": 200000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Tourneau": 32800000,
- "Trading Places": 27200000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
- "Trend Technologies": 57900000,
- "Trump Hotels": 75000000,
- "Turtle Wax": 19300000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Music Corporation": 40300000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UPM": 11100000000,
- "USCIS": 15700000,
- "USTDA": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union of Concerned Scientists": 15400000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Upwork": 618300000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
+ "Today's Solutions": 14500000,
+ "Trace3 LLC.": 1400000000,
+ "Trihedral Engineering": 6000000,
+ "Trilogy": 33800000,
+ "TrioSoft": 39700000,
+ "True Digital Security": 14000000,
+ "TrueGivers": 18100000,
+ "Tweedie Associates Architects": 12300000,
+ "Umojo": 39500000,
+ "Unicom Technologies": 14200000,
+ "Unitas Global": 43900000,
+ "Ushur": 10000000,
+ "V-Manager Software": 30300000,
"VMware": 13200000000,
- "Valens": 70700000,
- "Valpak": 43500000,
- "Velsicol Chemical Corporation": 13200000,
- "Vera Bradley": 513100000,
- "Verifone": 1800000000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Victoria's Secret": 5400000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walgreens": 84900000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Williams Lea Tag": 1200000000,
+ "Valorem Reply": 26000000,
+ "Vauto": 150000000,
+ "Velde Gm Supercentre": 14100000,
+ "Velvetech": 12000000,
+ "Vertex IT": 32100000,
+ "Virtual Cloud Solutions": 31200000,
+ "Virtual Internet": 16700000,
+ "Vivid Technologies": 13400000,
+ "Vls Systems": 15500000,
+ "Ward Nipper": 24300000,
+ "WareITis": 27200000,
+ "Warehouse Simulation Software": 11700000,
+ "Washburn Community Foods": 14400000,
+ "Wellsoftware": 42100000,
+ "Wellspring": 7000000,
+ "WiredMedium": 31600000,
"Wolters Kluwer": 5400000000,
"Workiva": 468700000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XMS Capital Partners": 23500000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "ZEISS": 8800000000,
- "ZF Friedrichshafen": 43400000000,
- "Zynga": 2900000000
+ "Www.websolutionsoncall": 26600000,
+ "XOBJEX Corporation": 25600000,
+ "Yext": 399900000,
+ "ZAVION CORPORATION": 27400000,
+ "Zansys": 10000000,
+ "Zero Access": 21800000,
+ "Zeta Softech": 10000000,
+ "eGrafic": 36500000,
+ "iConnect Technologies": 62200000,
+ "uGRIDD": 31600000
},
"Indiana": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "3r Interactive": 4600000,
+ "5i Solutions": 15800000,
+ "ABELSoft": 5500000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "AMS Neve": 9700000,
- "Academic Model Providing Access to Healthcare": 3500000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acorns Grow Incorporated": 71000000,
- "Acuity Brands": 4000000000,
- "Advanced FLOW engineering": 17500000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Air Canada": 12200000000,
- "Airliners": 3000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
+ "AMP Association of Music Parents": 10000000,
+ "ASPHostPortal": 7000000,
+ "AVI System's": 272500000,
+ "Accel International Holdings": 12200000,
+ "Accent Consulting": 13800000,
+ "Accent Software": 5000000,
+ "Acclamare": 14500000,
+ "Acec Indiana": 36300000,
+ "Achievement Focused Technology Inc.": 11500000,
+ "Activio": 11700000,
+ "Acumence": 20300000,
+ "AdSoftware": 10000000,
+ "Adaptive Business Solutions": 12100000,
+ "Adaptive Systems": 11300000,
+ "Adaptive Vision": 10000000,
+ "Address Two": 16400000,
+ "Advanced Process Combinatorics": 19000000,
+ "Advent Design": 11700000,
+ "Albrecht Solutions": 6000000,
+ "Aldrich Technology": 26600000,
"Alithya": 389900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Folklore": 19000000,
- "American Pianists": 6000000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
+ "Alltek Solutions Group": 3600000,
+ "Ameri info": 12900000,
+ "American Programmers Independent": 13600000,
+ "Andrea-Leigh": 29800000,
+ "Anexix": 22000000,
+ "Apex Data Systems": 12300000,
+ "Appcom": 33100000,
"Appirio": 250000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atlantic Union Bank": 689200000,
- "Auto Research Center": 7000000,
- "Ave Maria Press": 3200000,
- "Axis Communications": 1300000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "Beckman Coulter": 2100000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Bellmont High School": 5400000,
- "Beltone": 61600000,
- "Bethesda Christian Schools": 34800000,
- "Big Boy Restaurants": 26600000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
+ "Apsurge": 19800000,
+ "Aptera Inc.": 27000000,
+ "Arcem Solutions": 2400000,
+ "Arete Software Inc.": 10300000,
+ "Artisan Electronics": 34600000,
+ "Ashton Computer": 13500000,
+ "Athreon": 30000000,
+ "Atlas IT": 15100000,
+ "Atlas Software Technologies": 150000000,
+ "Atrium Insight Inc.": 30000000,
+ "Automated Systems Inc. | Community Banking Software": 15400000,
+ "Availity": 180000000,
+ "Avanza Tax & Bilingual Services": 18500000,
+ "Awebnow": 12200000,
+ "BOLAND": 13300000,
+ "BOSS International": 11200000,
+ "Barricade Software": 46900000,
+ "Basic Systems USA": 38100000,
+ "BeSecureNet": 10300000,
+ "Beacon Technologies Group": 16300000,
+ "Bee Culture": 5500000,
+ "Benson Communications": 13800000,
+ "Bereman": 12500000,
+ "Best Web Design Agencies": 10000000,
+ "Beyond Key": 39100000,
+ "Big Tada": 24200000,
+ "Blackink IT": 5600000,
+ "Blu3 Designs": 5500000,
+ "Blue Pillar": 10000000,
+ "Bluefin Software": 10000000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boxed Inc.": 183000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brooklyn Bicycle": 3400000,
- "Brown & Brown Insurance": 3400000000,
- "Brown's Chicken": 5300000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
+ "Born to Design": 16900000,
+ "Boyce Systems": 25000000,
+ "Braden Business Systems": 16700000,
+ "BrainStomp": 64800000,
+ "Brian Tsang": 11700000,
+ "Brite Systems": 11700000,
+ "Brown Inc.": 12800000,
+ "Bucher Tech": 11300000,
+ "Build A Computer": 9800000,
+ "Business Tech Consultants": 26200000,
+ "C.D.'s IT Consulting": 11100000,
+ "C2IT Consulting": 22900000,
+ "CBTS": 75000000,
+ "CCR Technology Partners": 15900000,
"CDW": 23800000000,
- "CERN Foundation": 7600000,
- "CMF International": 31400000,
- "CRA Racing": 14400000,
- "CURTISS-WRIGHT": 2500000000,
- "California Steel Industries": 1200000000,
- "Captain D's": 9000000,
- "CarDon & Associates": 32000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Anderson": 26200000,
- "City of Kokomo": 2700000,
- "CityBus of Greater Lafayette Indiana": 19400000,
- "Clark Brands": 23000000,
- "Clean Juice": 7000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
+ "CIMTech.Solutions": 15700000,
+ "CMB Computers": 8700000,
+ "CMB Solutions": 19700000,
+ "CMIT Solutions": 60000000,
+ "CNS Technology": 12300000,
+ "CNZ": 21800000,
+ "COLAMCO": 35200000,
+ "COLOR Marketing & Design": 5400000,
+ "COVI": 28800000,
+ "CS Kern": 2600000,
+ "CSC Indy": 6200000,
+ "CSpring": 10000000,
+ "Cambria": 28300000,
+ "CartoonMaps": 10900000,
+ "CasePacer": 29200000,
+ "CaterTrax": 15000000,
+ "ChannelBound": 7000000,
+ "Cheddar": 10000000,
+ "Cheetah Inc.": 10000000,
+ "Chris Hardie": 10900000,
+ "Cimcor": 12900000,
+ "Cityworks": 11000000,
+ "Clear Object": 22900000,
+ "Clifty": 10100000,
+ "Clinical Architecture": 44300000,
+ "Cloud Academy": 12100000,
+ "Cloud Proven": 6000000,
"Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Comlux": 75000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
+ "Cmasupply": 14400000,
+ "CodeBlue Networks": 13400000,
+ "Complete Technology Solutions": 1400000,
+ "Computer Professionals": 10800000,
+ "Connectex IT Consulting": 50500000,
+ "Conperio": 24800000,
"Consona Corporation": 37500000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DAV": 3900000,
- "DENSO CORPORATION.": 43500000000,
- "DFAS": 10000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
+ "Continuum Consulting V2 Inc.": 27000000,
+ "ConverSight": 3100000,
+ "ConvergeOne": 1600000000,
+ "Conway Designs": 11800000,
+ "Core BTS": 220000000,
+ "Corsica Technologies": 3800000,
+ "Creative Roots Design Group": 30000000,
+ "Creative Web Values": 37200000,
+ "Creekside Design": 22700000,
+ "Crestwood Associates": 16100000,
+ "Crittur": 11900000,
+ "Crystal Clear Design": 34200000,
+ "Cscape": 10500000,
+ "Curtis Smeltzer": 1400000,
+ "Custom Intelligence LLC.": 32800000,
+ "CyberPay": 21600000,
+ "Cyberian Technologies": 16700000,
+ "Cybertek MSSP formally Cybertek Engineering": 28900000,
+ "DBConnect": 13600000,
+ "DBMS Inc.": 14100000,
+ "DC Design": 10000000,
+ "DCC Inc.": 21900000,
+ "DETEL": 10000000,
+ "DGE Automation": 31000000,
"DTN Ag.": 250000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "Duneland": 13300000,
- "EDA": 10000000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elevance Health": 153200000000,
- "Elring Klinger": 1800000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "Experimental Aircraft Association": 15600000,
- "Faegre Drinker": 512900000,
- "Families Advocating for Campus Equality": 6400000,
- "Fancy Fortune Cookies": 26800000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
+ "DartPoints": 42000000,
+ "Data Analyzers Data Recovery Services": 4200000,
+ "Data Center Knowledge": 23300000,
+ "Data Fabrication": 15600000,
+ "Data Recovery Labs": 12900000,
+ "DataBank IMX": 37000000,
+ "DataIC": 11700000,
+ "DataStrat": 28300000,
+ "Datum Solutions": 18000000,
+ "David LaFontaine": 10600000,
+ "Dealer Services Network": 10000000,
+ "Delbridge": 23600000,
+ "Design On Tap": 3900000,
+ "DesignMark": 17200000,
+ "Details Matter": 12000000,
+ "DigiCert QuoVadis Trustlink Netherlands": 13000000,
+ "Digicom LLC.": 22800000,
+ "Digital Endeavor": 22200000,
+ "Dillyeo": 10100000,
+ "DiverseNet": 37800000,
+ "Diversified": 458900000,
+ "Diversified Intelligence": 3000000,
+ "Dmi Services Llc.": 14000000,
+ "DocRaptor": 1400000,
+ "Doxim": 67000000,
+ "Drew Artistic Marketing": 25900000,
+ "DrySpark": 1900000,
+ "Duane King": 13000000,
+ "Dynamics CRM Consulting": 39100000,
+ "E Tech Group": 200000000,
+ "ECS Solutions": 11300000,
+ "EKF Management": 25500000,
+ "EMCO Technologies": 32800000,
+ "EMR CPR": 25400000,
+ "ENGYS": 5000000,
+ "ERP VAR.": 10000000,
+ "ETNOM": 18400000,
+ "EW3D": 35200000,
+ "EXC Computer Consulting": 6000000,
+ "EarthCam": 15000000,
+ "East Fork Studio": 4100000,
+ "Eastern Management Inc.": 28800000,
+ "Egress": 12600000,
+ "Emarsys": 100000000,
+ "EnGenX": 19600000,
+ "Enatech Incorporated": 9300000,
+ "EquiDesis": 14500000,
+ "ExakTime": 24300000,
+ "Expected Behavior": 16100000,
+ "Expedient": 200000000,
+ "FOREST PRO": 36000000,
+ "FUZE DESIGN INC.": 34300000,
+ "FX Design": 26600000,
+ "Fearfactory": 32600000,
+ "Field Control Analytics": 14900000,
+ "FileWave": 11000000,
+ "Finvi": 75000000,
"First Databank": 70000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
"Formstack": 38000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton County Airport": 7500000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GG Archives": 3600000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Garrett Motion": 3600000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Giordanos": 175000000,
- "Girls Inc.": 15200000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Goodrich Quality Theaters": 2100000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Gravity Interactive": 2400000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Harbor Freight": 5000000000,
- "HarperCollins": 1700000000,
- "Harris Boats": 10000000,
- "Haynes International": 490500000,
- "HealthPartners": 6600000000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Huhtamaki": 53200000000,
- "Hustle Gang": 2800000,
- "Hydro": 21600000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IDFC FIRST Bank": 2900000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IU Health": 7900000000,
- "InTown Suites": 3400000,
- "Indiana Harbor Belt Railroad": 7100000,
- "Indiana Public Retirement System": 6200000,
- "IndyCar": 35000000,
+ "FortvilleMcCordsville Chamber of Commerce": 27800000,
+ "Foxio": 1400000,
+ "FreeEMS": 7800000,
+ "Fusion46 Web Design": 28900000,
+ "FusionSoft": 25000000,
+ "Future Systems Solutions": 33800000,
+ "Future Tech Enterprise Inc.": 15000000,
+ "Future Tech Information": 10000000,
+ "GDUSA": 15000000,
+ "GOOD STUFF DESIGN": 25800000,
+ "GRM Information Management": 100000000,
+ "Gemini Business": 12400000,
+ "George Lengacher And Sons": 26700000,
+ "Gideon VI": 26300000,
+ "Gogis Design": 13000000,
+ "Golden Technologies": 17500000,
+ "Gorman Services": 34300000,
+ "Graze Cart": 5400000,
+ "Groovemade": 36300000,
+ "Guide Technologies": 11000000,
+ "Guider": 31300000,
+ "Guru Tedd": 31700000,
+ "GyanSys": 218600000,
+ "HONEYMOON IMAGE & DESIGN INC.": 19500000,
+ "Hagerman": 35000000,
+ "Halogen Designs": 22800000,
+ "Harris Experior": 37500000,
+ "Hashe": 5000000,
+ "Hei Dao Xiao Yuan Xiao Shuo You Xian Gong Si": 28800000,
+ "Hemmersbach": 288000000,
+ "Hensley Industries": 41200000,
+ "HighPoint Digital": 95500000,
+ "Horizon Interactive Awards": 4700000,
+ "Hyperbole Software": 25200000,
+ "ICEGEN": 17500000,
+ "INDIANA DIGITAL": 57100000,
+ "INTEGRITY NETWORK SOLUTIONS": 57100000,
+ "INTELLI-NET": 32500000,
+ "INTERNETHUT": 14400000,
+ "INdigital": 25800000,
+ "ITAS Corp": 19800000,
+ "ITeam LLC.": 12800000,
+ "IdentityLogix": 42400000,
+ "Illustrator Tips": 21300000,
+ "Image Matters": 12000000,
+ "Imagehaus Creative": 24300000,
+ "InGen Technologies": 5500000,
+ "InTempo Software": 14300000,
+ "Independent Technology Services": 28700000,
+ "Indev Systems": 18900000,
+ "Indiana Webworks": 26900000,
+ "Indiano Law Group LLC.": 6000000,
+ "Indosoftnet": 7000000,
+ "Indy Tech Support": 2500000,
+ "Infinity Business Consulting": 11100000,
+ "Information Systems Experts": 15000000,
"Infosys BPM Limited": 38200000,
- "Ingredion Incorporated": 7200000000,
- "InterDigital": 481300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jackson County Banner": 49800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KEBA": 430000000,
+ "Innovative Integration": 4500000,
+ "Innovative Technical Solutions": 26900000,
+ "Innovative Technology Group Northeast Indiana": 22400000,
+ "Innovia Consulting": 10000000,
+ "Insight Consulting Inc.": 21700000,
+ "Instant Web Tools": 300000000,
+ "Intellectual Technology Inc.": 10000000,
+ "Intelliquip": 10700000,
+ "InterVision": 19000000,
+ "Interactive Digital Solutions": 15000000,
+ "International Software Products": 10000000,
+ "Internet Minded": 4800000,
+ "Intrasect Technologies": 31200000,
+ "Intuitive Technologies": 17400000,
+ "Irely": 34000000,
+ "Ivibe": 16200000,
+ "J Hall Media \u2014 Graphic Design & Visual Communication": 18700000,
+ "J M Distributors": 24500000,
+ "J. Damon": 27100000,
+ "JDR Web Solutions": 16300000,
+ "JGPlus": 29500000,
+ "JKL Software": 49200000,
+ "JRC Hosting": 22700000,
+ "Jackman's Animal Clinic": 25400000,
+ "Jeff Bull Tech Solutions": 34600000,
+ "Jordan Toyota Inc.": 8200000,
+ "Julien Design Studio": 49600000,
+ "K-Plus Technology Solutions": 11800000,
"KMC Controls": 72000000,
- "KONE": 10900000000,
+ "KPG Global": 12500000,
"Kainos": 397300000,
- "Kaiser Permanente": 93100000000,
"Kareo": 71400000,
- "Kelly Services": 5000000000,
- "Keter": 1500000000,
- "Kids Alive": 2000000,
- "Kilwins": 50000000,
- "Kimball International": 635100000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kiwanis": 3300000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kokomo Perspective": 16000000,
- "Kona Grill Inc.": 176300000,
- "Kroger": 130700000000,
- "LUFKIN": 1500000000,
- "Laughing Planet": 10000000,
- "Lee's Famous Recipe": 10100000,
- "Leidos Holdings Inc.": 13700000000,
- "Leoni Special Cables": 5400000000,
+ "Keller Schroeder": 10000000,
+ "Kindful": 10000000,
+ "Kinney Group": 20000000,
+ "Konehead design": 28800000,
+ "Kosmo": 25800000,
+ "LEAP Managed IT": 7000000,
+ "LTC-Software": 6000000,
+ "LTS Secure": 1000000,
+ "LabSoft LIMS": 21300000,
+ "Lanicom": 33500000,
+ "Leaf Software Solutions": 14700000,
+ "Legacy Computers Software": 30100000,
"Level 3 Communications": 17500000000,
- "Liberty FCU": 11300000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Ludwig Drums": 8000000,
- "Lupus Foundation of America": 13700000,
- "Lyon & Healy": 7000000,
- "MCL Restaurant & Bakery": 2000000,
- "MOBILE MINI": 593000000,
- "MPSA": 8900000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Marcus & Millichap": 1500000000,
- "Marmon-Herrington Company Inc.": 49000000,
- "MasterCraft": 761500000,
- "Material Sciences": 75000000,
- "Max & Erma's": 4500000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Meatheads Burgers & Fries LLC.": 14300000,
+ "Level-1 Global Solutions": 34400000,
+ "LifeOmic": 12500000,
+ "Lodge Design": 12300000,
+ "Low Associates": 22700000,
+ "Lucky Duck Designs": 27900000,
+ "Lumavate": 4300000,
+ "Luther Consulting": 20000000,
+ "M3V Data Management": 17200000,
+ "MaddenCo": 13400000,
+ "Made Designs": 22400000,
+ "Manitex Sabre": 25000000,
+ "Matrix Integration": 30000000,
"Medallia": 477200000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Metal Archives": 10000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Evansville Transit System": 7100000,
- "Micron Technology": 30800000000,
- "Midcontinent Independent System Operator": 380300000,
- "Midwest Communications": 36300000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molnlycke": 2200000000,
- "Montgomery County MD": 24300000,
- "Mullen": 93200000,
- "Multimatic": 1500000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NCG Cinemas": 9100000,
- "NCPH": 2600000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "Newark": 450000000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Northwest Bank": 510300000,
- "NuStar Energy": 3200000000,
- "ON Semi": 8300000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ohio Community College Athletic Conference": 13200000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orange Business": 9600000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Packaging Digest": 45000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Parrish and Heimbecker Limited": 4300000,
- "Patriot Rail": 120200000,
- "Penguin Point": 36700000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pho Hoa": 2500000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
+ "Medical Informatics Engineering": 9200000,
+ "Megaputer": 20200000,
+ "Mente Graphics": 32100000,
+ "Mentridge": 6000000,
+ "Mesh Systems": 12500000,
+ "Microcomputer Specialists Inc.": 37200000,
+ "MidwayNet": 17900000,
+ "Miovision": 35000000,
+ "Mirazon": 16400000,
+ "Miri Infotech": 21200000,
+ "Modern Information Solutions": 3500000,
+ "Monkey Mouth Media": 5200000,
+ "Morgan Motors Inc.": 11400000,
+ "Moser Consulting": 10000000,
+ "My Hungry Pal": 17300000,
+ "NET'N COM": 11900000,
+ "NFC Information Technology": 1400000,
+ "NIBA LIMITED.": 19400000,
+ "Narwal": 11300000,
+ "National Government Services": 300000000,
+ "Net Activity": 19000000,
+ "Net Results": 29400000,
+ "NetDip": 13800000,
+ "NetOfficeToolBox": 27100000,
+ "Network Computer Solutions": 5000000,
+ "Network Engineering": 15500000,
+ "Network Programs": 6700000,
+ "Network Solutions Inc.": 48200000,
+ "New Era Technology": 22200000,
+ "New View Solutions LLC.": 27300000,
+ "NexGenCAM": 17200000,
+ "Nfina": 15300000,
+ "Niche n Agile": 35000000,
+ "North Star Computer Systems": 12000000,
+ "North Star Technical Services": 7200000,
+ "North Vernon Wesleyan Church": 33200000,
+ "OCP Software": 23400000,
+ "OVC Technologies": 40300000,
+ "OakLeaf Consulting": 16000000,
+ "Omega Design Studio": 45600000,
+ "OmegaFi": 18400000,
+ "One Fact": 32400000,
+ "One Technologies": 17200000,
+ "Open311": 13300000,
+ "Optiform": 13500000,
+ "Optimal IdM": 39000000,
+ "Orbiter Inc.": 21300000,
+ "Ordered List": 1400000,
+ "OutRight Systems": 3400000,
+ "Outdoor Roomscapes": 15500000,
+ "Outside Source": 12900000,
+ "Overcart": 27900000,
+ "PRO100USA": 11700000,
+ "PSD Concepts": 13500000,
+ "Page Pop": 24200000,
+ "Para Solutions": 17500000,
+ "Passageways": 20000000,
+ "Pathfinder Group Ltd.": 25700000,
+ "Patrick Siney Art Direction and Design": 33900000,
+ "Penmark Solutions": 2400000,
+ "Perna Design": 5400000,
+ "Perpetual Technologies": 12000000,
+ "Phelco": 14400000,
+ "Phete First Graphics": 42100000,
+ "Pixel Rocket Apps Ft. Wayne": 5700000,
+ "Pixlplay": 19100000,
"Pondurance": 7400000,
- "Porsche France SAS.": 34300000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Positron Corporation": 1200000,
- "Potawatomi Wildlife Park": 21800000,
- "Prairie Farms": 3100000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "RentHop": 1000000,
- "Republic Bank": 314200000,
- "Reverend Guitars": 19200000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rolls-Royce": 15300000000,
- "Roly Poly": 16400000,
- "Rotel": 38800000,
- "Rusty Bucket Restaurant & Tavern": 3500000,
- "Ryan Office": 626000000,
- "SCHOTT AG": 2800000000,
- "SDS": 10500000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Schnucks": 3000000000,
- "Schwebel's": 23800000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seven Peaks Water Park Duneland": 21800000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Sleep Number": 2100000000,
- "Snyder's-Lance": 8600000000,
- "Society Tea": 4300000,
- "Sodexo": 22300000000,
- "Sofitel Frankfurt": 75000000,
- "Solution Tree": 150000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southside Times": 6000000,
- "Southwest": 22700000000,
- "Sprint Mart": 25800000,
- "Stantec": 3100000000,
- "Static Media": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "Stratolaunch LLC.": 28700000,
- "Sullair": 390000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Surly Bikes": 1000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas Gas Transmission": 47800000,
- "The Berne Witness": 19500000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Republic": 10000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Tippecanoe School Corporation": 12300000,
+ "PortSAP": 5100000,
+ "Powderkeg Unvalley": 2000000,
+ "Praecipio": 22000000,
+ "PraxiPower": 52100000,
+ "Prime Networking": 20700000,
+ "Pro Sys": 12700000,
+ "ProBleu": 31300000,
+ "Productivity Strategies": 13600000,
+ "Profician": 21400000,
+ "Progressive Networks": 91000000,
+ "Promethius": 4300000,
+ "Prophet One": 10700000,
+ "Protegra Bilgisayar Sistemleri ve Dan\u0131\u015fmanl\u0131k Hizmetleri": 18500000,
+ "Protos Technologies": 7400000,
+ "Providence Home": 10000000,
+ "Proxurve": 11200000,
+ "Psychstrength": 11100000,
+ "Q-mation": 11900000,
+ "Q1 Technologies": 12300000,
+ "REAL Consultants": 21100000,
+ "RainStorm": 26900000,
+ "Recovery Database": 15300000,
+ "RedRock IT Solutions": 7000000,
+ "Reed Sprunger": 11900000,
+ "Reenie.Imaging": 10800000,
+ "Region Design": 11900000,
+ "RelQ": 150000000,
+ "Renaissance Engineering": 25100000,
+ "Rent Manager": 40900000,
+ "Resultant": 54000000,
+ "Rhonda Schienle": 18400000,
+ "Right Left Media": 5400000,
+ "Right On Interactive": 3900000,
+ "Ripple Design Co.": 12800000,
+ "Rithm Systems": 15600000,
+ "Rivera Group": 2300000,
+ "Robotic Systems Integration": 25800000,
+ "Rose Lady Floral Shop": 28800000,
+ "Ryan Miller Design": 32500000,
+ "S4 Inc.": 16500000,
+ "SAGE-IP": 57200000,
+ "SEP Foundation": 22000000,
+ "SEQ Technology": 2400000,
+ "SGA Software": 31200000,
+ "SIM2K": 28100000,
+ "SWIFT SOLUTIONS INC.": 12400000,
+ "SaucePan Creative": 39700000,
+ "Scale Computing": 52600000,
+ "Scallywag Design LLC.": 34100000,
+ "Scenario 77": 5000000,
+ "Scientia LLC.": 8700000,
+ "Secure ERP": 30800000,
+ "Seismic": 300000000,
+ "Sendit Certified": 10000000,
+ "Serverside Consulting": 6000000,
+ "Service Express": 130000000,
+ "Shaansoft": 150000000,
+ "Sharetec": 6000000,
+ "Shinn Technology Services Corporation - Fishers Indiana": 33100000,
+ "ShopWare Inc.": 16200000,
+ "Simplified Logic": 12700000,
+ "Sinister Visions": 22600000,
+ "Sirmont": 6200000,
+ "Sitco Business Solutions": 10300000,
+ "Small Business Marketing Shop": 34300000,
+ "Smart Systems Technologies": 10000000,
+ "SmartFile": 7400000,
+ "Smr Usa Inc.": 10500000,
+ "Social Health Insights LLC.": 15000000,
+ "Socio Labs LLC.": 20000000,
+ "Solutions Plus Consulting": 2400000,
+ "Solutions Pro": 11700000,
+ "Source One Solutions": 14100000,
+ "South River Design and Hosting": 15000000,
+ "SpringML": 12000000,
+ "Springbuk": 21400000,
+ "Steuben County Indiana": 38200000,
+ "Straight2yourdoor": 48000000,
+ "Superior Software Systems": 24700000,
+ "Swan Software Solutions": 3100000,
+ "Swiss Group": 35100000,
+ "Swissland Milk Co.": 20400000,
+ "Sycamore Group Assoc": 27700000,
+ "Syds Inc.": 36100000,
+ "Synergetics": 44400000,
+ "TCC Software Solutions": 25200000,
+ "TECHNET Enterprises of Florida": 30500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TITANIUM MOTORS": 26400000,
+ "TJR Consulting": 21800000,
+ "TOB Support": 30200000,
+ "TTE LLC.": 12800000,
+ "Tabs3": 12200000,
+ "Tanner Evans": 19100000,
+ "Tavant": 140000000,
+ "Team MIS": 16300000,
+ "TeamLogic Inc.": 7200000,
+ "Tech Arcadia": 25000000,
+ "Techcom Inc.": 21900000,
+ "Technology Partnership Group": 12100000,
+ "Technology Plus": 15200000,
+ "Technology Specialists": 4600000,
+ "Tecnics": 70000000,
+ "Tenflare": 12000000,
+ "Tent Software": 11700000,
+ "TeraDeep": 1500000,
+ "Thavron": 2000000,
+ "The AME Group Louisville": 214000000,
+ "The Biz Dr": 13600000,
+ "The Indiana Sign Guy Llc.": 22700000,
+ "The Society for Electroanalytical Chemistry SEAC": 5200000,
+ "The Vernon Corporation": 13500000,
+ "Theoris": 21400000,
+ "Think Tank NTG": 13500000,
+ "Todd Allen Design": 17000000,
+ "ToddSantoro": 16300000,
"Topcoder Inc.": 34000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Torchlite": 4000000,
+ "Total Hosting": 51500000,
+ "Total Systems": 21800000,
"Trace3 LLC.": 1400000000,
- "Tracerco": 47500000,
- "Trafford": 1100000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Trinity Lutheran College": 18400000,
- "Tuff Shed Incorporated": 300000000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USA Track & Field": 9000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "University High School": 12200000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "Valpak": 43500000,
- "Valparaiso University": 4200000,
- "Velvet Ice Cream": 34800000,
- "Ventec Life Systems": 18500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wickham Laboratories Ltd.": 35000000,
- "Wieland Group": 6100000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
+ "Track Group Correctional Solutions": 38100000,
+ "Tracy's Web Technology": 57200000,
+ "Trava Security": 1200000,
+ "Tri Star Engineering": 25400000,
+ "Tromba Technologies": 25100000,
+ "TsarQuest": 25800000,
+ "Tubesock": 62900000,
+ "UNS LLC.": 48500000,
+ "University Farm": 12400000,
+ "User Friendly Consulting": 18600000,
+ "VSC Web Group": 18300000,
+ "Validity": 10200000,
+ "Van Ausdall & Farrar": 30000000,
+ "Varutra": 26100000,
+ "Vertical Vision Technologies": 25200000,
+ "VidCAD": 33800000,
+ "Vision One 76": 11900000,
+ "ViviScape": 29300000,
+ "WOLCOTT COMMUNITY SUMMER FESTIVAL INC.": 33100000,
+ "WRG Art Direction": 10800000,
+ "WTH Technology": 15700000,
+ "WYSTech": 20100000,
+ "Waldon It Solutions": 33300000,
+ "Walkingstick Software Inc.": 13600000,
+ "Waypoint Global": 34700000,
+ "Web HSP": 25700000,
+ "WebDPW": 3300000,
+ "Website Design by Doug Walker": 16900000,
+ "Wellcrafted Consulting": 16900000,
+ "Wengert": 19400000,
+ "Wet Ink Designs": 2800000,
+ "Whalen Creative": 9400000,
+ "Witkemper Insurance Group": 9100000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zola company": 120000000,
- "Zonda Home": 50000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
+ "Wowlinx": 4600000,
+ "X Sight Music": 21000000,
+ "YSgraphics": 15800000,
+ "Yecart": 31000000,
+ "Zeetaa": 10000000,
+ "Zylo": 5500000,
+ "djmiller Services": 19200000,
+ "eFamily": 15300000,
+ "geoConvergence": 3800000,
+ "iLAB Atlanta": 12000000,
+ "imgforge Web & Print": 15200000,
+ "nLeague": 21700000,
+ "phpwebhosting LLC.": 10000000
},
"Iowa": {
- "ABC Supply": 12100000000,
- "ADB": 450000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "A La Cloud": 23500000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "Ace Hardware": 7800000000,
- "Active Interest Media": 200000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agropur": 7700000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Algona Community School District": 21500000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alzheimer's Association": 81500000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Pop Corn Company": 3000000,
- "American Society of Genealogists": 3600000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Ankeny Community School District": 55800000,
- "Applied Instruments": 9000000,
- "Arconic": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Aspen Pharmacare": 2200000000,
- "At Home store": 1700000000,
- "Australian Baseball League": 5600000,
- "Autocall": 6000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "Barilla company": 4000000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Best Buddies": 3600000,
- "Bettendorf City": 20800000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Boehringer Ingelheim": 23300000000,
+ "AVI System's": 272500000,
+ "Absolute Networkers": 35900000,
+ "Acanthus Lodge": 4100000,
+ "Accelerated Cloud": 4600000,
+ "Access Systems": 324000,
+ "Accessible Solutions": 1100000,
+ "Action Real Estate": 24200000,
+ "Advanced Business Computing Solutions": 6600000,
+ "Advanced Technologies Group": 13100000,
+ "AgVision": 4800000,
+ "AgWorks": 7300000,
+ "Agilon": 13900000,
+ "Aging in Place with Grace": 7600000,
+ "Alice Vinsand Inc.": 26800000,
+ "Altman Software Associates": 11800000,
+ "American Computer Resources Inc.": 6200000,
+ "American Technology Consulting - ATC": 7300000,
+ "Anchor Network Solutions": 1100000,
+ "Appcore": 2700000,
+ "ApplePOPDesign": 1400000,
+ "Aquilon Software": 1500000,
+ "Arcoro": 60000000,
+ "Armolon": 2400000,
+ "Artech Solutions": 4100000,
+ "Associated Computer Systems ACS": 18300000,
+ "Atanasoft": 14300000,
+ "AutoConX": 162000,
+ "B&D Development": 26000000,
+ "BDH Technology": 137000,
+ "BMTEC": 37000000,
+ "BOYD SOFTWARE": 25600000,
+ "Backstop Solutions": 12000000,
+ "Bailey's Computer Services": 400000,
+ "Bartels Lutheran Retirement Community": 56700000,
+ "Basler Design": 14900000,
+ "Berry Web Labs": 2400000,
+ "Biblesoft": 7800000,
+ "Bio Neos": 7000000,
+ "Bisenius Interactive": 262000,
+ "Black Tie Creatives": 17300000,
+ "Blue Rock Designs": 34700000,
+ "BlueAlly": 11700000,
+ "BluffsOnline": 10000000,
+ "Blurrr Design": 310000,
+ "Boardhost": 10000000,
"Booz Allen": 8800000000,
- "Bossard": 920500000,
- "Boyden-Hull Community Schools": 18600000,
- "Brain Injury Association of America": 10000000,
- "Brass Armadillo": 13300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burlington Junction Railway": 18600000,
- "C.L. Barnhouse Company": 42800000,
- "CFA Institute": 356300000,
- "CITYVIEW": 4700000,
- "Cahill": 757300000,
- "Caldwell Tanks": 5100000,
- "Camlin Fine Sciences": 91800000,
- "Camp Fire": 10000000,
- "Camso": 1300000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carroll County Public Schools": 378500000,
- "Caster Concepts": 9000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Television Network": 12200000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Connecticut Food Bank": 69800000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DENSO CORPORATION.": 43500000000,
- "DMI Inc.": 705000000,
- "Dave Smith Motors": 30900000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Deep Foods": 58000000,
- "Department of Energy": 190000000,
- "Des Moines Golf & Country": 27400000,
- "Des Moines Women's Club": 57900000,
- "Digital Playground": 7000000,
- "Dispatch Argus": 5200000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "Easons": 2900000,
- "EatStreet": 25000000,
- "Ecumen": 165000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Essex Savings": 25000000,
- "Ethan Allen": 845000000,
- "Evangelical Free Church of America": 5200000,
- "Experimental Aircraft Association": 15600000,
- "ExxonMobil": 403200000000,
- "FLEXcon": 400000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Fedco Seeds": 15400000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
+ "Brandi Powell": 1700000,
+ "Build In Motion": 4500000,
+ "Byte Technology": 4400000,
+ "C-Systems Software": 4700000,
+ "CMIT Solutions": 60000000,
+ "CSI - Computer Service Innovations": 12800000,
+ "CSS Consulting": 20300000,
+ "CSToday": 288000,
+ "Canauri": 115000,
+ "Cartegraph": 25000000,
+ "Case Innovations": 13000000,
+ "Catalyst IT": 9000000,
+ "Central Media Designs": 4000000,
+ "Central Software Solutions": 10000000,
+ "Certified Network Consultants LLC.": 28000000,
+ "ChiroSpring": 6600000,
+ "Choice Solutions": 1900000,
+ "ChoiceOne Technical Services": 7000000,
+ "Christian Connett": 1400000,
+ "Cisco Building 9": 33000000,
+ "Clem Insurance": 10000000,
+ "ClientCircle": 2300000,
+ "Code|Works Software": 19900000,
+ "Collabrance": 32000000,
+ "Collective Data": 4300000,
+ "Color-ize": 25700000,
+ "Communications Engineering Company CEC": 3100000,
+ "Comnez": 9400000,
+ "Control Systems Software": 8700000,
+ "ConvergeOne": 1600000000,
+ "CoreTech": 14000000,
+ "CourseLeaf": 2400000,
+ "Cr Holland Crane Service Inc.": 22300000,
+ "Creative Perfection": 2400000,
+ "Creative Solutions Unlimited": 10900000,
+ "Crush Blend": 10300000,
+ "Custom Computing Services": 14500000,
+ "CyaNet": 13500000,
+ "CyberSecOp": 10000000,
+ "Cylosoft": 9400000,
+ "DATUM DIGITAL": 373000,
+ "DBSC": 22400000,
+ "DRM Development": 35100000,
+ "DSS Resources": 19400000,
+ "DWebware": 5300000,
+ "Daida": 22400000,
+ "Data Canopy": 2000000,
+ "DataVizion": 5000000,
+ "DealerBuilt": 15800000,
+ "Design Matters LLC.": 4000000,
+ "Design Mill": 7800000,
+ "Designarchy": 2000000,
+ "Designed By Brenda": 7400000,
+ "Devitech": 6200000,
+ "Digital Canal": 20400000,
+ "Digital Forensics Team": 4100000,
+ "Digital Reef": 30000000,
+ "Digital Stew": 31400000,
+ "Dillyeo": 10100000,
+ "Dirt Road Design": 200000,
+ "Docupace": 15600000,
+ "Drake Hardware & Software": 34700000,
+ "DreamScape Visionery LLC.": 1400000,
+ "Dubuque Networking Services": 12700000,
+ "ECI Software Solutions": 365000000,
+ "ECOLANE": 15000000,
+ "ELB": 6900000,
+ "EMSuiteOnline": 1700000,
+ "ER2": 3100000,
+ "ESO": 82500000,
+ "Eagle Point Software": 6500000,
+ "Ecfirst": 11300000,
+ "EdgeData": 2400000,
+ "Elijah LTD.": 5000000,
+ "Elmo creative": 230000,
+ "Embark IT": 15200000,
+ "EnCompass Iowa": 5600000,
+ "EnSoft Corp. | Conquer Complexity": 5900000,
+ "Energized I.T.": 1400000,
+ "Enseva": 4700000,
+ "Ensis Information": 10000000,
+ "Entrepreneurial Technologies": 19000000,
+ "Erbs Technology Solutions": 26300000,
+ "Erickson Dental Technologies": 4300000,
+ "Etc Graphics": 4600000,
+ "Etech A Valeo Networks Company": 22200000,
+ "Eway Corp": 4700000,
+ "Expressions by Em": 3900000,
+ "FIREHOUSE Software": 7000000,
+ "Farmworx Magazine": 21400000,
+ "First Light Technologies": 2400000,
"Fiserv": 17700000000,
- "Fort Dodge Regional Airport": 3900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Fox River": 35100000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Frontier Co-op": 170000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Mills": 19200000000,
- "Gentherm": 1100000000,
- "Gilson Graphics Inc.": 17400000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "GreenPal": 1200000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "HNI Corporation": 2400000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "Illinois Coalition Against Domestic Violence": 20800000,
+ "FishEye Software": 6000000,
+ "Fiveighteen": 6300000,
+ "Floranext": 4400000,
+ "Frequency Foundry": 7000000,
+ "Fresh Image": 2400000,
+ "Frogmo -": 3200000,
+ "FullCount": 1400000,
+ "Futuristic Solution": 35000000,
+ "GURU TO GO": 13000000,
+ "Gain Compliance": 13300000,
+ "Genova Technologies": 7100000,
+ "Gigantic Design": 10400000,
+ "Global IP": 6300000,
+ "Global Kinetic": 34000000,
+ "Global Reach": 5600000,
+ "Gonext Info": 35000000,
+ "Graphics 2000 Inc.": 23600000,
+ "HBank & Associates": 2400000,
+ "HEM Designs": 2000000,
+ "Heartland Business Systems": 147300000,
+ "Herb Dixon & Associates": 8100000,
+ "Hetz Studio": 523000,
+ "Hibox": 4000000,
+ "Higher Learning Technologies": 7000000,
+ "HippieBoy Design": 20700000,
+ "HostIowa": 394000,
+ "HowFactory": 149000,
+ "Hunt Web & Graphic Innovations": 989000,
+ "IC Designs": 1400000,
+ "ICE Technologies": 15700000,
+ "IGOR INC.": 4400000,
+ "IMT Computer Services": 6100000,
+ "IPS Group": 24800000,
+ "IT DataComm": 22400000,
+ "ITX Treever": 44000000,
+ "Ideal Computer Solutions": 6400000,
+ "Ideal Computer Systems": 32100000,
+ "Imagine 5 Graphics": 12400000,
+ "InfinaDyne": 12000000,
+ "Infinite Computing Systems": 7800000,
+ "InfoBunker": 6100000,
+ "InfoFUSION": 10900000,
+ "InfoPath Systems": 10000000,
+ "InfoWeb Systems": 13400000,
+ "Infoplex Communications": 4300000,
+ "Information Systems LLC.": 45800000,
"Infosys BPM Limited": 38200000,
- "Integrated DNA Technologies": 350000000,
- "Intelitek": 3300000,
- "Interfor": 354900000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Intl Fcstone": 61700000000,
+ "Infrastructure Technology Solutions": 1400000,
+ "Innovative Systems": 9100000,
+ "Integrated Dealer Systems": 2600000,
+ "Integrated Solutions": 673000,
+ "IntegritySpirit": 7000000,
"Intuit": 13300000000,
- "Iowa City Police Department": 5400000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Jewelers of America": 26900000,
- "John L. Scott": 800000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KONE": 10900000000,
- "KRST": 1800000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kemper": 5800000000,
- "Kendall Hunt": 37400000,
- "Kenosha News": 4300000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "Kuemper": 3700000,
- "Kwik Shop": 595000000,
- "L&T technology Services": 746800000,
- "L. G. Everist": 10000000,
- "La Crosse Tribune": 6000000,
- "Lag Guitars": 2400000,
- "Leaf Trading Cards": 2400000,
- "Leeann Chin": 2800000,
- "LegalShield": 145000000,
+ "Inverra": 2000000,
+ "Involta": 60000000,
+ "IoTis": 9600000,
+ "Iomada": 4200000,
+ "Iowa Solutions": 7000000,
+ "Iowa Web Hosting": 11200000,
+ "IowaComputerGurus": 1200000,
+ "Iowans": 1600000,
+ "Iroc Web Design Services": 9900000,
+ "J.Design Creative": 34300000,
+ "JH3": 24400000,
+ "Jared Brockway": 21000000,
+ "Jay Boyle Co.": 8300000,
+ "Jeffery B Wood": 120000,
+ "Jims Sports Shop": 38100000,
+ "Jobsite Unite": 1400000,
+ "Justbreathe design studio": 4600000,
+ "Kadeth": 15000000,
+ "Kate Brennan Hall": 3600000,
+ "KerberTech": 4200000,
+ "Keystone IT": 42700000,
+ "Knowledge Delivery Services": 8400000,
+ "Krcginc": 26800000,
+ "LaunchIT": 43200000,
+ "Layton Flower": 1400000,
+ "Legacy Lock app": 467000,
+ "Lepic-kroeger Realtors - Jan Vrban": 12200000,
+ "Letter B": 22400000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "MARSHALLTOWN Company": 30000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Manlius Pebble Hill School": 19400000,
- "Marel hf.": 1600000000,
- "Marquette Catholic": 25400000,
- "McDowell News": 10500000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Messenger News": 48500000,
- "Metal Supermarkets": 26800000,
- "MidAmerican Energy": 66000000,
- "Milio's Sandwiches": 1800000,
- "Missoulian": 6600000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Murphy USA": 22800000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "Nationwide": 42100000000,
- "Newton Daily News": 27400000,
- "Nikola Corporation": 44000000,
- "Noble & Cooley": 6000000,
- "NuStar Energy": 3200000000,
- "Omaha World-Herald": 44100000,
- "OneMain Financial": 4100000000,
- "Orascom Construction": 3400000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Ottumwa Courier": 12000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Port of Grays Harbor": 28300000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "PowerFilm": 9500000,
- "Prairie Farms": 3100000000,
- "Precigen": 138800000,
- "Press of Atlantic City": 100000000,
- "Presser": 7200000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "Qorvo": 1200000000,
- "Quanta Services": 17100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RCA": 3500000,
- "RONA": 492900000,
- "RSM US": 3300000000,
- "Rada Manufacturing": 4400000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "Richmond Times-Dispatch": 17500000,
- "Right Stuf Anime": 8000000,
- "River Cities Reader": 11800000,
- "Rivermont Collegiate": 1700000,
- "Rodgers Instruments Corporation": 6400000,
- "Rotel": 38800000,
- "Rotolo's Pizzeria": 241000,
- "Runza": 7000000,
- "Ryan Office": 626000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
+ "LightEdge Solutions": 44600000,
+ "Link Studio": 22600000,
+ "Little Fish Big Pond": 1600000,
+ "Loffler Companies": 280000000,
+ "Luckythirteen Design": 53100000,
+ "Lullabot": 8000000,
+ "MAPCON": 5700000,
+ "MLPtech": 62900000,
+ "MOD Mission Critical": 2900000,
+ "MakuSafe": 1000000,
+ "Managed Solutions Group": 10000000,
+ "Mandle Design": 1700000,
+ "Manifest Climate": 3100000,
+ "Marco Technologies": 400000000,
+ "Maverick Software Consulting": 11300000,
+ "Mazira": 8100000,
+ "McCullough Creative": 1400000,
+ "McNary Marketing & Design": 200000,
+ "Measure Inc.": 32600000,
+ "Mere Agency": 2400000,
+ "MeyerGraphix": 3500000,
+ "Michael Merritt Designs": 3900000,
+ "Miovision": 35000000,
+ "Monona County Economic Development Partnership": 3100000,
+ "Motor Parts Central": 13600000,
+ "MultiChoice Marketing Group": 24800000,
+ "Myrro": 9100000,
+ "NISC": 34100000,
+ "NanoNotion": 6000000,
+ "Nathan T. Wright": 232000,
+ "Natuvion": 23300000,
+ "Neese Design Services": 6100000,
+ "New Bohemian": 6000000,
+ "Newton Designs": 9700000,
+ "Nolasoft": 1000000,
+ "Noted Design": 25800000,
+ "O Comic Con": 2700000,
+ "OIC Group": 13000000,
+ "ONEMEDIA": 30500000,
+ "OXEN Technology": 4800000,
+ "Oakland Corporation": 4800000,
+ "Omnna": 15000000,
+ "OpenSUSE": 15500000,
+ "OptiRamp": 6000000,
+ "Orbis Technology": 7000000,
+ "Orchestrate LLC.": 5000000,
+ "Overboost Media LLC.": 1500000,
+ "PPP Design": 13600000,
+ "Pacosoft": 2700000,
+ "Palisade Systems": 34500000,
+ "Paradox Technology": 25000000,
+ "Pioneer Consulting Services": 25000000,
+ "Platinum Information Services": 21100000,
+ "Pomeroy": 850000000,
+ "Pratum": 11200000,
+ "Premier Technologies": 3000000,
+ "Premier Technology": 50000000,
+ "Pro Network Solutions": 7500000,
+ "PruTech": 43000000,
+ "PureNyx": 2900000,
+ "Pygraphics Inc.": 5700000,
+ "QA Graphics": 4600000,
+ "QC Total Tech": 3600000,
+ "QCNetworks": 25700000,
+ "R & D Industries": 395000,
+ "RBR Studios": 42100000,
+ "RCS Union Software": 26200000,
+ "RIPEVA": 35700000,
+ "RSPN": 2000000,
+ "Ramaanchar": 12800000,
+ "Red House Systems": 34200000,
+ "Reditech": 6000000,
+ "Redtail Technology": 26100000,
+ "Revisit": 15200000,
+ "Riley Designs": 12900000,
+ "Riverside Technologies Inc. RTI": 19000000,
+ "Roberts Technology Solutions": 15900000,
+ "Roboflow": 2500000,
+ "Rock Technology": 23300000,
+ "Rohrbach Associates P.C.": 13300000,
+ "Rome Technologies Inc.": 19400000,
+ "Rooskee": 453000,
+ "SAMC Technologies": 1400000,
+ "SIMPCO": 38400000,
+ "Saltech Systems": 8100000,
+ "Sandwire": 314000,
"Sapiens": 382000000,
- "Sarku Japan": 310000,
- "Seaboard": 11200000000,
- "Sears Seating": 300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seymour Community School District": 14700000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Shuttleworth & Ingersoll": 25000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sonoco": 6500000000,
- "Southeast Iowa Regional Airport": 12300000,
- "Southeast Missourian": 2500000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Space Vector": 35000000,
- "Special Metals Welding Products": 11400000,
- "Speech and Debate": 5500000,
- "Sqwincher": 23500000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Star-Herald": 15000000,
- "Starmont": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sumner-Bonney Lake School District": 5100000,
+ "Sayers": 16000000,
+ "Sbateman design sbd": 5500000,
+ "Schwabenlander": 12300000,
+ "SecurityCoverage": 7500000,
+ "SeedWare": 2400000,
+ "Seeforth Design": 4300000,
+ "Seven Verbs": 4100000,
+ "Shared IT": 20500000,
+ "Shift Interactive": 2600000,
+ "SiteGround Blog": 16200000,
+ "Skywalk Global": 7000000,
+ "SmartInsight": 33400000,
+ "Softactics": 42000000,
+ "Softvoya": 340000,
+ "Softworks Inc.": 25800000,
+ "Soho dojo": 16100000,
+ "Solutions Management Group": 5400000,
+ "Solvent Web": 1400000,
+ "Somnium Tech": 21800000,
+ "Source Allies": 8100000,
+ "Spatie": 404000,
+ "SpeedIT Software": 62900000,
+ "Spencer Truck Line": 14100000,
+ "Spiral Solutions and Technologies Inc.": 9800000,
+ "Spireon": 251600000,
+ "Squire Web": 39400000,
+ "Statistics & Control": 16100000,
+ "Store Locator Widgets": 2400000,
+ "Straight Arrow Web Services": 486000,
+ "Stratman Solutions": 2400000,
+ "Studio 115": 6600000,
+ "Studio A Designs": 22400000,
+ "Studio Fusco": 415000,
"Sumtotal Systems LLC.": 120000000,
- "Sun Life": 17200000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "THE BRENTON ARBORETUM": 5600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Scoular Company": 4000000000,
- "The Waterloo-Cedar Falls Courier": 4700000,
- "Tiny But Mighty": 3000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tucson Electric Power": 1600000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Untappd": 10000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "Valley Railroad Connecticut": 395000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vestas": 15500000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "Wacker Chemie": 8400000000,
- "Warby Parker": 573100000,
- "Water For People": 4000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Wilson Sporting Goods": 769700000,
+ "Surface Impression": 372000,
+ "Swanson Gentleman Hart Inc.": 2400000,
+ "System Dynamics": 10000000,
+ "Systems Support": 7800000,
+ "Systems and Support": 12100000,
+ "TC Networks": 23400000,
+ "TECHicity": 214000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Team 218": 4000000,
+ "TeamLogic Inc.": 7200000,
+ "Tech Support Services": 44900000,
+ "Technology Geek": 19600000,
+ "Tecsmart Computer Services": 14100000,
+ "Tejase Technologies": 8900000,
+ "Telepharmacy": 4700000,
+ "The Design Group": 10000000,
+ "The Sparks Solution": 3700000,
+ "Third Millennium Software": 27600000,
+ "Three Page Business Plan": 837000,
+ "Tier 3 Technology Solutions": 4100000,
+ "Time Management Systems": 17200000,
+ "Tracker by The Bridge Network Inc.": 7000000,
+ "Travis Systems": 16600000,
+ "Tri State Siding & Windows": 14500000,
+ "Tri State Tower": 6400000,
+ "Tri-Technical Systems": 949000,
+ "Tri-technical Systems Inc.": 5600000,
+ "TurnKey Creations": 21400000,
+ "Twin State Technical Services": 3300000,
+ "Twin State Web Design": 3400000,
+ "Tymeshift": 3500000,
+ "UBNSoft": 15000000,
+ "Up and Running Software": 51200000,
+ "VITEC": 10600000,
+ "VTECH SOLUTION": 10200000,
+ "Valentine Coaching & Consult": 21000000,
+ "Vdomains": 5100000,
+ "Vente Solution Informatique G.B. Inc.": 7200000,
+ "Ventech Solutions": 143700000,
+ "Victory Apps": 12900000,
+ "Viocen": 21300000,
+ "Visionary Services": 4600000,
+ "Visual Logic": 16900000,
+ "Vitzo": 1400000,
+ "Waco Community School": 18600000,
+ "Web Graphics": 16900000,
+ "WebWise Pro Hosting": 714000,
+ "Wengert": 19400000,
+ "Westergaard Advertising": 19100000,
+ "Whiteink Design & Illustration": 15000,
+ "Whizkids Tech": 3500000,
+ "Willetts Tech": 2000000,
+ "Win2PDF": 40000000,
+ "Wings Digitizing": 39700000,
+ "Winning Solutions": 44700000,
+ "WiredRE": 14500000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
"Workiva": 468700000,
- "World Photography Organisation": 201000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
+ "Xcase -": 37500000,
+ "Zachary Piper": 5000000,
+ "ZebraHost": 8100000,
+ "ZigSwift": 23600000,
+ "Zirous": 340000,
+ "Zoket": 54100000,
+ "eCom Sol": 3900000,
+ "eSolutions America": 17500000,
+ "iManage Informed's Cleaning Management Software": 17400000,
+ "integraSoft": 4700000
},
"Kansas": {
- "3D International": 4000000000,
- "AAPB": 6200000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "13 Marketing": 148000,
+ "22nd Century Solutions": 166300000,
+ "27Global": 8100000,
+ "360Directories": 12200000,
+ "360ideas": 6000000,
+ "ACEware University": 24600000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Adorers of the Blood of Christ": 4200000,
- "Adventure Landing": 2000000,
- "AeroVironment": 264900000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Alkem Laboratories": 1400000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Association of Zoo Keepers Inc.": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "American Indian College Fund": 7800000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Angel Resource": 10000000,
- "Applied Instruments": 9000000,
- "Arconic": 9000000000,
- "Army News Service": 16400000000,
- "Arvest Bank": 958800000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
+ "AP Software Services": 1100000,
+ "APPRISING APPS": 402000,
+ "AS Software": 20000000,
+ "AVI System's": 272500000,
+ "AXYZ design": 4500000,
+ "Abbacore": 399000,
+ "Accelerated Vision": 6000000,
+ "Accent Pet Grooming": 41100000,
+ "Accu-Tech Corporation": 8500000,
+ "AccurIT Systems": 3800000,
+ "Aceicon": 362000,
+ "Active Logic": 6400000,
+ "ActiveDocs": 14000000,
+ "Adorn Cakes": 900000,
+ "Advanced Network Solutions": 20800000,
+ "Advanced Technology Solutions LLC.": 23700000,
+ "Aegis Premier": 7000000,
+ "Airbus Helicopters Australia": 62700000000,
+ "AllofE Solutions": 25000000,
+ "Amberlo": 2300000,
+ "Amoblix": 1400000,
+ "Anthony Johnson Online": 143000,
+ "Ape Apps": 23000,
+ "Apex Innovations": 25100000,
+ "Apple Marketing": 1400000,
+ "Applianz": 12200000,
+ "Aptora": 4600000,
+ "Archer Integrated Risk Management": 70000000,
+ "ArcherPoint": 296000,
+ "Ardites": 35000000,
+ "Arttra LLC.": 4600000,
+ "Athlete Network": 1200000,
+ "Atipa": 17200000,
+ "AvaTekh": 10000000,
"Avail Company": 4200000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Whiskey's": 2000000,
- "Black Bear Diner": 18700000,
- "Blue Bell Creameries": 675000000,
- "Blue Valley Schools": 4000000,
- "Bluemercury": 918000000,
- "Bond Schoeneck & King": 3200000,
+ "Avazpour": 6000000,
+ "Bakers Man": 6000000,
+ "Bangert": 310000,
+ "Barrett Morgan Design": 11900000,
+ "Baseline Fonts": 10000000,
+ "Bev West Creative": 5500000,
+ "BeyondVR": 11800000,
+ "Blue Horizon Infotech": 30200000,
+ "Blue Octane Design": 2900000,
+ "BlueAlly": 11700000,
+ "Bodybofitness": 10000000,
+ "Bolt Data": 6000000,
"Booz Allen": 8800000000,
- "Brain Injury Association of America": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "Burlington USD 244": 29600000,
- "C2FO": 98700000,
- "CCT Rail System": 28300000,
- "CREW Network": 8000000,
- "CSE Insurance Group": 45000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Camp Quest": 8100000,
- "Camso": 1300000000,
- "CapFed": 208800000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Cellular Sales": 1700000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Chinet\u00ae": 7000000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
+ "BounceBack Bracket": 10900000,
+ "Bradley Software": 1400000,
+ "Brandon Lee Theme Design": 136000,
+ "Briefca": 200000,
+ "Brightree": 500000000,
+ "Browsersoft": 5000000,
+ "Buchanan Technologies": 50000000,
+ "Build In Motion": 4500000,
+ "Bulldog Station": 10300000,
+ "Bumpers": 1000000,
+ "Business & Computers Inc.": 18300000,
+ "Business Data Services": 8000000,
+ "BusinessOptix": 10000000,
+ "CFM Enterprises": 10000000,
+ "CHRS Interactive": 3500000,
+ "CMIT Solutions": 60000000,
+ "COLAB DIGITAL LLC.": 10000000,
+ "CU Tech Support": 1400000,
+ "Capstone Enterprises": 1400000,
+ "Capstone IT": 15000000,
+ "CaseMax": 7000000,
+ "Casey Associates": 30000000,
+ "Catholic Faith Technologies": 7300000,
+ "Cegedim": 570500000,
+ "Cenetric": 11400000,
+ "Cerge": 2000000,
+ "Chaney Inc.": 36100000,
+ "Chelsoft": 16000000,
+ "Cheryl Hanback Web Strategies": 15000000,
+ "Choice Solutions": 1900000,
+ "Citta Solutions": 2300000,
"CivicPlus": 75000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Colbert Hills": 22000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbus Ohio": 4600000,
- "Comfort Dental": 17800000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Corporation Sealy": 1300000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D. E. Shaw": 625000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "Derby USD 260": 5600000,
- "Dexter USD 471": 25000000,
- "Dignity Memorial": 25000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "D\u2019Angelos": 2400000,
- "EDP Renovaveis": 2100000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EVBox": 86000000,
- "EVgo Services LLC.": 34400000,
- "Eaglebrook": 4200000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Emprise Bank": 3600000,
- "Enel": 118500000000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Examinetics Inc.": 12000000,
- "Experimental Aircraft Association": 15600000,
- "FLEXcon": 400000000,
- "Fagron UK Ltd.": 665700000,
- "Fairtex": 6000000,
- "Farmer Brothers": 469200000,
- "Ferrell North America": 11300000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Funko": 1300000000,
- "G&L Guitars": 8000000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Motors": 147200000000,
- "Glass Lewis": 41300000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
+ "Cloud Inventory": 112000000,
+ "Cloud4J": 320000,
+ "CloudMoyo": 33000000,
+ "Cobalt Iron": 5000000,
+ "Codero": 9000000,
+ "Compliance Safety Manager": 3000000,
+ "Connect 4 Solutions": 2300000,
+ "ConvergeOne": 1600000000,
+ "Coreix": 7000000,
+ "Corrao Group": 7200000,
+ "Cottonwood Whispers": 244000,
+ "Creek Enterprise": 48500000,
+ "Crenza": 28300000,
+ "CrossMedia": 2300000,
+ "CyCom Solutions": 14500000,
+ "CybertronIT": 4000000,
+ "DPRA": 6300000,
+ "DSD Business Systems": 14000000,
+ "Dan Diehl": 15900000,
+ "Dana Does Design": 13500000,
+ "Dartco Media": 4900000,
+ "Data Canopy": 2000000,
+ "Data Solution": 1400000,
+ "Data Technique": 4800000,
+ "DataLocker": 14200000,
+ "Dataedge": 7100000,
+ "Dataretrieval": 29800000,
+ "Dave Goerke": 22100000,
+ "DeKinder": 19200000,
+ "Decision Resources": 4800000,
+ "Desarrollos Especiales": 2800000,
+ "Designing North": 22100000,
+ "DigitB": 599000,
+ "Digital Ally Inc. Commercial Fleet": 10600000,
+ "Digital Forensics Team": 4100000,
+ "Dimensional Innovations": 46300000,
+ "Diversified Systems Resources": 41000000,
+ "Dowsett Designs": 12400000,
+ "Dynamix Software": 269000,
+ "EZ2 Technologies": 25000000,
+ "Eagle Technologies": 50000000,
+ "Easy Digital Downloads": 1500000,
+ "EmeriCon": 2900000,
+ "Enegren": 14100000,
+ "Enscape": 1200000,
+ "EquipmentWatch": 5400000,
+ "Ergoface Consulting": 12300000,
+ "Essential IT Services": 3700000,
+ "Et Tu Create": 3000000,
+ "Evomail": 9200000,
+ "Excellent WebWorld": 4800000,
+ "EzDataMunch": 7000000,
+ "FLG Networking": 11900000,
+ "FanThreeSixty": 3000000,
+ "FastEST Inc.": 14300000,
+ "Fey|LLC - Attorneys at Law": 2400000,
+ "FireMon": 59000000,
+ "Flexible Minds": 1400000,
+ "Fluent Consultants": 27200000,
+ "Forcefield Design": 6000000,
+ "Foresite": 12100000,
+ "Fourth Element Design": 487000,
+ "Fresh Wata | Las Vegas": 33500000,
+ "Frost Olsen Irvine & Schartz LLP.": 29900000,
+ "Fulton's Fine Foods Llc.": 7000000,
+ "Fusion Global Solutions": 37500000,
+ "GCOM": 150000000,
+ "GFI Digital": 80100000,
+ "GRAND FOOD INC.": 2000000,
+ "GRSoft Solutions": 7000000,
+ "Gainwell Technologies": 1400000000,
+ "Galileo Media Services": 7400000,
+ "Gallery No.9": 4300000,
+ "Gallus Golf": 3800000,
+ "Gameroom Warehouse": 8200000,
+ "Gammadyne": 33700000,
+ "Gateway Solutions": 27900000,
+ "GigaBook": 1400000,
+ "Ginny Weaver Design": 7900000,
+ "Global Soft Systems": 2100000,
+ "Golden Belt Printing INC.": 19900000,
+ "Graphic Edge": 478000,
+ "GraphixTech": 475000,
+ "Greenlightds": 1400000,
+ "GrokOla": 110000,
+ "Guru DNA": 4200000,
+ "H3 APPS": 11200000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Haven USD 312": 6000000,
- "Hays Daily News": 2300000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "Housatonicbsa": 22800000,
- "HuHot Mongolian Grill": 7000000,
- "Huhtamaki": 53200000000,
- "Hurricane Grill & Wings": 10000000,
- "Hy-Vee": 12000000000,
- "ICICI Bank": 18100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "INFICON": 8000000,
- "Identigen": 24300000,
- "Imo's. Pizza": 200000000,
- "Insurify": 9300000,
- "Integra Technologies": 27300000,
- "Intelitek": 3300000,
- "Inventors": 10000000,
- "Invicta FC": 50000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KONE": 10900000000,
- "KVC Health Systems": 7400000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kansas City Ballet": 6100000,
- "Kansas City Board Of Public Utilities": 3300000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Kansas Highway Patrol": 4600000,
- "Kansas State Department of Education": 6000000,
- "Kerry Group": 8500000000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kona Ice": 25700000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Landmark Worldwide": 29100000,
- "Leaf Trading Cards": 2400000,
- "Lennys": 9000000,
+ "HCONN": 48500000,
+ "HP Transport Solutions": 10400000,
+ "Hagerman": 35000000,
+ "Hanebutt Technologies": 10000000,
+ "Hemmersbach": 288000000,
+ "Heritage Computer Consulting and Services Inc.": 11600000,
+ "High Touch Technologies": 6100000,
+ "HighTek Solutions": 27200000,
+ "Hitchcock Inc.": 13700000,
+ "IDENTALSOFT": 7000000,
+ "IM Design Group": 2800000,
+ "INNOVA Consulting": 6000000,
+ "IQ Total Source": 8000000,
+ "ISG Technology": 112600000,
+ "Imagine IT Imagine": 10500000,
+ "Infax Website Build": 359000,
+ "Infinedi": 1100000,
+ "Innovision Corporation": 21400000,
+ "Insight Design": 8300000,
+ "IntegriShield": 8900000,
+ "Integris - Managed IT Services Houston": 43200000,
+ "Integrity Designs": 14700000,
+ "Intelliquip": 10700000,
+ "Itrac - Innovative Technology To Recharge And Connect": 4600000,
+ "J-2 Creative": 12800000,
+ "JAZ Graphics": 14200000,
+ "JDL Studio": 1400000,
+ "JSD Design": 6000000,
+ "Jennifer Kempfer-norris Independent Avon Sales Representative": 11100000,
+ "Joseph Manning Designs": 3700000,
+ "Joy House Creative": 1400000,
+ "JusticeTrax": 5000000,
+ "KMA Design": 7000000,
+ "Kansas City Drift Association": 5600000,
+ "Kansys": 10300000,
+ "Keyhole Software": 16900000,
+ "Keystone Solutions Inc.": 33100000,
+ "Kicksite": 1400000,
+ "Kroma Marketing": 1400000,
+ "Kuhn Group": 27000000,
+ "LANman": 14300000,
+ "LaserVault": 10000000,
+ "Lasys": 4200000,
+ "Layton45": 1400000,
+ "Leah Hoelscher": 5600000,
+ "Leap2": 1400000,
+ "LegalAdPro": 6000000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Ligand Pharmaceuticals": 267700000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
+ "Lifesize": 11500000,
+ "LightEdge Solutions": 44600000,
+ "Linkurealty Real Estate Web Design": 279000,
+ "Lionshare Marketing": 6000000,
+ "Local Legend Kc": 3900000,
+ "LogicalNS": 33600000,
+ "Logo design Wichita": 3000000,
"LogoLounge": 28300000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MANICA Architecture": 7000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Marel hf.": 1600000000,
+ "Loquient": 6000000,
+ "Lotpop": 2400000,
+ "LuxSci": 22200000,
+ "MCH Strategic Data": 15000000,
+ "MLK Enterprises": 36500000,
+ "MSR Cosmos": 120000000,
+ "MWCBS": 32300000,
+ "MWM Consulting": 29300000,
+ "Mangan Cybersecurity": 55000000,
+ "Manwaring Web Solutions": 5900000,
+ "Mark Mazza Automotive": 16100000,
+ "MatrixCare": 122000000,
"MaxMind": 3200000,
- "Mazzio's": 6500000,
- "McLane Company": 50000000000,
- "MediaNews Group": 75100000,
- "Merit Energy": 9200000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
+ "Medforce Technologies": 2300000,
+ "Medicare Island": 6000000,
+ "Medicus IT": 5500000,
+ "Mentor Technologies - Technology Solutions": 549000,
+ "MicroNet Technical Solutions": 2500000,
"Microsoft": 184900000000,
- "Milliman": 1200000000,
- "Mission Hills Country Club": 10300000,
- "Modere": 4900000,
- "Mohawk Industries": 11800000000,
- "Monolith Inc.": 6000000,
- "Montgomery County MD": 24300000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NAQT": 27400000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Christian Foundation": 27800000,
- "National Health career Association NHA": 27000000,
- "National Oilwell Varco": 7200000000,
+ "Midnight Ryder Technologies": 857000,
+ "Midwest IT Solutions Group": 17600000,
+ "Milestone Marketing Group": 12200000,
+ "Miovision": 35000000,
+ "Mirazon": 16400000,
+ "Mitch Gee Creative": 26400000,
+ "MobileUp": 6000000,
+ "Monarch Watch": 13000000,
+ "Multipub": 39000000,
+ "Mw for designs": 356000,
+ "MySmartPlans": 4600000,
+ "Mycroft": 5100000,
+ "NDC Group": 25800000,
+ "NITV Federal Services": 4500000,
+ "NMGI": 20400000,
+ "NavMD": 6000000,
"NetApp": 6500000000,
+ "NetDev": 9700000,
+ "NetSPI": 50000000,
+ "NetStandard": 10400000,
+ "NetStar Systems International": 11400000,
+ "NetSystems": 10700000,
+ "Netability": 1700000,
+ "NetraCorp": 1400000,
"Netsmart": 526000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "NuStar Energy": 3200000000,
- "O.C. Tanner company": 540000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Oswego Kansas": 50300000,
- "Ottawa Herald": 6400000,
- "Outback Steakhouse": 2000000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Parker Hannifin": 15900000000,
- "Penzeys": 26000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pizza Ranch": 3400000,
- "Planet Sub": 9800000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Prairie View USD 362": 406000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Professional Piercers": 2300000,
- "Progress Rail": 1500000000,
- "Propane Education & Research Council": 10000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSI Corporation": 18000000,
- "RadNet": 1400000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Reno County Area Transit": 2800000,
- "Reno Stead Airport": 7400000,
- "Republic County USD 109": 21000000,
- "Robeks": 396000000,
- "Rock & Brews": 33300000,
- "Rodgers Instruments Corporation": 6400000,
- "Ronald McDonald House Charities": 59500000,
- "Rotel": 38800000,
- "Rubbermaid": 3000000000,
- "Runza": 7000000,
- "Ryan Office": 626000000,
- "SCCA": 38800000,
- "SCHEELS": 800000000,
- "SEDS": 9100000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sarku Japan": 310000,
- "Schmitt Music": 20600000,
- "Seaboard": 11200000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shawnee Mission Post": 7000000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "St. Louis Music": 6600000,
+ "Network Consultants": 13900000,
+ "Network Resource Group": 75000000,
+ "Networks Plus": 277000,
+ "NeuAnalytics": 5000000,
+ "New Frontier Technologies": 13700000,
+ "New Realm": 25800000,
+ "NexLynx": 6400000,
+ "NexRev": 8800000,
+ "No Hassle": 20000000,
+ "Novacoast": 100000000,
+ "Nuvento": 20000000,
+ "OEConnection LLC.": 166000000,
+ "OTSI-Global": 35000000,
+ "OXEN Technology": 4800000,
+ "Oakwood Systems Group": 30000000,
+ "Obsidian Solutions Group": 38000000,
+ "Office of Matt Stevens": 379000,
+ "OnPoint Solutions": 6000000,
+ "One Network Web Hosting": 1500000,
+ "OneSource Technology": 14400000,
+ "Onsite Logic": 1400000,
+ "Opti9": 23700000,
+ "Optimi": 27200000,
+ "PDS Med": 10700000,
+ "PK Technology": 22500000,
+ "PRO Landscape": 7000000,
+ "Paradowski Creative": 23500000,
+ "Peak Up Time": 17500000,
+ "Pen Publishing": 15100000,
+ "Pendello Solutions": 4600000,
+ "People Technology & Processes": 50100000,
+ "PhaseAlpha": 7000000,
+ "Philsquare": 8500000,
+ "Pineappletechnologies": 9800000,
+ "Pink Office": 6100000,
+ "Pivot Point Security": 11200000,
+ "Pivvot": 5000000,
+ "PixNinja": 30400000,
+ "Podipo": 3700000,
+ "Pomerol Partners": 7000000,
+ "Pop Creative Design": 5500000,
+ "Power Admin": 15800000,
+ "Precise Innovation": 4500000,
+ "Precision Point": 22400000,
+ "Premier One": 9600000,
+ "Prio Inc.": 6000000,
+ "ProActive Solutions": 13300000,
+ "ProVantage Software": 17300000,
+ "Professional Software": 5400000,
+ "Prometheus Inc.": 4200000,
+ "Propaganda3": 6100000,
+ "Propylon": 36200000,
+ "Quality One Computer Services": 32500000,
+ "Queen's Wellness Center": 6500000,
+ "Quest Analytics": 4000000,
+ "Quick-Draw Design": 1000000,
+ "RAMSYS": 200000,
+ "RBS IT": 7000000,
+ "RESULTS Technology": 18900000,
+ "REVSYS": 12100000,
+ "RFP360": 2500000,
+ "RPMS": 12100000,
+ "RYCAM INC.": 16000000,
+ "Reach Solutions": 3900000,
+ "RealData": 10400000,
+ "Rec Solutions": 6600000,
+ "Red Catapult Inc.": 2600000,
+ "Red Legger Studio": 468000,
+ "Render Services Inc.": 2000000,
+ "RenewalTracker": 8700000,
+ "Rent Manager": 40900000,
+ "ReplicaHQ": 1200000,
+ "Reyerware": 21300000,
+ "Rich Interactive": 1500000,
+ "Rick Herman Design": 11700000,
+ "Rincon": 7200000,
+ "Riskanalytics": 3800000,
+ "Riverpoint": 7000000,
+ "Riverside Technologies Inc. RTI": 19000000,
+ "Rodgers Trucking Llc.": 34900000,
+ "Rollins Computer Services": 12100000,
+ "Rome Technologies Inc.": 19400000,
+ "RouteSync": 11100000,
+ "S&N Design": 10400000,
+ "SAD-DAD Technologies": 7500000,
+ "SGA Software": 31200000,
+ "SMG Canada ULC": 64800000,
+ "SND Designs": 5800000,
+ "SUMMITSPEAKERS": 25800000,
+ "SageMath": 334000,
+ "Saitech Corp": 18300000,
+ "Salvus Solutions": 1400000,
+ "Sara Software Systems": 7000000,
+ "Scanning America": 27200000,
+ "Security PS.": 29200000,
+ "Service Express": 130000000,
+ "Shade of the Cottonwood": 7800000,
+ "Shamrock Solutions": 1500000,
+ "SilverFern Software": 1400000,
+ "Skyerock": 28300000,
+ "Skyline Displays Heartland": 9000000,
+ "Smoov Networks": 1400000,
+ "SoftSilo": 479000,
+ "Softchoice": 957500000,
+ "Softek": 404000,
+ "Software Art": 10000000,
+ "Software KC": 7900000,
+ "Soleran": 33600000,
+ "Sounds In Sync": 4600000,
+ "Source Code Systems": 8500000,
+ "Spectrumware": 14500000,
+ "Speed Script": 29200000,
+ "Springboard Creative": 1800000,
+ "Spyre Group": 13400000,
"Stackify": 3300000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Stride Inc.": 1400000000,
- "Stripes Stores": 750000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "SunOpta": 812600000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TEOCO": 186200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tasco": 8600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Thales Group": 18000000000,
- "The Abilene Reflector-Chronicle": 2400000,
- "The Kansan": 21300000,
- "The Leavenworth Times": 21000000,
- "The Manhattan Mercury": 3300000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "The Topeka Capital-Journal": 36900000,
- "Thomson Reuters": 6500000000,
- "Timken": 4500000000,
- "Topeka Metro": 6900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "TransRe": 500000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "Tumbleweed Houses": 7800000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "USCIS": 15700000,
- "USD 106": 4700000,
- "USD 224": 21900000,
- "USD 261": 20200000,
- "USD 263": 20600000,
- "USD 268": 5800000,
- "USD 327": 45600000,
- "USD 356": 6000000,
- "USD 357": 1000000,
- "USD 379": 21900000,
- "USD 382": 20200000,
- "USD 385": 2500000,
- "USD 401": 6000000,
- "USD 405": 7400000,
- "USD 409": 18200000,
- "USD 411": 3800000,
- "USD 453": 45600000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Uniformed Services Benefit Association": 39600000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University Daily Kansan": 9600000,
- "University of South Dakota": 400000000,
- "Upstate New York Collegiate Hockey League UNYCHL": 1500000,
- "Uptime Devices Inc.": 4100000,
- "VCA Inc.": 1800000000,
- "VCY America": 9400000,
- "VIAVI Solutions": 1300000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Ventria": 8100000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Visibly": 3100000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Water Parks": 10000000,
- "West Elk": 3100000,
- "Western & Southern Financial Group": 5300000000,
- "Whelen": 500000000,
- "Wichita Transit": 2300000,
- "Williams Companies": 11300000000,
- "Winchell's Donut House": 16900000,
+ "StaffBridge": 2400000,
+ "Stallard Technologies": 151000,
+ "Star Programming": 2400000,
+ "Stark Raving Solutions": 21400000,
+ "Starr Computer Solutions Dodge City Kansas": 20200000,
+ "Stasyx": 10200000,
+ "Store Locator Widgets": 2400000,
+ "Storefront": 11700000,
+ "Strategic Data Storage": 12800000,
+ "Stronghold Data": 24800000,
+ "SurConsulting": 2400000,
+ "Surf4it": 44000000,
+ "Synergistic Office Solutions": 49800000,
+ "TECHcetera": 3500000,
+ "TECU Credit Union": 4800000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TSANet": 10000000,
+ "Tallgrass Technologies": 13800000,
+ "Tavtech": 1400000,
+ "Tech Orchard": 3500000,
+ "Technology Plus": 15200000,
+ "Technology Solutions Group Inc. TSG": 10700000,
+ "Technology Two": 42000000,
+ "Technosoft": 210000000,
+ "Technova Group": 19100000,
+ "TekSolutions": 5500000,
+ "Tekniq Website Design": 711000,
+ "Telaid Industries": 80000000,
+ "TeraCrunch": 2500000,
+ "The 20 MSP": 3300000,
+ "The Bill Guy": 11300000,
+ "The EBS Group": 11600000,
+ "The Purple Guys IT Support": 8000000,
+ "The SpyGlass Group LLC.": 14100000,
+ "Therapyonsite": 16300000,
+ "TierPoint": 405000000,
+ "TimeIPS": 4200000,
+ "Tomerlin-ERP": 2400000,
+ "Torch Research": 5600000,
+ "Transparent Solutions": 1400000,
+ "TriLion Studios": 2700000,
+ "TriStar Event Media": 16900000,
+ "Trideum": 17400000,
+ "Trinity3d": 4600000,
+ "Umzuzu": 24400000,
+ "Unitas Global": 43900000,
+ "Unlimited Potential": 19500000,
+ "VITEC": 10600000,
+ "VOSDesign": 23300000,
+ "Valiant Solutions": 22500000,
+ "Verisys": 75000000,
+ "Veritas Prime": 8100000,
+ "Verticomm": 3000000,
+ "ViaStorm": 11700000,
+ "Viaanix": 7000000,
+ "Videal": 1500000,
+ "Village Presbyterian Church": 6300000,
+ "Villager Piranhas Swim Team": 2000000,
+ "VinSolutions": 50000000,
+ "Visory": 3500000,
+ "Visual Data Software": 19200000,
+ "Visual Fusion": 10300000,
+ "Visual Media Group": 18300000,
+ "Vitals Software": 8400000,
+ "Voltage Blog": 2000000,
+ "WCH Consulting": 25800000,
+ "Weather 20 20": 391000,
+ "Web Hosting Company": 4300000,
+ "Webgen Technologies": 2400000,
+ "Wichita Design": 1400000,
+ "Wild ERP": 20800000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Woodson USD": 6000000,
- "World Financial Group": 10000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000
+ "Women's Leadership Project": 2700000,
+ "Wong Computing": 8300000,
+ "Word-Tech": 31800000,
+ "YourTech": 13400000,
+ "Zeratec": 27300000,
+ "Zouire": 16000000,
+ "db VisionWorks": 8700000,
+ "eDepoze": 15000000,
+ "eNSYNC Solutions": 16700000,
+ "iCAT Solutions Inc.": 3900000,
+ "iDatalytics": 25800000,
+ "iLink Digital": 280000000,
+ "iTalent Digital": 310000,
+ "nFocus": 15000000,
+ "nMile": 6900000,
+ "nXio": 22000000,
+ "sinAsylum": 36400000
},
"Kentucky": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "4Discovery": 310000,
+ "A6 Solutions": 61900000,
+ "ADK Group": 6000000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALM": 186900000,
- "ALPA": 50900000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Airheads": 6000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Council of Engineering Companies": 4600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Orthopaedic Foot and Ankle Society": 6100000,
- "American Printing House": 16800000,
- "American Standard Brands": 1200000000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "Atria Management Company LLC.": 1000000000,
- "Atria Senior Living": 778500000,
- "Autocall": 6000000,
+ "AMS Computer Services": 165000,
+ "ARTOGENIC": 21400000,
+ "Abcpointcom Inc.": 14100000,
+ "Acceliris": 22700000,
+ "Accountable2You": 442000,
+ "Accucode": 43700000,
+ "ActiveCo": 373000,
+ "Advanced Business Solutions": 13800000,
+ "Advantage Image": 20200000,
+ "Agile Commerce": 2000000,
+ "AlamoWeb Solutions": 65200000,
+ "Ali Edwards": 4000000,
+ "All Technology": 5200000,
+ "AlliGraphics Design": 6800000,
+ "Alyssa Jeanne Saccone": 35500000,
+ "Amar Infotech": 6300000,
+ "American Computer Resources Inc.": 6200000,
+ "Anastasiou Design": 46900000,
+ "Anden Solutions": 1400000,
+ "Andosi": 22700000,
+ "Anomalist Design": 4000000,
+ "Aperity Inc.": 14000000,
+ "AppSalute": 12100000,
+ "Appriss": 193000000,
+ "Archizo": 22200000,
+ "Argo Networks": 21900000,
+ "Aris Solutions": 17200000,
+ "Arisen": 14700000,
+ "Attitude Inc Design": 15200000,
+ "AutoLean": 22500000,
+ "AutoVitals": 4400000,
"Avail Company": 4200000,
- "B.C. Rich": 6400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BYK Additives & Instruments": 1200000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckman Coulter": 2100000000,
- "Beef 'O' Brady's": 6200000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Berwind": 40000000,
- "Best Buddies": 3600000,
- "Blackstone Publishing": 10000000,
+ "Avatar Graphic Services": 17900000,
+ "Avetta": 100000000,
+ "Axiom Solutions": 4300000,
+ "B. A. Mullen": 42100000,
+ "BAM Graphics Consulting": 956000,
+ "BDEX": 7000000,
+ "BHC - Trusted IT.": 42100000,
+ "BLDG": 6000000,
+ "BOSS Solutions": 5600000,
+ "BRP Software": 2400000,
+ "Baach Creative Services": 6400000,
+ "Ballyhue": 7000000,
+ "Beacon Solutions": 10000000,
+ "Bearodynamic": 4000000,
+ "Bee Culture": 5500000,
+ "Bertke & Sparks": 7300000,
+ "Best PC Service": 3400000,
+ "Beyond Search": 31800000,
+ "Blair Tech | Computers": 18700000,
+ "Blair Technology Group": 3100000,
"Blippar": 6000000,
- "Blue Bell Creameries": 675000000,
- "Blue Grass Airport": 5100000,
- "BlueLinx": 4600000000,
- "Bojangles": 560000000,
- "Boulder Municipal Airport": 8300000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Bridgestone Golf": 320900000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
- "CI Financial": 1700000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cal-Maine Foods": 3000000000,
- "Caldwell Tanks": 5100000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Carewise Health": 24600000,
- "Carlisle Companies": 6600000000,
- "Carlton Cards": 4700000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christian Academy School System": 5500000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Climate Group": 57200000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
- "Commonwealth Credit Union": 4900000,
- "Conduent Business Services LLC.": 3900000000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "CoverMyMeds": 200000000,
- "Covington Latin": 35400000,
- "Cracker Barrel": 3300000000,
- "Crosley Radio": 9500000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cytokinetics": 148200000,
- "DAV": 3900000,
- "DDB Worldwide Communications Group LLC.": 1200000000,
- "DMI Inc.": 705000000,
+ "Blue Iris Interactive": 24500000,
+ "Blue Koi Sushi & Wraps": 8200000,
+ "Bluegrass Computer Systems": 3500000,
+ "Bluewater Consulting": 9100000,
+ "Bluewave Technology Group": 22200000,
+ "Blustery Day Design": 1400000,
+ "Box Lake Networks": 10200000,
+ "Bradley Book Co.": 15900000,
+ "BridalLive": 10300000,
+ "Builder Prime": 1900000,
+ "BuildingLayer": 1400000,
+ "Byte Technology": 4400000,
+ "C Forward": 39700000,
+ "CABEM": 297000,
+ "CBTS": 75000000,
+ "CMIT Solutions": 60000000,
+ "Cabin Keepers": 7300000,
+ "Callaway Graphic Software": 13200000,
+ "Calligraphy by Jennifer": 5000000,
+ "Camenisch Design Associates": 479000,
+ "Capture Leave": 2400000,
+ "Captured Momentum": 5700000,
+ "Carlson Software": 36000000,
+ "CaterTrax": 15000000,
+ "Centella Consulting": 11900000,
+ "Centrality Business Technologies": 5800000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Chargerback": 2400000,
+ "Cinch IT": 2300000,
+ "Cintel": 12300000,
+ "CisCom": 8600000,
+ "Click Studios": 1900000,
+ "Coastal Cloud": 150000000,
+ "Code Hacker": 8000000,
+ "Cognosec": 25400000,
+ "Compulife": 15000000,
+ "Compuman Computer Services": 7500000,
+ "Computer Systems Management": 7000000,
+ "Conceptopolis": 1400000,
+ "ConnectSoft": 2400000,
+ "Connected Nation Exchange LLC.": 10000000,
+ "ContentMagic": 9400000,
+ "ContentTools": 428000,
+ "Cool Blue Networks LLC.": 2000000,
+ "Coolsoft": 38600000,
+ "CoreSys Consulting": 4400000,
+ "Corevalus": 46300000,
+ "Corrisoft": 18500000,
+ "Cosnic Honey Llc.": 35300000,
+ "Craft Machine Inc.": 7800000,
+ "Creative Computer Solutions": 13000000,
+ "Creative Eye Design": 28300000,
+ "Crestwood Moving & Storage Llc.": 11600000,
+ "Cultiva Design": 2800000,
+ "Current Track": 9000000,
+ "Custom Data Processing": 11800000,
+ "CyberSurfers": 6900000,
+ "Cybyte": 25000000,
+ "DL Host": 336000,
+ "DMH Marketing Partners": 6800000,
"DNS by Comodo": 6300000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Dawn Foods": 1100000000,
- "Day & Zimmermann": 2400000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "DirecTV Stream": 33300000000,
- "Doe-Anderson": 17700000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Eastern Cincinnati Aviation": 5200000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrolux Professional AB.": 989600000,
- "Element Materials Technology Group Limited": 975000000,
- "Elixio": 2400000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Erie Insurance": 2600000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Eurofins Genomics": 2600000,
- "Evonik Industries AG": 19700000000,
- "Exel Composites": 152200000,
- "Exelixis": 1500000000,
- "ExxonMobil": 403200000000,
- "Eye Level Learning": 2200000,
- "Eye on Ohio": 4000000,
- "FLEXcon": 400000000,
- "Fairness": 5900000,
- "FeltLOOM": 4600000,
- "Ferrellgas": 2100000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Watch": 677600000,
- "Forcht Group": 42000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton County Airport": 7500000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Motors": 147200000000,
- "Gethsemani Farms": 4700000,
+ "DRMS -": 10500000,
+ "DUPONT MANUAL REGIONAL SCIENCE FAIRS INC.": 3500000,
+ "DailyRoads": 1000000,
+ "Darzin": 269000,
+ "Data Canopy": 2000000,
+ "Data Redeemers": 1400000,
+ "Data Science Central": 5600000,
+ "Data Solutions Inc.": 17400000,
+ "DataHEALTH": 29900000,
+ "Dataretrieval": 29800000,
+ "David S. Tillotson Retired Architect": 6700000,
+ "Derby City Design Lab": 3500000,
+ "Derek Price": 4700000,
+ "Design Master": 41800000,
+ "Designweb Local": 3100000,
+ "Devnull Technologies": 25100000,
+ "Dexon": 6000000,
+ "Di Tran": 13500000,
+ "Digitech Services": 1400000,
+ "Directec": 19100000,
+ "Doorn - Software Development and Data Science Services": 1400000,
+ "DotTrend": 267000,
+ "Dustin Vowels Designs": 668000,
+ "ECS Solutions": 11300000,
+ "EMS eSchedule": 1400000,
+ "ER Assist": 4700000,
+ "Edge Line Graphics": 35200000,
+ "Egg Design": 18300000,
+ "Electronic Verification Systems": 5500000,
+ "Ember.js": 2000000,
+ "Emergency Systems LLC.": 12000000,
+ "Emma Tang Designs": 11100000,
+ "EndoSoft": 14100000,
+ "Engagely": 177000,
+ "Enscape": 1200000,
+ "Envision IT": 7800000,
+ "Epigate Software Llc.": 5600000,
+ "Er For Cars Inc.": 23400000,
+ "Evision Services": 6000000,
+ "Exact IT Consulting": 2400000,
+ "Expert Witness Network": 9700000,
+ "FREY Municipal Software": 27400000,
+ "FTP Worldwide": 36500000,
+ "Fiscalsoft": 28800000,
+ "Forest Giant": 15400000,
+ "Free vector": 10000000,
+ "FreshySites": 533000,
+ "Fusion Corp Design": 5800000,
+ "FusionHit": 373000,
+ "GDIT": 7900000000,
+ "Ganote": 10900000,
+ "Gem3s": 5000000,
+ "Genesee Rochny Software Serv": 12300000,
+ "Geo Sync": 2000000,
+ "GeoSync GO": 7600000,
+ "Get Your Sketch": 399000,
"Ginger Software": 10000000,
- "Global Development Network": 14600000,
- "Globe Immune": 6000000,
- "Globe Life Insurance": 5200000000,
- "Good Sam Club": 19800000,
- "GoodLife Fitness Centres Inc.": 559600000,
- "Goodman Games": 7000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Graf Brothers Flooring and Lumber": 78400000,
- "Great Harvest": 21200000,
- "GreenPal": 1200000,
- "GreenSky LLC.": 518100000,
- "Grindline Skateparks": 27600000,
- "Guardian Alarm": 400000000,
- "Guitar Center": 2300000000,
- "Gun Media": 6000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
+ "Glansa solutions": 3900000,
+ "Global Business Solutions Inc.": 19300000,
+ "Global Quality Corp.": 32400000,
+ "GloryKidd": 6500000,
+ "Gologic": 18300000,
+ "Gorman Services": 34300000,
+ "GraphikHaus": 1400000,
+ "Grayson County Tourism": 19600000,
+ "Graze Cart": 5400000,
+ "Greenlight Design Stephanie Meyers": 10000000,
+ "Grey Vector": 4500000,
+ "Grimm Graphics": 4600000,
+ "H3 Technologies": 18100000,
+ "HARRISON COUNTY HERITAGE COUNCIL": 4000000,
+ "HC Designs": 29300000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Hensel Phelps": 5700000000,
- "Hitcents": 12100000,
- "Hobby Lobby": 5300000000,
- "Houchens": 3000000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Huntington UFSD": 1700000,
- "Hustle Gang": 2800000,
- "Hydro": 21600000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Insurify": 9300000,
- "Inventors": 10000000,
- "Iofina": 29700000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jessica Kingsley Publishers": 29300000,
- "Joe's Crab Shack": 345000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "June Appal Recordings": 5600000,
- "KVC Health Systems": 7400000,
- "Kentucky Colonels": 9500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Kohler Foundation": 2000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroger": 130700000000,
- "Kruger": 1400000000,
- "L.G. Balfour Company": 290000000,
- "LEGO": 8100000000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
+ "HESCO Blastbloc Limited": 35300000,
+ "Hagerman": 35000000,
+ "Halfpricesoft": 2000000,
+ "Halodash": 6000000,
+ "Heine Ventures": 2400000,
+ "Hemmersbach": 288000000,
+ "Hensley Elam": 2000000,
+ "Highland Community Church": 10300000,
+ "Hippo Manager": 4500000,
+ "HiveDesk": 8500000,
+ "Hogan Consulting Group Inc.": 6300000,
+ "HorizonWebRef": 580000,
+ "Host 99": 2400000,
+ "Host Anything": 12300000,
+ "Host Wizards": 29200000,
+ "HostGuardian": 3700000,
+ "I and Eye Designs": 1400000,
+ "ICC Global Hosting": 1500000,
+ "ICEAS": 9800000,
+ "IGear": 6000000,
+ "INTERAL": 7000000,
+ "INgrid Design": 3900000,
+ "IS Group Inc.": 7000000,
+ "ISC Kentucky": 9400000,
+ "ISOCNET": 14700000,
+ "IT Network Consultants": 9800000,
+ "Icloud": 90000000,
+ "IdeaCrew": 33600000,
+ "Identify3D": 1000000,
+ "Illustrator Tips": 21300000,
+ "Inacomp IT": 5000000,
+ "Indatus": 17000000,
+ "Inet-Pub": 15000000,
+ "Info LLC.": 14800000,
+ "InfoServ": 17000000,
+ "Informatics By Design Llc.": 3800000,
+ "Information Capture Solutions": 7400000,
+ "Information Systems Solutions": 10100000,
+ "Innovative Business Concepts": 28300000,
+ "Innovative Technology Solutions": 14800000,
+ "Instrument Life": 7000000,
+ "Intelligent Data Recovery": 1400000,
+ "Intelliwire": 2800000,
+ "Intent Letters Etcetera Inc.": 23400000,
+ "Interapt": 31300000,
+ "Internetek": 2400000,
+ "Interon design": 15000000,
+ "Intromental": 2700000,
+ "Invar Group": 21300000,
+ "Isime": 13500000,
+ "J2 Productionz": 10000000,
+ "JN Solution": 3400000,
+ "JRB Computer Services": 8600000,
+ "JS Professional Engineering Services": 8100000,
+ "JenPen INK Graphic Design": 35200000,
+ "Jetpack CRM": 1000000,
+ "Jocelyn Traher": 123000,
+ "Jordan Lewis IT Consulting": 17400000,
+ "Justin Hite": 2900000,
+ "Juvare": 21000000,
+ "K12-Ed": 10000000,
+ "KAN Software": 7000000,
+ "KFG": 6800000,
+ "Kalleo": 5100000,
+ "Kat & Mouse": 3800000,
+ "KeeFORCE": 6700000,
+ "Kelloo": 3100000,
+ "Kentucky Voices For Health": 7400000,
+ "Kerco Information Systems": 18400000,
+ "Kerx Special Needs Nutrition": 165000,
+ "Keystone Computer": 6300000,
+ "KiZAN": 12700000,
+ "Kids \u2018R\u2019 Kids Learning Academy at Eagle Creek": 1700000,
+ "Kimberlain I.T.": 8000000,
+ "Koglin Group": 9600000,
+ "KyBizInfo": 5800000,
+ "LAL Computers": 21400000,
+ "LC Systems": 26800000,
+ "LDC Software Labs": 21700000,
+ "Lafe Taylor": 17300000,
+ "Latitude Design": 42000000,
+ "Laura Merchant Design": 349000,
+ "Leap LLC.": 4500000,
+ "LedgerFix": 19100000,
"Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Liberty FCU": 11300000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lloyd's": 473500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Lost Art Press": 6000000,
- "Louisville Orchestra": 10000000,
- "Lovesac": 389800000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
+ "Lia Design": 9400000,
+ "LightChange Technologies": 1300000,
+ "Lintex Global": 5800000,
+ "Logiwa": 7000000,
+ "Logoless": 10000000,
+ "London Computer Systems": 40200000,
+ "Louisville Web Group": 1300000,
+ "Lucky Rabbit Graphic Design Studio": 24000000,
+ "MRA Technologies": 1400000,
+ "Madison Design Group": 6000000,
+ "Makespace": 2600000,
+ "MapSync": 3400000,
+ "Marcus P. Zillman": 28900000,
+ "Marias Technology": 38100000,
"Markmonitor": 80000000,
- "Marlin Firearms Company": 42800000,
- "Marmon-Herrington Company Inc.": 49000000,
- "Marquette Transportation": 350000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merchant Ivory": 3100000,
- "Metal Supermarkets": 26800000,
- "Midway University": 1000000,
+ "Martin Fowler": 7600000,
+ "Mathias Systems": 12200000,
+ "Matrix Integration": 30000000,
+ "Mavim": 474000,
+ "Mayfield Compressor Parts": 19300000,
+ "Mcmtech": 27100000,
+ "Memberstack": 4200000,
+ "Mikrotec Ineternet Services": 19100000,
"Mimecast": 575300000,
- "Moe's Southwest Grill": 295500000,
- "Monoprice": 220000000,
- "Motorsport": 1700000,
- "Mr. Tire": 5700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Muskogee Phoenix": 7000000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "Navitas Land and Mineral Corporation": 10000000,
- "New Flyer": 2400000000,
- "NiSource": 5400000000,
- "Niagara Conservation": 2500000,
- "Nicholas Financial": 48200000,
- "NuStar Energy": 3200000000,
- "OHSAA": 21500000,
- "Oakdale Christian": 11800000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Oneida school": 24400000,
- "Oracle Elevator": 9200000,
- "Orange Amps": 4200000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paralyzed Veterans of America": 26500000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
+ "Miovision": 35000000,
+ "Mirazon": 16400000,
+ "Mission Data": 6000000,
+ "Mobikats Enterprise": 3700000,
+ "Modak": 11800000,
+ "Modern Web Studios": 7400000,
+ "Modus-O": 2400000,
+ "Mperfect": 1400000,
+ "Murals By Lori James": 5600000,
+ "Musewebdesign": 1500000,
+ "Mylinda Sherry Graphic Designer": 1900000,
+ "NEWKEY MEDIA": 740000,
+ "NICKS PAGES.": 2800000,
+ "NKOL": 54400000,
+ "NULOU": 181000,
+ "NXdrive": 3800000,
+ "Nabeel Sneij": 15800000,
+ "Nanosoft Solutions": 8000000,
+ "National Government Services": 300000000,
+ "Net Results Group": 35900000,
+ "Net Tango": 6000000,
+ "NetGain Technologies": 47600000,
+ "NetGreene": 16700000,
+ "Netcomm": 5000000,
+ "New Concepts Software": 21900000,
+ "New Drone": 10600000,
+ "Nexigen": 4900000,
+ "Nfina": 15300000,
+ "Nimblesoft": 4400000,
+ "Nomad Technology Group": 6000000,
+ "Ntirety": 25000000,
+ "Number 8": 7000000,
+ "Oasis Solutions": 7100000,
+ "Office Computing Inc.": 21000000,
+ "OmegaFi": 18400000,
+ "OneBridge Solutions": 7000000,
+ "OneTouch Media": 17100000,
+ "Online24x7": 13300000,
+ "Optimatics": 22000000,
+ "Optrics": 28100000,
+ "Orion Networks": 49500000,
+ "OverZealous": 1400000,
+ "P&P Creative": 4800000,
+ "PC Perspective": 10300000,
+ "PCGeeks4U": 11400000,
+ "PROnetworks": 19200000,
+ "PSD-NYC": 3500000,
+ "PSST": 15000000,
+ "PUSH design LLC.": 12500000,
+ "Palomino Solutions": 10900000,
+ "Park Place Technologies": 218400000,
"Paylocity Corporation": 923400000,
- "PeekYou": 6000000,
- "PharMerica": 2100000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Prairie Farms": 3100000000,
- "Premier Lacrosse League": 2000000,
- "Presentation Academy": 3600000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Ranch Hand Truck Accessories": 3900000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Renishaw": 816000000,
- "Republic Bank": 314200000,
- "Ritani": 71500000,
- "Rite Rug": 9500000,
- "Rokon": 3700000,
- "Rood & Riddle Equine Hospital": 2300000,
+ "Pegasus Web Productions": 19300000,
+ "PelicanCorp": 35000000,
+ "Phatlinks": 9500000,
+ "PixOwl": 29500000,
+ "Plugin Play": 402000,
+ "Plutoshift": 4000000,
+ "Podcast People": 6500000,
+ "Pomeroy": 850000000,
+ "Praesto Media": 422000,
+ "Premier Maintenance & Appliance Repair": 21900000,
+ "Pro Sys": 12700000,
+ "Professional Software Consortium": 33500000,
+ "Promevo": 8000000,
+ "Prosoft Nearshore": 27600000,
+ "Prosource": 50000000,
+ "Prospera Solutions Group": 28400000,
+ "Pyrographic Media": 13000000,
+ "Quantumleapfilesharing": 8000000,
+ "Quest Oracle Community": 5000000,
+ "Quintagroup": 1400000,
+ "RCN Technologies": 4800000,
+ "RENEJM": 45500000,
+ "RFX Technologies": 5200000,
+ "RINA Systems": 19800000,
+ "RM Innovation": 6000000,
+ "RPS TEK SOL": 2400000,
+ "RURAL TRANSIT ENTERPRISES COORDINATED INCORPORATION": 2400000,
+ "Radius Media Solutions": 12300000,
+ "Recognition Science": 12600000,
+ "Red Hawk Technologies": 8900000,
+ "Red Toad Media": 11400000,
+ "Red and Black Design": 6200000,
+ "Red e App": 7200000,
+ "Reflect Media Group": 9700000,
+ "Remedy Technologies": 31900000,
+ "Rent Manager": 40900000,
+ "Resource Advisor": 3000000,
+ "Revon Systems": 6000000,
+ "Right Eye Graphics": 369000,
+ "Riverside Technologies": 9500000,
+ "Robby Davis": 2800000,
"Roper Technologies": 6200000000,
- "Rotel": 38800000,
- "Runnymede Farm": 6000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Sarku Japan": 310000,
- "Save the Children USA": 835900000,
+ "Route 8 Design": 4600000,
+ "SDK Direct SDKDirect": 8900000,
+ "SHJ Studios": 7200000,
+ "SITEK Solutions": 7000000,
+ "SKU Vault": 8000000,
+ "STEP CG": 7000000,
+ "Samcom Technologies": 5500000,
"Savi Technology": 20000000,
- "Science Source": 3900000,
- "Sculpture magazine": 5400000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Sharp HealthCare": 3800000000,
- "Sheraton Hotels and Resorts": 3000000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Simpson Strong Tie": 2100000000,
- "Sisu Axles": 7000000,
- "Skydive Houston": 19500000,
- "Sleep Number": 2100000000,
- "Slugger": 84300000,
- "Smith & Nephew": 5200000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Soudal Holding N.V.": 329000000,
- "Sounds True": 5800000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Journal": 2800000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Sun Chemical": 8500000000,
- "Swaminarayan": 4700000,
- "Swanson Industries": 6700000,
- "Swedish Match": 2000000000,
- "Sylvan Learning": 12600000,
- "TVA": 13000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Teekay": 491500000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas Gas Transmission": 47800000,
- "The First Line": 18800000,
- "The Kentucky Kernel": 6000000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "The Writer": 4100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Saxon Inc.": 18800000,
+ "Scott Soeder": 488000,
+ "Secure Online Desktop": 5400000,
+ "Selvage Custom Software": 1400000,
+ "Senci Design": 3900000,
+ "Service Express": 130000000,
+ "Severalnines": 5500000,
+ "Sharetru": 1400000,
+ "Shawn Renee Photography": 9500000,
+ "Shelter Blue": 17900000,
+ "Shobiz Media & Design": 1200000,
+ "ShopWare Inc.": 16200000,
+ "Sierra Interactive LLC.": 12300000,
+ "Silicon Business Systems": 16600000,
+ "SimpleLogic": 184000,
+ "Simtechs": 7100000,
+ "Six10 Web Design": 889000,
+ "Skaggs Web": 12200000,
+ "Skylux Inc.": 38500000,
+ "Skynet Technologies": 367000,
+ "Smart Data Cincinnati": 10500000,
+ "Software Management": 6000000,
+ "Software Masters": 5400000,
+ "Software Resources": 17400000,
+ "SolutionsX": 33100000,
+ "SonetCove": 12300000,
+ "Southern Fried Designs": 8900000,
+ "SpecTec": 21400000,
+ "Specialized System Integration": 27200000,
+ "Splash Analytics": 4600000,
+ "StateBook": 310000,
+ "Storegga Geotechnologies Ltd.": 8300000,
+ "Strategic IT solutions": 11700000,
+ "StratusVue": 10000000,
+ "Streamline is Lexington KY.": 3000000,
+ "Streetcar Productions": 3300000,
+ "Subscription DNA": 12500000,
+ "Sugar Coded Apps": 2400000,
+ "Syron Design": 57300000,
+ "Systems Solutions": 29400000,
+ "T2Design": 4000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TJ's MCS": 1500000,
+ "TJC Technology Services": 5400000,
+ "Taylormade Insurance Group": 5800000,
+ "TeamLogic Inc.": 7200000,
+ "Technology Plus": 15200000,
+ "Technology Response Team": 2400000,
+ "Technology Services Group Inc.": 7000000,
+ "The AME Group Louisville": 214000000,
+ "The Computer Place": 33300000,
+ "The Cyberwerks": 1400000,
+ "The Design Foundry": 35000000,
+ "The KAI Group": 22900000,
+ "The Miller Company": 27000000,
+ "The Startup Project": 3600000,
+ "The Think Shop": 23000000,
+ "The Web Guys": 28700000,
+ "Tin Star Media": 5400000,
+ "Toastinvoice": 367000,
+ "Total Care Computer Consulting": 33400000,
+ "Total Network Designs": 31600000,
"Trace3 LLC.": 1400000000,
- "Transit Authority of Northern Kentucky": 14100000,
- "Trelleborg": 3000000000,
- "Trinity High School": 2300000,
- "Triton International": 1800000000,
- "Tuff Shed Incorporated": 300000000,
- "Tumbleweed Tex Mex Grill & Margarita Bar": 5700000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UDF": 805600000,
- "UMWA": 3000000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "USTR": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "Valpak": 43500000,
- "Velvet Ice Cream": 34800000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WKUHerald": 6400000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Webasto": 250000000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wieland Group": 6100000000,
- "WinStar Farm": 3500000,
+ "Tracker Products": 2300000,
+ "TrailerSaver": 113000,
+ "Trapp": 6000000,
+ "Tri Star Engineering": 25400000,
+ "Triad Associates": 20100000,
+ "Triadic Software": 937000,
+ "Trifecta Media LLC.": 2400000,
+ "TrinDocs": 2400000,
+ "TrinSoft": 12800000,
+ "Tssiglobal": 26300000,
+ "Tsunami Tsolutions": 9800000,
+ "Two Cups Creative": 4400000,
+ "Typeset Design": 4600000,
+ "UBNSoft": 15000000,
+ "United Systems": 6000000,
+ "Upic Solutions": 32500000,
+ "Verisys": 75000000,
+ "Verve Industrial Protection": 25000000,
+ "Villager Piranhas Swim Team": 2000000,
+ "WORLD e": 67600000,
+ "Wathen's Designs": 5100000,
+ "Waystar": 130000000,
+ "WeMited": 7900000,
+ "Web reinvent": 4600000,
+ "WebSapient": 31000,
+ "Webfoo": 29300000,
+ "WebsiteTrouble": 5400000,
+ "Wengert": 19400000,
+ "WheelHouse Solutions": 2700000,
+ "Williams McBride": 11200000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Affairs Council": 14200000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Yamana": 1900000000,
- "ZEISS": 8800000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000
+ "Worldwide Telenet Web Design": 4200000,
+ "Xpressions BPO": 11300000,
+ "Xurvis IT Solutions": 389000,
+ "Zachary Piper": 5000000,
+ "Zimmer Design": 461000,
+ "ZookNIC": 18500000,
+ "beiNVENTiV": 2000000,
+ "eLink Design": 3500000,
+ "enCodePlus": 401000,
+ "findCRA": 1400000,
+ "iDentitySential": 4800000,
+ "iHealth is": 5000000,
+ "iSAFE Complete": 4300000
},
"Louisiana": {
- "47 Brand": 125000000,
- "A Studio in the Woods": 9700000,
- "AACSB": 22500000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "2TSI": 12400000,
+ "ACT Technologies": 46400000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ASAP food delivery": 130000000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Acadiana Profile": 6700000,
- "Ace Hardware": 7800000000,
- "Aeroframe Services": 17500000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air Transat": 1300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Genealogists": 3600000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "At Home store": 1700000000,
- "Aubuchon Hardware": 128000000,
- "Australian Laboratory Services": 6600000000,
- "AutoGyro": 15000000,
+ "ADSS Global": 38500000,
+ "ADVANSYS Pty Limited": 23000000,
+ "AIM Technologies": 11400000,
+ "AIMS Inc.": 12600000,
+ "ALEN Inc.": 21400000,
+ "APEX IT Solutions": 6100000,
+ "ARAM Technologies": 49900000,
+ "Able Disabled Programming Group LLC.": 28700000,
+ "Accounting Software World": 6800000,
+ "Accruent": 270000000,
+ "Acoustic Web Design": 7600000,
+ "ActiveCo": 373000,
+ "Additional Resources Inc.": 19700000,
+ "Adorn Studio": 28600000,
+ "Adria Designs": 7100000,
+ "Advanced Automation Technology": 10600000,
+ "Agilink Technologies": 13800000,
+ "Ahead Tech Group": 21000000,
+ "Alchemy Tech Group": 7000000,
+ "AlignToday": 4100000,
+ "Anedot": 15000000,
+ "Antares Technology Solutions": 8800000,
+ "Applied Talent": 38200000,
+ "ArisAlex Digital": 2900000,
+ "Arsement & Hayes": 15200000,
+ "Aspen Grove Studios": 3300000,
+ "Assembly Studio": 26100000,
+ "Athens Intermediate": 23400000,
+ "Attendance on Demand": 25000000,
+ "AvTek Solutions": 10000000,
"Avail Company": 4200000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baton Rouge Metropolitan Airport": 2500000,
- "Beltone": 61600000,
+ "Avalar Realty Louisiana": 30500000,
+ "Avansic": 3800000,
+ "Avery Island Technologies LLC.": 21400000,
+ "AwsQuality": 276000,
+ "Ayoka Systems - Software Development": 8200000,
+ "B Cubed Technologies": 26400000,
+ "BIOS Technologies": 8000000,
+ "BRUCE A KAFFENBERGER": 55000000,
+ "Backdocket": 1400000,
+ "Basic Matrix": 285000,
+ "Bayou": 6200000,
+ "Bayou Hosting": 13900000,
+ "Bayou Media Development": 2400000,
+ "Bee Culture": 5500000,
+ "Bellwether Technology": 13800000,
+ "Benecom Technologies": 29700000,
"Benetech": 10600000,
- "Big Boy Restaurants": 26600000,
- "Black Rifle Coffee": 233100000,
- "Blanchard Gold": 5600000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bojangles": 560000000,
- "Bollinger Shipyards": 1000000000,
- "Borden Dairy": 1200000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookdale": 2700000000,
- "Brookshire Brothers Company": 52200000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Bruce Foods": 30000000,
- "Buckle": 1300000000,
- "Burckhardt Compression": 699500000,
- "Bureau Veritas": 5700000000,
- "Bureau of Ocean Energy Management": 97000000,
- "CBS": 3300000000,
+ "Bertucci Inc.": 16900000,
+ "Best Pest Marketing": 28400000,
+ "Beyond Networks": 3000000,
+ "Bf Creative Group": 240000,
+ "Big Easy Design": 1800000,
+ "Bit Bayou": 324000,
+ "Black Canvas Creative": 568000,
+ "BlackHawk Datacom": 35000000,
+ "Blanchard Systems": 12500000,
+ "Blue Crab Software": 2400000,
+ "Blue Frog Technology": 52000000,
+ "BlueJay Creative": 2500000,
+ "BlueTree Software": 249000,
+ "Bluefin Data": 21400000,
+ "Boomers Domain": 26900000,
+ "Branson Cabin Rentals": 32000000,
+ "BridgeNet Technology Consultants": 31700000,
+ "BroComp": 30500000,
+ "CBM Technology": 7300000,
+ "CC Datatech": 20100000,
+ "CDR Software": 6600000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CNN Films": 1500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Captain D's": 9000000,
- "Cellular Sales": 1700000000,
- "Centaur Records": 3900000,
- "Centenary": 29300000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christian Life Academy": 6700000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clive Christian": 7000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Common Ground Relief": 4200000,
- "Community Coffee": 245000000,
- "Condor": 10000000,
- "Coney Island USA": 4200000,
- "Confie": 75000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covington Brewhouse": 1000000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumulus Media": 946800000,
- "Cutco Corporation.": 200000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DJC Oregon": 10000000,
- "DMI Inc.": 705000000,
- "Daily Star Louisiana": 2500000,
- "Dana Incorporated": 9900000000,
- "Dawn Foods": 1100000000,
- "Delta Regional Authority": 10000000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "Digital Remedy": 22000000,
- "Dignity Memorial": 25000000,
- "Discovery Toys": 4000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "ETS": 1400000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "England Airpark": 17900000,
- "Eni": 134600000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Farmer Brothers": 469200000,
- "Farnell": 5400000000,
- "Ferrara Fire Apparatus": 140000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "Finance & Commerce": 3700000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "Gambit formerly Gambit Weekly": 10200000,
- "GardaWorld": 3800000000,
- "Gibbs & Cox": 100000000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Haynes International": 490500000,
- "Helmerich & Payne": 1400000000,
- "Hertz Investment Group": 27200000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hornbeck Offshore": 224400000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hustle Gang": 2800000,
- "Hwy 55": 3400000,
- "Hydro": 21600000000,
- "IDEX Corporate": 3100000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Indorama Ventures": 6600000000,
- "Interfor": 354900000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jesuit High School of New Orleans": 1000000,
- "Joe's Crab Shack": 345000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jordache": 6000000,
- "Josephites": 19600000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KWIK TRIP": 5000000000,
- "Katoen Natie": 3200000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Krispy Krunchy Chicken": 3400000,
- "LCMC Health": 1700000000,
- "LEGO": 8100000000,
- "La Madeleine": 35200000,
- "Lafayette Parish": 12000000,
- "Laitram": 10000000,
- "Learning Express Toys": 2500000,
- "Leidenheimer": 30200000,
- "Leidos Holdings Inc.": 13700000000,
- "Lennys": 9000000,
- "Leonisa": 5600000,
+ "CHRS Interactive": 3500000,
+ "CMA Technology Solutions": 3600000,
+ "CMIT Solutions": 60000000,
+ "COLAMCO": 35200000,
+ "CSE ICON": 5000000,
+ "Cajun Software": 23900000,
+ "Camus Computer Consulting": 40300000,
+ "Capitol City Family Health Center": 13600000,
+ "Carl Fox": 5800000,
+ "Carrollton Enterprise Services": 6200000,
+ "Cathedral Creative Studios": 7000000,
+ "Causeway Interactive": 1400000,
+ "ChapterSpot": 4400000,
+ "Chargerback": 2400000,
+ "Chem-Air": 7500000,
+ "Children's Hospital New Orleans": 433000,
+ "ClearFunnel": 2400000,
+ "Cleargistix": 10000000,
+ "Code Authority Custom Software": 417000,
+ "ComTec Information Systems": 16000000,
+ "Comit Developers": 6000000,
+ "CommTech Industries": 21500000,
+ "Command Prompt": 7000000,
+ "Complete Network": 26500000,
+ "Compliance Technology Group": 26300000,
+ "Compose Digital Design": 27300000,
+ "CompuCure Inc.": 7000000,
+ "Compusoar": 5200000,
+ "Computabusiness": 488000,
+ "Computer Concepts": 14300000,
+ "Computer Dynamics": 6500000,
+ "Computer Networks and Design": 308000,
+ "Computerized Business Solutions Inc.": 25600000,
+ "Comsolutions": 4000000,
+ "Connectivity Two Designs": 15500000,
+ "Continuum IT Solutions": 16600000,
+ "ConvergeOne": 1600000000,
+ "Core Networks": 29800000,
+ "CotingaSoft": 5200000,
+ "Crawford Design Group": 1600000,
+ "Creative Vibe Graphics": 7400000,
+ "Crescent City Networking": 35400000,
+ "Crew Management": 5000000,
+ "Crix Green": 2100000,
+ "CultureConnect": 8000000,
+ "Customer 1st Communications": 9600000,
+ "Cyber Fision": 1400000,
+ "Cyrious Software": 10800000,
+ "Cyrious'": 4800000,
+ "DBS Software and Services": 13900000,
+ "DC International": 14900000,
+ "DETEL": 10000000,
+ "DOXO": 7500000,
+ "DTC Force": 75000000,
+ "DartPoints": 42000000,
+ "Dasher Consulting": 19400000,
+ "Data-Devil": 1400000,
+ "Dataretrieval": 29800000,
+ "Dataweld": 11200000,
+ "Datum Software": 15700000,
+ "Deborah James Coastal Kitchens LLC.": 6900000,
+ "Deltide": 4700000,
+ "Denise Gallagher Design & Illustration": 2700000,
+ "DevCar Systems International": 10100000,
+ "Diamond Software": 17100000,
+ "DigiFX Design": 394000,
+ "Digital Forensics Solutions": 1400000,
+ "Digital Forensics Team": 4100000,
+ "Direnzic": 4500000,
+ "DocuFirst": 2000000,
+ "Docusource": 2400000,
+ "DomainVIP": 36200000,
+ "Dotology": 421000,
+ "DreamArt Designs": 6100000,
+ "DuxWare": 6000000,
+ "E-scape Systems": 13600000,
+ "ECN Educational Community Network": 10200000,
+ "EMCO Technologies": 32800000,
+ "EPS Inc.": 17700000,
+ "EZBIS": 2500000,
+ "East Tree": 27900000,
+ "EasyAsk": 5000000,
+ "Ebarb Software and Web Dev": 3800000,
+ "Enterprise Data Concepts": 33200000,
+ "Entronix": 6000000,
+ "Essential Solutions | IT Support & Managed IT Services": 6500000,
+ "Evisions": 6000000,
+ "Exigo Technology Services": 3900000,
+ "FOGO Solutions": 6000000,
+ "Fast Enterprises": 290000000,
+ "Fenway Group": 25000000,
+ "Function4": 7000000,
+ "GC&E Systems Group": 59000000,
+ "GK Productions": 29800000,
+ "GWP Solutions": 1400000,
+ "Gainwell Technologies": 1400000000,
+ "General Informatics": 15200000,
+ "GeoConex": 1400000,
+ "Gerwitz LLC.": 128000,
+ "Global Commerce and Services": 4900000,
+ "Global Data Systems | Managed Service Provider": 120000000,
+ "GlobeNet": 5000000,
+ "Golden Creative Design": 3700000,
+ "Good Look Creative": 1400000,
+ "Goods that Matter": 5100000,
+ "Gorilla Design Studio": 17300000,
+ "Gormazing Designs": 7200000,
+ "Graphic Industries Inc.": 9200000,
+ "Green Hippo": 7000000,
+ "GreenQube": 4900000,
+ "Gulfstream Technologies": 2000000,
+ "Guru Design": 42900000,
+ "HOT SCHOTT DESIGN": 22500000,
+ "Haketi Multi-Media Group": 2400000,
+ "Hawk-IS": 23400000,
+ "Health Connective": 31500000,
+ "Henneman Design": 18600000,
+ "Holistics": 5000000,
+ "Hubley": 263000,
+ "Hundred Acre Design": 5400000,
+ "Hydrasat": 2400000,
+ "I-Assure": 14700000,
+ "ICONVERGENCE": 12800000,
+ "ID Scanning": 8000000,
+ "IT Inspired": 3600000,
+ "Ideal Computer Solutions": 6400000,
+ "Immense": 36300000,
+ "Impression Works": 6000000,
+ "In House Graphics": 4400000,
+ "Indigo Park": 5600000,
+ "Indus Technology": 36000000,
+ "Industrial Data Systems Inc.": 6100000,
+ "Industrial3D Inc | I3D": 5300000,
+ "Information Systems Solutions": 2000000,
+ "Ingalls Information Security": 458000,
+ "Innovasystems": 28300000,
+ "Innovative IT MS": 1400000,
+ "Integrated Axis Group": 6000000,
+ "IntegriSite": 23200000,
+ "Integritas Technologies": 23700000,
+ "Intelek Technology Solutions": 1400000,
+ "Interactive Solutions": 39100000,
+ "Interepco": 22700000,
+ "JP Technologies": 22600000,
+ "JQ Technologies": 51100000,
+ "JTH Computer Systems": 15300000,
+ "Jaz-Tec": 15600000,
+ "Jenn's Art": 50500000,
+ "Jericho Studios": 294000,
+ "Jevangel": 1200000,
+ "JusticeTrax": 5000000,
+ "KMSYS": 11700000,
+ "KOP Infotech": 25000000,
+ "KT Graphix": 29300000,
+ "Kens Communication": 9100000,
+ "LA Tech Pro": 2000000,
+ "LATG": 17800000,
+ "Lakeshore Group": 14900000,
+ "Lamneth": 14100000,
+ "Laureate Learning": 2400000,
+ "Lea Guzzetta": 29300000,
+ "Lepetite Fleur": 303000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Lipcon Margulies & Winkleman P.A.": 3900000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana School for Math Science and The Arts": 3800000,
- "Lovesac": 389800000,
- "M.C. Dean": 1000000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Marianites": 31700000,
- "Marine Turbine": 50000000,
- "Marlow Industries": 1500000000,
- "Marquette Transportation": 350000000,
- "Matson": 4300000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McGehee": 7400000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Methanex": 3100000000,
- "Mississippi Export Railroad": 12000000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Monster Moto": 3700000,
- "Mosaic": 7200000000,
- "Motiva Enterprises": 20800000000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NAACCR": 16300000,
- "NCFCA": 9900000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Down Syndrome": 2600000,
- "National Oilwell Varco": 7200000000,
- "New Orleans Center for Creative Arts": 5200000,
- "New Orleans Emergency Medical Services": 14100000,
- "New Orleans Regional Transit Authority": 14400000,
- "Niagara Conservation": 2500000,
- "North Sails": 27500000,
- "NuStar Energy": 3200000000,
- "OOCL": 33600000,
- "Ochsner": 5900000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orkin": 1000000000,
- "Orleans Parish School Board": 40500000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCL Construction": 6300000000,
- "PERMA-PIPE": 37700000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "Peet's Coffee": 36700000,
- "People of Praise": 13100000,
- "Petroleum Helicopters International": 661900000,
- "PharMerica": 2100000000,
- "Pho Hoa": 2500000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Postlethwaite & Netterville": 11800000,
- "Powell Industries": 499400000,
- "Pretzelmaker": 125000000,
- "PrimoHoagies": 2600000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "Rayonier": 1100000000,
- "Realtor": 118000000,
- "Red River Revel": 4100000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "RentHop": 1000000,
- "Rodgers Instruments Corporation": 6400000,
- "Rolls-Royce": 15300000000,
- "Roly Poly": 16400000,
- "Ronald McDonald House Charities": 59500000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salon": 130000000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "Schlumberger Limited": 27800000000,
- "Seaboard": 11200000000,
- "Secop": 1300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Shop Sucre": 7000000,
- "Sightsavers'": 56000000,
- "Signarama": 55000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Sodexo": 22300000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Sprint Mart": 25800000,
- "St Lawrence County Historical Association": 13000000,
- "St. Bernard Urban Rapid Transit": 18400000,
- "St. Tammany Parish Public Schools": 3900000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stoney River": 10300000,
- "Stork": 2300000000,
- "Stripes Stores": 750000000,
- "Sulzer": 13800000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Teck Resources": 12600000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Ternium": 8700000000,
- "Terracon": 77100000,
- "Tervita": 966600000,
- "Texas Gas Transmission": 47800000,
- "The Advocate": 25000000,
- "The City of Hammond LA": 5900000,
- "The Columbia Group": 10000000,
- "The Conservation Fund": 3900000,
- "The Daily Reveille": 9000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The Parking Spot": 46000000,
- "The Roosevelt Hotel": 4600000,
- "Thomas Mansfield": 7000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Level Technology": 29200000,
+ "Linking Arts": 15700000,
+ "Linric": 29000000,
+ "Little Dove Press": 3600000,
+ "Logix IT Group": 255000,
+ "Logopond": 10000000,
+ "LookFar": 7000000,
+ "Louisiana CodeWORKS": 20300000,
+ "Louisiana Data Systems": 39400000,
+ "Lxi Solutions": 6600000,
+ "MIS Accu-Tech": 28200000,
+ "MIS Technology Group": 30500000,
+ "MSF Global Solutions": 5100000,
+ "Magnolia Development Group": 5900000,
+ "Mahtook Interiors": 3600000,
+ "Mainstreet Systems": 32600000,
+ "Makemade": 331000,
+ "Manaprimalis": 7200000,
+ "Mangan Cybersecurity": 55000000,
+ "Marathon Tech": 21800000,
+ "Mark Rosenbohm": 12400000,
+ "Marse Designs": 4700000,
+ "Matthew foreman": 8300000,
+ "MayerIT": 34500000,
+ "MediGraphics": 25100000,
+ "Medtron Software Intelligence": 10700000,
+ "Meriplex": 20000000,
+ "Methods Technology Solutions": 22500000,
+ "Meyer Technologies": 43400000,
+ "Millennium Technology": 3900000,
+ "Millermark": 10800000,
+ "Miovision": 35000000,
+ "Model Software": 17400000,
+ "Moonhsine Design": 2900000,
+ "Motionphics": 2800000,
+ "My Design Portfolio": 3200000,
+ "My Food Brand": 442000,
+ "NOIT GROUP": 2400000,
+ "NOLA Media and Design": 4200000,
+ "Napera Networks": 5400000,
+ "National Networks": 4400000,
+ "Nationwide IT": 17900000,
+ "NeosCloud": 6000000,
+ "NetTech IT Support": 1800000,
+ "Network Navigators": 24400000,
+ "New Orleans Integrated Technologies": 893000,
+ "New Orleans Technology Services": 4400000,
+ "NewAperio": 7000000,
+ "NewBirth Creative Design Agency": 1100000,
+ "NextLevel Information Solutions": 28300000,
+ "NextLevel is": 6800000,
+ "Nfina": 15300000,
+ "Nola Web Designs L.l.c. - New Orleans Website Design & Seo": 9200000,
+ "Not Rocket Science": 13700000,
+ "Novacoast": 100000000,
+ "Nubinity": 4000000,
+ "Office Automation Consultants": 6600000,
+ "Oilonit Design": 2700000,
+ "Omicron Technology": 4800000,
+ "Omniq": 61200000,
+ "OneRneT": 11900000,
+ "Origin Creative": 5600000,
+ "Outlook Design": 19300000,
+ "P6 Software": 21700000,
+ "PAYK12": 5600000,
+ "PTS Solutions": 35300000,
+ "Palmer Publishing & Graphics": 34000000,
+ "Panamax": 2000000,
+ "Parthenon Software Group": 6800000,
+ "Pastiche Design": 5600000,
+ "Pd' Programming": 6100000,
+ "Performance Software": 1200000,
+ "Pixel Dash Studios": 4300000,
+ "Point2point": 318000,
+ "Polyclef Software": 30800000,
+ "PowerFlow Solutions": 1600000,
+ "Pre-Engineering": 29200000,
+ "Preigo Fover Technologies": 47700000,
+ "Prejean Creative": 1700000,
+ "Presidio": 4400000,
+ "Primtek": 6000000,
+ "Public Systems": 35700000,
+ "Pure Simplicity Designs": 1400000,
+ "QSM": 16900000,
+ "Qnet Information Services": 1100000,
+ "RADER": 1200000,
+ "RBA Systems": 35000000,
+ "REDE Inc.": 70000000,
+ "RMJ Consulting": 10000000,
+ "Razor-Tek": 9800000,
+ "Real Vision Software": 10000000,
+ "Recognize Designs": 4400000,
+ "Reliable IT Healthcare": 60000000,
+ "Rent Manager": 40900000,
+ "Repumatic": 310000,
+ "Restech": 2100000,
+ "Revelry": 5900000,
+ "Rhino Web Studios Of New Orleans": 1400000,
+ "RiDiK": 980000,
+ "RightStuff Hosting": 23300000,
+ "Riseon PJ Sports Center": 7700000,
+ "Rountree": 29000000,
+ "RowLogic": 21000000,
+ "Ruby Shore Software": 6000000,
+ "SCADA Integrators": 5000000,
+ "SEGUS": 25000000,
+ "SEKTR": 10000000,
+ "SGA Software": 31200000,
+ "SKUBA Design Studio": 7000000,
+ "SOLID Web Service": 5900000,
+ "SYGNVS": 2400000,
+ "SalonBiz": 244000,
+ "Sam Hills": 2400000,
+ "Scallywag Design LLC.": 34100000,
+ "Scandy": 1000000,
+ "SchoolInfoApp": 6300000,
+ "Scott Industries Corporation": 17600000,
+ "Scott Ott Creative": 19000000,
+ "Scotty Matthews": 6900000,
+ "Script Technology": 5100000,
+ "Scroggin Networks": 1600000,
+ "Sediment Press": 15900000,
+ "Sentient Digital": 1600000,
+ "SerenPort": 2000000,
+ "Server At Work": 6600000,
+ "Sev1Tech": 45600000,
+ "Shadowtrack": 13900000,
+ "Sheer Technology": 4500000,
+ "Shepherds Loft": 2700000,
+ "ShipTracks": 3500000,
+ "Shreveport Louisiana Web Design Web Site Design": 26600000,
+ "Simplefusion": 15700000,
+ "Six Figure Design": 5800000,
+ "SkyMinder": 26700000,
+ "Smallfactorystudios": 3200000,
+ "SmartWay Solutions": 14000000,
+ "Smarterphone Labs": 5400000,
+ "Smashing Boxes": 1500000,
+ "Software & Scanning Services": 6000000,
+ "Software & Services of Louisiana L.L.C.": 43000000,
+ "Software Connections": 8800000,
+ "Software Systems": 5000000,
+ "SoluVista": 3700000,
+ "Solugence": 25000000,
+ "Solution Pronto": 27300000,
+ "Sounds In Sync": 4600000,
+ "Sparkhound": 14200000,
+ "Spotlite": 11200000,
+ "SquarePlanIT": 398000,
+ "Stallion is": 1500000000,
+ "Steinhardt & Company": 576000,
+ "Stoneridge Software": 33000000,
+ "Store Locator Widgets": 2400000,
+ "Strix Technology Group": 1400000,
+ "Suberspace": 37400000,
+ "Summit Integration Systems": 6400000,
+ "TEKDesign": 40000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TILT LLC.": 34000000,
+ "TONY LEE AUTO TECHNICIANS INC.": 16700000,
+ "TRUCE Software": 15700000,
+ "Tate Computer Services": 13800000,
+ "TeamLogic Inc.": 7200000,
+ "Techkuber": 11700000,
+ "Techneaux Technology Services": 25000000,
+ "Technologix": 6000000,
+ "Technology Professionals": 2000000,
+ "TekSynap": 15500000,
+ "Telesis IT": 2400000,
+ "Tenacious Techies": 2800000,
+ "TerraBase": 16300000,
+ "The AME Group Louisville": 214000000,
+ "The Marketing Hub": 10000000,
+ "The Occasional Wife": 5100000,
+ "The Purple Guys IT Support": 8000000,
+ "The Technology Group LLC.": 20300000,
+ "Thebiztools": 5200000,
+ "Theory Evolution": 27600000,
+ "Thesammich": 28000000,
+ "ThinkIT Solutions": 61300000,
+ "Thinkstream": 5500000,
+ "Tierney Studio": 8200000,
+ "Toast Mobile": 3600000,
+ "Tom Varisco Designs": 27800000,
+ "Total Network Technologies": 15400000,
"TraceSecurity": 8800000,
- "Tracerco": 47500000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "TurboSquid": 8600000,
- "T\u00eda": 150000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNTUCKit": 350000000,
- "USALCO": 7300000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "Urban Design Associates": 9000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Vericor": 26900000,
- "Verifone": 1800000000,
- "Veritiv": 7300000000,
+ "Tradewinds Software": 23000000,
+ "Transech": 28800000,
+ "Transformyx": 6100000,
+ "Trendsic": 6000000,
+ "TurfCentric": 36200000,
+ "Turn Key Solutions": 6900000,
+ "Type&Image": 584000,
+ "Types of Software": 38000000,
+ "Typhon Group": 21100000,
+ "U.S. Computer": 21700000,
+ "UBEO": 15000000,
+ "Ultix": 29200000,
+ "Universal Data": 192000,
+ "Utility Data Systems Inc.": 30100000,
+ "VENYU": 30000000,
+ "VJ Consulting": 5600000,
+ "Vantage Point Technologies": 6000000,
+ "Vector Choice": 421000,
+ "Velocity Squared": 201000,
+ "Verma Systems": 5000000,
"Version 1": 260000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "Wisconsin Cheeseman": 7000000,
- "Wishing Well Foundation USA": 24200000,
+ "Video Jones": 19500000,
+ "Vinformatix": 3200000,
+ "Virtual Business Solutions": 32500000,
+ "Vital Integrators & Managed IT Support Services": 18400000,
+ "Voovio": 3200000,
+ "VoterVoice": 4300000,
+ "WaLa! Inc.": 3000000,
+ "WebGuys": 26200000,
+ "WebWare Technology": 10300000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "XPO Logistics": 7700000000,
- "YMCA of the USA": 64100000,
- "Zumiez": 1100000000
+ "Workgrid": 6700000,
+ "Zachary Piper": 5000000,
+ "Zalandas": 1400000,
+ "aeTechnology": 52400000,
+ "eBell Design": 13800000,
+ "five65 Design": 1400000,
+ "iArch Solutions": 4900000,
+ "iMed Software": 29700000,
+ "iMerit": 100000000,
+ "iSeatz": 4900000,
+ "iT Solutions brings": 3900000,
+ "osTicket": 10000000
},
"Maine": {
- "ABC Supply": 12100000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Advanced FLOW engineering": 17500000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Allagash": 27000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Architectural Illustrators": 1300000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
+ "A Partner In Technology": 33400000,
+ "A Space For Grace": 9200000,
+ "ATX Advisory Services": 5000000,
+ "AcadiaSolutions": 1400000,
+ "Acclaimed Labs": 1400000,
+ "Action Computer": 7100000,
+ "Advanced MicroSystems Inc.": 13300000,
+ "Advenio": 11400000,
+ "AgilePath": 2400000,
+ "Altha Technology": 44800000,
+ "Anderson concepts": 22700000,
+ "Angleinc": 4100000,
"Anoto": 8200000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
+ "Antura": 4500000,
+ "Applied Concepts": 17100000,
+ "Arkatechture": 6000000,
+ "Ask The Computer Lady": 20800000,
+ "Atlantec Technology Services": 3000000,
+ "Atomic Studios": 26300000,
+ "Autumn Lane Web Studios": 4900000,
"Avanade": 3900000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BSOOB Transit": 1200000,
- "BTS Group": 232600000,
- "Bangor Daily News": 10000000,
- "Bangor Maine": 6200000,
- "Bangor Public Library": 21100000,
- "Baseball Factory": 10000000,
- "Belfast and Moosehead Lake Railroad 2009": 40300000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bicycle Health": 8700000,
- "Bio-Rad": 2800000000,
- "Blue Marble Geographics": 11000000,
- "BlueLinx": 4600000000,
- "Boat Trader": 5500000,
- "Bonnier": 242000,
- "Boothbay Register": 4600000,
- "Brain Injury Association of America": 10000000,
- "Brown Center for Students of Color": 997900000,
- "Capital Power": 1900000000,
- "Carenet Health": 300000000,
- "Carlisle Companies": 6600000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chebeague Island Inn": 23400000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Civic League of Maine": 29500000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Couche-Tard": 67900000000,
- "Cousins Maine Lobster": 5100000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Davey Tree": 1500000000,
- "Diodes": 128800000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
+ "Aware Technology": 22600000,
+ "BANGOR WEB DESIGN COMPANY": 10100000,
+ "BC Productions Inc.": 30200000,
+ "BCI Computers": 257000,
+ "Barnstormer Design": 42600000,
+ "Bean Data": 2000000,
+ "Begin & Associates": 26900000,
+ "Beneficial Technologies": 26900000,
+ "Berrygraphics": 50500000,
+ "Big Room Studios": 4600000,
+ "BioAnalyte": 9200000,
+ "Black Mountain Technologies": 6600000,
+ "Bluecat Media": 12600000,
+ "Bluecloud Solutions": 5800000,
+ "Blueink eSignatures": 2400000,
+ "Bob Bond": 5900000,
+ "Bowery Beach Farm": 632000,
+ "Brad Fitzpatrick": 915000,
+ "Bridge Street Design": 17800000,
+ "Burgess Technology Services": 21100000,
+ "CIO Main Street": 23400000,
+ "Caddvantage Inc.": 14600000,
+ "Call Now 207 442 8907.": 21800000,
+ "Carmenta": 35000000,
+ "Cecile Design Studio": 14400000,
+ "Certify Inc.": 22000000,
+ "China Lake Auto Sales & Service": 32500000,
+ "Chrome River": 48300000,
+ "Cirkadia": 20900000,
+ "ClaimVantage": 6000000,
+ "Clarisoft Technologies LLC.": 13500000,
+ "Clear Creative of Kittery ME": 50500000,
+ "Cloudmore": 5700000,
+ "Coastal Web Design": 26900000,
+ "Coco Raynes Associates": 2800000,
+ "Code Fox Development": 28300000,
+ "Comdoctor": 26700000,
+ "CompuNET": 23400000,
+ "Computer Solutions of Maine": 40500000,
+ "Consulting Maine": 33300000,
+ "Cooley Design Lab": 18000000,
+ "Coria": 2100000,
+ "Coroflot": 1400000,
+ "Corson GIS Solutions": 3900000,
+ "Crik-IT": 1400000,
+ "Crystal Reporting Solutions": 14100000,
+ "Culverson": 26800000,
+ "Cybage": 146900000,
+ "DanJac Design": 9100000,
+ "Data Defined": 31600000,
+ "David Gillis Design": 28300000,
+ "Defendify": 4200000,
+ "Delaney Design": 39600000,
+ "Delia Wilson Design": 4600000,
+ "Dirigo Design & Development": 3800000,
+ "Dirigo Software": 5100000,
+ "Disk Media": 14100000,
+ "Dojo Digital": 2800000,
+ "Dotnetspider": 10000000,
+ "Downeast IT": 27100000,
+ "Dragon Frugal Designs": 2700000,
"EPiServer": 215000000,
- "EVgo Services LLC.": 34400000,
- "Eagle Newspapers": 34000000,
- "Elite Airways": 3000000,
- "Embrace Home Loans": 180600000,
- "Episcopal Church": 96100000,
- "Erskine Academy": 20200000,
- "Ethan Allen": 845000000,
- "ExxonMobil": 403200000000,
- "FatFace": 244700000,
- "Fedco Seeds": 15400000,
- "Ferries": 556000,
- "First National Bank": 1300000000,
- "Fox Network": 3000000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "Gen Re": 9500000000,
- "Generac Power Systems": 4600000000,
- "Golder Associates Inc.": 1000000000,
- "Gracie Barra": 987000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HUB International Ltd.": 3200000000,
- "Haggar": 300000000,
- "Hancock County-Bar Harbor Airport": 6000000,
- "Harbor Fish Market": 2100000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Hayden Shapes": 12000000,
- "Hershey Creamery Company": 124000,
- "Hobby Lobby": 5300000000,
- "Hodgdon Yachts": 33100000,
- "Huhtamaki": 53200000000,
- "IDSVA": 4200000,
- "IGA": 250000000,
- "ILSR": 3400000,
- "Ingredion Incorporated": 7200000000,
- "Iron Mountain Incorporated": 5000000000,
- "JAX": 484600000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Kaplan": 1500000000,
- "Ketchum": 500000000,
- "Kruger": 1400000000,
- "L.L.Bean": 1600000000,
+ "Eagle Network Solutions": 1400000,
+ "Easterbrooks Software": 39300000,
+ "Echo-X": 33800000,
+ "Eclipsed by Design": 1900000,
+ "Elijah LTD.": 5000000,
+ "Emburse": 175100000,
+ "Endeavor Services": 3000000,
+ "Eric Eng": 1400000,
+ "Exoft": 53800000,
+ "Fastdev": 26000,
+ "Fibers Of Unity Alpaca Socks Alpaca Fiber & Alpaca Clothing": 41100000,
+ "Firefly LLC.": 28700000,
+ "Fisher Tech Solutions": 18400000,
+ "FloSpace": 34000000,
+ "Foliage Web Design": 42000000,
+ "Fraser Technical Solutions": 28000000,
+ "Future Technology Group": 2700000,
+ "GEM Software Development": 31300000,
+ "GMAC Graphics": 36700000,
+ "Gainwell Technologies": 1400000000,
+ "Give IT Get IT": 8100000,
+ "Global Passport Of Maine": 19800000,
+ "Gold Bridge Partners": 8200000,
+ "Gov Health IT": 6700000,
+ "Gradient Blue": 13600000,
+ "Grantek": 11900000,
+ "Greenmark IT": 29200000,
+ "Gusco": 12500000,
+ "Hemlock Hill Design": 11500000,
+ "Host A Tree": 6900000,
+ "Hostatree": 6900000,
+ "IOvations": 20200000,
+ "ITS Inc.": 3900000,
+ "InfoBridge": 33600000,
+ "Ingeredes": 44000000,
+ "Ion Networking": 18200000,
+ "IslandWeb": 3300000,
+ "J Sandifer": 6800000,
+ "Jack Russell Steak House & Brewery": 2900000,
+ "Jacque Auger Illustration": 16000000,
+ "Jellison Tech": 419000,
+ "John Thurlow": 9700000,
+ "JusticeTrax": 5000000,
+ "KSR Technologies": 50500000,
+ "Kilpatrick IT Solutions": 54200000,
+ "Kimmi Creates": 35400000,
+ "Kindly Ops LLC.": 1400000,
+ "Kirck": 10800000,
"Level 3 Communications": 17500000000,
- "Lewiston Public Library": 2900000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Linklaters": 2100000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "MSAD 15": 22600000,
- "MSAD 60": 35500000,
- "MSC Industrial Supply": 3800000000,
- "Maine Bar": 15000000,
- "Maine Campus": 7000000,
- "Maine Children's Home": 28600000,
- "Milliman": 1200000000,
- "Molnlycke": 2200000000,
- "Money Under 30": 7000000,
- "Montreal Maine and Atlantic Railway": 10000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NBT Bank": 30100000,
- "NICOLAS": 11000000,
- "NOAA Weather Radio": 36400000,
- "New England Black Wolves": 370000,
- "Nordnet": 390300000,
- "North Sails": 27500000,
- "ON Semi": 8300000000,
- "Ogunquit Museum": 14900000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Pampered Chef": 300000000,
- "Pan Am Railways Inc.": 1000000000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeoplesChoice": 20000000,
- "PharMerica": 2100000000,
- "Planned Parenthood": 1600000000,
- "Porsche France SAS.": 34300000000,
- "Portland Public Library": 11500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quebec Major Junior Hockey League": 1100000,
- "RED Digital Cinema": 55200000,
- "Red Wing Shoes": 700000000,
- "RedMonk": 42900000,
- "Reed & Reed": 72900000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sarku Japan": 310000,
- "ServiceMaster Clean": 48500000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Snc Lavalin": 5600000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "State Street": 12100000000,
- "Stephens": 2300000000,
- "Sun Life": 17200000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Terracon": 77100000,
- "The Conservation Fund": 3900000,
- "The Dyrt": 4000000,
- "The North Face": 2000000000,
- "Thornton Tomasetti": 280000000,
- "Tim Hortons": 2800000000,
- "Timberland Regional Library": 20600000,
- "Tom's of Maine": 76200000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "Two Sigma": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Weathervane Seafoods": 100000000,
- "Weekly Packet": 6300000,
- "Whelen": 500000000,
- "Wild Willy's Burgers": 9000000,
- "Wiscasset Waterville and Farmington Railway": 17400000,
+ "Level8 Design Studio": 4300000,
+ "LightSide Media": 6000000,
+ "Linric": 29000000,
+ "Liquid Anvil": 1000000,
+ "LogicalVue": 19000000,
+ "Logically": 8900000,
+ "Lu Design Studios": 395000,
+ "Lunarpages": 2200000,
+ "MD Prospects": 1500000,
+ "MINEQL": 26800000,
+ "MPX": 21900000,
+ "MacBiz Consulting": 4600000,
+ "Magnolia Web Studio": 39100000,
+ "Maine Affordable Websites": 9600000,
+ "Maine Storage Plus": 44900000,
+ "Maine Technology Group": 3300000,
+ "Maine Total Technology": 31800000,
+ "Map Business Online": 17300000,
+ "MapsAlive": 112000,
+ "Marco Technologies": 400000000,
+ "Mason Associates": 46000000,
+ "Merrill Design": 33100000,
+ "Michael French Designs": 3500000,
+ "MicroCAD Training & Consulting": 2900000,
+ "MicroGenesis TechSoft": 100000000,
+ "Might & Main": 2300000,
+ "Miovision": 35000000,
+ "Mission Critical Email": 25000000,
+ "Molly B Designs": 22700000,
+ "Molly Hannah | Design": 36700000,
+ "Monahan Design": 24300000,
+ "Mosher Multimedia": 35200000,
+ "MultiNet Interactive": 22700000,
+ "NASHBOX": 3700000,
+ "National Government Services": 300000000,
+ "Net at Work": 53000000,
+ "Netsurit": 491000,
+ "Network Knowledge": 2800000,
+ "Nexus Software Systems": 436000,
+ "Nfina": 15300000,
+ "Nicole Victory Design": 4000000,
+ "North Point Technology": 562000,
+ "Northern Data Systems": 37800000,
+ "OSC Web Design": 5000000,
+ "Oakleaf Systems": 22500000,
+ "Occam Solutions": 9200000,
+ "Old Fort Software": 861000,
+ "Online Mooring": 14300000,
+ "OpenTech Services": 1500000,
+ "OrderLogix": 14100000,
+ "Ortoo": 2400000,
+ "PC Networks Services": 17900000,
+ "PICCs Plus": 14500000,
+ "Pacsoft": 6200000,
+ "Passerelle Data": 35000000,
+ "Peak Technology Consulting": 29800000,
+ "Pemaquid": 1800000,
+ "Perillon": 12500000,
+ "Perpetuating": 1200000,
+ "Pier Vantage": 6000000,
+ "Planson": 52000000,
+ "Plein": 3900000,
+ "Plixer": 25000000,
+ "Portland Webworks": 3900000,
+ "PowerMed": 13300000,
+ "Precise Design": 3700000,
+ "Pro AV Systems": 3700000,
+ "ProTraxx": 27500000,
+ "Productive Graphics": 31400000,
+ "QA Assistant": 6000000,
+ "Qualey Granite": 30100000,
+ "RainStorm": 26900000,
+ "Rapid River": 4600000,
+ "Redfin Solutions": 11700000,
+ "Redtail Technology": 26100000,
+ "Reliable Networks": 9800000,
+ "Rio Software": 32300000,
+ "Rising Helix": 15800000,
+ "Ronningen Design": 3400000,
+ "RoundTable Technology": 7000000,
+ "S. J. Rollins Technologies": 34900000,
+ "SIGNET Electronic Systems Inc.": 50000000,
+ "SOHO IT SERVICES": 20300000,
+ "Saco Bay Web Design": 5200000,
+ "Saco Design": 848000,
+ "Saddleback Software": 4100000,
+ "Scanpoint": 6000000,
+ "Schumacher creative design": 4600000,
+ "Scott Design": 24200000,
+ "Second Bay Studio": 33000000,
+ "Security Systems News": 7000000,
+ "ShardSecure": 2100000,
+ "Shayes Apps": 2000000,
+ "Sheltering Tree": 432000,
+ "Shoofly Creative": 3500000,
+ "SignUp Software": 3000000,
+ "Silverline Graphics": 35400000,
+ "Skart Designs": 16600000,
+ "Snow Pond Technology": 3500000,
+ "Soft Trac": 1800000,
+ "SoftPlan": 6600000,
+ "Software Point": 35000000,
+ "SoyPrintify": 11200000,
+ "Specops Software": 6700000,
+ "Standish Group": 5300000,
+ "Starlit Software": 4200000,
+ "Steinberger Sound Corp.": 7000000,
+ "Sterling VDR": 7000000,
+ "Steven Legge": 619000,
+ "Strategic Maintenance Solutions": 17200000,
+ "StratusBase": 367000,
+ "Sustain Fundraising": 23300000,
+ "SymQuest": 38300000,
+ "Syncopation": 13300000,
+ "T H Creations": 25800000,
+ "Taknology": 3000000,
+ "Talley-O Design": 1100000,
+ "Taplin Software": 2400000,
+ "Taurus Plus": 16900000,
+ "TeamLogic Inc.": 7200000,
+ "The Barrel Stave": 28500000,
+ "The Knightville Network": 10700000,
+ "The Plum Tree Group": 5000000,
+ "TheoremOne": 33500000,
+ "Thrive NextGen": 150000000,
+ "Timberwolf New Media": 4100000,
+ "Toderico Creative": 316000,
+ "Top Shelf IT Solutions": 2200000,
+ "Trademark Graphic Design": 21100000,
+ "Twinstate Technologies": 7600000,
+ "Uniquely Yours Web Services": 24900000,
+ "UniverseETconsulting": 426000,
+ "Unlimited Technology": 7800000,
+ "UpCodes": 2000000,
+ "VTECH SOLUTION": 10200000,
+ "Vacation Cottages- Blue Hill Maine's Premier Rental Agency": 2100000,
+ "Veritas Prime": 8100000,
+ "Verity Software House": 26000000,
+ "Vigilance Software": 5000000,
+ "Virtu Software": 39700000,
+ "Visual Integrity": 1400000,
+ "WGTech": 15500000,
+ "Wilderbydesign": 233000,
+ "Windhill": 5200000,
+ "WizTech": 2800000,
"Wolters Kluwer": 5400000000,
- "World Photography Organisation": 201000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "YMCA of the USA": 64100000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "Wood and Company Creative Marketing": 20100000,
+ "Worcester Technologies": 32500000,
+ "Young Adult Abuse Prevention Program": 2600000,
+ "Zait Media": 4700000,
+ "Zen Cart or Zen Ventures LLC.": 8400000,
+ "Zula Bell": 2300000,
+ "aizoOn": 40000000,
+ "datAvenger": 5100000,
+ "i-Comm Connect": 2000000,
+ "infoSpectrum": 422000
},
"Maryland": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AACOM": 2100000000,
- "ABC Supply": 12100000000,
- "ABMRF The Foundation for Alcohol Research": 4400000,
- "ABS Capital": 65000000,
- "ACE Cash Express": 600000000,
+ "22nd Century Solutions": 166300000,
+ "A Plus Technologies": 15500000,
+ "A&T Systems": 47000000,
+ "A-Tech Systems": 31100000,
+ "AB INNOVATIVE": 35000000,
+ "ADABTEK": 12500000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AIBS": 20100000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Accreditation Board for Engineering and Technology Inc.": 10000000,
- "Ace Hardware": 7800000000,
- "Acorn DVD": 4700000,
- "Acxiom": 1300000000,
- "Adcor Defense": 10000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alley Cat Allies": 24200000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alpha MOS": 13000000,
- "Alzheimer's Association": 81500000,
- "AmeriServ": 10000000,
- "America's Swimming Pool": 54600000,
- "American Academy of Sleep Medicine": 24300000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Society for Nutrition": 13100000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Ameritox": 10000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Analytica LLC.": 12200000,
- "Annapolis Transit": 10000000,
- "Apple Ford": 17700000,
- "Ardene": 38400000,
- "Arizona Public Service": 4300000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Aspen Institute For Behavior": 152100000,
- "Association for Financial Professionals": 10000000,
- "At Home store": 1700000000,
- "Atlantic Union Bank": 689200000,
- "Atotech": 1500000000,
- "Aubuchon Hardware": 128000000,
- "AutoGyro": 15000000,
- "AvalonBay Communities": 2000000000,
- "B.F. Saul": 92300000,
- "BAUSCH STROEBEL": 190000000,
- "BBYO": 15800000,
- "BEA": 148000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BW Papersystems": 300000000,
- "BYK Additives & Instruments": 1200000000,
- "Baja Fresh": 500000000,
- "Baltimore Heritage": 1100000,
- "Baltimore Leadership School for Young Women": 2900000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bengur Bryan": 38300000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bobby's Burger Palace": 10300000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
+ "ADSS Global": 38500000,
+ "ADVANSYS Pty Limited": 23000000,
+ "AETS Inc.": 14200000,
+ "AHCC Inc. Future Smart Solutions": 15200000,
+ "AKVARR": 18100000,
+ "ANALYGENCE": 10000000,
+ "ARG Inc.": 32900000,
+ "ASTC Advanced Storage Technology Consultants": 13100000,
+ "AVI-SPL": 1300000000,
+ "Acadia Cyber": 16200000,
+ "Access Global Tech": 37500000,
+ "Acclaim Technical Services Inc. ATS": 10000000,
+ "Accscient": 10000000,
+ "Addis Consulting": 17600000,
+ "Aditi LLC.": 21900000,
+ "Adnet Inc.": 16400000,
+ "Adsystech": 19900000,
+ "Advanced Automation Technology": 29300000,
+ "Advantage Industries": 47200000,
+ "Advantage Technology": 13100000,
+ "Aello Technology": 25400000,
+ "Affirmed Systems": 17000000,
+ "Alliance InfoSystems": 36600000,
+ "Alpha Omega Technologies Inc. - Enterprise Technology Solutions": 46200000,
+ "Anchor Software": 10000000,
+ "Anchor Technology": 25900000,
+ "AndraTech": 33100000,
+ "Anomalis Design": 11800000,
+ "Anunta Tech": 35000000,
+ "Apache OpenOffice": 10000000,
+ "Applied Business Services": 14800000,
+ "Applied Insight": 140000000,
+ "Arch Systems": 21300000,
+ "Archibikes": 47400000,
+ "Ascellon": 28500000,
+ "Assevero": 15200000,
+ "AsthaGen": 14000000,
+ "Atomicweb": 15400000,
+ "Aven\u00edu Brands": 33100000,
+ "Avid Systems": 13500000,
+ "Avolve Software": 23100000,
+ "Axis 80 Interactive": 15000000,
+ "BASE Solutions": 13300000,
+ "BIT Solutions": 19500000,
+ "BRMi": 19300000,
+ "BTG TECH": 24800000,
+ "Backup chain": 34100000,
+ "Baldwin Solutions": 26800000,
+ "Bar Code Software Inc.": 21400000,
+ "Bay State": 31900000,
+ "BayGo Group": 25700000,
+ "Bekwam": 14700000,
+ "Benefit align": 5100000,
+ "Berl Black": 20500000,
+ "Bert Jones": 31800000,
+ "Black Cat Systems": 21200000,
+ "Blackhawk Consulting": 21700000,
+ "Blue Star cybersecurity": 25000000,
+ "Boeing Intelligence & Analytics": 50400000,
+ "Booker DiMaio": 14800000,
"Booz Allen": 8800000000,
- "Bradford Exchange": 37000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "Boyce Systems": 25000000,
+ "Bright Beacon": 11700000,
+ "BroadPoint Federal": 17500000,
+ "Brooks Logic": 12900000,
+ "Business Web Development": 26500000,
+ "Buzzquake Marketing": 12400000,
+ "C Squared Systems": 26300000,
+ "C2 Technology Solutions": 25500000,
"CACI": 6200000000,
- "CBS": 3300000000,
- "CPSC": 10000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Camp Fire": 10000000,
- "Candlewick": 15000000,
- "Canton Railroad": 10200000,
- "Carroll County Public Schools": 378500000,
- "Catholic Medical": 3700000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Champion's Oncology": 54100000,
- "Charity water": 34000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Cici's": 18300000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Frederick": 5300000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clipper City Brewing Company": 10000000,
+ "CANDA Solutions": 10800000,
+ "CCEX": 23300000,
+ "CE Science": 32100000,
+ "CLAVIB": 10000000,
+ "CMIT Solutions": 60000000,
+ "CNF Technologies": 47000000,
+ "CP3 Designs": 50500000,
+ "CRG Studio": 25300000,
+ "CS2 LLC.": 35300000,
+ "Canton Group": 17200000,
+ "Canyon Beach": 30200000,
+ "Cardinality": 33000000,
+ "CargoTel": 24400000,
+ "Caruso Designs": 28300000,
+ "Celedon Partners": 33900000,
+ "Celerius": 19000000,
+ "Certified CIO": 12400000,
+ "Cilutions": 40700000,
+ "Clear Star International": 14700000,
+ "ClearShark": 40000000,
+ "Clooz": 28000000,
"CloudBolt": 23000000,
"Cloudera": 904800000,
- "Clyde's": 220000000,
+ "Cloudforce": 10000000,
+ "Coherent Logic": 10000000,
"CollabraSpace Inc.": 15500000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Congressional Country Club": 12900000,
- "Constellis": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cornerstone Research": 250000000,
- "Corporation Sealy": 1300000000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "D.P. Dough": 9400000,
+ "Collective Dance": 19100000,
+ "Compass MSP": 23000000,
+ "Compassionate Tax Service": 21800000,
+ "Computer Co-op": 39600000,
+ "Computer Intelligence": 17000000,
+ "Computer Packages": 15000000,
+ "Computer Technologies International Inc.": 26800000,
+ "Concert Technologies": 37000000,
+ "Connect4 Consulting": 37500000,
+ "Constellation Technologies": 28000000,
+ "Converge ITS": 23100000,
+ "Converge Networks": 25800000,
+ "ConvergeOne": 1600000000,
+ "Copeland Design Inc.": 12700000,
+ "CoreSphere": 22000000,
+ "Crawford Technical": 17900000,
+ "Creatiff Graphics Llc.": 10500000,
+ "Creative Network Design": 11900000,
+ "CyberCore Technologies": 163600000,
+ "CyberLynx": 11400000,
+ "Cybersecurity Guides": 15800000,
+ "Cyhosting": 19100000,
"D2L": 163600000,
+ "DC Information": 29500000,
+ "DCCA": 11500000,
"DDN": 70000000,
- "DELSEY": 46500000,
- "DEX Imaging": 284000000,
- "DISA": 120000000,
- "DJO Global": 1200000000,
- "DMI Inc.": 705000000,
- "DRW": 485000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dayton Superior": 65000000,
- "DeMatha Catholic High School": 31100000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "Dignity Memorial": 25000000,
- "District Taco": 35000000,
- "Dollar General": 35300000000,
- "EEOC": 10000000,
+ "DEL Software": 38100000,
+ "DESIGNFARM": 33700000,
+ "DIGITALshade": 19200000,
+ "DSA Inc.": 140000000,
+ "DSD Business Systems": 14000000,
+ "DSI Tech": 37200000,
+ "DST Technical Services Corporation": 57100000,
+ "Danben": 18900000,
+ "Data Image Group": 19000000,
+ "Data Networks": 30000000,
+ "Data Solutions & Technology Incorporated": 29800000,
+ "Dentisoft": 37200000,
+ "Design by Five": 14600000,
+ "Design for Context": 21400000,
+ "Digital Studios": 10200000,
+ "Diversified": 458900000,
+ "Dmi Services Llc.": 14000000,
+ "Dotsquares": 10700000,
+ "Dragonfly Design": 19100000,
+ "Dresner Group": 32500000,
+ "DynamicPDF": 10000000,
+ "Dynanet": 27400000,
+ "E-Com Systems": 25000000,
+ "E-Line Technologies": 31600000,
+ "E-Moxie Data Solutions Inc.": 43100000,
+ "EIH": 11300000,
+ "EMS Professional Software": 11700000,
"EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
+ "EZRA Technologies Inc.": 37500000,
+ "Eastland Data Systems": 36200000,
+ "Eastport Analytics": 27800000,
"Ecube Labs": 55000000,
- "Edelman Financial Engines": 80000000,
- "Edison Properties": 17000000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Elixir Strings": 16000000,
- "Elizabeth Seton High School": 31500000,
- "Embrace Home Loans": 180600000,
- "Endocrine": 7600000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "FCC": 5000000000,
- "FILA Luxembourg S.a.r.l.": 2400000000,
- "FLETC": 1200000,
- "FMC Indonesia": 5400000000,
- "FairVote": 18400000,
- "Farm Fresh Food & Pharmacy": 10000000,
- "FatFace": 244700000,
- "Federal Realty Investment Trust": 1000000000,
- "Ferrellgas": 2100000000,
- "Filtronic": 22100000,
- "First National Bank": 1300000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Electronic Commerce Connections": 10300000,
+ "Electronic Data Solutions": 44800000,
+ "Elicitek": 12000000,
+ "Ellumen": 11300000,
+ "Eloqui": 12800000,
+ "Ensoniq Corporation": 26100000,
+ "Expedient": 200000000,
+ "FCN Inc. Technology Solutions": 11400000,
+ "FEI Systems": 25200000,
+ "Farfield Systems": 14800000,
+ "Fasoo": 35400000,
+ "FastNeuron": 36100000,
+ "FedData": 25000000,
+ "Feddata Systems": 10000000,
+ "Fifth Power IT Consulting": 23400000,
"Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forman Mills": 296800000,
- "Foster Farms": 3000000000,
- "Framebridge": 14700000,
- "Fraternal Order of Police": 33900000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Financial Corporation": 1000000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "GP Strategies": 482000000,
- "GPO": 10600000,
- "Gaithersburg MD": 18700000,
- "Gallagher & Associates": 6000000,
- "GardaWorld": 3800000000,
- "Garrison Forest School": 4600000,
- "Gary Sinise Foundation": 4600000,
- "Gateway Newstands": 16600000,
- "Gemstone Publishing": 40200000,
- "GenOn Energy": 600000000,
- "Getir": 245000000,
- "Gilead": 27500000000,
- "Global Commercial Credit": 17600000,
- "GlobalStem": 1300000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gooseberry Patch": 14100000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Grant & Eisenhofer": 8600000,
- "GraphicAudio": 9000000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greenbelt Homes Inc.": 11200000,
- "Griggs": 47000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hackensack Meridian Health": 4500000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Hallberg-Rassy": 79400000,
- "Harbor Freight": 5000000000,
- "Haven Harbour": 19100000,
- "Hazelden Betty Ford": 186300000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Honeybee Robotics Spacecraft Mechanisms Corporation": 27000000,
- "Hoosier Tire": 181300000,
- "Horizon Therapeutics": 3700000000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hyattsville": 27800000,
- "Hydro": 21600000000,
- "IARPA": 15900000,
- "IHEARTMEDIA": 3800000000,
- "Immunocore": 122000000,
- "Industrial Bank": 25000000,
- "Integral Systems": 10000000,
- "International Organization of Masters Mates & Pilots": 19300000,
- "International Society for Performance Improvement": 18300000,
- "International Union of Bricklayers and Allied Craftworkers": 4300000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jesuit Volunteer Corps": 6100000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Josephites": 19600000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Kotak": 7500000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Laureate Education": 1200000000,
- "LeTip International": 12700000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Fitch & Company Inc.": 23200000,
+ "Forums America": 31500000,
+ "Foxhaven Associates": 13700000,
+ "Fugue": 15000000,
+ "G-Net Consulting": 39400000,
+ "GALINNO Technology Solutions": 52700000,
+ "GCOM": 150000000,
+ "GDIT": 7900000000,
+ "GMSI": 11300000,
+ "GRM Information Management": 100000000,
+ "Galaxkey": 120000000,
+ "Garett Group": 34700000,
+ "Genesis M.O.": 13300000,
+ "Giant Sprout": 34000000,
+ "Glade Creek Technology": 33100000,
+ "Global InfoTek": 27300000,
+ "Global Infrastructure Engineering": 35000000,
+ "GlobalNet Research Solutions": 25000000,
+ "Glotech": 21000000,
+ "GovBuys": 24300000,
+ "Government Services Group": 27000000,
+ "Graphic Detail": 12300000,
+ "Graphic Response": 15800000,
+ "Graphic Visions Technologies": 14100000,
+ "Gray Matters Technology Services": 15300000,
+ "Grill Graphic Design": 11500000,
+ "Grindstone Graphics": 28600000,
+ "Groff Creative": 18600000,
+ "Group Z": 20600000,
+ "HMG Technologies": 13600000,
+ "HPI International": 18000000,
+ "HRA ICP": 19300000,
+ "HTii": 16500000,
+ "Harbor City Services": 32600000,
+ "Hawkeye Technology": 31800000,
+ "Hayden Software": 13300000,
+ "Hennice": 48200000,
+ "Herald Technology": 23300000,
+ "Highrise Consulting": 13000000,
+ "Hill Associates": 18100000,
+ "Hixardt": 26000000,
+ "Holy Worldwide": 52500000,
+ "IBSS": 20000000,
+ "INKY Technology": 10000000,
+ "ISEC7 Government Services": 10000000,
+ "ITonDemand": 39500000,
+ "IVA Communications": 13400000,
+ "ImageBuilders Web": 54200000,
+ "InTerms": 23600000,
+ "Independent Security Evaluators": 26500000,
+ "Indersoft": 33600000,
+ "IndiSoft": 10000000,
+ "Inflash": 19000000,
+ "Infosys Network": 19700000,
+ "Infoweb Communications": 26300000,
+ "Infoworkz": 21100000,
+ "Innovative Automation Solution's": 22800000,
+ "Innovative Technology Consulting": 31200000,
+ "Innoviss": 25000000,
+ "Intact Technology": 46100000,
+ "Integris - Managed IT Services Houston": 43200000,
+ "IntelliGenesis": 32400000,
+ "Interactive Touchscreen Solutions ITS Inc.": 29300000,
+ "Interfusion Tech": 26300000,
+ "International Conference Management": 33000000,
+ "Internet Business Systems": 16500000,
+ "Internet Work Consulting Services": 15100000,
+ "Internicdomainnames": 38700000,
+ "Intersoft Data Labs Inc.": 25000000,
+ "Intertwine": 17500000,
+ "Intuitive Business Concepts": 75000000,
+ "Is Mavens": 20100000,
+ "Itguystech": 14200000,
+ "JH Graphics": 21800000,
+ "Jim Nuttle": 10500000,
+ "John Reed Stark": 31300000,
+ "Josh Clark": 42100000,
+ "Jupitech": 19100000,
+ "K. L. Ginter & Associates": 22400000,
+ "KMM Technologies": 12500000,
+ "KeyLogic": 26300000,
+ "Kindful": 10000000,
+ "Kite Technology Group": 32200000,
+ "KloudData": 16000000,
+ "Knowcean Consulting": 23800000,
+ "Kuta Software": 18300000,
+ "L&T Services": 12700000,
+ "LCG Technologies": 23500000,
+ "Language Works": 14800000,
+ "Lattice Group": 53200000,
"Level 3 Communications": 17500000000,
"LibLime": 3400000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Liquidity Services": 275200000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lutheran Immigration and Refugee Service": 10000000,
- "Lynden": 960000000,
- "M.C. Dean": 1000000000,
- "MASN": 17400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Macrogen": 77400000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Maryland Association of CPAs": 3200000,
- "Max Brenner": 33300000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "MedStar Health": 5600000000,
- "Medifast": 10000000,
- "Mellow Mushroom": 69000000,
- "Menchey Music": 9000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Partnership": 24200000,
- "Mimetas": 3500000,
- "Ministry of Supply": 6000000,
- "Mitchell & Titus": 20300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Morning star": 1900000000,
- "Motiva Enterprises": 20800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NABJ": 10000000,
- "NBC Sports": 120000000,
- "NCPC": 10000000,
- "NEA": 400000000,
- "NFTE": 11400000,
- "NNN REIT": 761800000,
- "NOAA Weather Radio": 36400000,
- "NOBCChE": 1200000,
- "National Black Catholic Congress": 22800000,
- "National Celiac Association": 3700000,
- "New Story Group LLC.": 17800000,
- "Nikola Corporation": 44000000,
- "Niles Barton": 9600000,
- "North Sails": 27500000,
- "Norwood School": 3700000,
- "Oblate Sisters": 6100000,
- "Ohl": 3300000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orano": 5400000000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "P. C. Richard & Son": 15100000,
- "PGCPS": 2400000000,
- "Pall Corporation": 2900000000,
- "Paris Baguette": 11200000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "Pepco - An Exelon Company": 4700000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Precigen": 138800000,
- "Premier Lacrosse League": 2000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Profit Investment Management": 16200000,
- "Progress Rail": 1500000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RSM US": 3300000000,
- "RadNet": 1400000000,
- "Radian": 1300000000,
- "Radius Travel": 25000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Reichle & De-Massari": 284900000,
- "Renkus-Heinz": 6900000,
- "RentHop": 1000000,
- "RepresentWomen": 1500000,
- "Rexair": 35000000,
- "Ride Entertainment": 19000000,
- "Ring of Honor": 8000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Rocket Lab USA Inc.": 186700000,
- "Rohde & Schwarz": 2600000000,
- "Roly Poly": 16400000,
- "Ron Jon Surf Shop": 18900000,
- "Rotel": 38800000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "Safe city": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
+ "Liquid Mercury Solutions": 35500000,
+ "LitPixels": 18700000,
+ "Litchko": 22900000,
+ "Loblolly Multimedia Productions": 20800000,
+ "Localist": 38300000,
+ "Locus Technology": 10500000,
+ "Lone Star Analysis": 18500000,
+ "Lyngsoe Systems": 51700000,
+ "MASON COMPUTER CONSULTING": 10800000,
+ "MCO Computer": 59700000,
+ "MILVETS": 21500000,
+ "MITC Software": 14200000,
+ "MS Technologies Corporation": 29900000,
+ "MSI Universal": 20200000,
+ "MSSI LTD.": 11400000,
+ "MTBW": 11200000,
+ "MTI Systems": 21400000,
+ "Mad Vine Media": 14900000,
+ "Magpie Graphic Design": 27700000,
+ "MaiaTech": 24400000,
+ "Main IT Services": 55000000,
+ "Mainstreet Systems": 32600000,
+ "MakeSite": 27100000,
+ "Mango Labs": 21600000,
+ "Mansai": 10000000,
+ "Marco Technologies": 400000000,
+ "Maryland Eye Associates": 28500000,
+ "Matrix Ingenuity": 25000000,
+ "Mavenspire": 12800000,
+ "Mechsoft": 10000000,
+ "MedCare Solutions": 13100000,
+ "MediSked": 10300000,
+ "Medisolv": 11200000,
+ "Melton Tech": 27900000,
+ "Meridian Solutions Group": 22200000,
+ "MicroDeveloper": 18400000,
+ "Mid Atlantic Systems": 24800000,
+ "Mid-Atlantic Crossroads": 48800000,
+ "Mindbreeze": 24900000,
+ "Mindgrub": 28000000,
+ "Mjach Designs": 13800000,
+ "Mulberry Technologies": 15500000,
+ "N2grate": 160700000,
+ "NGEN LLC.": 25500000,
+ "NOCTEST Security": 19900000,
+ "NPI Connect": 16500000,
+ "Neausys": 14200000,
+ "Netcordia": 2400000,
+ "Netops Solutions Inc\u00ae Inc.": 35000000,
+ "Netspective": 15800000,
+ "Network Analytics": 15900000,
+ "Network Specialty Group Inc.": 15400000,
+ "NewGen Technologies": 68600000,
+ "NexTech Solutions": 30000000,
+ "Nexagen": 30800000,
+ "NextConstruct": 14500000,
+ "Noraye": 26500000,
+ "Notion HQ": 30000000,
+ "Nu-Pulse": 29100000,
+ "Nucom Web Hosting": 11000000,
+ "Nye Design": 40800000,
+ "OAKTREEWEB": 25900000,
+ "OTView": 20500000,
+ "OakStream Systems": 14000000,
+ "Obsidian Solutions Group": 38000000,
+ "Ohio Technologies": 12700000,
+ "OndoTec": 21400000,
+ "OpSmart": 15000000,
+ "Open Technology Group": 19600000,
+ "Open311": 13300000,
+ "OpenPath Products": 21500000,
+ "OppTek": 45500000,
+ "Optimum Document": 12000000,
+ "PCTechSource": 31400000,
+ "PM America": 28700000,
+ "Paradigm Software": 11700000,
+ "Parfections LLC.": 23000000,
+ "Parriba Productions": 11600000,
+ "Peak Technology Solutions": 14300000,
+ "Peoples Comm": 13100000,
+ "Peterson Technologies": 33800000,
+ "Phantom Automated Solutions": 30700000,
+ "Pittelli": 33800000,
+ "Planet Technologies": 11600000,
+ "Platt & Company": 22600000,
+ "Pleiotek": 19500000,
+ "Plus Ultra Web": 24200000,
+ "Pointed Logic": 12800000,
+ "Praxis Engineering": 13000000,
+ "ProSync": 17100000,
+ "Process Integration": 34600000,
+ "Progent": 13200000,
+ "Prometheus Computing": 21200000,
+ "QuTech": 62900000,
+ "Quadtec": 10100000,
+ "Quick Stop Beer & Wine": 11100000,
+ "Quotient": 27400000,
+ "Quria": 21400000,
+ "RDA Corporation - Bellevue": 35000000,
+ "RL Goodworks": 25800000,
+ "RMS Omega": 23100000,
+ "RNK Technologies": 25900000,
+ "RTEC Services": 27500000,
+ "RTR Technologies": 22200000,
+ "Radius Technology Group": 12800000,
+ "Rand Solutions Group": 14900000,
+ "Rays TechServ": 45700000,
+ "Red Alpha": 20400000,
+ "Renaissance Systems Inc.": 24300000,
+ "Reonomy": 18300000,
+ "Resource Management Concepts": 12600000,
+ "Retro Graphics": 31300000,
+ "Richard Price Design": 17100000,
+ "RightDirection Technology Solutions": 29200000,
+ "Riverstone Enterprise Solutions": 36400000,
+ "Rockets are Red": 18100000,
+ "S4 LLC.": 29500000,
+ "SAIGS": 21800000,
+ "SCLogic": 16700000,
+ "SILVER CREEK SOLUTIONS": 26900000,
+ "SMX": 227600000,
+ "SQUAW Design Communications": 26900000,
"Salsa Labs": 18000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Santander Bank": 14800000,
- "Savills North America": 6000000,
- "Scotiabank": 14900000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Sheraton Hotels and Resorts": 3000000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simex-Iwerks Entertainment": 32400000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smith & Nephew": 5200000000,
+ "Sarfaraz Laleh DDS": 22500000,
+ "Sayers": 16000000,
+ "Sciolex": 20400000,
+ "Script 2 IT": 11700000,
+ "Secure Halo": 10000000,
+ "Select Computing": 10700000,
+ "Sensical Design": 12900000,
+ "Sericore": 25800000,
+ "Service Link Plus": 10000000,
+ "Shelter Studios": 18800000,
+ "Shoot the Moon": 32600000,
+ "Sigma Technology Partners": 14300000,
+ "Siri InfoSolutions": 17500000,
+ "Skyline Technology Solutions": 35000000,
+ "Smart Data Center": 10000000,
"Social Solutions": 34700000,
- "Sodexo": 22300000000,
- "Somerset Trust Company": 24900000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
+ "SoftDev": 21000000,
+ "SoftIce Corporation": 16000000,
+ "Softrams": 16000000,
+ "Software Aces": 27500000,
+ "Software4Advisors": 20700000,
+ "Solutions Delivery": 26800000,
+ "Sontiq": 20000000,
+ "SoramInfosystems": 21400000,
+ "Speridian": 220000000,
+ "Spinnaker Technologies": 18600000,
"Spokeo": 86000000,
- "St Lawrence County Historical Association": 13000000,
- "Standard Textile Company": 119500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steinway": 538400000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sun & Ski Sports": 15000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "T. Rowe Price": 6500000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tactical Air Support": 10300000,
- "Tandy Leather Factory": 81600000,
+ "Station 8": 15700000,
+ "Stellar Villas Inc.": 57800000,
+ "Sterling Solutions Ltd.": 16200000,
+ "Steve Rowlands": 24100000,
+ "Stoller": 24400000,
+ "Stova": 10000000,
+ "Strativia": 11700000,
+ "StratusVue": 10000000,
+ "Successware": 23200000,
+ "Swift Information Technologies": 25000000,
+ "Syscom Inc.": 10000000,
+ "Systalex": 17200000,
+ "System Analytics": 32500000,
+ "Systems Integration Inc. SII": 28700000,
+ "T&T Data Solutions": 30200000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TFC - The First Choice": 20800000,
+ "TICHEN": 22100000,
+ "TISTA Science & Technology": 165000000,
+ "TLCHost": 14000000,
+ "TMS Associates": 14700000,
+ "TNT-LABS": 19600000,
+ "TTCCO": 21600000,
+ "Tabs3": 12200000,
"Tanium": 525000000,
- "Taylor Farms": 2800000000,
- "Telcel": 2000000000,
+ "Tantus Tech": 28000000,
+ "Tech USA Government Solutions": 31000000,
+ "Tech Wizards": 39700000,
+ "TechGlobal": 37700000,
+ "TechIntelligence LLC.": 26000000,
+ "Technolutionary": 22200000,
+ "Technuf": 29700000,
+ "Tejora": 12400000,
+ "TekUltra": 26500000,
+ "Telesis Systems Inc.": 37900000,
+ "Tellenger": 12200000,
+ "Telnet Incorporated": 32700000,
"Telos company": 236800000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
"Tenable\u00ae": 577300000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Children's Inn at NIH": 26300000,
- "The Columbia Group": 10000000,
- "The European Institute": 4000000,
- "The First Line": 18800000,
- "The Humane Society of the United States": 30700000,
- "The Knot Worldwide": 350000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The United Services Automobile Association": 35600000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Tiffany's": 4400000000,
- "Tilghman Watermen's Museum": 20900000,
- "Tim Hortons": 2800000000,
- "Tipton Airport": 20900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Transunion Chile": 3600000000,
- "Trophogen": 10200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "UniverSoul Circus": 8700000,
- "Universities Space Research Association": 44200000,
- "University System of Maryland": 3600000000,
- "Upgrad": 300000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
- "VT Group": 185000000,
- "Vaccitech": 38200000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
+ "TerpSys": 11400000,
+ "Terranet": 30000000,
+ "The Bonacci Liberto Group At Cummings & Co. Realtors": 36100000,
+ "The Coleman Group": 11600000,
+ "Think VSS": 80000000,
+ "ThriveWell Tech": 11700000,
+ "Tim Kenney Marketing": 16000000,
+ "Top5 Option 3": 27800000,
+ "Torknet": 26900000,
+ "Total Control Business Solutions": 20300000,
+ "Total Voice & Data Solutions": 34900000,
+ "Tranzxn Inc.": 14200000,
+ "Tresys": 18700000,
+ "Tri-IT": 17800000,
+ "TriKat": 15400000,
+ "TrueNorth LLC.": 28300000,
+ "Trusted Knight": 15700000,
+ "TurningPoint Global Solutions": 42900000,
+ "Turnkey Technology": 14900000,
+ "Two Rider Design Inc.": 43200000,
+ "USA Free Space": 23600000,
+ "USTAS": 19300000,
+ "VIMRO": 16900000,
+ "Valhalla Data Systems": 18400000,
+ "Varen Services": 30400000,
"Verint Systems": 899800000,
- "VetDepot": 25000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "Visitation Academy of Frederick": 12500000,
- "Vocelli Pizza": 14000000,
- "Volkert": 124000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "W.C. and A.N. Miller": 11800000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Washington County Transit": 19300000,
- "Washington Hispanic": 10800000,
- "Washingtonian": 6800000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Whelen": 500000000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
+ "Vigord": 15600000,
+ "Virtual Manager": 35000000,
+ "Visible Thread": 23100000,
+ "Visionary Technology Consultants": 34200000,
+ "Visionist": 10000000,
+ "Visual Connections": 25600000,
+ "Volpe Information Technology Group": 32500000,
+ "Vulnerability Research Labs": 10300000,
+ "Wagner Consulting Services Incorporated": 34200000,
+ "Wallace Haines": 11500000,
+ "Washington Software": 14600000,
+ "Waypoint Networks": 12000000,
+ "WebParity": 10100000,
+ "Whitemarsh Information Systems": 33600000,
+ "Whitewood Assisted Living": 15800000,
+ "WinDrivers": 19600000,
"Wolters Kluwer": 5400000000,
- "Wondrium": 45600000,
- "WoodSpring": 150000000,
- "World Council of Fisheries Societies": 4700000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
+ "WonderWare Inc.": 16900000,
+ "Wyetech": 20400000,
+ "Xcase -": 37500000,
+ "Xybertech": 13800000,
+ "Your Way IT Solutions": 21700000,
+ "ZNet Tech": 17700000,
+ "ZemiTek": 12100000,
+ "archSCAN": 22800000,
+ "arzyNet": 67600000,
+ "eQ Technologic Inc.": 29800000,
+ "eSTS": 34700000,
+ "i-VisioNET": 19400000,
+ "i95Dev": 24000000,
+ "iP-PLUS": 15500000,
+ "iThreat": 12800000,
+ "iVision Consulting": 35000000,
+ "keys net LLC.": 28700000,
+ "nSoln": 15700000
},
"Massachusetts": {
- "3D International": 4000000000,
- "47 Brand": 125000000,
- "ABC Supply": 12100000000,
- "ACCO Brands": 2100000000,
- "ADM": 94400000000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ANRITSU": 864200000,
- "APM Monaco": 50000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "Abcam": 425500000,
- "AcademyHealth": 18600000,
- "Acadian Asset": 21000000,
- "Acxiom": 1300000000,
- "Adcole": 15000000,
- "Advanced Technology Ventures": 15500000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Alfa Aesar": 121000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alnylam": 960900000,
+ "AIGA": 2400000,
+ "AMC Bridge": 19600000,
+ "AVG": 200000000,
+ "Ab Ovo Nederland": 35000000,
+ "Abacus Group": 28500000,
+ "Ably": 10000000,
+ "Academy Computer Svc": 25600000,
+ "Accolade Technology": 28200000,
+ "Accusoft": 27000000,
+ "Acrolinx": 40000000,
+ "Adaptive Engineering": 70000000,
+ "Aetion": 35000000,
+ "Alliance Software Corporation": 22700000,
"Altair Engineering": 552600000,
- "Altra Industrial Motion": 1900000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American President Lines": 1300000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anbaric Development Partners": 10000000,
+ "Anoto": 8200000,
+ "Anvil Cloud Consultants": 13100000,
+ "AppRiver": 94600000,
"Appian": 447200000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Armenian Relief": 21700000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Asian CDC": 10000000,
- "Astellas": 10300000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
+ "AptusSoft": 42700000,
+ "Arena a PTC Business": 50000000,
+ "Assist One": 10300000,
+ "Astadia": 30200000,
+ "Athena IT Solutions": 15700000,
"Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "Aubuchon Hardware": 128000000,
"Auriga. Outsourcing Software Development.": 81000000,
- "Aurora Organic Dairy": 30100000,
- "AvalonBay Communities": 2000000000,
+ "Avacoda": 18300000,
"Avanade": 3900000,
- "Avon": 6200000000,
- "BAMBINO MIO LIMITED": 11200000,
- "BEACON HILL INSTITUTE FOR PUBLIC POLICY": 28500000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "BRAC BANK": 362300000,
- "Bain Capital": 1000000000,
- "Baird investment bank": 3400000000,
- "Balyasny Asset Management": 110000000,
- "Barnes & Thornburg": 575500000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Baystate Health": 2500000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Benchling": 50000000,
- "Bio-Rad": 2800000000,
- "Block & Leviton": 18900000,
- "Blue Marble Geographics": 11000000,
- "BlueLinx": 4600000000,
+ "AxcelX": 19700000,
+ "Azaya IT": 50400000,
+ "Aztech consulting": 20800000,
+ "Azurelink": 10000000,
+ "B K Design": 38200000,
+ "BKJ Productions Blog": 22900000,
+ "Banyan Software": 12000000,
+ "Barcode Data Systems": 20200000,
+ "Barkley Studios": 15700000,
+ "Barry Libert": 28500000,
+ "Benefits Science": 12000000,
+ "Beyond Web Design": 32500000,
+ "Big Red Rooster": 25900000,
+ "Bisson Creative": 30100000,
+ "Bitpipe": 35000000,
+ "Blue LAN Group": 18700000,
+ "Blues Wireless": 2000000,
+ "Board International": 150000000,
"Bon'App Inc.": 10000000,
- "Bonchon": 60000000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Boston Herald": 220000000,
- "Boston Housing": 47600000,
- "Boston Library Consortium Inc.": 25700000,
- "Boston Society for Architecture": 35100000,
- "Boston University": 2100000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brain Injury Association of America": 10000000,
- "Branch Line Press": 25400000,
- "Brandwatch": 61100000,
- "Breezeline": 300000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
+ "Boston Data Group": 11800000,
+ "Boston SoftDesign": 32200000,
+ "Brandfish": 39700000,
+ "Bright Star Engineering": 18100000,
+ "Broadberry Data Systems": 1500000,
"Buildium": 75000000,
- "Bureau Veritas": 5700000000,
- "Burton Snowboards": 400000000,
- "CBS": 3300000000,
- "CCL Industries": 4800000000,
- "CELINE": 600000000,
- "CTG": 375200000,
- "Cabot Cabot & Forbes": 35200000,
- "Cabot Corporation Foundation": 28000000,
- "Caffe Nero": 1500000000,
- "Callaway Golf": 3700000000,
- "Cambridge Public Schools": 15400000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Candlewick": 15000000,
- "Capital Power": 1900000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Chartered Alternative Investment Analyst": 18300000,
- "Cheap flights": 135800000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Chitika": 14200000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
+ "ByteBloc": 15800000,
+ "Bytes By Design": 10900000,
+ "CBW Graphic Design": 15400000,
+ "CGS27": 10000000,
+ "CLIN1": 18500000,
+ "CM4all": 27600000,
+ "COLUMBUS GLOBAL": 260400000,
+ "CSS Working Group": 5700000,
+ "Campaignercrm": 20100000,
+ "Care Everywhere": 10400000,
+ "Carli Inc.": 27100000,
+ "Carrison Design": 17600000,
+ "Cass Inc.": 24500000,
+ "Catamount": 43500000,
+ "Centella Consulting": 11900000,
+ "Cetrom": 26000000,
+ "Chemaxon": 1500000000,
+ "Clear Ballot": 10000000,
+ "ClearBridge Technology": 31900000,
"Cloudera": 904800000,
- "CoCo Fresh Tea & Juice": 15000000,
- "College Hunks Hauling Junk": 100000000,
- "Community Boating": 43400000,
- "Compass Group": 111500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Continental Automated Buildings Association": 10000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Cornerstone Research": 250000000,
- "Corning Glass Works": 14500000000,
- "CovalX Instruments Inc.": 48000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crane Currency": 700000000,
- "Crate & Barrel": 1600000000,
- "Credorax": 111000000,
- "Cresco Labs": 17700000000,
+ "CompTel Networks": 20300000,
+ "Computer Upgrades": 14600000,
+ "Computerworld": 40900000,
+ "Comtel Group": 15800000,
+ "Conoa": 25100000,
+ "Consistent Technologies": 11100000,
+ "Cranberry Creative Marketing & Design": 10500000,
"Crossbeam Systems": 75000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cyient Inc.": 575100000,
- "D. E. Shaw": 625000000,
- "Daily Gazette": 10200000,
- "Daily Hampshire Gazette": 25300000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Demiurge Studios Inc.": 15000000,
- "Desjardins Group": 15900000000,
- "DigBoston": 39000000,
+ "Crosscheck Networks": 36600000,
+ "Cyber 360 Solutions": 13900000,
+ "CyberSecOp": 10000000,
+ "DaCar Inc.": 70900000,
+ "Data 247": 28400000,
+ "Data Distributors": 21400000,
+ "Data Hub Boston": 23200000,
+ "DataOne Software": 20400000,
+ "Database WebWorks": 29600000,
+ "Daymark Solutions": 30000000,
+ "Delfigo Security": 46700000,
+ "DemandTec": 75000000,
+ "Design for Context": 21400000,
"Digital Realty": 4700000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dorel Industries": 2600000000,
- "Dow Jones": 1600000000,
- "Drexel Hamilton": 14800000,
+ "DigitalFyre": 12600000,
+ "Dimagi": 14800000,
+ "Dinkumware": 12400000,
+ "DirectDefense": 11200000,
+ "Displaydata": 21000000,
+ "DocHub": 1800000,
"Dubber": 17500000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
+ "Duco Technology": 10800000,
+ "Durateq": 15300000,
+ "Dynamic Control Software": 13900000,
"ECI": 48000000,
+ "ECLINICAL SOLUTIONS": 23100000,
"EPAM": 4500000000,
- "Eastman": 10600000000,
- "Eataly": 250000000,
- "Eaton Vance Corporation": 1700000000,
- "EcoLogic Development Fund": 18300000,
- "Edaville Family Theme Park": 12400000,
- "Edelman Financial Engines": 80000000,
- "Elevance Health": 153200000000,
+ "ESJ": 27100000,
+ "EditMe LLC.": 18100000,
+ "EditShare": 13400000,
"Endeca": 10000000,
- "Enterprise Car Sales": 40000000,
- "Equifax": 5100000000,
+ "Enevo": 8900000,
+ "EngageSmart": 258300000,
"Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "EverQuote": 417900000,
- "Evergreen Solar": 19400000,
- "ExxonMobil": 403200000000,
+ "Evergreen Data": 30300000,
+ "Excell": 18400000,
+ "Expedient": 200000000,
+ "Expertek": 10500000,
"FINEOS Corporation Ltd.": 71400000,
- "FIRST": 18700000,
- "FLEXcon": 400000000,
"FactSet": 1500000000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Federal Realty Investment Trust": 1000000000,
"Fiksu": 22700000,
- "Flaxwood": 11500000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Flybridge": 14000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Fortress Biotech": 77600000,
- "Fox Network": 3000000000,
- "Franklin Regional Transit Authority": 29000000,
- "Free Republic": 10000000,
- "Frette": 55700000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GLG Gerson Lehrman Group Inc.": 512500000,
- "GMAC": 25000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gateway Newstands": 16600000,
- "General Dynamics Mission Systems": 4400000,
- "Genuine Parts Company": 20500000000,
- "Getir": 245000000,
- "Gillette": 6000000000,
- "Global Commercial Credit": 17600000,
- "Golden Minerals": 28200000,
- "Gordon Food Service": 16000000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H.I.G. Capital": 7000000000,
+ "Fluent Mobile": 22700000,
+ "Focus Data": 16600000,
+ "FolioMed": 44800000,
+ "Formedix": 10500000,
+ "Free Your Mind Organizing": 36700000,
+ "Generic Logic": 28000000,
+ "Ginger Software": 10000000,
+ "Graphisoft": 93000000,
"HCL Tech": 12000000000,
- "HOYTS": 450000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
- "Haemonetics": 1100000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hascol": 1200000000,
- "Hazelden Betty Ford": 186300000,
- "Hearts On Fire": 13100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Holland America Line": 300000000,
- "Holyoke Gas & Electric": 22300000,
- "Hudson": 2000000000,
- "Hudson River Trading": 35000000,
- "ICICI Bank": 18100000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IDG Capital": 25000000,
- "IDG Ventures": 15200000,
- "IHEARTMEDIA": 3800000000,
- "Intralink": 29600000,
+ "Harley Freedman": 28400000,
+ "Hexaware": 971000000,
+ "Holman Insurance Agency Inc.": 20600000,
+ "ITCentral Inc.": 10900000,
+ "Iconsoft": 27600000,
+ "InfoPay": 29700000,
+ "InfoSort Systems": 39400000,
+ "Informatica": 1500000000,
+ "Inside HPC": 10000000,
+ "Integrated Media Technologies Inc. IMT": 100000000,
+ "InterVision": 19000000,
+ "Interact2Day": 19000000,
"Ipswitch Inc.": 75000000,
- "Iron Mountain Incorporated": 5000000000,
- "JA Worldwide": 307000000,
- "JLG Architects": 10000000,
- "Jabil": 33500000000,
- "Janssen Global Services": 45600000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Dewey Academy": 31100000,
- "John Hancock Financial": 9500000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "KBR": 7700000000,
+ "Itzkowitz Herbert H CPA": 20000000,
+ "JJTECH Computer": 15500000,
+ "Jempros": 51200000,
+ "Joatmon": 15900000,
+ "KLY Creative": 15800000,
+ "Kadansky": 26800000,
"Kainos": 397300000,
- "KarmaLoop": 130000000,
- "Kelly Services": 5000000000,
- "Kelso & Company": 43000000,
- "Kemet Electronics Services": 1600000000,
- "Kerry Group": 8500000000,
- "Kimball International": 635100000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kwik Shop": 595000000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LG Chem": 37200000000,
- "LSEG": 9500000000,
- "Landmark Worldwide": 29100000,
"LaunchDarkly": 36000000,
- "Lauterbach company": 22500000,
- "Leidos Holdings Inc.": 13700000000,
- "LendingClub Corporation": 1200000000,
- "Leoni Special Cables": 5400000000,
- "Lerch Bates": 19500000,
+ "LearningBrook": 18300000,
+ "Lee Su": 10500000,
"Level 3 Communications": 17500000000,
- "Liberty Bay Credit Union": 28600000,
- "Liberty Mutual": 48200000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Louis Vuitton": 14000000000,
- "Lufthansa Cargo": 3400000000,
+ "Lexalytics": 17000000,
+ "Lightcast": 21000000,
+ "Lincoln Whitman Group": 21900000,
+ "Linguamatics": 3100000,
+ "LiveChat": 60600000,
+ "Loring Web Services": 19700000,
+ "Luminoso": 8000000,
"MEGA International S.A.": 47000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Man Group": 1500000000,
- "Manatt": 336800000,
- "Mandarin Oriental": 1100000000,
- "Marks and Spencer": 14300000000,
- "Marlow Industries": 1500000000,
- "MassChallenge": 22000000,
- "MassLive": 19800000,
- "Massachusetts Medical": 130500000,
+ "MY REGISTRY": 5000000,
+ "MaibornWolff": 48000000,
+ "Making Sense": 11800000,
+ "MarCom Capital": 24400000,
+ "Marblehead Chiropractic": 30200000,
+ "Marita Froimson Design": 13400000,
"Mastech Digital": 211700000,
- "Max Brenner": 33300000,
+ "MaxMind": 3200000,
+ "Maxima Consulting": 27300000,
+ "McAfee": 2200000000,
"Medallia": 477200000,
- "MediaTek": 17900000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Methuen High School": 34200000,
- "Milliman": 1200000000,
+ "Mediumbold": 12700000,
+ "Melillo": 75000000,
+ "Mend SCA.": 28200000,
+ "Merrimax": 12200000,
+ "Mill City Web Design": 16500000,
"Mimecast": 575300000,
- "Mineralogical Society of America": 34700000,
+ "Mirakl": 100000000,
"ModelSheet": 47300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
"Monotype": 304000000,
- "Monster": 880000000,
- "Morgan Technical Ceramics": 1400000000,
- "MorphoSys": 256200000,
- "Morrison Foerster": 1200000000,
- "Mountain Warehouse": 50000000,
- "MullenLowe": 150000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NABET-CWA": 13400000,
- "NBA": 7900000000,
- "NBC Sports": 120000000,
- "NBT Bank": 30100000,
- "NIDEC": 15600000000,
- "NSF": 300000000,
- "NYSEG": 800000000,
- "Natera": 776000000,
- "Neiman Marcus": 2600000000,
- "Net2Phone": 185000000,
+ "Moth Design": 17200000,
+ "My ePersona": 16100000,
+ "Myers Information Systems ProTrack TV and Radio software": 44500000,
+ "NCGIT": 32300000,
+ "NeoXam": 58200000,
+ "Net at Work": 53000000,
"NetApp": 6500000000,
- "NetJets": 816000000,
+ "NetWitness": 11300000,
+ "New England IT Associates": 32200000,
+ "Nexthink": 100000000,
"NorthBay Solutions": 22000000,
- "Northfield Mount Hermon": 11200000,
- "Novacam": 10000000,
- "OMG": 22500000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
+ "Nova Software": 36500000,
+ "Novick Software": 14400000,
+ "Nuxeo": 31600000,
+ "OMS SafeHarbor": 16900000,
+ "ONPAGE": 3300000,
+ "One Door": 59400000,
+ "OneShield": 45000000,
+ "Open311": 13300000,
"OpenEye": 30000000,
+ "OpenLink Software": 10000000,
"Orion Health": 150000000,
- "Orrick": 975000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Oxford Properties": 45000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pall Corporation": 2900000000,
- "Pan Am Railways Inc.": 1000000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Payden": 10000000,
+ "OutSystems": 200000000,
+ "Outsight Interactive": 23300000,
+ "PENFACT": 34700000,
+ "PGZ Design": 14300000,
+ "PSDtoDrupalDeveloper": 17500000,
+ "Packet360": 10000000,
+ "Pagos Inc.": 29000000,
+ "Paramantra": 40200000,
"Payscale": 180000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pentucket Regional School District": 20600000,
- "Perkins&Will": 670300000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pimsleur Language Programs": 30000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plug Power": 571200000,
- "Polar Beverages": 50000000,
- "Precigen": 138800000,
+ "Pet Sit Click": 28400000,
+ "Pinpoint Systems": 35000000,
+ "Precision Solutions Group": 10000000,
"Preservica": 13200000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
+ "Process Software": 13800000,
"Procore": 664300000,
"Publicis Sapient": 2700000000,
- "Pyramid Management Group": 29000000,
- "Quad Metalworks": 3100000000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "REISS": 298800000,
- "RR Auction": 36500000,
- "RSM US": 3300000000,
- "RTB House": 120000000,
- "Ravelry": 28700000,
- "RepTrak": 45000000,
- "Rimac Automobili": 28200000,
- "Riverside Partners": 14400000,
- "Robertson Airport": 10000000,
- "Rolls-Royce": 15300000000,
- "Rosetta Stone": 182700000,
- "Russell Investments": 566500000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "R\u00f6hlig Logistics": 36500000,
- "S&P Global": 8200000000,
+ "Pyramid Networking Group": 12400000,
+ "Q3 Technologies": 30800000,
+ "Quadrant Software": 10400000,
+ "RCG Global Services": 90000000,
+ "RSA Conference": 17000000,
+ "Red Bend Software": 3000000,
+ "Reversing Labs": 20000000,
+ "Rheal": 35000000,
+ "RoadMap Technologies": 13800000,
+ "Rome Technologies Inc.": 19400000,
+ "SAI ENTERPRISE": 18700000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMTC Corporation": 250000000,
- "SOM": 274700000,
- "SVB Securities": 25000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Schunk Group": 1500000000,
+ "SAPinsider": 37500000,
+ "SMS Data Products Group Inc.": 20000000,
+ "Sagewell": 25600000,
"Seagate Technology": 9400000000,
- "Seaman Paper Company of Massachusetts Inc.": 48900000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Sermo": 51200000,
- "Sherborne Sensors": 35000000,
- "Shofur": 23900000,
- "Sightsavers'": 56000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
+ "Secure Halo": 10000000,
"Silk": 100000000,
- "Simon & Schuster": 814000000,
- "Sisters of Charity of Saint Vincent de Paul": 23000000,
- "Skyhook": 17000000,
+ "Siltek Corporaiton": 22600000,
+ "Simul8": 10000000,
+ "Siri InfoSolutions": 17500000,
+ "Sitara Networks": 31200000,
+ "SmartBear": 150000000,
"Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
"Snowflake": 1900000000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
+ "Snyk": 61900000,
"SoftServe": 570200000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spark Capital Partners LLC.": 10100000,
- "Sprague Energy": 4300000000,
- "St. Francis House": 11700000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Street": 12100000000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stoughton High School": 19200000,
- "Suit Supply France SARL": 350000000,
- "Summit Partners": 71700000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sun Pharma": 5600000000,
- "SunSetter LLC.": 55300000,
- "Sweaty Betty": 244400000,
- "Sylvan Learning": 12600000,
+ "Sontiq": 20000000,
+ "Steve Bjorkman": 12200000,
+ "Stonewall Solutions": 11200000,
+ "StrategicERP": 20000000,
+ "Stroz Friedberg": 31500000,
+ "Sumtotal Systems LLC.": 120000000,
+ "Sunnyside Child Care Center": 23100000,
"Symbotic": 30000000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "TM Capital": 12000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "Taunton Daily Gazette": 12300000,
- "Taunton Municipal Lighting Plant": 99000000,
+ "SynchroSystems": 24800000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tahoe Designer - Apps Branding UX": 32100000,
+ "Talon.One": 15000000,
+ "Tanisha Systems": 170000000,
+ "Taurus Plus": 16900000,
"Teach Town": 25000000,
- "TechCrunch": 525000000,
- "Telestial": 19000000,
- "Tempur-Pedic": 24700000,
- "Teneo": 400000000,
- "Teradyne": 3300000000,
- "The Art of Shaving": 45000000,
- "The Brattle Group": 241000000,
- "The Channel": 25000000,
- "The First Line": 18800000,
- "The Heights": 11600000,
- "The Melting Pot": 31500000,
- "The Newman School": 18200000,
- "The Sun Chronicle": 21200000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tilting Point Media LLC.": 53000000,
- "Tim Hortons": 2800000000,
+ "Teikametrics": 22500000,
+ "Tekno Craft": 29100000,
+ "Tempo Software": 24000000,
+ "Tessian": 18900000,
+ "Texcel": 13600000,
+ "The Carbon Project": 19900000,
+ "The Hanover Company": 35900000,
+ "The Org company": 2000000,
+ "Tibersoft": 234700000,
+ "Tickner Design": 26500000,
+ "Tidewinds": 28300000,
+ "Tomorrow": 15000000,
"Topcoder Inc.": 34000000,
- "Trelleborg": 3000000000,
- "Trinity Lutheran College": 18400000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMass Amherst": 250000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Ultragenyx": 363300000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union of Concerned Scientists": 15400000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of the Middle East Project": 15800000,
- "Untappd": 10000000,
- "Upromise Inc.": 10700000,
- "VCA Inc.": 1800000000,
- "VFS Global": 559000000,
+ "Trihedral Engineering": 6000000,
+ "UNICOM Engineering": 240000000,
+ "USU": 141700000,
+ "UpStream Global Services": 30100000,
+ "Ushur": 10000000,
+ "VIS PER": 23000000,
+ "VIStology": 15700000,
"VMware": 13200000000,
- "VT M\u00c4K": 100000000,
- "Valpak": 43500000,
+ "Valora Technologies": 15000000,
+ "Verbella": 22200000,
"Verint Systems": 899800000,
- "Viasat": 2800000000,
- "Victim Rights Law Center": 17300000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vision Source": 11700000,
- "Vistra": 600000000,
- "Vladar": 10000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wellington Management": 1000000000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "Wilson Sonsini": 860000000,
- "Wing-Time": 37200000,
+ "Verivo": 20000000,
+ "Verocel": 12700000,
+ "Vi3": 33000000,
+ "Vivaldi Technologies": 6000000,
+ "Welsh": 70200000,
+ "Whalley Computer Associates": 46900000,
+ "Wiiisdom": 369000,
+ "Winslow Technology Group": 36500000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "Wounded Warrior Project": 15300000,
- "XMS Capital Partners": 23500000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YET2": 20000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "ZERO VFX": 25400000,
- "Zumiez": 1100000000,
- "iHire": 15900000,
- "iRobot": 1300000000
+ "Wonk": 20500000,
+ "Wrycan": 15600000,
+ "Xait Ltd.": 159000,
+ "Xinonix": 13900000,
+ "aPriori Technologies": 20000000,
+ "airSlate": 75000000,
+ "parcelLab": 12500000,
+ "skyBuilders": 23200000,
+ "xDev Software": 13800000,
+ "xFact": 23000000
},
"Michigan": {
- "123NET": 25000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "3DInsights": 35000000,
+ "ACE-E": 40400000,
+ "ACTS OF LOVE HOME COMPANIONS LLC.": 13400000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ASIMCO Technologies": 28300000,
- "ATF": 1000000000,
- "AUSA": 23000000,
- "AVL List": 2100000000,
- "Ace Hardware": 7800000000,
- "Acrisure": 3800000000,
- "Acxiom": 1300000000,
- "Adcole": 15000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Alliance For Automotive Innovation": 10000000,
- "Allied Universal": 20000000000,
- "Allison Transmission": 2700000000,
- "Alpena County Regional Airport": 32700000,
- "Alpine Electronics": 2500000000,
+ "AIT Systems": 21600000,
+ "AMB Systems": 10200000,
+ "AMICUS Software": 28500000,
+ "APPLIED COMPUTER TECHNOLOGIES INC.": 37400000,
+ "ARK Technologies": 49300000,
+ "ATI Consulting": 40500000,
+ "AWUG": 19900000,
+ "Absolute Business Technology Solutions LLC.": 18800000,
+ "Absware": 57200000,
+ "Advanced Industries": 31600000,
+ "AdvantageCS": 22900000,
+ "Advent Design": 11700000,
+ "Advizex": 240000000,
+ "Aetistry": 10000000,
+ "Affinity Marketing Services": 28700000,
+ "Agate Software": 31400000,
+ "Agillence": 22200000,
+ "Algomus Inc.": 10000000,
+ "Allpro Technology": 32500000,
+ "Alphatronics": 11700000,
+ "Alpine COMPUTERS": 35300000,
"Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Mathematical": 10300000,
- "Amway": 8800000000,
- "Amway North America": 9500000000,
- "Arconic": 9000000000,
+ "AmeriNet": 42600000,
+ "AmeriScan Imaging": 14200000,
+ "American Associates REALTORS": 19500000,
+ "American Business Solutions": 17200000,
+ "Amerisoftonline": 17200000,
+ "Ampcus": 72800000,
+ "Anne Keenan Higgins": 11900000,
+ "Anvil & Hammer": 49200000,
+ "Apexon": 75000000,
+ "AppRiver": 94600000,
+ "Applied Automation Technologies": 26500000,
+ "Apps Solutions": 14100000,
+ "Arbor Image": 32800000,
+ "Arbor Internet Technologies": 34800000,
"Argus Cyber Security": 22000000,
- "Armenian Evangelical Church": 30900000,
- "Arotech": 91300000,
- "Artistry": 13200000,
- "Association of American Physicians": 35500000,
- "At Home store": 1700000000,
- "Atotech": 1500000000,
- "Atria Senior Living": 778500000,
- "Australian Laboratory Services": 6600000000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Axalta": 4100000000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BUILDON": 20300000,
- "Baird investment bank": 3400000000,
- "Baker Perkins": 53900000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bay Metro": 34900000,
- "Beckman Coulter": 2100000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bertelsmann SE & Co. KGaA": 20800000000,
- "Between the Lines": 12200000,
- "Big Boy Restaurants": 26600000,
- "Blick Art Materials": 245200000,
- "Blue Water Area Transit": 50700000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
+ "Arivium": 14600000,
+ "Ascent Technologies": 28400000,
+ "Authen2cate": 35000000,
+ "Autient": 59700000,
+ "Autissimo": 15800000,
+ "Auto Knowledge": 33500000,
+ "Avail Company": 4200000,
+ "Avalon Document Services": 16800000,
+ "Avalon Technologies": 15800000,
+ "Awake Technologies": 25000000,
+ "B&L Information Systems": 27200000,
+ "BOB Moving and Storage LLC.": 16000000,
+ "BOLD Technologies Computer Services": 47900000,
+ "BPI Information Systems": 14300000,
+ "BS&A Software": 35000000,
+ "Baker Publishing Co.": 31200000,
+ "Baygull Studios": 36500000,
+ "Beach Head Inc.": 11800000,
+ "Ben Sayers": 51300000,
+ "Bhrigus": 35000000,
+ "Big Water Media": 17600000,
+ "Bizhand": 12200000,
+ "Black Ice Slipmats": 10400000,
+ "Blue Net Corporation": 23000000,
+ "Blume Design": 19800000,
+ "BoogieTools'": 12400000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Boys & Girls Clubs of America": 320000000,
- "Bradford White": 300000000,
- "Breitling": 588300000,
- "Brewery Collectibles Club of America": 25800000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "Bosch Global Software Technologies Private Limited": 910000000,
+ "Breached Systems": 11800000,
+ "Brendel Associates": 22000000,
+ "Bright Ideas Technology": 32500000,
+ "Bright Star Engineering": 18100000,
+ "Browser Kings": 21800000,
+ "C D S Computers": 20300000,
+ "CADworks Solutions Inc.": 22400000,
+ "CBI A Converge Company": 87600000,
+ "CBTS": 75000000,
"CDW": 23800000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cabot Corporation Foundation": 28000000,
- "Cambium Learning Group": 160000000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Capital Impact": 10000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carpenter Technology": 2400000000,
- "Casella": 1100000000,
- "Center for Autism": 500000000,
+ "CIGNEX": 74300000,
+ "CNSI": 200000000,
+ "COGENT IBS": 13000000,
+ "COLUMBUS GLOBAL": 260400000,
+ "COMPLETE DATA PRODUCTS INC.": 18800000,
+ "COMPUTER INTERNATIONAL": 21100000,
+ "Cadmium Design Studios": 13500000,
+ "CamNet Inc.": 13600000,
+ "CanBusHack": 80000000,
"Ceros": 25000000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "College Hunks Hauling Junk": 100000000,
- "Colon Community Schools": 33000000,
- "Comau": 1900000000,
- "Concord Community School District": 24800000,
- "Conrad Machine": 26600000,
- "Consolidated": 1200000000,
- "ConsumersCU": 11700000,
- "Contemporary Amperex Technology Co. Limited": 20500000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Cooley": 2000000000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Credit Union Family Service Center": 17200000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "DECTRIS": 38500000,
- "DENSO CORPORATION.": 43500000000,
- "DLA": 3600000000,
- "Daily Press": 10000000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dematic": 3200000000,
- "Desigual": 975000000,
- "Detroit Beer": 12000000,
- "Detroit Waldorf School": 18600000,
- "Detroit Water and Sewerage Department": 10000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "E tools": 45800000,
- "ESR Technology": 30000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Egnater amps": 45100000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elring Klinger": 1800000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
+ "Certified Network Consultants LLC.": 28000000,
+ "ChainSys": 70000000,
+ "Chelsea State Bank": 27200000,
+ "Chikli": 14700000,
+ "ChoiceTel": 18900000,
+ "Churchill Systems": 13200000,
+ "Cimulus Software Development": 18500000,
+ "City Insight": 10500000,
+ "Climate Pros": 53000000,
+ "Columbus International Corporation": 12200000,
+ "Commspec": 18900000,
+ "Communications Professionals": 16400000,
+ "Community Center for Churches": 70000000,
+ "Comnet": 32700000,
+ "Competitive Analytics Professionals LLC.": 10200000,
+ "Compusoft-is": 20800000,
+ "Computer System Services": 21000000,
+ "Computer Technologies Inc. - Computer Support Troy": 18900000,
+ "Computer Ties": 12200000,
+ "Computers Complete": 13400000,
+ "Comsoft Business Solutions": 30200000,
+ "Conflux Systems": 30300000,
+ "ConnectingBlox": 12200000,
+ "Control's Force": 13100000,
+ "CoreTechnologie": 21500000,
+ "Corporate Technologies": 38700000,
+ "Council Thrift Shop": 18400000,
+ "Cranking Graphics": 20300000,
+ "Creative At-large": 32100000,
+ "Creative Lifestyles": 28700000,
+ "Creative Many": 13000000,
+ "Creative Resources Graphics": 45500000,
+ "Creek Enterprise": 48500000,
+ "Crestwood Associates": 16100000,
+ "Crystal Clear Solutions": 47700000,
+ "Crystal Lightning": 26000000,
+ "CxT Group": 24800000,
+ "Cyberlogic": 25800000,
+ "DTA Enterprises": 28400000,
+ "Data Direction": 23800000,
+ "Data Management Technology Inc.": 38100000,
+ "Data Partner Inc.": 22200000,
+ "Datanational": 11300000,
+ "DaySmart": 19900000,
+ "Design One Media Group": 32100000,
+ "Designers & Partners": 12600000,
+ "Designs Connexion": 45100000,
+ "Designs N Signs": 19600000,
+ "DeskTop Business Solutions": 32600000,
+ "Dewpoint": 24400000,
+ "DexTechnologies LLC.": 33700000,
+ "Diagnostic Innovations": 24300000,
+ "Diconium": 35000000,
+ "Digiliant": 36600000,
+ "Digital Active": 24200000,
+ "Dimension Systems": 28800000,
+ "Dimensional Control Systems": 10000000,
+ "Dinsmore Group": 16100000,
+ "Divergent Designs": 12500000,
+ "Dmi Services Llc.": 14000000,
+ "Dongan Electric Manufacturing Company": 21400000,
+ "DornerWorks": 11200000,
+ "Dowling Data Consulting": 10300000,
+ "Doxim": 67000000,
+ "Dream Worx Inc.": 37400000,
+ "Dura-Sys": 18800000,
+ "Dynamic System Solutions": 26000000,
+ "EC Group International": 24800000,
+ "EPMI": 10000000,
+ "EQUIVANT": 1500000000,
+ "EZClaim": 20800000,
+ "Edibar": 29900000,
+ "Elektrobit": 279000000,
+ "Embedded Logix": 19000000,
+ "Endless Visions": 11200000,
+ "Enertron": 22500000,
+ "Engineered Software": 47100000,
+ "Enigma Creative": 21000000,
+ "Ensure Technologies": 18800000,
+ "Envizion": 16800000,
"Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Evrensel": 16800000,
- "Exact Data": 20000000,
- "FIAMM": 46400000,
- "FIRST": 18700000,
- "FRC": 53800000,
- "Farmer Brothers": 469200000,
- "FatFace": 244700000,
- "Fathead": 14700000,
- "Federal Realty Investment Trust": 1000000000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
+ "Eslick ART": 22100000,
+ "Evalon": 14000000,
+ "Everything MSP": 26300000,
+ "Evigia": 11900000,
+ "Ex Libris": 7000000,
+ "FM Systems": 35000000,
+ "Felder Design": 32300000,
+ "Fine Point Design": 23000000,
+ "Fire development": 17800000,
"Fiserv": 17700000000,
- "Flagship Credit": 18300000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forman Mills": 296800000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Garrett Motion": 3600000000,
- "Generac Power Systems": 4600000000,
- "General Dynamics Land Systems": 3000000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gentherm": 1100000000,
- "Genuine Parts Company": 20500000000,
- "Gill Industries": 55100000,
- "Gilson Graphics Inc.": 17400000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Godwin Heights Public Schools": 12400000,
- "Golder Associates Inc.": 1000000000,
- "GolfWRX": 10000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Graham Media Group": 600000000,
- "GreatSchools": 11000000,
- "Grenzebach": 52000000,
- "Griggs": 47000000,
- "Grindline Skateparks": 27600000,
- "Guardian Alarm": 400000000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
+ "Flairsoft": 27700000,
+ "Fleet Cost & Care": 17700000,
+ "FocusOne": 21400000,
+ "Franklin Road Christian School": 25200000,
+ "Freedom Club": 27700000,
+ "Freedom Technologies": 10000000,
+ "Fresh Coast Solutions": 53300000,
+ "Fubeus": 18600000,
+ "Full Circle Graphics": 12000000,
+ "Full Frontal Ingenuity": 25500000,
+ "Funduc": 20400000,
+ "Fusion IT": 27400000,
+ "GSales-aweber": 25000000,
+ "Galaxy Gig": 17900000,
+ "Galaxy Soft": 11400000,
+ "Galesburg-Augusta Schools": 36900000,
+ "Gandhavalla Informatics P": 39400000,
+ "Garrett Burke": 20400000,
+ "Garrison Digital Solutions": 10900000,
+ "Geeks 4 Rent": 51300000,
+ "Gene Codes": 7000000,
+ "Genius Solutions": 35000000,
+ "Gillware": 10800000,
+ "Global Computers & Networks": 14600000,
+ "Global Point IT Solutions": 34400000,
+ "Global Tech Gig": 33100000,
+ "Grand View Golf Course": 31300000,
+ "Granite Networks": 16000000,
+ "GrayWorks": 13400000,
+ "GreenByte Technologies": 35000000,
+ "GroundWork Open Source": 13600000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Hakim Optical Laboratory Limited": 19900000,
- "Hall Render": 10700000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanes": 6200000000,
- "Hanna Instruments": 220000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Harness IP": 80000000,
- "Haworth": 2300000000,
- "Healthcare Information and Management Systems Society": 88500000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Houghton County Memorial Airport": 20300000,
- "House of Flavors": 31400000,
- "Hughes Network Systems": 2000000000,
- "Huhtamaki": 53200000000,
- "Hydro": 21600000000,
- "ICC": 75000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IU Health": 7900000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Innovative Interfaces": 750000000,
- "International Society for Performance Improvement": 18300000,
- "Inventors": 10000000,
- "Invest Financial Corporation": 290000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kalitta Air": 200000000,
- "Kelly Services": 5000000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Kmart Corporation": 6000000000,
- "Knight Foundation": 12800000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Koppers": 2000000000,
- "Kroll": 3000000000,
- "Kvadrat A/S.": 35000000,
- "L.K. Bennett": 91700000,
- "L.L.Bean": 1600000000,
- "LG Chem": 37200000000,
- "Ladies' Library Association of Kalamazoo": 23100000,
- "Lake Michigan Credit Union": 368600000,
- "Lakeshore Entertainment": 30000000,
- "Landmark Worldwide": 29100000,
- "Lansing School District": 177000000,
- "Leader Dogs For the Blind": 10000000,
- "Lee's Famous Recipe": 10100000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Leo Burnett Company Inc.": 1500000000,
- "Leoni Special Cables": 5400000000,
- "Lerch Bates": 19500000,
+ "HEATHER BODDY": 26100000,
+ "HJ Software": 38700000,
+ "Harbor Software International": 40300000,
+ "Health Care Data Partners": 17400000,
+ "High-Tech Video TV Services": 25800000,
+ "Hungerford": 13600000,
+ "Huntington Technology": 13600000,
+ "INDIGO Health Partners": 38800000,
+ "INTERNETHUT": 14400000,
+ "IRIS Software Group - North America": 55000000,
+ "IT Solution Inc.": 25500000,
+ "ITonDemand": 39500000,
+ "Ideation Orange": 13900000,
+ "Imetris": 31900000,
+ "InHouse Design": 12200000,
+ "Infinite Techs": 20500000,
+ "Info Services": 20000000,
+ "Infonet Technologies LLC.": 11700000,
+ "Information Data Systems": 10000000,
+ "Informs": 510000000,
+ "Inmass": 16100000,
+ "Innervation": 14600000,
+ "Innovative Software Services Inc.": 11000000,
+ "Innovection": 14100000,
+ "Innovision Systems": 17500000,
+ "Insite Technology": 19300000,
+ "Integrated Commerce Solutions": 28500000,
+ "Integrated Systems Consultants": 13300000,
+ "Intelizign": 25600000,
+ "Intelliquip": 10700000,
+ "Interfluence": 42300000,
+ "Invicktus": 22500000,
+ "IoT Consulting PSA": 25000000,
+ "Iron Bytes": 17100000,
+ "Iserv Managed IT Services": 17500000,
+ "Isigr": 11800000,
+ "Ivitesse": 10000000,
+ "J Martin&Associates Inc.": 26400000,
+ "JCR Design": 21400000,
+ "JTB Design": 11000000,
+ "Jadian": 15800000,
+ "Jems Technolgy": 13600000,
+ "Key Information": 10200000,
+ "Khemia": 27300000,
+ "Kings & Queens Tattoo Studio": 10600000,
+ "Krores": 30400000,
+ "Kyyba": 50000000,
+ "LSPediA": 20000000,
+ "Lakeside Software": 43000000,
+ "Lasco": 10600000,
+ "LaserVault": 10000000,
+ "Lazy Dog Fiber Arts": 10300000,
+ "Leading Edge IT Architects": 21000000,
+ "Les Cheneaux": 37000000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lifestyle Stores": 1300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston Daily Press": 21700000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Lumileds": 1400000000,
- "MANN HUMMEL": 4700000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Madison District": 12700000,
- "Madison Reed": 100000000,
- "Magellan Health": 7500000000,
- "Mahindra": 13100000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "MasterCraft": 761500000,
- "Material Sciences": 75000000,
- "McLane Company": 50000000000,
- "Measurement Incorporated": 63000000,
- "Medline Industries": 20200000000,
- "Meridian Entertainiment Inc.": 10900000,
- "Mesa Air Group": 467100000,
- "Metalor": 339700000,
- "Michigan Sugar": 46600000,
- "Micron Technology": 30800000000,
- "MidAmerican Energy": 66000000,
- "Miller Canfield": 106700000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morley Companies": 19600000,
- "Mount Clemens Community School District": 18200000,
- "Mountain Warehouse": 50000000,
- "Mullen": 93200000,
- "Multimatic": 1500000000,
- "Mutual of America": 100000000,
- "MyMichigan Health": 2600000000,
- "NABET-CWA": 13400000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "NOVARES": 1400000000,
- "NSF": 300000000,
- "National Day of Prayer": 29000000,
- "Neiman Marcus": 2600000000,
+ "Liberty Center One": 12500000,
+ "Lighthouse Colorprint": 14200000,
+ "LinTech Global": 38800000,
+ "Logos CMS": 41300000,
+ "Logos Logistics": 30300000,
+ "Longbow Advantage": 14000000,
+ "Loudpixel": 10000000,
+ "Lueck Data Systems": 12900000,
+ "M2 Technology": 35000000,
+ "MBM Technology Solutions": 20800000,
+ "MCDONALD'S FOOD & FAMILY CENTER INC.": 17600000,
+ "MCGI Tec": 12100000,
+ "MGS Software Solutions": 32600000,
+ "MSR Cosmos": 120000000,
+ "MVS Alliance": 11800000,
+ "Mainstreet Computers": 11800000,
+ "Managed Way": 22300000,
+ "Manitou Creations": 15600000,
+ "Marco Technologies": 400000000,
+ "Marketing Solutions Print & Mail Llc.": 25800000,
+ "Matr Solutions": 51300000,
+ "Mavice": 15700000,
+ "Meadow Fete": 15200000,
+ "Meal Magic": 21800000,
+ "Media Cafe Online": 11300000,
+ "Meetings by Design": 28800000,
+ "Mejenta": 18200000,
+ "Metric-X": 10300000,
+ "Michigan Aerospace": 32300000,
+ "Micro Wise": 16400000,
+ "Midwest Energy Group": 13600000,
+ "Mika Systems Inc.": 30400000,
+ "Mini Technologies": 11000000,
+ "Mintaka Design": 34000000,
+ "Mississippi Machinery Movers": 17200000,
+ "MittenAPPS": 25600000,
+ "Mojo Host": 10200000,
+ "Morpheus Software": 13600000,
+ "Moyer Group": 22900000,
+ "Multi Skilled Services": 19500000,
+ "My Search Is Over": 52700000,
+ "N2 Services": 70000000,
+ "NITS Solutions": 15000000,
+ "NK-Inc": 13800000,
+ "NVINT": 74800000,
+ "Natek Graphics": 13400000,
+ "NaviSource": 21000000,
+ "Nearsighted Studios": 10000000,
"NetApp": 6500000000,
- "New Bright": 25000000,
- "New Harbinger": 14200000,
- "Nichia": 1000000000,
- "Nikola Corporation": 44000000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "Novacam": 10000000,
- "O.C. Tanner company": 540000000,
- "ON Semi": 8300000000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Old Orchard Brands": 103300000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
+ "NetServ": 20500000,
+ "Netstair": 23200000,
+ "Network One": 13100000,
+ "Neumeric Technologies": 27400000,
+ "New Concepts Software": 21900000,
+ "New Logic Design": 32100000,
+ "Nexcess LLC.": 25000000,
+ "Nip-Tech": 13400000,
+ "Northwoods Computer & Internet Services": 29300000,
+ "Nova Software": 30300000,
+ "Novanix": 36400000,
+ "NovoDynamics": 27000000,
+ "Nuspire": 31200000,
+ "OTAVA\u00ae": 25000000,
+ "Obsidian Solutions Group": 38000000,
+ "One Call Networks": 24300000,
"Onward Technologies": 44100000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PAN Foundation": 450400000,
- "PCB Piezotronics": 400000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park West Gallery": 12400000,
- "ParkWhiz": 13200000,
- "Parker Hannifin": 15900000000,
- "Paulist": 18800000,
- "Payanywhere": 10000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
+ "Opendesign Interior Design": 24100000,
+ "Openlogix": 29500000,
+ "Orbiter Inc.": 21300000,
+ "Otaku Systems": 32500000,
+ "PF Solutions": 32600000,
+ "PITERION": 35000000,
+ "Pace Software Systems": 27600000,
+ "Pageworks": 10200000,
+ "Paradox Customs": 23000000,
+ "Paw Graphics": 21100000,
+ "Pearl Crescent": 19600000,
+ "Phoenix Data Systems": 10000000,
+ "PlanRight Software": 34900000,
"Plex Systems": 150000000,
- "Plum Market Inc.": 26000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Premier Drums": 10000000,
- "Premiere Networks Inc.": 30000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
+ "Preferred Data Systems": 19000000,
+ "PrintIQ": 17000000,
+ "Prologix": 26800000,
+ "Protech Solutions Inc.": 10500000,
+ "Provide America Inc.": 25500000,
"Publicis Sapient": 2700000000,
+ "Pulse Media Solutions": 11400000,
+ "Pyramid Consulting": 22200000,
+ "Q-DAS": 24000000,
"QAD Allocation": 12000000,
- "Quaker Houghton": 1900000000,
- "Quark": 40000000,
- "Quiznos": 50000000,
- "ROSSETTI": 31500000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Radio Flyer": 26100000,
- "Rainforest Cafe": 10000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Reid Supply Company": 19500000,
- "Relax The Back": 11600000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Ricardo PLC.": 462300000,
+ "QSTRAT": 41600000,
+ "Qualitech-Dynamic Business Solutions": 50100000,
+ "Quality Link Software": 45500000,
+ "Quavo": 11500000,
+ "R itham": 12100000,
+ "RADgov": 13700000,
+ "RME Enterprises": 20200000,
+ "Ramp Group": 23000000,
+ "Rat Mountain Design": 42200000,
+ "RawVoice": 10000000,
+ "Ray Soh": 13500000,
+ "Re-Source Partners": 14800000,
+ "Real Green": 12100000,
+ "Red Arrow Graphix": 10700000,
+ "Red Horse Creative": 50700000,
+ "RedRock Information Security": 12400000,
+ "Relevance Lab": 40000000,
+ "Rent Manager": 40900000,
+ "Reputation": 18500000,
+ "Resource Point": 32200000,
+ "Resultant": 54000000,
+ "Retail Velocity": 10000000,
+ "Richs Computer Repair": 31200000,
"RightSignature": 11000000,
- "Rockwell Medical": 68800000,
- "Roehl Transport": 421300000,
- "Roland Berger": 950000000,
- "Roly Poly": 16400000,
- "Rotel": 38800000,
- "Roush Performance": 27700000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
+ "Rightside Design Group": 31500000,
+ "RithTech Systems": 11000000,
+ "Riverside Internet Services": 21400000,
+ "Roam Automotive": 13900000,
+ "Roberts Tool Company": 12000000,
+ "Rochester Athletic Club Inc.": 15100000,
+ "Royal Rose Properties": 13400000,
+ "Ryan Doom": 37500000,
+ "S-3 Security Solutions Services LLC.": 20900000,
+ "SAI ANN INTERNATIONAL INC.": 16600000,
"SAP Ariba": 1600000000,
- "SC Johnson": 11000000000,
- "SEND International": 12800000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saginaw Spirit": 16200000,
- "Saginaw Township Community Schools": 12900000,
- "Saginaw Transit Authority Regional Services": 14500000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Samford": 173000000,
- "Schlumberger Limited": 27800000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Scm Group": 50000000,
- "Seasons 52": 300000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "ServiceMaster Clean": 48500000,
- "Sharper Image": 200000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Small Stone": 11500000,
- "Smarte Carte": 26000000,
+ "SJA Solutions": 31000000,
+ "SMART I.T. Services": 49800000,
+ "SPECIALIZED COMPUTER SOLUTIONS": 10000000,
+ "SSA Soft": 21900000,
+ "SWK Technologies": 38500000,
+ "SabreTech": 29500000,
+ "Safety Net Inc.": 19100000,
+ "Salamander Systems": 22300000,
+ "Salute Mission Critical": 15600000,
+ "Sattrix": 10000000,
+ "Savance": 15700000,
+ "Scalable Informatics": 39700000,
+ "Scate": 27300000,
+ "Scheerhorn Creative": 32600000,
+ "SciTools": 10000000,
+ "SeannLewiscom": 21500000,
+ "Secord Solutions": 31200000,
+ "Service Express": 130000000,
+ "Sharie Schnell": 25300000,
+ "Sharp Web Tools": 12000000,
+ "Shaun Jackson Design Inc.": 26000000,
+ "Signature Application": 15900000,
+ "Signature Technology": 24100000,
+ "Signum Group": 11100000,
+ "Simple IT Solutions": 49400000,
+ "SimpliQ": 21000000,
+ "Skidmore Studio": 6500000,
+ "Skybridge Infotech": 38800000,
+ "Smart Data Center": 10000000,
"Smartsheet": 712000000,
- "Society of Our Lady of the Most Holy Trinity": 10800000,
- "Sodexo": 22300000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Spark Foundry": 600000000,
- "Special Libraries Association": 15800000,
- "Spring Lake Public Schools": 18300000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Sturgis Journal": 30900000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Sundberg Ferar": 10000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TDK": 14000000000,
- "THK": 2700000000,
- "TRUMPF": 10200000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Tandy Leather Factory": 81600000,
- "Teck Resources": 12600000000,
- "Teijin": 7300000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Evening News": 44300000,
- "The Holland Sentinel": 10400000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Oakland Post": 12600000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "SodiusWillert": 18500000,
+ "SoftPath Technologies": 14100000,
+ "Solid Logic": 21100000,
+ "Speedy Serve": 14100000,
+ "Spotlight Consulting": 44700000,
+ "Spring Management Systems": 13900000,
+ "Springfield Products Industries LLC.": 12700000,
+ "Stardock": 5800000,
+ "StratCom": 23800000,
+ "StratusVue": 10000000,
+ "Streamline Healthcare": 16700000,
+ "StudioSysAdmins": 150000000,
+ "Sungrace": 34600000,
+ "Susan Hensel Design": 30100000,
+ "Switchback": 27500000,
+ "Symphono": 10700000,
+ "Synergy Computer Solutions": 29500000,
+ "T4 Software": 26800000,
+ "TAZ Networks": 10800000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TPP Web Solutions": 23700000,
+ "Tamarack Technologies": 20500000,
+ "Teamware Solutions": 600000000,
+ "TechniServe": 18300000,
+ "Technology Professionals Group Inc.": 32900000,
+ "Technology Solutions of Michigan": 13800000,
+ "Technosoft": 210000000,
+ "Tecoso Cybersecurity": 12200000,
+ "Teknest": 10100000,
+ "Teksoft Systems": 15000000,
+ "Tera Networks": 36600000,
+ "Tessa Systems": 27400000,
+ "The Answer People.": 15500000,
+ "The Cacti Group": 17500000,
+ "The Smart Designer": 47800000,
+ "The Vega Project": 25600000,
+ "Thirdware": 177200000,
+ "TimeTrak": 10200000,
+ "TotalChoice": 11600000,
+ "Touch World": 11100000,
"Trace3 LLC.": 1400000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Trescal": 154000000,
- "Trinseo": 5000000000,
- "Tubby's": 40900000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFP Technologies": 80000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Van Andel Institute Purple Community": 50000000,
+ "Traction Made in Lansing": 22100000,
+ "Tribis": 12700000,
+ "Trio Graphic Design": 34800000,
+ "Trumble": 13400000,
+ "U.P. Office Equipment Systems": 11500000,
+ "URLhost": 13600000,
+ "USDI": 11700000,
+ "USTech Service": 17000000,
+ "UTROPICMEDIA": 18700000,
+ "Ubiquiti": 17400000,
+ "Uncomm.one": 12300000,
+ "Unison Design": 21700000,
+ "United Software Group": 100200000,
+ "UniversityTickets": 10000000,
+ "User Friendly Consulting": 18600000,
+ "User Solutions": 18600000,
+ "VED Software Services": 17800000,
+ "VTECH SOLUTION": 10200000,
+ "Vargas Computer Systems": 25800000,
+ "Varner Graphix": 19100000,
"Vauto": 150000000,
- "Venture For America": 17500000,
- "Vera Bradley": 513100000,
+ "Vectorform": 12000000,
+ "Ventiv Technology": 45000000,
"Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Volkswagen": 51300000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Warner Norcross & Judd": 15700000,
- "Warrior Sports": 95000000,
- "Webasto": 250000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "White Lodging": 1000000000,
- "Wieland Group": 6100000000,
- "Wilbraham & Monson Academy": 22100000,
- "Wilson Sporting Goods": 769700000,
- "Wings Financial": 243000000,
+ "VersaIMAGE": 35300000,
+ "Video Voice": 39000000,
+ "Vigilant Technologies": 46800000,
+ "Viperspace": 28700000,
+ "Virtual worlds Grid": 75000000,
+ "Visual Consulting": 28300000,
+ "WSM International": 60000000,
+ "Walkingstick Software Inc.": 13600000,
+ "Wallace Haines": 11500000,
+ "Warren Kramer": 26500000,
+ "Website Forge": 25800000,
+ "Weird Kid": 21600000,
+ "Weisberg": 16200000,
+ "Wesman Designs": 11300000,
+ "Willis Information Technologies": 13100000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
+ "WoodWing": 14400000,
"Workiva": 468700000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Yellow Pages Directory": 15100000,
- "ZEISS": 8800000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
+ "WorldWide Computing": 16900000,
+ "Xede": 16300000,
+ "Yashraj Technologies": 11600000,
+ "Youngsoft": 25000000,
+ "ZealSoft Solutions": 70000000,
+ "Zilko Web Solutions": 11400000,
+ "Zoyes Creative Group": 15300000,
+ "aBG Design": 10000000,
+ "cyberMIND": 63400000,
+ "e-Zest": 95000000,
+ "eProcurement Services LLC.": 21700000,
+ "ejTalk": 25300000,
+ "iNetCity": 25900000,
+ "nDimensions": 17800000
},
"Minnesota": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AMC Theatres": 3900000000,
- "AR-15": 6000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "AgriBank": 671200000,
- "Agropur": 7700000000,
- "Air Canada": 12200000000,
- "Airborne Athletics": 52900000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Allina Health": 4700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmeriPride": 600000000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
+ "AGS Consulting": 10200000,
+ "AIM Consulting": 64000000,
+ "AIS | Advanced Imaging Solutions": 31300000,
+ "AJ Marksberry": 10800000,
+ "ALL-TECH MACHINE SERVICES INC.": 30200000,
+ "AMT Inc.": 17300000,
+ "AVI System's": 272500000,
+ "AZ-TECHS": 14700000,
+ "Ability Commerce": 13900000,
+ "Abraxas-Cubic Global Defense": 51000000,
+ "Active Practice": 15500000,
+ "Adamant Digital Forensics": 11300000,
+ "Adron Systems": 14300000,
+ "Aerosim Technologies": 60000000,
+ "Afixia": 21600000,
+ "AgCode": 29800000,
+ "Albright Ideas": 14500000,
+ "Alebra": 27500000,
+ "Algenta": 10700000,
+ "All Network Services Inc ANSI": 35900000,
+ "Alman Software Design Llc.": 12600000,
+ "American Surplus & Mfg": 33900000,
+ "American Technology": 10700000,
"Anaplan": 592200000,
- "Applegreen plc.": 3400000000,
- "Arconic": 9000000000,
- "Arvest Bank": 958800000,
- "Asmodee": 765000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
+ "Andrea & Associates": 24100000,
+ "AppleButter": 21700000,
+ "Apptech Inc.": 11000000,
+ "Arux": 10000000,
+ "Ascender": 850000000,
+ "Ascolta Training": 10100000,
+ "Aston Technologies": 35200000,
+ "AsystMe": 10800000,
+ "At-Scene": 10000000,
+ "Atomic Data": 20200000,
"Avanade": 3900000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Aviat Aircraft": 8000000,
- "Axis Communications": 1300000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baird investment bank": 3400000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beckhoff": 1100000000,
- "Beckman Coulter": 2100000000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Blick Art Materials": 245200000,
- "Blue Mountain Brewery": 21300000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Board of Editors in the Life Sciences": 4800000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bright Health Inc.": 3800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau of Engraving and Printing": 10000000,
- "CBA The Association for Christian Retail": 10000000,
- "CBS News": 94000000,
+ "Avetta": 100000000,
+ "Axia Strategies": 45700000,
+ "BPK Tech": 31000000,
+ "BS&A Software": 35000000,
+ "BTM Global": 35000000,
+ "BackStreet Media": 25700000,
+ "Bailiwick": 100000000,
+ "Banyon": 31600000,
+ "Beacon Hill Inc.": 25600000,
+ "Bearcat Technology": 11100000,
+ "Blackbeard Island": 18300000,
+ "Bloodhound Investment Research Inc.": 11200000,
+ "Blue Wing": 23500000,
+ "Blytheco": 31200000,
+ "BorderBound Communications": 12900000,
+ "Brad Norr Design": 21000000,
+ "Brandow Creative": 39400000,
+ "Bufflehead Internet Technology": 21300000,
+ "C.R. Timmons Consulting Inc.": 21400000,
+ "CBX": 28000000,
+ "CD ROM": 15600000,
+ "CDI Computer Dealers": 145300000,
"CDW": 23800000000,
- "COKeM International": 15800000,
- "CURTISS-WRIGHT": 2500000000,
- "Calix": 1500000000,
- "Camso": 1300000000,
- "Candlewick": 15000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlton Cards": 4700000,
- "Carvel": 5700000,
- "Centennial School District": 33800000,
- "Cerner": 5800000000,
- "Chainalytics": 34000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of Jackson Minnesota": 13800000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
+ "CMIT Solutions": 60000000,
+ "COLAMCO": 35200000,
+ "CPS Technology Solutions": 23400000,
+ "CTC Software": 25000000,
+ "Cadig": 14000000,
+ "Calhoun Technologies": 10700000,
+ "Casepoint": 93000000,
+ "Catalyst Studios": 19500000,
+ "CaterTrax": 15000000,
+ "Centella Consulting": 11900000,
+ "Centric Software": 34700000,
+ "Chandler Inc.": 29300000,
+ "Chris Gabbert": 24400000,
+ "Chris Peterson Freelance": 21800000,
+ "Christian Web Host": 10000000,
+ "City Hairstylists": 23100000,
"Clearswift Limited": 31100000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
+ "Clearwater Security": 12500000,
+ "Clients First Business Solutions - SAP Business One Consulting": 34300000,
+ "Climate Pros": 53000000,
+ "Clockwork Annex": 25800000,
"Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "Codexis": 132700000,
- "College Hunks Hauling Junk": 100000000,
- "College Possible": 22500000,
- "Condor": 10000000,
- "Consolidated": 1200000000,
- "Constant Contact": 361900000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Craftsy": 26900000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DJO Global": 1200000000,
+ "Cloudnet": 10000000,
+ "Club Data": 12600000,
+ "ClubHosting": 10000000,
+ "CodeBlazer": 20500000,
+ "ComplyNet": 11800000,
+ "Computeeze": 16100000,
+ "Computer Concepts & Services Inc.": 16100000,
+ "Computer Connection": 38800000,
+ "Computer Forensics Consulting": 30500000,
+ "Computer Wrangler": 11300000,
+ "Computing Solutions": 20900000,
+ "Concept & Design": 20200000,
+ "Confii": 15500000,
+ "Connie Lindstrom Design": 12300000,
+ "Contata Solutions": 15000000,
+ "Contractors Software Group": 14800000,
+ "ConvergeOne": 1600000000,
+ "Cor Design": 23300000,
+ "Core Software Technologies": 16800000,
+ "Corissa Nelson": 32500000,
+ "Cornerstone Technology": 36800000,
+ "Corporate Technologies": 38700000,
+ "Creative Business Solutions": 46100000,
+ "Creative CC Concepts": 27600000,
+ "CrossControl": 10000000,
+ "Crowley Creative": 31100000,
+ "Cruzen & Associates": 15500000,
+ "Customer FX": 11500000,
+ "CustomerTRAX": 18300000,
+ "CyberSecOp": 10000000,
+ "D.O. Software": 11100000,
+ "DB Consultants": 11700000,
+ "DESIGNPOINTSlideshow1": 13800000,
+ "DIALOGLINE": 12700000,
+ "DIGITAL BUSINESS SOLUTIONS": 24300000,
+ "DSD Business Systems": 14000000,
"DTN Ag.": 250000000,
- "Daily Gazette": 10200000,
- "Dangerous Man Brewing": 4600000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "DecoPac": 150000000,
- "Diamond Foundry": 15000000,
- "DirecTV Stream": 33300000000,
- "Diversey Holdings": 2700000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorsey & Whitney": 13800000,
- "Dow Jones": 1600000000,
- "Drury Hotels": 620000000,
- "Duluth News Tribune": 10000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
+ "Daizy & Company": 17000000,
+ "Danger Web Services": 32100000,
+ "Darling Tennis Center": 28700000,
+ "Dartech Inc.": 17100000,
+ "Data Center Management Systems": 21700000,
+ "Data Helper": 17100000,
+ "Data Integration Specialists": 21800000,
+ "Data Mine": 28100000,
+ "Data Recovery Labs": 12900000,
+ "Data Solutions International": 24900000,
+ "DataCoreTechs": 11300000,
+ "DataStrait": 19800000,
+ "Dataretrieval": 29800000,
+ "Datum Software": 15700000,
+ "DawnINK": 27100000,
+ "DeMeyere": 26100000,
+ "Dedicated Networks": 37400000,
+ "Dellwo Brothers Construction": 18100000,
+ "Denim and Ink": 32000000,
+ "Denning": 14100000,
+ "Design By I": 11800000,
+ "Design by Five": 14600000,
+ "Design for Context": 21400000,
+ "Design29": 39000000,
+ "Designs by redbird": 34300000,
+ "DeskTech": 10500000,
+ "Digby Systems": 13700000,
+ "Digital Control Systems": 11300000,
+ "Dmex": 16600000,
+ "Dotnetspider": 10000000,
+ "Dynamic Web Solutions": 20100000,
+ "E-cognosys": 16300000,
+ "EC Synergy": 10200000,
"ECI": 48000000,
- "EDP Renovaveis": 2100000000,
+ "ECI Networks": 18000000,
+ "ECI Software Solutions": 365000000,
+ "ED Design": 10600000,
+ "EDI Partners": 14300000,
"ENCORE SOFTWARE LLC.": 6600000,
- "ENvizion Medical": 4000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "East Side Review": 16700000,
- "Ecumen": 165000000,
- "Education Minnesota": 6900000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
+ "ESI Technologies": 76700000,
+ "EXB Solutions": 21000000,
+ "Economic Development Association of Minnesota": 16900000,
+ "Energy Platforms": 52600000,
+ "Engraphics Inc.": 15800000,
+ "Enhanced Information Solutions": 28400000,
+ "Ensemble Creative & Marketing": 15200000,
+ "Enterprise IT Labs": 17900000,
+ "Enterprise Knowledge Partners LLC.": 23900000,
+ "Essential Technologies": 11300000,
"Exact": 245000000,
- "Exact Data": 20000000,
+ "Excel SoftSources": 25000000,
+ "Exodus Design": 16600000,
"Exosite company": 15000000,
- "Experimental Aircraft Association": 15600000,
- "FLEXcon": 400000000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Federated Insurance": 1300000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "First Allied Corporation": 21900000,
+ "F1 Data": 14100000,
+ "Fat Freddies Web": 17900000,
+ "Fifth Street Design": 15700000,
+ "Figureground": 19600000,
+ "Finkstrom Licensing Intl": 20500000,
"Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Fortune Brands Innovations": 5000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fsc": 44200000,
- "Fulton Beer": 20600000,
- "Future Publishing": 3300000000,
- "GE HealthCare": 17700000000,
- "GEHA Holdings Inc.": 4500000000,
- "GMAC Ally Financial": 8400000000,
- "Gallup": 187000000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
+ "Fishbowl Solutions": 12500000,
+ "Flagpole Country LLC.": 53100000,
+ "Flagship Technologies": 14600000,
+ "Flexion": 23500000,
+ "Flo-Chart": 19400000,
+ "Focuspoint Designs": 31700000,
+ "Folio creative": 15800000,
+ "Fortress Medical": 14500000,
+ "Foundation Technologies": 10100000,
+ "FreeLogoServices": 10000000,
+ "Freemind Solutions": 17700000,
+ "GateKeeper Systems": 27200000,
+ "Gecko Graphics": 30100000,
+ "Gemini Business": 12400000,
+ "Genuine Amish Furniture": 21600000,
"Getac": 887700000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Graef-USA Inc.": 40300000,
- "Grand Central Baking Company": 20700000,
- "Green Giant": 422000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "Guy Carpenter": 1700000000,
+ "GiveSmart": 12000000,
+ "GoAnywhere": 300000000,
+ "Granicus": 145000000,
+ "GraphicEngineering": 39400000,
+ "Gravitec Development": 30900000,
+ "Grid Logic": 23300000,
+ "Grossman Design Associates": 15000000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "HVS": 47500000,
+ "HTEC Group": 100000000,
"HackHands": 3000000,
- "Hair Club": 400000000,
- "Hal Leonard": 254000000,
- "Harbor Freight": 5000000000,
- "Hazelden Betty Ford": 186300000,
- "HealthPartners": 6600000000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Hoosier Tire": 181300000,
- "Houlihan's": 750000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IHEARTMEDIA": 3800000000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "JP Rifles": 12700000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jacob Schmidt Brewing Company": 10000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jetcraft": 26900000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KWIK TRIP": 5000000000,
- "Kaplan": 1500000000,
- "Kelly Services": 5000000000,
- "Kemps company": 22400000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "L. G. Everist": 10000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Land O'Lakes": 16000000000,
- "Landmark Worldwide": 29100000,
- "Lattice Semiconductor": 585600000,
- "Learning Express Toys": 2500000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Hargrove & Associates Inc.": 15000000,
+ "Hawk Ridge Systems": 53500000,
+ "Hearne": 27000000,
+ "Heartland Business Systems": 147300000,
+ "HeatSeeker Technology Partners Inc.": 22900000,
+ "Heggernes Design & Marketing Strategy": 16200000,
+ "HyperActive Software": 14400000,
+ "I Q Reseller": 27800000,
+ "IGI PT.": 10000000,
+ "IPSG Technology": 35000000,
+ "IProduction": 25200000,
+ "ISSQUARED": 26900000,
+ "Icario": 44400000,
+ "Image Spigot Graphic Design": 18200000,
+ "Imagen Microsystems": 10200000,
+ "Imagine IT Imagine": 10500000,
+ "Impact Group | IT Consulting IT Support and Managed IT Services": 25000000,
+ "Inet7 Internet Services BBB": 14000000,
+ "Infinite Campus": 50000000,
+ "Integrated Solutions Group": 15300000,
+ "Integris - Managed IT Services Houston": 43200000,
+ "Intequus": 35300000,
+ "Internet Connections": 27600000,
+ "InterplX": 12000000,
+ "Intertech Inc.": 25500000,
+ "Intimecatalog": 47700000,
+ "Involta": 60000000,
+ "Iridium Business Management Software": 19800000,
+ "J Graphics": 29800000,
+ "J4 Web Services": 61400000,
+ "JKL Studios": 12200000,
+ "Jargon Software": 13300000,
+ "Javen Technologies": 13900000,
+ "Jennifer Lintelmann Design and Graphics": 21800000,
+ "JerodArt": 12600000,
+ "Jim Hanson Artist Representation": 19900000,
+ "JobBOSS\u00b2": 10000000,
+ "Joseph Hinrichs Project": 22800000,
+ "K8DZn": 30800000,
+ "KVC Inc.": 14100000,
+ "Karina Rose Creative": 19100000,
+ "Kat Tech Systems": 35300000,
+ "Kato Web": 37600000,
+ "Katzenjammer designs": 13600000,
+ "Kerry Doyle": 20000000,
+ "Knowledge IT a Cooperative": 43500000,
+ "Kognitiv": 20000000,
+ "LDS Engineers": 35000000,
+ "Lakes Computer Repair & Consulting": 13500000,
+ "Lanfire Systems": 28900000,
+ "Latitude 44": 24800000,
+ "Laukkonen": 32100000,
+ "Lazesoft": 10000000,
+ "Lere Design": 21100000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Livestrong Foundation": 10500000,
- "Livingston International": 40000000,
- "Llewellyn": 17200000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Love Home Swap": 10300000,
- "Lovesac": 389800000,
- "Lowry Solutions": 31000000,
- "Lunds & Byerlys": 106300000,
- "Luverne Senior High School": 27100000,
- "MAT Holdings Inc.": 1500000000,
- "MDU Resources": 7000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MVTA": 1200000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Martin Williams Advertising Inc.": 63300000,
- "Matson": 4300000000,
- "Maxwell Technologies Inc.": 77500000,
- "Mayo Clinic": 14000000000,
- "Mayo Clinic Health System": 27900000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Micron Technology": 30800000000,
- "Midcontinent Independent System Operator": 380300000,
- "Midwest Communications": 36300000,
- "Milliman": 1200000000,
- "Minerva Project": 5500000,
- "Minneapolis Fed": 5100000,
- "Minnesota Department of Commerce": 1000000000,
- "Minnesota Mining and Manufacturing": 34000000000,
- "Minnesota Society of CPAs": 30600000,
- "Minnesota Swarm": 16300000,
- "MintPress News": 7000000,
- "Mohawk Industries": 11800000000,
- "Molycorp Inc.": 460400000,
- "Mosaic": 7200000000,
- "Mounds View High School": 2400000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "MyVillager": 6000000,
- "NOAA Weather Radio": 36400000,
- "National Bank of Commerce": 32600000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Model Railroad": 5300000,
+ "LightEdge Solutions": 44600000,
+ "Lincoln Elementary": 19600000,
+ "Linric": 29000000,
+ "Loffler Companies": 280000000,
+ "Logic Information Systems": 80000000,
+ "MBA Software": 23900000,
+ "MMEI": 16600000,
+ "Mactek Systems": 19800000,
+ "Madison Avenue Worldwide": 26900000,
+ "Manage LLC.": 18600000,
+ "Map Hero": 12800000,
+ "Maracaibo Inc.": 24300000,
+ "Marco Technologies": 400000000,
+ "Matrix Corp.": 10600000,
+ "MatrixCare": 122000000,
+ "Maverick Software Consulting": 11300000,
+ "McWest Corp": 15500000,
+ "Meghan Lyn Creative": 12800000,
+ "Melrose Gates Apartments": 10500000,
+ "MentorMate": 27700000,
+ "Meridian Group International": 22700000,
+ "Merlin Software": 10000000,
+ "Metiix": 10000000,
+ "Metis International": 36500000,
+ "Midpoint Technology": 10700000,
+ "Midwest IT Systems": 43100000,
+ "Minnesota Copy Systems": 10000000,
+ "Miovision": 35000000,
+ "Mister Find It Llc.": 37900000,
+ "Mobile On Services Inc.": 16100000,
+ "Modelus": 19800000,
+ "Moxie IT": 35200000,
+ "Moxxe": 18600000,
+ "My Storage House": 12400000,
+ "Mytechiebuddy": 17000000,
+ "NOREX": 26100000,
+ "Near and Far Photography": 13100000,
+ "Neatoscan": 23400000,
"NetApp": 6500000000,
- "New Flyer": 2400000000,
- "Nikola Corporation": 44000000,
- "North Oaks Golf Club": 10400000,
- "Northwest Bank": 510300000,
- "NuStar Energy": 3200000000,
- "OOCL": 33600000,
- "Oklahoma Department of Wildlife Conservation": 4200000,
- "OneMain Financial": 4100000000,
- "Organic Consumers": 17900000,
- "Orkin": 1000000000,
- "Osseo Area Schools": 1300000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCB Piezotronics": 400000000,
- "PCL Construction": 6300000000,
- "PREIT Services LLC.": 300500000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Paul Gauguin Cruises": 15000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phillips Distilling": 24000000,
- "Phillips Edison": 496900000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "PlayNetwork": 86000000,
- "Ponderosa & Bonanza Steakhouse": 11600000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Prairie Farms": 3100000000,
- "Premier Lacrosse League": 2000000,
- "Pretzelmaker": 125000000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Prodege": 200000000,
+ "NetSPI": 50000000,
+ "NetVPro": 45100000,
+ "Nevelex": 44500000,
+ "New Era Technology": 22200000,
+ "Nfina": 15300000,
+ "Nice PDF": 10000000,
+ "Nihilent": 53400000,
+ "NilesRiver": 18700000,
+ "Nine A Business": 31400000,
+ "Norsoft": 32300000,
+ "North American Systems International": 13800000,
+ "Northern Mac": 38500000,
+ "Northstar Automation": 30400000,
+ "O'Connor Consulting": 38300000,
+ "OPIN": 15100000,
+ "Object Partners": 22800000,
+ "OnCorps Reports": 12800000,
+ "One Good Geek": 46700000,
+ "Opening Doors MN": 19000000,
+ "PAR 3 I.T.": 18200000,
+ "PLDG": 11900000,
+ "Pacific Wave": 16500000,
+ "Pagero": 45000000,
+ "Panacea Healthcare Solutions": 63400000,
+ "Pantheon Computers": 10000000,
+ "Paper Storm": 20300000,
+ "Paragon Development Systems": 210000000,
+ "Passkey Technology": 25600000,
+ "Patrick Huber": 14300000,
+ "Patrick Redmond Design": 11900000,
+ "Perfecto by Perforce": 100000000,
+ "Performix": 18400000,
+ "Peters Technology Group LLC.": 12100000,
+ "Pinpoint Systems": 35000000,
+ "Points North": 14600000,
+ "Pratum": 11200000,
+ "Pro-West & Associates": 21400000,
+ "Progent": 13200000,
+ "ProjectET": 17900000,
"Pronto Software": 85000000,
+ "PruTech": 43000000,
"Publicis Sapient": 2700000000,
+ "Pyramid Trim": 11900000,
"Pythian": 100000000,
- "Qorvo": 1200000000,
+ "Q.E.D. Incorporated": 23300000,
"Qualtrics": 1400000000,
+ "Quantified Mechanix": 18000000,
"Quantum Alliance": 402600000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "ReconRobotics": 10300000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Renewable Energy Group": 2900000000,
+ "Quest CDN": 11400000,
+ "R & G Visions": 60300000,
+ "RBRVS": 10500000,
+ "RITE Help Desk": 30500000,
+ "RSM Partners": 26000000,
+ "RaneyWorks": 14400000,
+ "Recast Software": 10000000,
+ "Redscan": 11500000,
+ "Redtail Technology": 26100000,
+ "Refactr": 33100000,
+ "Reinarts Stained Glass Studios": 23400000,
+ "Renaissance Jane Creative Agency": 10700000,
+ "Renovocom": 21800000,
+ "Reonomy": 18300000,
"Reputation": 18500000,
- "Resideo": 6300000000,
- "Rexair": 35000000,
- "Robinson Fresh": 11400000,
- "Roche Bobois": 8300000,
- "Rochester Lourdes High School": 10100000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Ronald McDonald House Charities": 59500000,
- "Rosetta Stone": 182700000,
- "Roseville Area Schools": 13500000,
- "Rotel": 38800000,
- "Royal Purple": 35700000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
- "SABIS Educational Services S.A.L.": 25400000,
+ "Revelare Corporation": 14100000,
+ "RidgeRun": 18900000,
+ "Right Networks": 70000000,
+ "Riverside Resort": 11100000,
+ "Robert Mark Technologies": 36100000,
+ "Rochester Toyota And Scion": 22600000,
+ "Rome Technologies Inc.": 19400000,
+ "Russell Griesmer": 26700000,
"SAP": 33500000000,
"SAP Ariba": 1600000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SIFCO": 89600000,
- "SKECHERS USA Inc.": 6900000000,
- "SPIRE Credit Union": 19300000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint John's Preparatory School": 52400000,
- "Saint Louis Bread Company": 5900000000,
- "Saint Paul Police Department": 28200000,
- "Saint Paul's Outreach": 12400000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schmitt Music": 20600000,
- "Schuylkill Transportation System": 44000000,
- "SeaQuest aquariums": 2400000,
- "Seaboard": 11200000000,
+ "SAS DESIGN HAUS": 19600000,
+ "SETaylor": 20100000,
+ "SOL-I.S. Technology Solutions": 12600000,
+ "SURF THING": 18200000,
+ "SVI America": 22900000,
+ "Sage Pine Studio": 22200000,
+ "Sawicki & Phelps": 13000000,
+ "Schaps Enterprises": 16700000,
+ "Scriptware": 59400000,
"Seagate Technology": 9400000000,
- "Securian": 6600000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sezzle": 117800000,
- "Shane Co.": 30800000,
- "Shofur": 23900000,
- "Showplace Icon": 38900000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simplot": 6000000000,
- "Sisters of St. Joseph of Carondelet": 29400000,
+ "Select Computing": 10700000,
+ "ShareTech": 17600000,
+ "SharkSkin Design": 20200000,
+ "Sharp Creative": 19700000,
+ "ShoppeSimple Network": 15200000,
+ "SideKick Inc.": 15500000,
+ "Signs of Perfection Inc.": 28900000,
+ "Siri InfoSolutions": 17500000,
+ "SiteGenie": 21400000,
+ "Sitecore": 90000000,
"Siteimprove": 100000000,
- "Sleep Number": 2100000000,
- "Smallwood": 30000000,
- "Smarte Carte": 26000000,
- "Smith & Nephew": 5200000000,
- "Society For Industrial Microbiology and Biotechnology": 4600000,
- "Sodexo": 22300000000,
- "Solectrac": 2500000,
- "Solve": 8000000,
- "Sonder Holdings Inc.": 123000000,
- "Sound 80": 21700000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Space Aliens Grill & Bar": 10000000,
- "Spring Lake Park Schools": 45600000,
- "St. Cloud Regional Airport": 46800000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
+ "SmartBase Solutions": 22200000,
+ "Software Business Systems": 23300000,
+ "Software Dimensions": 26900000,
+ "Solonis": 21700000,
+ "Solution Design Group": 50000000,
+ "Spruik Technologies": 10000000,
+ "St. Paul Training LLP.": 11500000,
"Stardock": 5800000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Suzlon": 873000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "Synovis Life": 75000000,
- "TDK": 14000000000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taft Stettinius & Hollister": 100000000,
- "Talonbooks": 4600000,
- "Tandy Leather Factory": 81600000,
- "Targray": 860000000,
- "TeamUnify": 1700000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Playwrights' Center": 3300000,
- "The Remnant Newspaper": 1800000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Topeka Metro": 6900000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Totino's": 1900000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of St. Thomas School of Law": 273200000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
+ "Sterling Electric Corporation": 43300000,
+ "StoneArch Software": 20300000,
+ "Stoneridge Software": 33000000,
+ "Store Manager for WooCommerce - New Experience in Site Management": 30300000,
+ "Stream Data Centers": 13600000,
+ "Sugars International": 17500000,
+ "Sundrum Arts": 31600000,
+ "SuperSalon Software": 15000000,
+ "Superior Consulting Services": 14400000,
+ "Sweep-It": 22500000,
+ "Swoop Search": 14900000,
+ "Synchrono": 15000000,
+ "SynerJay": 29400000,
+ "Syntax Inc.": 20700000,
+ "T-bird On The Cliffs": 21900000,
+ "T4 Technologies": 17700000,
+ "TC Systems DELL HP IBM Servers Workstations Desktops and Parts.": 38400000,
+ "TCMI": 44900000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TK Solutions": 15300000,
+ "TPMI Corp.": 25600000,
+ "TSG SERVER & STORAGE INC.": 19600000,
+ "Tail Wind Informatics Near Sourcing Center": 18800000,
+ "Tarmac LLC.": 12000000,
+ "TeamSoftware Solutions": 14200000,
+ "TechFactory": 15200000,
+ "Techcited": 17600000,
+ "Technology Advisory Group": 20200000,
+ "Technowerks": 16400000,
+ "Techware": 14000000,
+ "TekPro Solutions": 10500000,
+ "TempForce": 15000000,
+ "TestOptimal": 15900000,
+ "The Developer Network": 11500000,
+ "The Enterprise Program": 39000000,
+ "The Org company": 2000000,
+ "The Rubicon Group": 26100000,
+ "The Spydermate": 16900000,
+ "The Will\u2011Burt Company": 29300000,
+ "TheMidwestHunter": 15100000,
+ "Third Wave": 20100000,
+ "Top Dog PC Services": 12500000,
+ "Top Gun Technology": 24700000,
+ "Total Networx": 14300000,
+ "Trademark Tech": 11800000,
+ "TravelNet Solutions": 24000000,
+ "Triad Marketing & Advertising Inc.": 21100000,
+ "Triangle Park Creative": 10700000,
+ "Trinity Business Tech": 26700000,
+ "TrueCommerce": 100000000,
+ "Twin cities hosting": 11800000,
+ "U Succeed": 16600000,
+ "Unite Us": 33000000,
+ "United Business Products": 17900000,
+ "UpdateLogic Inc.": 35000000,
+ "VACAVA": 16900000,
+ "VCS Technologies": 17100000,
+ "VIsum": 37900000,
"VMware": 13200000000,
"VStar Entertainment Group": 12100000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vestas": 15500000000,
- "Viad": 913700000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vista Outdoor": 3200000000,
- "W. W. Grainger": 15200000000,
- "WILSONS LEATHER": 250000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Wayzata Public Schools": 7100000,
- "West Central Area Schools": 18300000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "Wheaties": 10200000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wilson Sporting Goods": 769700000,
- "Winco Incorporated": 27400000,
- "Wings Financial": 243000000,
- "Winmark": 80700000,
- "Wje": 150000000,
+ "VTECH SOLUTION": 10200000,
+ "Valutec Inc.": 13200000,
+ "Varicent": 75000000,
+ "Vector Magic": 10000000,
+ "Venture Solutions": 10000000,
+ "Vera Security": 15000000,
+ "Vertical Circle": 11000000,
+ "VidSwap": 12800000,
+ "Vilis Systems": 30500000,
+ "VinSolutions": 50000000,
+ "Virant": 11200000,
+ "Visual Systems Corporation": 21000000,
+ "Vivaldi Technologies": 6000000,
+ "Vivatek Treatment System": 25800000,
+ "Vorce Tech": 33000000,
+ "Wainwright Consulting": 28900000,
+ "Web Goddess": 29800000,
+ "Wikstrom Graphics": 49200000,
+ "Win2PDF": 40000000,
+ "Wireless Network Solutions": 26200000,
+ "Wistia": 40000000,
+ "WithoutWire": 10000000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "ZEISS": 8800000000,
- "Ziebart": 1200000000,
- "Zonda Home": 50000000,
- "Zumiez": 1100000000
+ "Wordware": 27300000,
+ "WorkLife Systems": 11500000,
+ "Wpa pro_technologies": 24500000,
+ "Wpcc Tech": 16800000,
+ "XS Consulting Group": 27200000,
+ "Xantel": 29400000,
+ "Xigent Solutions": 18400000,
+ "Yomari": 25000000,
+ "YourSix": 10000000,
+ "Z Networks": 10000000,
+ "Zealous Co.": 10000000,
+ "Zimmerman Consulting": 16100000,
+ "aMack Design": 17100000,
+ "eResidentCare": 11300000,
+ "ebSolutions Inc.": 11900000,
+ "focus on U": 19500000,
+ "iTechnologies": 10000000,
+ "low Profile Software": 23700000,
+ "mPulse Mobile": 10000000,
+ "phData": 26500000,
+ "slashBlue": 29200000,
+ "tapQA": 23700000,
+ "we are. Versatile": 15000000
},
"Mississippi": {
- "ABC Supply": 12100000000,
- "ABCya": 1000000,
- "ACCO Brands": 2100000000,
- "AFL-CIO": 138000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "Americold Logistics Inc.": 2900000000,
- "Andrew Christian": 8000000,
- "Andrew Jackson Council": 35100000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Bayou Academy": 16000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Biloxi High School": 17800000,
- "Biofuels Center of North Carolina": 5400000,
- "Blue Bell Creameries": 675000000,
- "Bojangles": 560000000,
- "Bollinger Shipyards": 1000000000,
- "Borden Dairy": 1200000000,
- "BorgWarner": 15300000000,
- "Brookdale": 2700000000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "C Spire": 5000000000,
- "Cal-Maine Foods": 3000000000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Cellular Sales": 1700000000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christian Television Network": 12200000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clarion Ledger": 27000000,
- "Clark Construction": 5000000000,
- "Coast Transit Authority": 11900000,
- "College Hunks Hauling Junk": 100000000,
- "Community Coffee": 245000000,
- "Conduent Business Services LLC.": 3900000000,
- "Core & Main Inc.": 6100000000,
- "Country Road": 208600000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Cyient Inc.": 575100000,
- "DAV": 3900000,
- "DEX Imaging": 284000000,
- "DMI Inc.": 705000000,
- "Dawn Foods": 1100000000,
- "Delta Regional Authority": 10000000,
- "Denbury": 1700000000,
- "Diamond Comics": 2700000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ergon Refining": 4500000000,
- "Fat Possum Records": 29700000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FishingBooker": 310000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GSC Enterprises Inc.": 34000000,
- "GardaWorld": 3800000000,
- "General Motors": 147200000000,
- "Georgia Collegiate Athletic": 4900000,
- "Globe Life Insurance": 5200000000,
- "Golden Triangle Regional Airport": 31100000,
- "Great River Railroad": 12200000,
- "GreenPal": 1200000,
- "Greenville MS": 6000000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "Gulfport\u2013Biloxi International Airport": 3500000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Havoline": 494000,
- "Haworth": 2300000000,
- "Haynes": 45700000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Hunter Douglas Group": 4600000000,
- "Hustle Gang": 2800000,
- "IDLE AIR": 9000000,
- "IHEARTMEDIA": 3800000000,
- "IQOR": 1000000000,
- "InTown Suites": 3400000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Insurify": 9300000,
- "Intelitek": 3300000,
- "Interfor": 354900000,
- "Invest Financial Corporation": 290000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jackson Academy": 12400000,
- "Jackson Free Press": 5700000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JustShareIt": 1000000,
- "KONE": 10900000000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Knots of Love": 4300000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Kwik Shop": 595000000,
- "LAZY MAGNOLIA": 4700000,
- "LCMC Health": 1700000000,
- "Laclede Group": 2200000000,
- "Landry's": 4600000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lennys": 9000000,
+ "22nd Century Solutions": 166300000,
+ "ADSi Software": 38200000,
+ "ARMS Courtyard": 59000000,
+ "AXIO Data Insights": 16200000,
+ "Academic Technologies Inc.": 10300000,
+ "Accu-Tech Corporation": 8500000,
+ "Acomputer": 28200000,
+ "Active DataComm": 15200000,
+ "Aegis Aerospace": 75000000,
+ "Aeon XML Technologies": 1000000,
+ "Alabama 1-Stop": 11100000,
+ "AlfaBytes": 15700000,
+ "American Healthtech": 46700000,
+ "Aptech Mobile Solutions": 162000,
+ "BTM Solutions": 23900000,
+ "Bay Integration Group": 15200000,
+ "Be Our Next Geek": 8500000,
+ "BeCloud LLC. IT Services & IT Consulting Services": 2500000,
+ "Bee Culture": 5500000,
+ "Benecom Technologies": 29700000,
+ "Biloxi Beach Properties LLC.": 915000,
+ "Biloxi Freezing And Processing Inc.": 1200000,
+ "Blackstar Technology Llc.": 29200000,
+ "Blue Equinox": 10000000,
+ "Bottom Line Technology": 32500000,
+ "Brice Media": 21100000,
+ "Buddy's Jeans": 5700000,
+ "BurtonDesign": 13300000,
+ "COLAMCO": 35200000,
+ "CYBERShark": 12000000,
+ "Camgian": 5800000,
+ "Cartesian Software": 17400000,
+ "Ccents": 10300000,
+ "Channel Control Merchants": 12500000,
+ "Chase Computer Services": 4300000,
+ "Chris Alford": 51100000,
+ "CodeLynx": 12000000,
+ "Common Cents Computers": 9200000,
+ "Communication Arts Co.": 34400000,
+ "Computer Brilliance": 8800000,
+ "Computer Consultants": 12000000,
+ "Computing Technologies": 18900000,
+ "Confit": 5500000,
+ "Connect Technology": 43400000,
+ "ConvergeOne": 1600000000,
+ "Copper Creative": 287000,
+ "Corvondix": 3900000,
+ "Cothern Computer Systems": 13100000,
+ "Crowson Web": 16600000,
+ "Customized Computer Solutions": 7200000,
+ "Cyber Technology Security": 38100000,
+ "Data Systems Management": 20200000,
+ "Dawn Rosenberg Davis": 7200000,
+ "Design Miami Ohio": 2600000,
+ "Digital Forensics Team": 4100000,
+ "Digital Network Solutions": 5900000,
+ "EasyBill32": 2400000,
+ "EdgeTheory": 8000000,
+ "EightHR": 5000000,
+ "Exceed Technologies": 27900000,
+ "Executive Level Group": 11200000,
+ "ExpressTime": 30000000,
+ "Extraordinary Business Solutions": 879000,
+ "Eyenovation": 2400000,
+ "FX Design Group": 13500000,
+ "Floranext": 4400000,
+ "Florida Web Architects": 1400000,
+ "Flynn Design": 2500000,
+ "FontSpace": 586000,
+ "Fortimize": 7000000,
+ "Front Porch Fodder": 498000,
+ "GC&E Systems Group": 59000000,
+ "GEO Jobe": 4500000,
+ "Gainwell Technologies": 1400000000,
+ "General Informatics": 15200000,
+ "Gentilly Group": 4500000,
+ "GeoConex": 1400000,
+ "Goatrons": 299000,
+ "Grayco Systems": 11600000,
+ "Gri5th": 434000,
+ "Gulf Coast Web Net": 205000,
+ "HYDRASEP": 776000,
+ "Hagerman": 35000000,
+ "Hammons & Associates Advertising": 3000000,
+ "HeLe Marketing": 365000,
+ "Home Builders Association of Jackson": 37000000,
+ "Howard Technology Solutions": 7900000,
+ "Hub City Lofts": 3900000,
+ "ICS Innovative Computer Solutions": 13200000,
+ "ILLUSvis": 10400000,
+ "IMRI": 21000000,
+ "IOIHAN": 2400000,
+ "IT Synergistics": 1500000,
+ "IT Technovations": 7000000,
+ "ITG Consulting": 30100000,
+ "Ideal Software Systems": 25000000,
+ "Illogic Projects": 13100000,
+ "Info Services": 11800000,
+ "Infoware Inc.": 2400000,
+ "Innovarge": 545000,
+ "Inventergy Global Inc.": 57100000,
+ "Iota Corp": 12000000,
+ "JANO Technologies": 19600000,
+ "JB Brandworks": 5200000,
+ "Jackrabbit": 1700000,
+ "James M Tour Group": 28200000,
+ "Janstan": 26600000,
+ "JennArt Design": 11800000,
+ "Jessie Zenor": 34200000,
+ "Jonathan Shull Design": 25300000,
+ "JusticeTrax": 5000000,
+ "Kitbash Brand Design": 63000,
+ "Kreios": 144000,
+ "LaserVault": 10000000,
"Level 3 Communications": 17500000000,
- "Liberty FCU": 11300000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
+ "LifeCycle Solutions": 6700000,
+ "Light Sense": 28300000,
+ "Lithic IT": 1400000,
+ "Littlejohn Robert L Dr DMD": 32500000,
+ "Local Logic Media": 5600000,
+ "Logista Solutions": 33100000,
"Logitech": 5500000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Material Sciences": 75000000,
- "Mazzio's": 6500000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merit Energy": 9200000,
- "Mississippi Export Railroad": 12000000,
- "Moe's Southwest Grill": 295500000,
- "Money Management": 30000000,
- "Motiva Enterprises": 20800000000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Oilwell Varco": 7200000000,
- "OMNOVA": 750000000,
- "Ochsner": 5900000000,
- "Ole Miss": 365000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Packaging Corporation of America": 8400000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Patriot Rail": 120200000,
- "PharMerica": 2100000000,
- "Philadelphia Water Department": 10000000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pirouline": 2300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Postlethwaite & Netterville": 11800000,
- "Prairie Farms": 3100000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "Rayonier": 1100000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rexair": 35000000,
- "Rolls-Royce": 15300000000,
- "Rooms To Go": 2500000000,
- "Ruth's Chris": 350200000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Soul of the South": 1900000,
- "Southwest": 22700000000,
- "Southwestern Athletic Conference": 3300000,
- "Sprint Mart": 25800000,
- "Square Books": 2400000,
- "Sqwincher": 23500000,
- "St Lawrence County Historical Association": 13000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Sweet Potato Queens": 1700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TVA": 13000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Technology Student Association TSA": 10000000,
+ "Magnetic Arrow": 2200000,
+ "Manufactured Homes": 5000000,
+ "Marr Software Professional Towing Software": 20300000,
+ "Martin Fed": 16900000,
+ "MetaCell": 2400000,
+ "Metridea": 12500000,
+ "Metrix Solutions": 55300000,
+ "Michelle James Designs": 432000,
+ "Mike's Trading Company": 11800000,
+ "Miovision": 35000000,
+ "Mississippi Bass Federation Inc.": 6300000,
+ "NUWAVE TECHNOLOGY PARTNERS LLC.": 4400000,
+ "Navagis": 6000000,
+ "Nerds On Site": 11300000,
+ "NetBase Technologies": 36400000,
+ "NetSource": 13000000,
+ "Netimpulses": 33200000,
+ "Netvoice Anywhere": 34200000,
+ "New Wave Tek": 20300000,
+ "Next Step Innovation": 19900000,
+ "Nfina": 15300000,
+ "Odom Creative Services": 3100000,
+ "Open Door Baptist Church - Potts Camp Ms": 5100000,
+ "P3C Technologies": 23100000,
+ "PEAK Solutions - a Technology Solutions Provider": 2400000,
+ "PILEUM": 26800000,
+ "PINNACLE BUSINESS SYSTEMS": 26000000,
+ "PK Technology": 22500000,
+ "Pay Plus Software": 480000,
+ "PayPlus Software": 3300000,
+ "Pearl River Technologies": 7000000,
+ "Pharmaceutical Operations Provider": 3000000,
+ "Pigment Studios": 28400000,
+ "Portis Group": 31000000,
+ "PredictHQ": 2000000,
+ "Presidio": 4400000,
+ "Printavo": 4400000,
+ "Pro-Tow": 17000000,
+ "Profound Logic": 1600000,
+ "QRyde": 32900000,
+ "Quadbridge": 22000000,
+ "Quality PC Of Meridian": 19200000,
+ "RJServices": 22100000,
+ "RLJohnson&Associates LLC.": 15700000,
+ "Rare Design": 3200000,
+ "Razor-Tek": 9800000,
+ "Rent Manager": 40900000,
+ "Rhino Web Studios Of New Orleans": 1400000,
+ "Rome Technologies Inc.": 19400000,
+ "S Valencia International": 44300000,
+ "SDJMedia": 10200000,
+ "SGA Software": 31200000,
+ "SOIGNE Corporation": 364000,
+ "SYOP": 31800000,
+ "Sev1Tech": 45600000,
+ "Seventh Knight": 3000000,
+ "Shasta Peak Marketing": 42100000,
+ "Shiro Apps": 7100000,
+ "Singletree Technologies": 6000000,
+ "Sky Frequency": 27700000,
+ "Slimware": 6000000,
+ "Small Pond Graphics": 349000,
+ "Software Plus": 14400000,
+ "Solutions Advantage": 16400000,
+ "South East Cyber Consulting Group": 14500000,
+ "Sovren": 31600000,
+ "SpeedWork Inc.": 20300000,
+ "Spry Squared": 7000000,
+ "Square 9": 15700000,
+ "Still Water Design Solutions": 402000,
+ "SuperDoor software": 16900000,
+ "Sync IT Solutions": 241000,
+ "Synergetics": 44400000,
+ "Synergistic Office Solutions": 49800000,
+ "TDAN": 2400000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tabs3": 12200000,
+ "TeamLogic Inc.": 7200000,
+ "TechDesigns007": 2700000,
+ "TechSystems": 25600000,
+ "Telaid Industries": 80000000,
"Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Things Remembered": 300000000,
- "Tim Hortons": 2800000000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNICOR": 6400000,
- "USALCO": 7300000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "Vera Bradley": 513100000,
- "Vicksburg Area Transit System": 1800000,
- "Victoria's Secret": 5400000000,
- "Viking Range": 7000000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WEHCO Media": 380000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Western Line": 32900000,
- "Western Sizzlin' Corp.": 6400000,
- "Which Wich": 79500000,
- "Wicks N' More": 6000000,
+ "Teton Data": 4600000,
+ "Think Anew": 12400000,
+ "Think VSS": 80000000,
+ "Three Seven Designs": 26400000,
+ "Thrive NextGen": 150000000,
+ "TotalCard": 3000000,
+ "Trek Associates": 23000000,
+ "Triton Systems": 28100000,
+ "TurkReno": 2300000,
+ "Twocan multimedia": 8600000,
+ "U.S.NEXT": 4500000,
+ "Vartopia": 7000000,
+ "Vaughn Design": 8800000,
+ "Vehement": 1000000,
+ "Venture Technologies": 16900000,
+ "WebEffects": 3600000,
+ "Webindia Master": 5300000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "YuleLog": 32300000,
+ "iQuest LLC.": 27000000
},
"Missouri": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "85under": 19200000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ASCE": 15700000,
- "ASEA Brown Boveri": 28800000000,
- "AUSA": 23000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acf Industries": 25000000,
- "Adorers of the Blood of Christ": 4200000,
- "Adventure Landing": 2000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Air Canada": 12200000000,
- "Alembic Inc.": 8700000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
+ "AO Industries": 25500000,
+ "AVI System's": 272500000,
+ "Able Mortgage": 13700000,
+ "AccentSoft": 11200000,
+ "Access Cost": 12600000,
+ "Ace Info Solutions": 100000000,
+ "ActiveDocs": 14000000,
+ "Adaptavist": 150000000,
+ "Aine Wendler Piano Studio": 1600000,
+ "Aisle411": 1200000,
+ "Alison Headley": 1200000,
+ "AllCom Global Services": 53500000,
+ "Alliance Technologies": 10000000,
"Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Academy of Environmental Medicine": 19300000,
- "American College of Apothecaries": 3200000,
- "American Eagle Outfitters": 5000000000,
- "American Outdoor Brands": 278600000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Andrews McMeel": 24200000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Arvest Bank": 958800000,
- "Asian Paints": 7000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atlanta Public Schools": 38500000,
- "Aurora Organic Dairy": 30100000,
- "Avadel Pharmaceuticals": 22300000,
+ "Altimetrik": 125000000,
+ "AlumniOnline Web Services LLC - Web Accessibility Checker": 30900000,
+ "American Computer Resources Inc.": 6200000,
+ "Amitech Solutions": 11800000,
+ "Apthorpe": 78400000,
+ "Armadillo Computer": 9800000,
+ "Artisan Infrastructure": 21300000,
+ "Arvada Technologies": 45400000,
+ "Ascent Corporation": 13000000,
+ "Asher Enterprises": 36400000,
+ "Atmo Host": 3600000,
+ "AutoAlert": 471700000,
+ "Automation & Control Concepts": 29200000,
"Avail Company": 4200000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJC HealthCare": 5700000000,
- "BW Papersystems": 300000000,
- "BYK Additives & Instruments": 1200000000,
- "BabyFirst": 44700000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Brands": 6900000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
+ "Avatara": 8000000,
+ "Avolve Software": 23100000,
+ "Axim Geospatial": 48500000,
+ "Aycot": 33600000,
+ "BMA Inc.": 13400000,
+ "BN Computer": 16000000,
+ "BOSS Solutions": 5600000,
+ "BP Marketing Group": 10100000,
+ "BPM Designs": 12600000,
+ "BRANSON PAWN LLC.": 3800000,
+ "BUCS Analytics": 6800000,
+ "Baker Image Group": 16800000,
+ "BauWau Design": 10300000,
+ "Ben Lee | Freelance Creative": 5200000,
"Benchmark Email": 13600000,
- "Big Whiskey's": 2000000,
- "Bishop DuBourg": 7200000,
- "Bishop LeBlond High School": 15900000,
- "Black Bear Diner": 18700000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "Blue KC": 4500000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bluescope Steel Welded Products": 11700000000,
- "Boehringer Ingelheim": 23300000000,
+ "Bergman Consulting Services": 15200000,
+ "Beveridge Seay": 10300000,
+ "Big-Dog Studio": 32500000,
+ "Bliss Wellness": 10300000,
+ "Blue Oak Technology Solutions": 28000000,
+ "BluePrince": 12800000,
+ "Bluewave Technology Group": 22200000,
+ "Bohn Studios": 19000000,
"Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "Botanical Society of America": 11800000,
- "Brass Armadillo": 13300000,
- "Breckenridge Brewery": 30000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "Burlington Junction Railway": 18600000,
- "Burton Snowboards": 400000000,
- "C2FO": 98700000,
- "CNN Films": 1500000000,
+ "Borchert": 21500000,
+ "BounceBack Bracket": 10900000,
+ "Branham IT Solutions": 17400000,
+ "Brick Street Creative": 29300000,
+ "Bridge Embedded Systems Inc.": 26600000,
+ "Buchheit Inc.": 209500000,
+ "Budde Systems": 9500000,
+ "C O EXPERTS DIVISION OF G E KERR COMPANIES INC.": 21300000,
+ "C Watkins & Associates Inc.": 18600000,
+ "CHAPSTYLE": 35400000,
+ "CIRCUITREE": 10800000,
+ "CMIT Solutions": 60000000,
+ "COLAMCO": 35200000,
+ "COMP-U-HELP": 25000000,
+ "CONNEXUS Inc.": 11800000,
+ "CPros": 14400000,
"CVidya": 12100000,
- "California Mathematics Project": 11200000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Can-Am Off-Road": 6300000000,
- "CapFed": 208800000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Chaminade College Preparatory School": 26500000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Children International": 114400000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Brothers College High School": 13600000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
+ "Cambium Data": 12700000,
+ "Cambridge Publishing Group": 14200000,
+ "Campfire Studios": 17800000,
+ "CanvasGrafix": 2400000,
+ "Cart32": 10000000,
+ "Casey Associates": 30000000,
+ "CaterTrax": 15000000,
+ "Cavener's Library & Office Supplies": 15500000,
+ "Centerprism": 4600000,
+ "Central Data": 7000000,
+ "Central Research": 14500000,
+ "Centric Group": 16100000,
+ "CentricMIT": 25000000,
+ "Centurion Technologies": 41600000,
+ "Ceregraphic": 7200000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Chameleon Integrated Services": 62300000,
+ "Choice Marketing Group": 24900000,
+ "Chris Hammond": 16300000,
+ "Christoc": 14900000,
+ "Chriswerx": 18800000,
"Cincom": 196800000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
+ "Clarity Software Systems": 15000000,
+ "Clear marketing design": 18000000,
+ "Cloud Commerce": 10400000,
"Cloudflare": 894100000,
- "Cofactor Genomics": 6000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Daily Tribune": 2900000,
- "Comfort Dental": 17800000,
- "Community Coffee": 245000000,
- "Consolidated": 1200000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
+ "Cloudways - The Best Cloud Web Hosting": 18800000,
+ "Co Z Toolkit": 1400000,
+ "Colaberry": 14300000,
+ "Collaboratech": 26600000,
+ "Commit Studio": 35500000,
+ "Como Dough Pizza Truck": 29300000,
+ "CompuLink": 29400000,
+ "Computer Business Consultants Inc.": 22700000,
+ "Computer Consultants of St. Louis": 15500000,
+ "Computer Network Solutions": 19800000,
+ "Computerease": 28400000,
+ "Computing Strategies Inc.": 15600000,
+ "Connectria": 66800000,
+ "Conperio": 24800000,
+ "Consul Tech Management": 13900000,
+ "Contra brand": 16200000,
+ "ConvergeOne": 1600000000,
"Conversica": 35000000,
- "Convoy of Hope": 21500000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Cortex Innovation Community": 2600000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Credit Sesame": 45000000,
- "Crown Financial Ministries": 10700000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
+ "Cornerstone Solutions Group Inc.": 12700000,
+ "Corporate Car Online": 44200000,
+ "Cottage Design": 11700000,
+ "Craig Computers": 3000000,
+ "Creative Business Services": 9900000,
+ "Creative Data Systems": 35400000,
+ "Critical Mass Web Design": 18700000,
"Crunchbase": 60000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "Cutco Corporation.": 200000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "EPR Properties": 612500000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Elsevier": 3500000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Estes Rockets": 30600000,
- "Ethan Allen": 845000000,
- "FM Global": 5000000000,
- "Farmer Brothers": 469200000,
- "Farmington MO": 15400000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
+ "Current Temp": 14100000,
+ "CyberSecOp": 10000000,
+ "Cyberbos": 15500000,
+ "Cyclone Press": 31300000,
+ "Cyderes": 300000000,
+ "DI-COMM": 20200000,
+ "DISC Corporation": 15500000,
+ "DNP3": 13100000,
+ "DV Technologies": 13200000,
+ "Dabeeo": 2000000,
+ "Daisy Stamps & Marking Products": 12800000,
+ "Daley Design": 1400000,
+ "Data Analyzers Data Recovery Services": 4200000,
+ "Data Dash": 15300000,
+ "Data Dynamics": 15700000,
+ "Data Porters": 1400000,
+ "Dataretrieval": 29800000,
+ "Datasnare": 40800000,
+ "Dave Goerke": 22100000,
+ "Daystar Software": 17900000,
+ "Delta Systems": 1200000,
+ "Demand Management Inc.": 15600000,
+ "Demand Solutions": 30000000,
+ "Design by Bethany": 18600000,
+ "Devour Yourself": 10000000,
+ "Dexter Envelopes": 35300000,
+ "Diamond Consulting Group Inc.": 14000000,
+ "Digital Radium": 48800000,
+ "Distinctive Design Solutions": 22700000,
+ "Don Wessel Oldsmobile-Honda": 27900000,
+ "Dream Home Appraisal Services": 20200000,
+ "E-hosting4lesscom": 13600000,
+ "ECI Software Solutions": 365000000,
+ "ECP computers": 21300000,
+ "EMP Media": 15300000,
+ "ETRN": 21500000,
+ "Earthly Technologies": 1100000,
+ "Easy Does It Technologies LLC.": 27700000,
+ "Echo Brand Geeks": 15500000,
+ "Efficion Consulting": 16200000,
+ "Engaged Technologies": 35000000,
+ "Ennov": 15000000,
+ "Enterprise Consulting Group": 17400000,
+ "Enterprise Control Systems": 1400000,
+ "EverView": 280000000,
+ "Evermac Solutions": 31800000,
+ "Exoft": 53800000,
+ "Exsellr8": 19700000,
+ "FACE Websites LLC.": 34100000,
+ "FLORISSANT FINE ARTS COUNCIL": 14900000,
+ "FX Design Group": 13500000,
+ "Facilisgroup": 15700000,
+ "Farmers Financial Resources Inc.": 13000000,
+ "Fenix Strategic Design": 19700000,
+ "FidelityMax": 15400000,
+ "File Spring": 14400000,
+ "Financial Computer Support Inc.": 37400000,
"First Databank": 70000000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
"Fiserv": 17700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Francis Howell School District": 2300000,
- "Franklin Resources Inc.": 2900000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "GE HealthCare": 17700000000,
- "GEHA Holdings Inc.": 4500000000,
- "GFL Environmental": 6400000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Goedeker's": 362300000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Goodrich Quality Theaters": 2100000,
- "Goons of Balatroon": 1000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Grove Collaborative": 361900000,
- "Grupo Elektra": 7900000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halls": 15100000,
+ "Fixed Forever": 3600000,
+ "Flightware": 13000000,
+ "Fluent Consultants": 27200000,
+ "ForgeFX": 4300000,
+ "FreedomWare": 30300000,
+ "FroYo Premium Frozen Yogurt - Central West End": 16700000,
+ "Frontline Managed Services - St. Louis": 15000000,
+ "FundRaiser Software": 10000000,
+ "Fybr": 3000000,
+ "GCOM": 150000000,
+ "GFI Digital": 80100000,
+ "GMA Design Group Inc.": 14500000,
+ "Game Servers": 1300000,
+ "GeeksDTS": 30000000,
+ "Gemini Consulting & Services": 13900000,
+ "Gemini Solutions": 12700000,
+ "GeoDecisions": 35000000,
+ "Gimmal": 20000000,
+ "Glance Creative": 13000000,
+ "Global Advertising Solutions": 12900000,
+ "Global-ENC": 13400000,
+ "Golamac Inc Creative Services": 13600000,
+ "Greg Ken": 16800000,
+ "Guiffy": 28400000,
+ "Gym Assistant": 50500000,
+ "HD Precision Analytics": 1400000,
+ "HELP Software Inc.": 22900000,
+ "HJ Design": 22200000,
+ "HL Group": 32200000,
+ "Hagerman": 35000000,
"Handmark": 11500000,
- "Hapag-Lloyd": 33100000000,
- "Happy Egg": 25000000,
- "Harbor Freight": 5000000000,
- "Harbour Group": 1300000000,
- "Haworth": 2300000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "Houlihan's": 750000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "IES": 10000000,
- "IHEARTMEDIA": 3800000000,
- "INB": 42000000,
- "Imo's. Pizza": 200000000,
- "InTown Suites": 3400000,
- "Indiana Public Retirement System": 6200000,
- "Ingredion Incorporated": 7200000000,
- "Insurify": 9300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Justin Boots": 40000000,
- "KCPD": 20600000,
- "KONE": 10900000000,
- "KVC Health Systems": 7400000,
- "Kaiser Permanente": 93100000000,
+ "Healthcare Technology Advisors": 19600000,
+ "Heartland Business Systems": 147300000,
+ "Hemingway's Wine & Bistro": 18000000,
+ "Hemmersbach": 288000000,
+ "Hobart Design Group": 33600000,
+ "Holder Technology": 21100000,
+ "Hoot Design Company | A Women-led Creative Branding Agency": 11500000,
+ "Hoss's Market & Rotisserie": 31800000,
+ "Hostirian": 10400000,
+ "Howell GC": 10700000,
+ "Hurst Inc.": 10100000,
+ "IMS SecureIT": 2900000,
+ "INFO-TEK Enterprises LLC.": 1400000,
+ "IOmniscient": 5800000,
+ "ISG Technology": 112600000,
+ "IT Brigade Inc.": 1400000,
+ "ITEK Computer Services": 21800000,
+ "ITW Labels": 14600000,
+ "Ikayzo": 13200000,
+ "Imagenation Design": 24100000,
+ "Impact Directories": 14100000,
+ "InStyle Software": 12400000,
+ "Infinitech Consulting": 55900000,
+ "Infoplus Commerce": 6000000,
+ "InformaServ": 20100000,
+ "Information security networks": 10000000,
+ "Innova Solutions Private Limited": 50000000,
+ "Integrated Micro Solutions": 24800000,
+ "IntegrityFirst Solutions": 47100000,
+ "Intelliquip": 10700000,
+ "InterCorp Inc.": 17300000,
+ "InterVision": 19000000,
+ "Interlace Health": 16500000,
+ "Ionware": 10500000,
+ "Ivertech": 15600000,
+ "Ivey Selkirk": 11300000,
+ "JCM Solutions": 32600000,
+ "JMM Software": 43300000,
+ "JTJ Software": 67600000,
+ "JW Software": 23000000,
+ "Jeff Albrecht Studios": 26400000,
+ "Jill McDonald Design": 11800000,
+ "JusticeTrax": 5000000,
+ "K12itc": 10400000,
+ "KANOE": 35000000,
+ "KC IT Guy": 26600000,
+ "KCITP": 2400000,
+ "KNOWiNK": 54000000,
"Kaltura": 169400000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Keefe Bruyette & Woods": 425000000,
- "Kelly Services": 5000000000,
- "Kemper": 5800000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirksville Regional Airport": 14000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kranzberg Arts Foundation": 16800000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "LEGO": 8100000000,
- "Laclede Group": 2200000000,
- "Leaf Trading Cards": 2400000,
- "Lee's Famous Recipe": 10100000,
- "Leggett & Platt": 5300000000,
- "Leia Inc.": 10000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Kansas City Paddler": 11600000,
+ "Karmak": 35000000,
+ "Karpel Solutions": 13300000,
+ "Kathryn Morgan": 5500000,
+ "Kazer": 13200000,
+ "Kennard Industries": 9300000,
+ "Keyhole Software": 16900000,
+ "Kieva": 20000000,
+ "KnowledgeLake": 17500000,
+ "Krcginc": 26800000,
+ "Kreative Solutions Group": 1000000,
+ "Kuhlmann Leavitt": 15800000,
+ "Kyvon": 26000000,
+ "L & H Computer Services": 23500000,
+ "L Moore Design": 18200000,
+ "LammTech": 33900000,
+ "LanServ": 19300000,
+ "Lark Creative Studio": 16500000,
+ "Lazerware": 17600000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Teen": 3000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lippincott Williams & Wilkins": 4200000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lotuspool Records": 11100000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "MAT Holdings Inc.": 1500000000,
- "MBB SE.": 680300000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "Marel hf.": 1600000000,
- "Maritz Holdings Inc.": 25900000,
- "McLane Company": 50000000000,
- "Mechanix Wear Canada Inc.": 12900000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
+ "Liberty Programming": 36500000,
+ "LightEdge Solutions": 44600000,
+ "Linric": 29000000,
+ "Livehelper": 23400000,
+ "Lowery Systems": 13600000,
+ "MB Technology Solutions": 10000000,
+ "MCCI LLC.": 22200000,
+ "MCH Strategic Data": 15000000,
+ "MFS Design": 11200000,
+ "MISSOURI HISTORICAL SOCIETY JEFFERSON MEMORIAL BUILDING": 14300000,
+ "MLOGICA": 19000000,
+ "MT-Consulting Services LLC.": 42300000,
+ "MWCBS": 32300000,
+ "MWM Consulting": 29300000,
+ "MacKinney": 21800000,
+ "Magee Marketing": 23400000,
+ "Managed Computer Services LLC MCS": 20600000,
+ "MapleSoft": 21700000,
+ "Marathon TS": 22900000,
+ "Marco Technologies": 400000000,
+ "MayeCreate": 17600000,
+ "Medtech Billing System": 36600000,
+ "Menlo": 8500000,
"MetaMatrix": 7000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Police Department - City of St. Louis": 21500000,
- "Mexico Ledger": 52900000,
- "Microsemi": 1700000000,
- "Milliken & Co.": 2500000000,
- "Milliman": 1200000000,
- "Mimi's Cafe": 23000000,
- "Missouri Foundation for Health": 9200000,
- "Missouri State High School Activities Association": 30800000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Munger Moss Motel": 21900000,
- "Munich Re": 73300000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NIDEC": 15600000000,
- "NISA Investment": 59000000,
+ "Michael Merritt Designs": 3900000,
+ "Microcon": 15600000,
+ "Midwest Computech": 15700000,
+ "Midwest Data Center": 25800000,
+ "Midwest It": 31500000,
+ "Mike Roberts": 11000000,
+ "Mike Sofka Illustration": 46900000,
+ "Miovision": 35000000,
+ "Mission Critical Partners": 10000000,
+ "Missouri Data Systems": 35100000,
+ "Mist Consulting": 5200000,
+ "Mitsu Inc.": 23100000,
+ "Mobilis Technologies": 52400000,
+ "Momentus Technologies": 37500000,
+ "Moser Consulting": 10000000,
+ "Mulligan Technologies": 32400000,
+ "Municipal Information Systems": 15500000,
+ "Mycroftinc": 9600000,
+ "Mysavvytech": 11000000,
+ "N-Vu": 20300000,
+ "NISC": 34100000,
"NJVC": 45000000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Building Arts Center": 22400000,
- "National Model Railroad": 5300000,
- "Neiman Marcus": 2600000000,
- "Neosho Daily News": 36100000,
- "Nerinx Hall": 9100000,
+ "NKC Electric": 6800000,
+ "NMGI": 20400000,
+ "NTP cybersecurity": 33800000,
+ "Nanocomposix": 15800000,
+ "Nelson Technologies": 27900000,
+ "Nerds On Site": 11300000,
+ "Net Engineers": 13300000,
+ "Net at Work": 53000000,
"NetApp": 6500000000,
+ "NetGain Technologies": 47600000,
"Netsmart": 526000000,
- "New Scientist": 26700000,
- "New York Life Investments": 27100000,
- "News-Press & Gazette Company": 9800000,
- "News-Press NOW": 10200000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "North Sails": 27500000,
- "NuStar Energy": 3200000000,
- "OCLC": 214600000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Paralyzed Veterans of America": 26500000,
- "Park Hill High School": 105600000,
- "Parker Hannifin": 15900000000,
- "Patric Chocolate": 18900000,
- "Patriot Rail": 120200000,
+ "Networks By Design": 33100000,
+ "New Age Graphics": 12100000,
+ "New Frontier Technologies": 13700000,
+ "Nex Gen Technologies Inc.": 14200000,
+ "Nexus Communications Group": 6500000,
+ "Nfina": 15300000,
+ "Nomad Electronics": 12300000,
+ "Northern Summit Technology": 27600000,
+ "Northfound": 10600000,
+ "Novacoast": 100000000,
+ "OCCSI": 11900000,
+ "OTSI-Global": 35000000,
+ "Oakwood Systems Group": 30000000,
+ "Obermoeller Graphic Design & Commercial Photography": 35000000,
+ "Object Computing": 42500000,
+ "Oblique Drive": 1800000,
+ "Obsidian Solutions Group": 38000000,
+ "Oddity Software": 15300000,
+ "Omnigo Software": 25900000,
+ "OnPoint Consulting": 1000000,
+ "OnlyLink Business Solutions": 17800000,
+ "OpenMethods'": 10000000,
+ "Opti9": 23700000,
+ "Optimatics": 22000000,
+ "Optimi": 27200000,
+ "Ossia Systems": 24800000,
+ "Owl Software": 23300000,
+ "OzarksNet": 17500000,
+ "P3 Strategies Inc.": 10400000,
+ "PAR Government": 14000000,
+ "PC PitStop Data Storage Solutions": 25600000,
+ "PRI Global": 21400000,
+ "Paladin Pursuit": 6100000,
+ "Panic Creative": 20700000,
+ "Paradowski Creative": 23500000,
+ "PayIt": 11300000,
"Paylocity Corporation": 923400000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "Prairie Farms": 3100000000,
- "Pretzelmaker": 125000000,
- "Price Chopper": 1500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Purina One": 10000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
+ "Pearson-Kelly Technology": 13400000,
+ "Personalized Computers": 13200000,
+ "Pin Oak Web Designs": 20800000,
+ "Pivot Point Security": 11200000,
+ "Pixeltech": 24000000,
+ "PolicyEngage": 3400000,
+ "Pomeroy": 850000000,
+ "Potomac Systems": 25200000,
+ "Pratum": 11200000,
+ "Prefix Technologies": 30400000,
+ "Prep Networks": 19000000,
+ "Pretty Snazzy": 5300000,
+ "Privacy Post": 15800000,
+ "Pro Computer Solutions": 41200000,
+ "ProServ Business Systems Inc.": 6700000,
+ "Produce Pro Software": 13400000,
+ "Professional Technologies": 30500000,
+ "Propertybase": 26000000,
+ "Provision Data Solutions": 17900000,
+ "PruTech": 43000000,
+ "Q2 Designs Kansas City Missouri": 67600000,
+ "QFlow": 13200000,
+ "QSAccess": 15800000,
+ "Qiwi Trails": 22900000,
+ "Quilldesign": 28500000,
+ "QwikQuote": 17500000,
+ "RDF Technical Services": 11300000,
+ "REI BlackBook": 57400000,
+ "REJIS": 11900000,
+ "RESULTS Technology": 18900000,
"Rackspace": 3100000000,
- "Radio Flyer": 26100000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Renkus-Heinz": 6900000,
- "Riot Games Inc.": 1800000000,
- "Robinson Fresh": 11400000,
- "Rock & Brews": 33300000,
- "Roehl Transport": 421300000,
- "Rolls-Royce Motor Cars": 940000000,
- "Roman Catholic Diocese of Jefferson City": 22100000,
- "Rotel": 38800000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
+ "RaczDesign": 24500000,
+ "RazorBall": 12700000,
+ "RazorBall Inc.": 30800000,
+ "RealOMS": 17700000,
+ "Recursive Labs": 19200000,
+ "RedMane": 29200000,
+ "Redberri": 17300000,
+ "Rent Manager": 40900000,
+ "Reonomy": 18300000,
+ "Retail Store Technology": 20400000,
+ "RevUnit": 15200000,
+ "Rithm Systems": 15600000,
+ "Riverside Graphics and Web Design": 15800000,
+ "Riverside Technologies Inc. RTI": 19000000,
+ "Rodd Dierker Custom design and programming for the mobile web": 23500000,
+ "Rome Technologies Inc.": 19400000,
+ "Ronningen Design": 3400000,
+ "Rose Design": 3300000,
+ "Royal Solutions": 64800000,
+ "Rustmedia": 35100000,
+ "Rx30": 37400000,
+ "S2Tech": 15700000,
"SAP": 33500000000,
- "SBA Communications": 2500000000,
- "SEND International": 12800000,
- "SHB": 11800000,
- "SKECHERS USA Inc.": 6900000000,
- "SRG Global": 1500000000,
- "SSM Health": 8500000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schnucks": 3000000000,
- "Schott NYC": 143300000,
- "Schreiber Foods": 4800000000,
- "Seaboard": 11200000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Seminis": 22200000,
- "Sensient Technologies Corporation": 1400000000,
- "Shakespeare's Pizza": 5900000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Sioux Chief": 42000000,
- "Sisters of St. Joseph of Carondelet": 29400000,
- "Sleep Number": 2100000000,
- "Smith Electric Vehicles": 25000000,
- "Sonoco": 6500000000,
- "Southeast Missourian": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Space Perspective": 5000000,
- "Sqwincher": 23500000,
- "St Lawrence County Historical Association": 13000000,
- "St. Charles Area Transit": 12600000,
- "St. Joseph's Academy": 10000000,
- "St. Louis Public Safety Department": 10800000,
- "St. Louis Public Schools": 13300000,
- "Stantec": 3100000000,
- "Starr Insurance Companies": 3500000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steampunk Brew Works": 36600000,
- "Steelcase Inc.": 3100000000,
- "Stephen Ministries": 27000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Student Transportation of America": 637200000,
- "Suit Supply France SARL": 350000000,
- "Summit Management": 34000000,
- "Sun Life": 17200000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tacony": 285000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The First Line": 18800000,
- "The Hartford": 21400000000,
- "The Legal Aid": 18000000,
- "The Maneater": 22900000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Olathe News": 11700000,
- "The Parking Spot": 46000000,
- "The Peninsula Hotels": 288800000,
- "The Scoular Company": 4000000000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trading Places": 27200000,
- "Trans-Lux": 15700000,
- "Trelleborg": 3000000000,
- "TriWest": 80000000,
+ "SBN Unlimited": 24900000,
+ "SEKTR": 10000000,
+ "SEMO Times": 24500000,
+ "SMG Canada ULC": 64800000,
+ "SSE Inc.": 100000000,
+ "STL Technology": 21300000,
+ "Saitech Corp": 18300000,
+ "Savantage": 40000000,
+ "Scanning America": 27200000,
+ "SecurIT360": 1000000,
+ "Secure Data Technologies": 17700000,
+ "Sequoyah Software": 10000000,
+ "Server4You": 10000000,
+ "Service Express": 130000000,
+ "Shining Star Services": 25200000,
+ "Sinister Visions": 22600000,
+ "Sippel Technologies": 20200000,
+ "Siri InfoSolutions": 17500000,
+ "Skeleton Key": 8700000,
+ "Smart Data Center": 10000000,
+ "SnapShot Technologies": 37600000,
+ "Snort": 19400000,
+ "Softchoice": 957500000,
+ "Software Design Partners": 18900000,
+ "Soladata": 11100000,
+ "Solution Management": 26300000,
+ "SpearTip": 12000000,
+ "Squadra Technologies": 19500000,
+ "Sri Technologies": 10000000,
+ "St Joseph Diesel Inc.": 6400000,
+ "St. Louis Christian Academy": 20900000,
+ "St. Louis Integration": 11300000,
+ "Stained Glass Association Of America": 43700000,
+ "Stan Gellman Graphic Design": 17400000,
+ "Starrtek": 10000000,
+ "StarsDesign": 17200000,
+ "Stonefield Design": 16600000,
+ "Strata Decision": 60000000,
+ "Stronghold Data": 24800000,
+ "Style Portfolios": 10700000,
+ "SubTropolis Technology Center": 7200000,
+ "Subsplash": 10000000,
+ "Sudora": 22100000,
+ "Sugar Design Studio": 18800000,
+ "Suncoast Networks": 33100000,
+ "SupplyShelf": 12900000,
+ "Swanson Gentleman Hart Inc.": 2400000,
+ "SynergEd": 21400000,
+ "Synetic Technologies": 28700000,
+ "Systems Design Associates": 15500000,
+ "TDK Technologies": 22100000,
+ "TECHNET Enterprises of Florida": 30500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "THINK GLOBALe": 26700000,
+ "TS Conard": 22300000,
+ "TSC Telemasters Sales Coaching and Consulting": 32800000,
+ "Tabs3": 12200000,
+ "Tallgrass Technologies": 13800000,
+ "Tapestry Solutions": 211000000,
+ "TeamCentric Technologies": 5000000,
+ "Teammedia": 14900000,
+ "Tech News Today": 5900000,
+ "TechGuard": 43400000,
+ "Technology Partners": 26000000,
+ "Technology Plus": 15200000,
+ "Techserv": 17600000,
+ "Ten8 Group": 1400000,
+ "The Ascend Group": 10900000,
+ "The Creative Department": 15300000,
+ "The Creative Page": 28300000,
+ "The Foundry Software": 16000000,
+ "The Graphics Company": 15600000,
+ "The Integra Group": 12000000,
+ "The Jenny Pinc": 2300000,
+ "The Joseph Comapny": 24400000,
+ "The Official Ste": 32500000,
+ "The Sky Floor": 10000000,
+ "TierPoint": 405000000,
+ "TooBaRoo": 21500000,
+ "Tracy Design": 10300000,
+ "Trello": 12000000,
+ "Triggerfish": 14700000,
"True Digital Security": 14000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "US Vision": 300000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
+ "TurnGroup": 10900000,
+ "Turnkey Technologies": 10400000,
+ "Twisted Pair Software": 21600000,
+ "TwoFour Creative LLC.": 13400000,
+ "Tyson Technologies": 13900000,
+ "UNCOMN": 11000000,
+ "Umbrella Managed Systems": 49000000,
+ "Ungerboeck": 70000000,
+ "UniqWebTech": 1000000,
"Unit 4": 550000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Utilimaster Corporation": 850000000,
+ "Universal Data Forensics": 26300000,
+ "UniversityTickets": 10000000,
+ "Utc usa": 39800000,
"VAST Data": 100000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "VanEck": 25000000,
- "Vera Bradley": 513100000,
- "Verdura": 49000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Virtusa": 1300000000,
- "Viscofan": 932100000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voltron": 4800000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Wentworth Military Academy & College": 1200000,
- "West Nodaway High School": 5800000,
- "Western & Southern Financial Group": 5300000000,
- "Wheatstone": 21100000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wieland Group": 6100000000,
+ "VITEC": 10600000,
+ "Valorem Consulting": 21400000,
+ "Valorem Reply": 26000000,
+ "Virpus": 6600000,
+ "Visory": 3500000,
+ "Vlamis": 18500000,
+ "Voicewerk": 18100000,
+ "Watermark Creative": 24200000,
+ "Watermark Solutions": 13000000,
+ "Wayne Bernskoetter Construction": 19500000,
+ "Web-Erectors": 26500000,
+ "Wells Computer Systems Corporation": 22000000,
+ "Who4design": 16400000,
+ "Whos.amung": 10000000,
+ "WideBand": 32200000,
+ "WillCo Tech": 19900000,
+ "Willoughby Design": 1600000,
+ "Winning Endeavors": 13200000,
+ "Winsby Group": 11600000,
+ "Wired Technologies": 29300000,
+ "WiredRE": 14500000,
+ "Wireless Blue Yonder": 11800000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Woodland Scenics": 22400000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wyoming Library": 32800000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
+ "Wood Stone Floor To Ceiling": 15600000,
+ "XPond": 19000000,
+ "Zero Design": 46600000,
+ "Zone 5 Pix": 30000000,
+ "eBanyan": 20600000,
+ "goINET": 6800000,
+ "i7MEDIA": 34400000,
+ "iTransfluence": 6000000,
+ "ideaPort": 1400000,
+ "mhe inc.": 23200000,
+ "rfrConsulting": 12300000
},
"Montana": {
- "ABC Supply": 12100000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ATF": 1000000000,
- "Academy of General Dentistry": 8000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Indian College Fund": 7800000,
- "American Trucking Associations": 180900000,
- "Andrew Christian": 8000000,
- "Applied Materials": 25200000000,
- "At Home store": 1700000000,
- "Aurora Innovation Inc.": 145300000,
- "Avista Utilities": 1500000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bicycle Health": 8700000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Black Rifle Coffee": 233100000,
- "Bozeman High School": 15000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burton Snowboards": 400000000,
+ "22nd Century Solutions": 166300000,
+ "AFFCOM": 33600000,
+ "AWD Commerce": 1400000,
+ "AXIOM IT Solutions": 5100000,
+ "Acadeus": 10000000,
+ "After Hours Design Studio": 123000,
+ "Amber Waves": 16500000,
+ "Andescotia": 30200000,
+ "Apocalypse Laboratories": 8100000,
+ "AquilaVision": 6500000,
+ "AristoCAT": 10000000,
+ "Art Attic": 49800000,
+ "Atrium Insight Inc.": 30000000,
+ "BBros - Web Application Development": 1400000,
+ "Bakko Design": 23900000,
+ "Bear Canyon": 9400000,
+ "Bearing the Light": 16900000,
+ "Beartooth Web Development": 3700000,
+ "Beaver Creek Consultants": 5600000,
+ "Below 32 Design": 7900000,
+ "Betula Creative": 31800000,
+ "Big Red Barn Design": 13000000,
+ "Big Sky Web": 5900000,
+ "Billings Carpet Cleaning & Water Damage Restoration": 14500000,
+ "Black Mountain Software": 1900000,
+ "Blank Canvas Creative": 3000000,
+ "BlueAngelHost": 461000,
+ "Bozeman Interactive": 4000000,
+ "BridgeWorks Creative": 20200000,
+ "Byte Arts": 479000,
+ "Byte Savvy": 21900000,
"CACI": 6200000000,
- "CHEF'STORE": 1100000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Camp Fire": 10000000,
- "Centene": 144500000000,
- "Center for Inquiry": 306000,
- "Chick-fil-A": 5800000000,
- "Clean Juice": 7000000,
- "Coast To Coast Tickets": 4300000,
- "Coca-Cola Europacific Partners": 279000,
+ "COGNITIVE WORLD": 2400000,
+ "COSMIC PATTERNS SOFTWARE": 3200000,
+ "CUCsoft": 5000000,
+ "Cerium Networks": 32500000,
+ "Chieko Horn Photography & Design": 12300000,
+ "Click Studios": 1900000,
+ "Clinton J Contract Services Inc.": 5900000,
+ "CloudSparse": 39200000,
+ "Coded canvas": 33100000,
+ "Coderanch": 5000000,
+ "CompuNet Inc.": 146600000,
+ "Computer Software Associates Inc.": 2900000,
+ "Computers Unlimited": 6100000,
"Computerworld": 40900000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Culligan": 1400000000,
- "DAV": 3900000,
+ "Concise Logic": 31700000,
+ "Connie Cermak": 1300000,
+ "CyTech Services": 27800000,
+ "DAY at A GLANCE": 10000000,
+ "DEV406": 6000000,
+ "DWH Systems": 7000000,
"DataWorks Plus": 3000000,
- "Defenders of Wildlife": 8400000,
- "Demag Cranes": 25200000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "EMAC website": 5700000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Ethan Allen": 845000000,
- "Express Arrow": 12300000,
- "Farmer Brothers": 469200000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "Flathead Beacon": 3300000,
- "Forrester": 525100000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "Gibson Brands Inc.": 366600000,
- "Great Harvest": 21200000,
- "Grindline Skateparks": 27600000,
- "HELM Boots": 7000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "Hwy 55": 3400000,
- "IGA": 250000000,
- "Informed Jury": 2800000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Johns-Manville Corporation": 3000000000,
- "Johnson Braund": 11000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Keller Rohrback": 39800000,
- "Kirby Company": 500000000,
- "Knots of Love": 4300000,
- "Land Trust Alliance": 4100000,
+ "Datum Software": 15700000,
+ "Dave Simon": 16800000,
+ "Deeptree": 12600000,
+ "DetailCAD": 21200000,
+ "Digital Engine Software": 1400000,
+ "Digital Forensics Team": 4100000,
+ "Dolce Software": 5500000,
+ "DrySpark": 1900000,
+ "EDI Concepts": 37800000,
+ "EMMAUS CAMPUS MINISTRY": 6000000,
+ "EQUIVANT": 1500000000,
+ "Eckstrom Consulting": 12000000,
+ "Emesent": 6000000,
+ "Entre Technology Services": 32900000,
+ "Exit 360 Creative": 1400000,
+ "Eyesite Creative": 306000,
+ "Fifth Street Design": 15700000,
+ "Flora Fauna Designs": 28200000,
+ "Fortune Technologies": 53800000,
+ "Foundant": 11100000,
+ "Futuriom": 2400000,
+ "GCS is a Geospatial IT Services Company.": 3100000,
+ "GL Solutions": 25000000,
+ "GatherBoard": 1700000,
+ "Gecko Designs": 14600000,
+ "Glacier Taxi": 21200000,
+ "Granite Peak Systems": 28300000,
+ "Grimm Graphics": 4600000,
+ "Guroots": 26500000,
+ "Heartsong Massage Therapy": 34100000,
+ "Heins Creative": 29600000,
+ "High Point Networks": 25000000,
+ "Hmmbird design": 7600000,
+ "Hoplite Industries": 28800000,
+ "Hovie": 12800000,
+ "IES Inc.": 13100000,
+ "Icon Media Communications": 21100000,
+ "Ident-A-Kid": 13500000,
+ "Information Systems of Montana": 43600000,
+ "Inkfish Creative": 12200000,
+ "Inside Track Computing": 24100000,
+ "Jane Rader Designs": 5300000,
+ "Jobsite Mobile": 2400000,
+ "Joy Designers": 3400000,
+ "K.I. Computing": 11200000,
+ "KTC Office and Web": 4700000,
+ "Kamp Data": 27200000,
+ "Kindful": 10000000,
+ "Kopavi": 6300000,
+ "Kosmojo": 1400000,
+ "LMG Security": 6000000,
+ "Lawlor Associates": 6700000,
"Level 3 Communications": 17500000000,
- "Lifepoint Health": 8300000000,
- "Lifestyle Stores": 1300000000,
- "Lincare Holdings": 2000000000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "MOOYAH": 11700000,
- "Magnite": 145200000,
- "Main Event": 678000000,
- "Marine Turbine": 50000000,
- "Minneapolis Fed": 5100000,
- "Missoula Montana Airport": 22900000,
- "Missoulian": 6600000,
- "Montage Hotels": 400000000,
- "NOAA Weather Radio": 36400000,
- "NRDC": 190000000,
- "National Oilwell Varco": 7200000000,
- "National Pasta Association": 4000000,
- "Oerlikon": 3100000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Pace Analytical": 450000000,
- "Parkland": 19500000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "PharMerica": 2100000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Plain Green Loans": 7000000,
- "Planned Parenthood": 1600000000,
- "Polar Bears International": 4400000,
- "Prairie Farms": 3100000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "Red Feather": 2000000,
- "Red Wing Shoes": 700000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Schweitzer Engineering Laboratories": 1000000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Sibanye-Stillwater": 2300000000,
- "Sleep Number": 2100000000,
+ "Lodestar Graphics": 31900000,
+ "MARKET FOUR CREATIVE": 1400000,
+ "MERJE Design": 14600000,
+ "Mad Scientist": 19200000,
+ "Media Works Bozeman MT": 20700000,
+ "Member Driven Technologies": 11100000,
+ "Miovision": 35000000,
+ "Mobile Business Systems": 15500000,
+ "Montana Grafix": 1500000,
+ "Mountain View Web Design. A": 5100000,
+ "My Crop Technologies": 2400000,
+ "Networx - A Teamworx Partner": 27700000,
+ "Neuro-ID": 3900000,
+ "NewBOS": 11000000,
+ "Northern Rockies Rider": 9100000,
+ "One Shore": 2000000,
+ "OppSource": 6000000,
+ "Orbit GT": 1700000,
+ "Orbiter Inc.": 21300000,
+ "Overwatch Systems LTD.": 57200000,
+ "PAS Computers": 26300000,
+ "PCG Systems": 937000,
+ "POITRA": 16100000,
+ "PULSECHECKER": 4700000,
+ "Parsec Data": 14600000,
+ "Pat Whitmer": 6000000,
+ "Perfectborn": 4100000,
+ "Pine Cove Consulting": 11200000,
+ "PipeTech": 7900000,
+ "PowerVista": 13500000,
+ "PredictHQ": 2000000,
+ "Quality Produce": 27900000,
+ "Quantech Software": 8400000,
+ "Quantus Design": 6700000,
+ "Quantus Design LLC.": 6700000,
+ "Quel Design": 369000,
+ "Quiq": 5300000,
+ "RDI Studio": 1400000,
+ "Ready Set Go Hosting": 310000,
+ "Real Help Inc.": 13300000,
+ "ReddWebDev": 4000000,
+ "RemoteScan": 18800000,
+ "Rent Manager": 40900000,
+ "Restful Brilliance": 3000000,
+ "Rick Hammond": 19600000,
+ "Right Networks": 70000000,
+ "River Designs": 11900000,
+ "Rome Technologies Inc.": 19400000,
+ "SRedfield": 1400000,
+ "Samaritan Solutions Website & Graphic Design": 3300000,
+ "Schedulicity": 10000000,
+ "Seacat Creative": 37400000,
+ "Seltzer Creative Group": 12000000,
+ "Sensory Labs": 11100000,
+ "Six Pony Hitch": 3600000,
+ "Skeleton Key": 8700000,
+ "SkyPoint Studios": 374000,
"Snowflake": 1900000000,
- "SodaStream": 476100000,
- "Stanley Steemer": 9500000,
- "Stericycle": 3600000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Ted's Montana Grill": 5100000,
- "Terracon": 77100000,
- "The Intercept": 8000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Fish and Wildlife Service": 8600000,
- "University of Montana": 452400000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Victoria's Secret": 5400000000,
- "Vista Outdoor": 3200000000,
- "W. W. Grainger": 15200000000,
- "Western Sugar": 250000000,
- "Whelen": 500000000,
- "Williston Basin International Airport": 7000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
+ "Solugenix": 72000000,
+ "SparkysCorner": 21900000,
+ "Special Project Inc.": 2100000,
+ "Speridian": 220000000,
+ "Spin Digital": 3200000,
+ "St. Mary-East Glacier KOA": 34500000,
+ "Stockert": 24800000,
+ "Surefly Studio": 3900000,
+ "Swanson Gentleman Hart Inc.": 2400000,
+ "Sweet PEA Sewer and Septic": 13400000,
+ "SwiftView": 35000000,
+ "Sync IT Solutions": 241000,
+ "Synesis7": 12700000,
+ "Tapas Technologies": 1900000,
+ "Tech Engines": 155000,
+ "Teledata Technologies": 31600000,
+ "Telmon": 5200000,
+ "Texbase": 29200000,
+ "The 20 MSP": 3300000,
+ "Univision Computers": 5300000,
+ "ValleyApps": 1400000,
+ "Vera-Tech": 32200000,
+ "Viciedo Web Development": 4400000,
+ "Viewert": 2000000,
+ "Volunteer Software": 27100000,
+ "Watters Edge Design": 10000000,
+ "Wayfinding Pro": 2400000,
+ "Wengert": 19400000,
+ "Whitefish Web Design": 1400000,
+ "Whitehouse Optometrists": 12700000,
+ "Windows Utility": 11400000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
"Workiva": 468700000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellowstone to Yukon Conservation Initiative": 6100000,
- "Yeti Cycles": 20700000,
- "ZERO POINT ZERO": 4100000,
- "Ziply Fiber.": 370000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "Xcase -": 37500000,
+ "YARROW KRANER": 1400000,
+ "Yofi": 1000000,
+ "e MountainWorks": 30400000,
+ "e-Docs USA": 32000000,
+ "i Programmer": 25000000,
+ "illumineX": 45100000,
+ "onX Maps": 18000000
},
"Nebraska": {
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "2Evolve Technologies": 3400000,
+ "A.C. Wright Design": 6700000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Adtile Technologies": 3600000,
- "Aflac Incorporated": 19300000000,
- "Airtel India": 14300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "American Trucking Associations": 180900000,
- "Americold Logistics Inc.": 2900000000,
- "Ampeg": 366000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Association of Free Lutheran Congregations": 6500000,
+ "AGS Consulting": 10200000,
+ "AMERICAN PUBLIC ENERGY AGENCY": 5100000,
+ "AVI System's": 272500000,
+ "AVI-SPL": 1300000000,
+ "Acass-Systems": 5400000,
+ "Access Systems": 324000,
+ "Accu-Tech Corporation": 8500000,
+ "Action Card": 2400000,
+ "Activation Insights": 3600000,
+ "Adventure Studio": 2700000,
+ "AgilityHealth": 332000,
+ "Alignable": 4000000,
+ "All Native Systems": 22900000,
+ "Alliance Global": 28500000,
+ "Alta Vista Technology": 6200000,
+ "Amegala": 5000000,
+ "American Computer Resources Inc.": 6200000,
+ "Applied Connective": 36100000,
+ "Appligent": 5000000,
+ "Art Cottage": 29300000,
+ "Ascend Technology Group": 10200000,
"Asure Software": 76600000,
- "AsureQuality": 173000,
- "At Home store": 1700000000,
- "Australian Laboratory Services": 6600000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beltone": 61600000,
- "Bentley Motors": 3200000000,
- "Berkshire Hathaway Inc": 224000000000,
- "Bicycle Health": 8700000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "BluePrint Engines": 10600000,
+ "Automated Systems Inc. | Community Banking Software": 15400000,
+ "Avalon Document Services": 16800000,
+ "Aviture": 38300000,
+ "Awareity": 4100000,
+ "Azuresummers": 34300000,
+ "BDC Technologies": 36600000,
+ "BHMI": 6500000,
+ "BLACK GOOSE ART": 37700000,
+ "Beehive Industries": 310000,
+ "Big-Giant": 6000000,
+ "Binary Net": 32300000,
+ "Bizzle Designs": 403000,
+ "Bnsomaha": 9600000,
"Booz Allen": 8800000000,
- "Brass Armadillo": 13300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookdale": 2700000000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "CBA The Association for Christian Retail": 10000000,
- "Callaway Golf": 3700000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carroll School": 2000000,
- "Carvel": 5700000,
- "Cedar County News": 52900000,
- "Center for Autism": 500000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Cici's": 18300000,
- "Citi Trends": 862200000,
- "City of Aurora": 18300000,
- "City of McCook": 26100000,
- "Clark Brands": 23000000,
- "Clean Juice": 7000000,
- "CleanTechnica": 7000000,
- "College Hunks Hauling Junk": 100000000,
- "Coney Island USA": 4200000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cooper Foundation": 10300000,
- "Corbion N.V.": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
+ "Branch Marketing LLC.": 895000,
+ "Brightmix": 1400000,
+ "Buildertrend": 100000000,
+ "Burlingame Wolf": 1800000,
+ "Button Biz": 19900000,
+ "Bytes Managed IT": 5500000,
+ "CATCH Intelligence": 12100000,
+ "CCHNE": 12200000,
+ "CF Webtools": 3800000,
+ "CMIT Solutions": 60000000,
+ "CSTG": 1000000,
+ "Cambium Data": 12700000,
+ "Capstone IT": 15000000,
+ "Capstone Technologies": 12400000,
+ "Carson Services": 19100000,
+ "CaterTrax": 15000000,
+ "Centella Consulting": 11900000,
+ "Central Data Storage": 30000000,
+ "Charlie Johnson": 20000000,
+ "Chip Thompson Design": 13700000,
+ "Choice Solutions": 1900000,
+ "Christo Design Build Inc.": 8200000,
+ "Churchteams": 6000000,
+ "Cisco Building 9": 33000000,
+ "ClickMAN": 29900000,
+ "Cloud Big Data": 600000000,
+ "Cloud Hybrid": 4200000,
+ "Cmr Associates Inc.": 7800000,
+ "Code Lever": 1400000,
+ "CodeLinguists": 396000,
+ "Color 9 Creative": 16200000,
+ "CompanyCam": 7000000,
+ "Comptec Systems": 7300000,
+ "Computer Systems Inc.": 24800000,
+ "Computyne": 382000,
+ "Constellation West": 5800000,
+ "Contemporary Analysis": 3200000,
+ "ConvergeOne": 1600000000,
+ "CoreTech": 14000000,
+ "Creative Signs & Edge Graphics": 1400000,
+ "Cupcake Island": 5000000,
+ "CyberSecOp": 10000000,
+ "Cyberbos": 15500000,
+ "D.Welch Designs": 8700000,
+ "DCIG": 17700000,
+ "DJ on The Mic": 6300000,
+ "DKA Design Group": 3500000,
+ "DMSi": 24400000,
+ "DOCCENTER": 10000000,
+ "DOTComm": 15200000,
+ "DREC Software": 19100000,
+ "DSD Business Systems": 14000000,
"DTN Ag.": 250000000,
- "Davey Tree": 1500000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drexel Hamilton": 14800000,
- "Dry Dock Brewing Company": 6800000,
- "ECreamery Ice Cream and Gelato": 5400000,
- "EMAC website": 5700000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Evangelical Free Church of America": 5200000,
- "Exact Data": 20000000,
- "Express Arrow": 12300000,
- "FLEXcon": 400000000,
- "Farmer Brothers": 469200000,
- "Fat Brain Toys": 40000000,
- "Ferrellgas": 2100000000,
- "First Watch": 677600000,
+ "Daake": 7200000,
+ "Daida": 22400000,
+ "Daniel Osborne": 39000000,
+ "Darkside Advertising": 11300000,
+ "Data Security Inc.": 19100000,
+ "DataBank IMX": 37000000,
+ "DataServ": 19700000,
+ "DataVizion": 5000000,
+ "Datavoice Technologies": 23700000,
+ "David Day Associates": 291000,
+ "Decision Logic": 7000000,
+ "Digital Forensics Team": 4100000,
+ "Don't Panic Labs": 330000,
+ "Doqpros": 1400000,
+ "Driver Identifier": 10000000,
+ "Dundee Media & Technology Inc.": 13500000,
+ "ECS Technology Solutions": 36200000,
+ "EGiS Technologies": 35000000,
+ "ELEANOR CREATIVE LLC.": 5000000,
+ "ENTIRE RECYCLING INC.": 40500000,
+ "EPOWERdoc": 1900000,
+ "Ebbeka Design": 1600000,
+ "Elevate LLC.": 308000,
+ "Eleven19": 2800000,
+ "Ex-Cel Solutions Inc.": 21500000,
+ "FX Design Group": 13500000,
"Fiserv": 17700000000,
- "Fox Network": 3000000000,
- "FracTracker": 482000,
- "Fractal Design": 39500000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GATX India Private Limited": 1300000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Globe Life Insurance": 5200000000,
- "Goodman Global Group Inc.": 1900000000,
- "GreatSchools": 11000000,
- "Green Flash Brewing": 47000000,
- "GreenPal": 1200000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hornady": 8100000,
- "HuHot Mongolian Grill": 7000000,
- "Hughes Network Systems": 2000000000,
- "Hustle Gang": 2800000,
- "Hy-Vee": 12000000000,
- "ICE Mortgage Technology": 690100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "Infofree": 34800000,
- "Insurify": 9300000,
- "Intelitek": 3300000,
- "IntelliQuote": 2000000,
- "Intercessors of the Lamb": 17700000,
- "International Railway Journal": 8700000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "KVC Health Systems": 7400000,
- "Kansas Collegiate Athletic Conference": 19800000,
- "Kearney Public Schools": 34200000,
- "Kinder Morgan": 17700000000,
- "Kona Grill Inc.": 176300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kwik Shop": 595000000,
- "LI-COR": 40000000,
- "Learning Express Toys": 2500000,
+ "Flywheel Best Managed WordPress Hosting": 14400000,
+ "FreshySites": 533000,
+ "Friendly Managed Services": 3200000,
+ "Fruitful": 5700000,
+ "GC Image": 12400000,
+ "GRETNA COMMUNITY CHURCH": 4500000,
+ "Genesis Systems": 10900000,
+ "Geode Services": 10000000,
+ "Gleames": 21100000,
+ "Glint": 42000000,
+ "Global NetWatch": 6300000,
+ "GoAnywhere": 300000000,
+ "Goodenough & Co.": 23100000,
+ "Gorilla Web Studio": 1400000,
+ "Grain & Mortar": 5000000,
+ "Graphic Intuition": 5700000,
+ "Guru Alliance": 18100000,
+ "H4 Technology": 2600000,
+ "HawkTech LLC - Expert Technology Services": 15500000,
+ "Healthcare Data Solutions HDS": 4400000,
+ "Heartland Business Systems": 147300000,
+ "HelpDesk World Wide": 20600000,
+ "High Point Networks": 25000000,
+ "Home Real Estate - Pine Lake": 17800000,
+ "Hws": 17000000,
+ "I Q Systems": 11600000,
+ "IGT Solutions": 230000000,
+ "INNOVA Consulting": 6000000,
+ "ISG Technology": 112600000,
+ "Ib Dozing": 5900000,
+ "InEight": 71000000,
+ "Infinite Systems": 33900000,
+ "Infinite Token": 323000,
+ "Information Analytics": 13200000,
+ "Innovative Systems": 9100000,
+ "IntegraTech": 6100000,
+ "Integrant Services": 361000,
+ "Integrated Solutions": 5500000,
+ "Intellicom": 444000,
+ "Interland Incorporated": 11800000,
+ "Intralinks": 28100000,
+ "Intrinsic Algorithm": 2400000,
+ "JCDoyle": 8600000,
+ "JM Online": 10600000,
+ "KLC Vision": 1200000,
+ "KPI Ninja": 5000000,
+ "Keyhole Software": 16900000,
+ "Kranium Healthcare": 10200000,
+ "Krcginc": 26800000,
+ "LaMarSOFT": 11700000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lincoln Southeast High School": 527500000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "Mellow Mushroom": 69000000,
- "Merrick Machine": 47500000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Milliman": 1200000000,
+ "Level60 Consulting": 2400000,
+ "Lichty Construction Incorporated": 12000000,
+ "Lierman International": 4600000,
+ "LightEdge Solutions": 44600000,
+ "Little Fish Big Pond": 1600000,
+ "Loffler Companies": 280000000,
+ "M6Connect": 2400000,
+ "MITS - 'Managed IT Solutions'": 29500000,
+ "MOD Mission Critical": 2900000,
+ "MacPractice": 21000000,
+ "Macware": 16700000,
+ "MaidEasy Software": 30000000,
+ "Mandolfo Associates": 10800000,
+ "Marco Technologies": 400000000,
+ "MetaLogic Inc.": 11100000,
+ "Meyer Creative Print Design": 16100000,
+ "MicroImages": 9800000,
+ "Mid Comp Web": 22500000,
+ "Midwest Cloud Computing": 6200000,
+ "Midwest MicroSystems": 30900000,
+ "Miovision": 35000000,
"ModMed": 250000000,
- "Modelzone": 1684311838,
- "Monolith Inc.": 6000000,
- "Moody's Analytics": 5700000000,
- "MultiMechanics": 5000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "My Gym Children's Fitness Center": 6000000,
- "NAPAREX": 1400000,
- "NCHC Hockey": 32000000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Celiac Association": 3700000,
- "National Park Foundation": 6300000,
- "Nebraska Furniture Mart": 1600000000,
- "Nebraska Game and Parks": 5800000,
- "Norfolk Daily News": 8000000,
- "NuStar Energy": 3200000000,
- "Omaha Chamber": 2900000,
- "Omaha Public Power District": 6800000,
- "Omaha World-Herald": 44100000,
- "OneMain Financial": 4100000000,
- "Opendorse": 282000,
- "Oriental Trading": 750000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "POET": 310000,
- "PSE&G": 9300000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Printrbot": 3100000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Rodgers Instruments Corporation": 6400000,
- "Rotel": 38800000,
- "Runza": 7000000,
- "Russ's Market": 7600000,
- "Rusty Bucket Restaurant & Tavern": 3500000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SRO Motorsports": 787000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sandhills Publishing Company": 205000000,
- "Santa Clara County Federal Credit Union": 14300000,
- "Sarku Japan": 310000,
- "Schmitt Music": 20600000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shari's": 240000000,
- "Shoe Carnival": 1300000000,
- "SkillsUSA": 1800000,
- "Sleep Number": 2100000000,
- "Snapper Inc.": 21000000,
- "Sojern": 110000000,
- "Solectrac": 2500000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Stanley Steemer": 9500000,
- "Star-Herald": 15000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stine Seed": 1000000000,
- "Storz Brewing Company": 7000000,
- "Student Transportation of America": 637200000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Legal Aid": 18000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Modern Yellow Design": 5800000,
+ "NEBRASKA COALITION FOR ETHICAL RESEARCH": 11100000,
+ "Nebraska Networks": 29500000,
+ "Nelsen Technologies": 12000000,
+ "Network Consulting Services Inc.": 20000000,
+ "New Horizons Computer Learning Center of Omaha NE": 3200000,
+ "New KJV": 80000,
+ "Nicolas Fredrickson": 5400000,
+ "OXEN Technology": 4800000,
+ "Object Partners": 22800000,
+ "Obsidian Solutions Group": 38000000,
+ "Omaha Flag Company": 10400000,
+ "On-Line Imaging": 7000000,
+ "Open Box Concepts": 27300000,
+ "Opti9": 23700000,
+ "Optimatics": 22000000,
+ "OxBow Data Management Systems": 332000,
+ "Oxide": 31200000,
+ "P&J Home and Garden Decor": 4500000,
+ "PINNACLE BUSINESS SYSTEMS": 26000000,
+ "PaySAFE Escrow Inc.": 1800000,
+ "Phoenix Web Group": 17500000,
+ "Pickering Creative": 6000000,
+ "Pinpoint Labs": 4000000,
+ "Planetary Data Incorporated": 12700000,
+ "Platinum Real Estate Group": 33700000,
+ "Polyhedron": 307000,
+ "Power DNN": 74000,
+ "Pratum": 11200000,
+ "PrecisionIT": 30800000,
+ "PredictHQ": 2000000,
+ "Presage Analytics": 6000000,
+ "PrismRBS": 10500000,
+ "ProData Computer Services Inc.": 24800000,
+ "ProteusEngage": 1000000,
+ "QuikServe": 34700000,
+ "RADWEN": 13200000,
+ "ROI Consulting": 9400000,
+ "Rabbit Design": 6600000,
+ "Rchjr Commercial Artist": 34200000,
+ "Reditech": 6000000,
+ "Redtail Technology": 26100000,
+ "Retail Aware": 2500000,
+ "Reviewr": 3100000,
+ "Rex Miller Design": 32000000,
+ "Riverside Technologies Inc. RTI": 19000000,
+ "Robert Hancock's Page": 15400000,
+ "Rome Technologies Inc.": 19400000,
+ "Rudder": 628000,
+ "Run Networks": 1400000,
+ "S4 Inc.": 16500000,
+ "SDS2": 20000000,
+ "SGA Software": 31200000,
+ "STOEHR DOUGLAS D": 21900000,
+ "Schmiddy's Web Design": 5100000,
+ "Scott Data Center": 20700000,
+ "Seeking Sitters Lincoln": 9800000,
+ "Sensible Websites": 1400000,
+ "Sensiple": 50000000,
+ "She-La Designs": 14400000,
+ "Shout Out Design Portfolio": 19000000,
+ "Showtime Design": 43900000,
+ "Signetik": 1000000,
+ "Simpatico by Designs": 6700000,
+ "Singlebrook": 6200000,
+ "Sleepy Lion": 872000,
+ "Smart stream": 9000000,
+ "Software 4 Retail Solutions": 19100000,
+ "Software Engineering Services": 38200000,
+ "SohanIT": 33900000,
+ "Solidus Technical Solutions": 27400000,
+ "SonServers": 17900000,
+ "Sovereign Sportsman Solutions": 150000000,
+ "Sparq Data": 7000000,
+ "Spatie": 404000,
+ "Spaulding Ridge": 6000000,
+ "Speaking Solutions Inc.": 25300000,
+ "Spiral Solutions and Technologies Inc.": 9800000,
+ "Spruce Computer": 7500000,
+ "Surety Technologies": 13700000,
+ "Swanson Gentleman Hart Inc.": 2400000,
+ "TDM Software": 10700000,
+ "TEAM Software": 10000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TLH Interactive": 29900000,
+ "Tabs3": 12200000,
+ "Tech IT": 10000000,
+ "Teknote Systems": 3900000,
+ "The Kennedy Brownrigg Group": 3900000,
+ "TierPoint": 405000000,
+ "Tigerpaw": 4500000,
+ "Timestone Software": 2400000,
"Trihedral Engineering": 6000000,
- "Tripoli": 5000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S. Courts": 1000000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veridian Insurance": 50000000,
- "Veritiv": 7300000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vinotemp": 13500000,
- "W. W. Grainger": 15200000000,
+ "True Player Entertainment": 31700000,
+ "Turner Technology": 12400000,
+ "Unidev": 6900000,
+ "VCloud Technology Group": 23500000,
+ "VITEC": 10600000,
+ "Verticomm": 3000000,
+ "Victoria Garage Leigh": 3700000,
+ "VidaNyx": 2800000,
+ "Virtual IT": 7000000,
+ "Volano Software": 1700000,
"WP Engine": 200000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Western Sugar": 250000000,
- "Which Wich": 79500000,
- "Winchell's Donut House": 16900000,
+ "Water Drop Designs": 1400000,
+ "Wavebid": 4300000,
+ "Web Hosting Compare": 9900000,
+ "Well Ideas": 21500000,
+ "Wessan Interactive": 7700000,
+ "Wheelhouse Collective": 3500000,
+ "William E Gast Law Offices and Licensees": 7700000,
+ "Wittmania": 4900000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "XPO Logistics": 7700000000,
- "Yahoo": 7400000000,
- "Yazda": 149000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "Work Time Studio": 9800000,
+ "Workpoint": 7000000,
+ "Worldview Ltd.": 8100000,
+ "Zachary Piper": 5000000,
+ "Zealous Melon": 4000000,
+ "Zega": 26400000,
+ "Zoltan Webdesign": 8000000,
+ "Zyantus": 6000000,
+ "eCnet Solutions": 6100000,
+ "eFACiLiTY": 24700000,
+ "enCloud9": 246000,
+ "gWorks": 6000000,
+ "i-Manage": 16000000,
+ "myARTdepartment": 5200000,
+ "use Workshop": 2100000
},
"Nevada": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAGL": 4200000,
- "ABC Supply": 12100000000,
+ "1st Source Realty": 16000000,
+ "702west": 3600000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AGRU": 20000000,
- "ALFA International The Global Legal Network Inc.": 10000000,
- "AMC Theatres": 3900000000,
- "APM Monaco": 50000000,
- "Ace Hardware": 7800000000,
- "Advanced Air": 70000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Air Canada": 12200000000,
- "Air Transat": 1300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Van Lines": 22000000,
- "Alogent": 50000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Armstrong": 59900000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "Audemars Piguet Holding SA.": 900000000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
- "Axos Bank": 806700000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BOBST": 1600000000,
- "Baja Fresh": 500000000,
- "Barefoot Books": 8500000,
- "Barrick": 11900000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beauty Bakerie": 4800000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Best Buddies": 3600000,
- "Bicycle Health": 8700000,
- "Big Boy Restaurants": 26600000,
- "Black Bear Diner": 18700000,
- "Black Rifle Coffee": 233100000,
- "Blick Art Materials": 245200000,
- "Blue Bell Creameries": 675000000,
- "Blue Marble Geographics": 11000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
- "Botanical Society of America": 11800000,
- "Boxed Inc.": 183000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Bruxie": 5900000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "Buddy TV": 4300000,
- "Budget Suites of America": 15800000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
+ "AIRWIRE TECHNOLOGIES": 2000000,
+ "AT Designs LV": 11000000,
+ "Aaiio Design": 24400000,
+ "Abacode": 8000000,
+ "Absolute Performance": 10700000,
+ "Accent Networks": 16100000,
+ "AccessNevada": 12100000,
+ "Acuity Solutions LLC.": 21400000,
+ "Advanced Computer Technology": 23500000,
+ "Advanced Graphic Designs Inc.": 12900000,
+ "Agilisium": 27000000,
+ "Agilitec": 41400000,
+ "Alan Labs": 25400000,
+ "Algaesystemstest1": 6000000,
+ "All in Web Pro": 4200000,
+ "AllClients": 3400000,
+ "Alling Enterprises": 27600000,
+ "Almyta Systems": 27700000,
+ "Alonso Consulting Inc.": 6000000,
+ "Alternate Image": 12700000,
+ "AmVet Technologies": 11900000,
+ "Ambit Software": 35000000,
+ "Amulya Infotech": 5300000,
+ "Andrechelle": 8300000,
+ "Angel City Computers": 19200000,
+ "Annabelle\u2019s All Occasions": 2400000,
+ "Anomalist Design": 4000000,
+ "Anomalix": 7000000,
+ "AnubisBlue": 19700000,
+ "Apex Computing": 10400000,
+ "Apex Logic": 15000000,
+ "Applications International": 6000000,
+ "Applied Digital": 15500000,
+ "Art without a License": 44800000,
+ "Artisan Infrastructure": 21300000,
+ "Astound Technologies": 26500000,
+ "Aurea Software": 11200000,
+ "Aviture": 38300000,
+ "Avocation Software": 62900000,
+ "Azul Services": 1400000,
+ "Azyla": 24600000,
+ "BC Productions Inc.": 30200000,
+ "BCD Consulting": 17600000,
+ "BEMO provides": 13000000,
+ "BIR Solutions": 15400000,
+ "BP Works": 25000000,
+ "BPO Media": 2400000,
+ "BannerView": 14700000,
+ "Bar Napkin Productions": 2200000,
+ "BarVision": 14900000,
+ "Base Builders": 7200000,
+ "Basisadm": 16700000,
+ "Baytek": 40300000,
+ "Beatty Graphics": 32100000,
+ "Best Web Design Agencies": 10000000,
+ "Bista Solutions": 4700000,
+ "Biztechnosys": 25000000,
+ "Block Party Studio Company": 4200000,
+ "Blue Canvas": 2400000,
+ "Blue Equinox": 10000000,
+ "Blue Sage Software": 23100000,
+ "Blue Water Networks": 3300000,
+ "BlueHat Cyber": 1400000,
+ "BluePeak": 3900000,
+ "Brandit Platform": 7000000,
+ "Breached Systems": 11800000,
+ "BridgeSTOR": 5200000,
+ "Bright Signs & Awnings": 80000000,
+ "BrightIP": 24400000,
+ "Bristlecone Lending": 4200000,
+ "Bronze Dba Iron Inc.": 1000000,
+ "BuildPage": 17900000,
+ "Bullsprig": 13500000,
+ "Business Management Systems": 11500000,
+ "CB Graphics": 30200000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "Cafe Rio": 215000000,
- "Camden Property Trust": 2000000000,
- "Canyon Ranch": 150000000,
- "CarParts": 645300000,
- "Carson City Schools": 13700000,
- "Carson Valley Times": 6000000,
- "Carvel": 5700000,
- "Catch A Rising Star": 10200000,
- "Catena Media": 130200000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charles River Laboratories": 4000000000,
- "Charleys": 6100000,
- "Chewy": 9800000000,
- "Chicago Rockford International Airport": 6800000,
- "Chick-fil-A": 5800000000,
- "Chilli Beans": 6800000,
- "Chr. Hansen": 1100000000,
- "Chugach": 310000,
- "Chukar": 5500000,
- "Churchill County High School": 5600000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City of North Las Vegas": 7900000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "Clean Juice": 7000000,
- "CleanTechnica": 7000000,
- "Clearwater Paper": 2000000000,
- "Clive Christian": 7000000,
- "CloudKitchens": 3000000,
+ "CMstat": 10000000,
+ "CSRTech": 15300000,
+ "CTE Consulting Services": 1400000,
+ "Cadco": 9100000,
+ "CakeDC": 10000000,
+ "CakePHP": 10000000,
+ "Carotechs": 21200000,
+ "Cartoon A Day": 3500000,
+ "Carumba Networks": 23600000,
+ "Cassia Content Management": 1400000,
+ "Centrilius": 19700000,
+ "Chargerback": 2400000,
+ "Chase Hosting": 5400000,
+ "Chase Ideas": 7200000,
+ "Chi Corporation": 17100000,
+ "Chromacor": 1100000,
"Cloudflare": 894100000,
"Codewars": 1000000,
- "Coeur Mining": 783400000,
- "College Hunks Hauling Junk": 100000000,
- "Condor": 10000000,
- "Conrad N Hilton Foundation": 44600000,
- "Consolidated": 1200000000,
- "Consumer Affairs": 29300000,
- "Continental Tire the Americas LLC.": 230000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
- "DAV": 3900000,
- "DKI Services": 17300000,
- "DMI Inc.": 705000000,
- "Dataram": 7900000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Department of Energy": 190000000,
- "Desigual": 975000000,
- "Dignity Health": 14200000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Doft": 14000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dooney": 40000000,
+ "CommBase Technical": 24500000,
+ "CompuNet Inc.": 146600000,
+ "Computer Golf Consultants": 19600000,
+ "Computer Market Research": 25000000,
+ "Computer Repair Las Vegas LLC.": 33900000,
+ "Computer Show": 10000000,
+ "Computers Inc.": 21800000,
+ "Concretist": 30400000,
+ "ConnectALL": 10000000,
+ "Connex Info": 25000000,
+ "Conquer Cadence": 7800000,
+ "Conquest Software Solutions": 2400000,
+ "ConvergeOne": 1600000000,
+ "Corner Grove": 1400000,
+ "Creative 27": 33100000,
+ "Crystaliceandoil": 20300000,
+ "Cyber Cast": 5700000,
+ "CyberQP": 6000000,
+ "CyberSecOp": 10000000,
+ "DAS Health": 25000000,
+ "DAS Trader": 24000000,
+ "DAY at A GLANCE": 10000000,
+ "DCS Software": 2400000,
+ "DLT Resolution": 1800000,
+ "DP Facilities": 16000000,
+ "Dandy Lion Hosting": 4300000,
+ "Darling Tennis Center": 28700000,
+ "Data Communications and Design": 16300000,
+ "Data Recovery Labs": 12900000,
+ "Datagenics": 31300000,
+ "Del Toro Silver": 10000000,
+ "DesignStudio Network": 27300000,
+ "Destiny Corporation offers": 18800000,
+ "Deswik": 24800000,
+ "Devitec": 14000000,
+ "Digital Instinct": 7700000,
+ "Diligences": 5000000,
+ "Disk Archive": 7000000,
+ "DocketBird": 2400000,
+ "Docufree": 27000000,
+ "Dollface Beauty Boutique": 11400000,
+ "Dolomite Technology": 28300000,
+ "Domain NRG": 10000000,
+ "Dombcik Signs": 22400000,
+ "Donmilla#designs": 10000000,
+ "Doug Schommer": 10500000,
+ "Doxim": 67000000,
"DreamFactory Software": 6000000,
- "Dynata": 380300000,
- "EEOC": 10000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eataly": 250000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electro Rent": 343800000,
- "Elixio": 2400000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Entertainment Technology Partners": 2000000,
- "Equifax": 5100000000,
- "Equiinet": 10000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Excel Christian School": 13000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "FirstEnergy": 11900000000,
+ "DreamzTech": 6400000,
+ "Droisys": 20000000,
+ "Dropit Shopping": 7000000,
+ "Dynepic": 5000000,
+ "E Squared C": 1400000,
+ "ECI Software Solutions": 365000000,
+ "EISC": 13200000,
+ "EMR4DOCTORS": 20500000,
+ "EPD IT SERVICES": 34200000,
+ "ERGOS": 10000000,
+ "EZO": 2000000,
+ "EaseUS": 12800000,
+ "Easypano": 8000000,
+ "Ecautela": 13000000,
+ "Emblem Technologies": 35400000,
+ "Encryptics": 6000000,
+ "Enscape": 1200000,
+ "Entertainment Technology": 22600000,
+ "Epixel MLM Software": 5000000,
+ "Exan Software": 35000000,
+ "Executive Technology": 17200000,
+ "Exile Creative Group": 21300000,
+ "ExploreMyPC LLC.": 46400000,
+ "EyesBot": 2400000,
+ "FDM4": 30000000,
+ "FacialNetwork Inc.": 6400000,
+ "Farheap Solutions": 13100000,
+ "Fedgesoft": 5100000,
+ "FiRa IT Services": 2900000,
+ "Firm solutions": 10000000,
"Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Fraternal Order of Police": 33900000,
- "Fred Segal": 10000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Future Sonics": 4800000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "Gama Aviation": 246800000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Motors": 147200000000,
+ "Fission": 1000000,
+ "FiveGen": 5600000,
+ "Flintfox": 30000000,
+ "Focus Graphics": 19800000,
+ "Focused Web": 19800000,
+ "Fraud Cure": 4700000,
+ "Frequency Foundry": 7000000,
+ "Fresh Wata | Las Vegas": 33500000,
+ "Frontline Systems": 9400000,
+ "GP Micro": 18700000,
+ "GSales-aweber": 25000000,
+ "Garfield Traub": 175000000,
"Geotab": 440000000,
- "Gibson Brands Inc.": 366600000,
- "Giordanos": 175000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "GreatSchools": 11000000,
- "Green Dot Bank": 1400000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HOSA": 5500000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburger Mary's": 7000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harry Reid International Airport": 26100000,
- "Hattie B": 3500000,
- "Haworth": 2300000000,
- "Hearts On Fire": 13100000,
- "Herb company": 2400000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "IHEARTMEDIA": 3800000000,
- "IMA Group": 1500000000,
- "INFICON": 8000000,
- "IQAir": 20000000,
- "Insurify": 9300000,
- "International Falls Airport": 6000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KGHM": 5200000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kinross": 4000000000,
- "Knots of Love": 4300000,
- "Kona Grill Inc.": 176300000,
- "Kona Ice": 25700000,
- "Krispy Krunchy Chicken": 3400000,
- "L.K. Bennett": 91700000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Las Vegas City Schools": 24900000,
- "Las Vegas Sun": 8900000,
- "Laughing Planet": 10000000,
- "Lazy Dog Restaurants": 210000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "LegalMatch": 17600000,
- "Lerch Bates": 19500000,
+ "Getdocsnow": 8900000,
+ "Gillware": 10800000,
+ "Gioia Luisa": 6100000,
+ "Global Gaming Group Inc.": 19300000,
+ "Global Homes Realty Group": 25100000,
+ "Golden Opportunities": 9100000,
+ "Golden Star Technology Inc. GST": 154400000,
+ "GoodFirms": 4500000,
+ "Graphic Imaging": 12600000,
+ "Great Media Technologies - Grmtech": 10000000,
+ "Green Fingers LLC.": 13000000,
+ "H Tech Solutions": 8900000,
+ "H-Line Soft": 35000000,
+ "Haeck Design": 20700000,
+ "HaggleShopper": 30300000,
+ "Hararei": 1600000,
+ "Hardcat": 10000000,
+ "Hawk Ridge Systems": 53500000,
+ "Health Administration Systems Inc.": 39400000,
+ "Healthy Technology Solutions": 12600000,
+ "Heatherstone": 2900000,
+ "HostCheetah": 2400000,
+ "HostLabs by HostPapa": 15000000,
+ "HostPapa Web Hosting": 5000000,
+ "Howly": 17400000,
+ "Hubport Interactive": 25000000,
+ "HushHush": 5000000,
+ "Husky Vape": 11000000,
+ "Hyperhighway": 13400000,
+ "IAMTEAM": 5900000,
+ "ICEGEN": 17500000,
+ "ICS Cybersecurity": 20200000,
+ "IGDS": 16100000,
+ "IMAJION": 2400000,
+ "IMPLEMENT HIT": 10400000,
+ "IOFLOOD": 25400000,
+ "IPQualityScore": 11100000,
+ "IQvcloud": 2000000,
+ "IRIS Software Group - North America": 55000000,
+ "IT Convergence": 70000000,
+ "IT Project Pros": 13300000,
+ "Ikonz Computer Repair & Website Development": 10900000,
+ "Immigrant Software": 2400000,
+ "Indextree": 10000000,
+ "Indra Support": 1900000,
+ "InfinaDyne": 12000000,
+ "Infurm": 6500000,
+ "Integra Systems": 10000000,
+ "Integrated planet": 9500000,
+ "Integrita Systems": 34600000,
+ "Intellectual Technology Inc.": 10000000,
+ "Intelligent Hosting": 19500000,
+ "Intelligent Image Management": 13200000,
+ "Internet Reliance": 5700000,
+ "Intertech Las Vegas": 7200000,
+ "Iridium Suite": 12800000,
+ "Ivenue": 4800000,
+ "JCM Solutions": 32600000,
+ "JE Sims & Associates": 10000000,
+ "JFG Systems": 43700000,
+ "JM Studio Incorporated": 21300000,
+ "JTM Consulting": 24500000,
+ "Jason A. Martin": 2800000,
+ "John Robert Powers School System": 27000000,
+ "Journey Community Church Of Fernley": 37000000,
+ "Juriba": 12400000,
+ "Just Imagine Marketing & Design": 17100000,
+ "Key Consulting Software": 11900000,
+ "Key Tours Inc.": 38600000,
+ "Klika": 11400000,
+ "Klir\u2122": 1000000,
+ "KnowledgeBroker": 26100000,
+ "Kortek Solutions": 23200000,
+ "L2L": 32500000,
+ "LDG USA": 21700000,
+ "Lan Global": 32200000,
+ "Las Vegas Information Security": 2400000,
+ "Las Vegas Website Solutions": 1500000,
+ "Layer 8 Solutions LLC.": 42300000,
+ "Leadature": 6000000,
+ "Legendary Software Labs": 2400000,
+ "Let's Rally": 3800000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifeboat": 6000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lions Clubs International": 20800000,
- "Little Caesars": 3800000000,
- "Liu Jo.": 324000000,
- "Live Ventures Inc.": 283700000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Longchamp": 750000000,
- "Loro Piana": 842800000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MOOYAH": 11700000,
- "MP Materials": 499800000,
- "MSC Industrial Supply": 3800000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Matson": 4300000000,
- "MedMen": 172700000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Miami Grill": 150000000,
- "Mimi's Cafe": 23000000,
- "Minden-Tahoe Airport": 1400000,
- "Mineralogical Society of America": 34700000,
- "Miss Virginia USA": 2700000,
- "Modelzone": 1684311838,
- "Moe's Southwest Grill": 295500000,
- "Moment Skis": 6300000,
- "Money Management": 30000000,
- "Mountain Mike's Pizza": 68000000,
- "Move": 473000000,
- "Moyes Delta Gliders": 2100000,
- "Mullen": 93200000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "Mynavyexchange": 7000000,
- "NHLPA": 14400000,
- "NOAA Weather Radio": 36400000,
- "National Auto Sport Association": 5900000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "Nevada Sagebrush": 5300000,
- "Nicholas Financial": 48200000,
- "Niman Ranch": 65000000,
- "North Las Vegas Airport": 6000000,
- "North Sails": 27500000,
- "OMNILIFE": 3300000,
- "Ocado": 3000000000,
- "Ocorian": 52500000,
- "Off-White": 7000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie Pets Inc.": 20000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PRINOTH AG": 76000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Links": 4000000,
- "Pacific Seafood": 1000000000,
- "Paris Baguette": 11200000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Pediped": 3500000,
- "PeekYou": 6000000,
- "Peet's Coffee": 36700000,
- "Pennymac": 1200000000,
- "PharMerica": 2100000000,
+ "Lever10": 4900000,
+ "Link Technologies": 16700000,
+ "Lone Wolf Real Estate Technologies": 31000000,
+ "LoudEdge": 32600000,
+ "M & M Enterprises Inc.": 2400000,
+ "M Squared Software & Services Pvt. Ltd.": 29500000,
+ "MASORI Therapeutics": 7000000,
+ "MASS Group": 6200000,
+ "MEG-o-RAMA": 16300000,
+ "MIS Sciences": 7000000,
+ "MLOGICA": 19000000,
+ "MSP OnLine": 16200000,
+ "MY BANKCODE": 24400000,
+ "Mabble Media": 5300000,
+ "Mac Mini Vault": 8100000,
+ "MacinCloud": 2800000,
+ "Macminicolo": 5000000,
+ "Madison Avenue Worldwide": 26900000,
+ "MagLar": 15200000,
+ "Magitek": 16100000,
+ "MagmaLabs": 13200000,
+ "Make Your Deal": 3500000,
+ "Mannassi IT Solutions": 26900000,
+ "Manufacturing Resource Partners": 1400000,
+ "Markzware": 59600000,
+ "Masterful Incorporated": 3000000,
+ "Max Distro": 6000000,
+ "Maxi Soft": 8300000,
+ "Mc2cool Limited": 3500000,
+ "McCool Design": 2800000,
+ "McCormick Web Solutions": 13600000,
+ "MedXForce": 6100000,
+ "Medicare Island": 6000000,
+ "Mednet Software": 35600000,
+ "Meghan Bailey": 19600000,
+ "MelRok": 5900000,
+ "Message Sent Comm": 13500000,
+ "Micro Computer Consulting Inc. of Las Vegas": 5500000,
+ "Microdesign": 5500000,
+ "Miovision": 35000000,
+ "Mitnick Security": 10000000,
+ "Modern Data": 3000000,
+ "MoveDocs": 2400000,
+ "Myaa": 150000000,
+ "Myriad Solutions": 11000000,
+ "N2N Software": 17100000,
+ "NCX Group": 5200000,
+ "NanoVap": 10900000,
+ "NeelSys'": 7000000,
+ "Network Heroes": 30000000,
+ "Network Security Associates": 22200000,
+ "Networx - A Teamworx Partner": 27700000,
+ "Neubloc": 15000000,
+ "Nevada IT Solutions": 5300000,
+ "Nevada Tech": 12300000,
+ "Nims & Associates": 28700000,
+ "Nomino Data": 34700000,
+ "Norcom Inc.": 12300000,
+ "North Star Multimedia": 13000000,
+ "Nstec": 41800000,
+ "OIS site": 14800000,
+ "Obsidian Solutions Group": 38000000,
+ "Olea Systems": 4500000,
+ "Omnitracs": 120000000,
+ "One Unified": 11800000,
+ "OnviSource": 10000000,
+ "Opalforce": 5500000,
+ "Open Peak": 30000000,
+ "OpenXcell": 8500000,
+ "Optimatics": 22000000,
+ "Optimi": 27200000,
+ "Orange Geek": 6600000,
+ "Orbis Solutions": 3000000,
+ "Orbis Tech Services": 13300000,
+ "Oztera": 1200000,
+ "PAR Government": 14000000,
+ "PC Pandora": 29800000,
+ "PCG Software": 28400000,
+ "PNDOTCOM - PN": 35400000,
+ "Pacific Digital": 15900000,
+ "Pacific Timesheet": 22200000,
+ "Pacificgeek": 13500000,
+ "Packetware": 9600000,
+ "Parkin Group": 6100000,
+ "Party Track": 18600000,
+ "Perkolate": 5900000,
+ "Persisca": 1000000,
"Phocas": 50000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pop! Goes the Icon": 8000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Reno Stead Airport": 7400000,
- "RentHop": 1000000,
- "Riverside Partners": 14400000,
- "Robertos Taco Shop": 13900000,
- "Rock in Rio": 4200000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rokon": 3700000,
- "Ron Jon Surf Shop": 18900000,
- "Rosetta Stone": 182700000,
- "Roy's": 23000000,
- "Ruth's Chris": 350200000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "STORD Freight LLC.": 200000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "Physician Select Management": 31100000,
+ "Pigeonly": 6000000,
+ "Popmilk Design": 3600000,
+ "Portacio": 16000000,
+ "Precision Document Imaging": 11100000,
+ "Preferati": 21100000,
+ "Preparis": 8900000,
+ "PrioSoft": 4400000,
+ "Product Engine": 19900000,
+ "Productive Solutions": 10800000,
+ "Progent": 13200000,
+ "Project X Graphics": 1200000,
+ "Projected Financial Statements": 6600000,
+ "Projects Force": 4800000,
+ "QCNetworks": 25700000,
+ "QFloors": 17600000,
+ "Qoiza": 1400000,
+ "RKW Designs": 14400000,
+ "RVCM": 8200000,
+ "Rahi -": 7000000,
+ "Rapid External Solutions": 32900000,
+ "ReactJS": 1000000,
+ "Realhound": 10000000,
+ "Reality Bytes Resources": 7400000,
+ "Red Rock Reef": 2500000,
+ "RedRock Software": 38400000,
+ "Redis To Go": 2400000,
+ "Rehearsal": 4500000,
+ "RelativityOne": 231300000,
+ "Remark Holdings": 79100000,
+ "Resgrid": 2900000,
+ "Resource Associates of Nevada Inc.": 13100000,
+ "Rev Infotech": 27300000,
+ "RevUnit": 15200000,
+ "Revizto": 9300000,
+ "Rfxcel": 17000000,
+ "Richardson Graphics": 10900000,
+ "Ridge Partners": 21500000,
+ "Rimini Street": 400300000,
+ "Rimo3": 10000000,
+ "Rocket Queen Media": 2000000,
+ "Rocket36 Dev Studio": 7400000,
+ "Rome Technologies Inc.": 19400000,
+ "Rtixtico": 4300000,
+ "S MART F LEX TECH": 11100000,
+ "SA Technologies": 30000000,
+ "SSL Renewals": 1100000,
+ "STPL": 12800000,
+ "SURFDASH INC.": 5500000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "San Antonio Shoemakers": 4700000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Scm Group": 50000000,
- "SeaQuest aquariums": 2400000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "Senor Frog's": 8000000,
- "ServiceMaster Clean": 48500000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Slickdeals": 75000000,
- "Society Tea": 4300000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Solectrac": 2500000,
+ "Sam Is IT": 18300000,
+ "Science4Sight": 21000000,
+ "Scoutwest Inc.": 13800000,
+ "Search Fit": 3300000,
+ "SecTheory": 10500000,
+ "SecureMac": 19600000,
+ "SeeQuinn": 1100000,
+ "Semperis": 40000000,
+ "Senzing": 1000000,
+ "Sequoia Visions": 14300000,
+ "Service Express": 130000000,
+ "ServiceTrade": 45500000,
+ "Servion": 156000000,
+ "ShieldIO": 1000000,
+ "Shirley's Creative Designs": 11300000,
+ "Shop Boss": 17700000,
+ "Siena Technologies": 8000000,
+ "Sierra Web": 32000000,
+ "Ski Rental Systems": 8200000,
+ "SkyWire Media": 11100000,
+ "Slade Systems": 32300000,
+ "Smart Energy Water": 105000000,
+ "SmileyRose": 24800000,
+ "Snelling Web Development": 12700000,
+ "Socure": 100000000,
+ "Soffront": 10000000,
+ "Softchoice": 957500000,
+ "Solutions II": 70000000,
+ "Solvusoft": 3500000,
"Sonatafy": 35000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Spanx LLC.": 400000000,
- "Sprinkles Cupcakes": 15800000,
- "St. Cloud Regional Airport": 46800000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stephens Media newspapers": 28300000,
- "Stride Inc.": 1400000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Suit Supply France SARL": 350000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "T-Shirt Hell": 10200000,
- "TCBY": 8800000,
- "TGS": 716600000,
- "TOM FORD": 615000000,
- "TRISTAR Productions": 5200000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tactical Air Support": 10300000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
+ "Sounds In Sync": 4600000,
+ "SpamHero": 35000000,
+ "Spiff3D": 23000000,
+ "Springer-Miller Systems": 17800000,
+ "Squadra Technologies": 19500000,
+ "Stoneworks Technologies": 10500000,
+ "Stratford Software": 28500000,
+ "StratusVue": 10000000,
+ "Structured": 15000000,
+ "SureClinical": 5000000,
+ "Sword Of Melody": 21300000,
+ "Symboticware": 4400000,
+ "Symtec": 10700000,
+ "Synergetic Consulting": 12000000,
+ "Synetek Solutions": 35100000,
+ "System Optimization & Support SOS Hawaii": 18200000,
+ "Systems Solutions Inc. SSI": 11400000,
+ "Syswhite": 4400000,
+ "TAO Consultants Inc | Home of the ComputerGoddess\u00ae": 14900000,
+ "TATEMS": 1400000,
+ "TEAM International": 320000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TRS Consulting": 13000000,
+ "Tabs3": 12200000,
+ "Tachyum": 1500000,
+ "Tansy Myer": 18500000,
+ "Tawk": 9200000,
+ "TeamLogic Inc.": 7200000,
+ "Teapplix": 14900000,
+ "Tech Tips & Tricks": 2000000,
+ "Tech9": 2400000,
+ "TechVanta": 36300000,
+ "Technology Exclusive": 17100000,
+ "Techvedic": 8900000,
+ "Teledata Technologies": 31600000,
"Telos company": 236800000,
- "Template Infobox MMA training association doc": 3400000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Terrible Herbst": 10000000,
- "Tesla Automation": 14500000,
- "The Church of Jesus Christ": 5200000,
- "The First Line": 18800000,
- "The IACP": 6900000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Save Mart Companies": 4800000000,
- "TheBlaze": 2100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
+ "Teqniksoft": 70000000,
+ "TeraByte Unlimited": 20700000,
+ "Tetrascend": 15800000,
+ "The Glitterati": 10000000,
+ "The NV Registry LLC.": 19900000,
+ "The Technology Depot": 10600000,
+ "ThreeSided": 5800000,
+ "Time Doctor": 12000000,
+ "Time Track": 19800000,
+ "Tippit": 13700000,
+ "Tiro Security": 3700000,
"Trace3 LLC.": 1400000000,
- "Trading Places": 27200000,
- "Traffic Safety Store": 19900000,
- "Transunion Chile": 3600000000,
- "Tricon Residential": 513200000,
- "Trump Hotels": 75000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Ordnance Inc.": 2900000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
+ "TraffGen": 3600000,
+ "TraitWare": 16000000,
+ "Transaction Processing Solutions TPS Inc.": 13600000,
+ "TransparenTech": 2400000,
+ "Trilogix": 10000000,
+ "TruePoint Solutions": 49900000,
+ "UBEO": 15000000,
+ "US Computer Consulting Corporation": 12400000,
+ "USGN": 29700000,
+ "USmailsolutions": 42000000,
+ "Ultra Vegas Enterprises": 22600000,
+ "Unified Compliance": 10000000,
+ "Unikie": 31900000,
+ "Up Arrow Inc.": 20100000,
+ "Urick Design": 10900000,
+ "Ushur": 10000000,
+ "Uvation": 62900000,
"VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Verifone": 1800000000,
- "Veritiv": 7300000000,
- "Vic & Anthony's Steakhouse": 9800000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Volcom": 380000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wahoo's": 69100000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Mutual": 11700000,
- "Whelen": 500000000,
- "Whitaker House": 36000000,
- "Wienerschnitzel": 341000000,
- "Wikiloc": 1000000,
- "WinCo Foods": 7700000000,
- "Winchell's Donut House": 16900000,
- "Windermere Real Estate": 500000000,
+ "VPS Cheap": 1600000,
+ "Vapor IO": 12000000,
+ "Vegas Graphics": 12200000,
+ "Vembu": 38300000,
+ "Ventrcek": 6000000,
+ "Versaweb": 3100000,
+ "Vertisystem": 5700000,
+ "Village Management Software": 18800000,
+ "Vision Technology Services": 1000000000,
+ "Vitallink Inc.": 26400000,
+ "Vivitiv": 11500000,
+ "Vizics": 12000000,
+ "Vodmochka": 11900000,
+ "WP Tonic": 6000000,
+ "Walls 360": 6000000,
+ "Weave Communications Inc.": 136300000,
+ "Web HSP": 25700000,
+ "Web Marketing Magic": 32100000,
+ "Web Style Media": 4500000,
+ "WebFX Design": 19300000,
+ "Webcritters": 12600000,
+ "WebsiteCenter": 60500000,
+ "What Works Coaching": 3100000,
+ "White Crest Software": 10700000,
+ "WhiteStar USA": 25400000,
+ "Wholesale2B": 2400000,
+ "Wicked Melon": 6700000,
+ "Willing Minds": 26400000,
+ "WinProg": 11800000,
+ "WiredRE": 14500000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Boxing Organization": 1300000,
- "World Financial Group": 10000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yamana": 1900000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Zuma": 600000000,
- "Zumiez": 1100000000
+ "Wybtrak": 11900000,
+ "XMS Solutions": 38200000,
+ "XUMA": 18400000,
+ "Yen Digital": 8500000,
+ "ZZ Inc.": 10000000,
+ "Zachary Piper": 5000000,
+ "Zadra Design": 5600000,
+ "Zealous Co.": 10000000,
+ "Zed Systems": 1400000,
+ "Zeidman": 35200000,
+ "ZenFocus": 24600000,
+ "Zero Bounce": 10000000,
+ "ZeroDivide": 15000000,
+ "Zunesis": 15000000,
+ "aLigra": 30400000,
+ "dMY Technology": 1800000,
+ "e-Quantum": 12300000,
+ "eSI2": 31600000,
+ "ec2 Software Solutions": 12200000,
+ "espSoftware": 12100000,
+ "gluSTIK": 7700000,
+ "innova | accelerator HQ": 1400000,
+ "macs Software GmbH": 10000000,
+ "nGAP": 3000000,
+ "pas UNITY": 4900000
},
"New Hampshire": {
- "ABC Supply": 12100000000,
+ "22nd Century Solutions": 166300000,
+ "465-Media": 1400000,
+ "A ZIEMBA DESIGN LLC.": 5800000,
"ADP Roseland": 16900000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "Ace Hardware": 7800000000,
- "Advanced Solutions Life Sciences": 1000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Alembic Inc.": 8700000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmTrust Financial": 4700000000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Society of Genealogists": 3600000,
- "Amway North America": 9500000000,
- "Appalachian Mountain Club": 2100000,
- "Applegreen plc.": 3400000000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
- "Aubuchon Hardware": 128000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BNP Paribas Asset Management": 19600000000,
- "Bangladesh Submarine Cable Company Limited": 7000000,
- "Beacon Power": 19900000,
- "BeaverTails": 4100000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Best Buddies": 3600000,
+ "AMS Storage": 4000000,
+ "ARCAD Software": 8000000,
+ "AS&ST": 21600000,
+ "ASTA Incorporated Services": 17500000,
+ "Absolute Data Destruction": 26300000,
+ "Acuity Cloud Solutions": 3700000,
+ "Addnode Group": 596100000,
+ "Advanced Kiosks": 8000000,
+ "Advanced Programs Incorporated": 19100000,
+ "Agicent": 4500000,
+ "AgilePath": 2400000,
+ "AkkenCloud": 5800000,
+ "Akumina": 6200000,
+ "Alhambra IT": 4400000,
+ "Align Graphic": 23600000,
+ "AlignOps": 26800000,
+ "Alpine Business Solutions": 26700000,
+ "AlpineWeb": 62900000,
+ "AltScale": 6000000,
+ "Amadeus Hospitality": 50000000,
+ "Amber Kay Anderson Design and Development": 32600000,
+ "Amber Wave Media": 2300000,
+ "Amoskeag Network Consulting Group LLC.": 4000000,
+ "Ampers& Studio a graphic design & creative arts studio": 6600000,
+ "Andara": 592000,
+ "Animetrics": 19100000,
+ "Apex Computer": 2000000,
+ "Applied Math Modeling": 10000000,
+ "Appropriate Solutions": 46900000,
+ "Arcanum Solutions": 13400000,
+ "Argos Systems": 7000000,
+ "Ascendle": 3200000,
+ "AspireSoft": 18100000,
+ "Asset Management Solutions": 67300000,
+ "Athenium Analytics": 18600000,
+ "Atriks": 24300000,
+ "Automature": 1400000,
+ "Axcelx": 1500000,
+ "Ayna": 10000000,
+ "Azurelink": 10000000,
+ "BDP Technology Solutions": 65800000,
+ "BEI Networks": 7000000,
+ "BIO-key": 4200000,
+ "BMI Cloud Solutions": 1700000,
+ "BMSI": 32000000,
+ "BNMC": 4400000,
+ "BWC Productions": 392000,
+ "Backup Eye": 29900000,
+ "Barefoot Technologies": 52000000,
+ "Be Better Studios": 1400000,
+ "Bee Culture": 5500000,
+ "Berube Consulting": 27300000,
+ "Beyond the Brand Media": 19300000,
+ "BlocSoft": 3200000,
+ "Blue Bass Design": 19000000,
+ "Blue Circle Creative": 1800000,
+ "Blue Lobster Brewing Company": 12700000,
+ "Blue Spruce Technologies": 13400000,
"Bluebeam": 69600000,
- "Bob's Stores": 1000000,
- "Bonchon": 60000000,
- "Bossard": 920500000,
- "Branch Line Press": 25400000,
- "Breezeline": 300000000,
- "BrightFarms": 9000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown Cow Yogurt": 8000000,
+ "Bogart Computing": 27100000,
+ "Bonus Software": 10000000,
+ "Bowst": 4400000,
+ "Boyum IT Solutions": 22700000,
+ "Breakheart Used Machine Tools": 13400000,
+ "Brick River": 16500000,
+ "BrightWork Solutions": 8700000,
+ "Brown & Company Design": 5600000,
+ "C & D Systems": 12800000,
+ "C Squared Systems": 26300000,
"CACI": 6200000000,
- "CCCERA": 33100000,
- "Camso": 1300000000,
- "Casella": 1100000000,
- "CellGenix": 24600000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Claremont NH": 21700000,
+ "CADNET Services LLP.": 3000000,
+ "CAFM Resources": 10900000,
+ "CCI managed Services": 35200000,
+ "CDT MicroGraphics": 2300000,
+ "CEN Associates": 5800000,
+ "CFO Real Estate Inc.": 25800000,
+ "CINX": 6000000,
+ "CLN Design": 7600000,
+ "CMSS": 28600000,
+ "CadQal": 47400000,
+ "CamBec Website Design": 7400000,
+ "CamberSoft": 32600000,
+ "Canary Systems": 6000000,
+ "Cantin Design": 19400000,
+ "Centripetal": 35000000,
+ "Cerebris": 20800000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Certstation": 9300000,
+ "CharmLab": 1400000,
+ "Chase Brook": 9900000,
+ "Chatham Designs": 1400000,
+ "CherryWind Technologies": 18100000,
+ "Cherub Availability Services": 9800000,
+ "Chicago Soft": 11700000,
+ "Christian Le Doux": 33200000,
+ "Cigent": 2500000,
+ "CitiXsys": 7500000,
+ "Clearview Software International": 2000000,
+ "Clearwater Septic Design": 19500000,
+ "Click Studios": 1900000,
+ "Clio Software": 32700000,
+ "CloudBrix": 5200000,
+ "CloudConnect": 10000000,
+ "CloudZoom": 1400000,
"Cloudera": 904800000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Compass Media Networks": 7000000,
- "Concord Area Transit": 24100000,
- "Concord's Colonial Inn": 7000000,
- "Consolidated": 1200000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Cornwall Tool Library": 10400000,
- "Cracker Barrel": 3300000000,
- "Crane Currency": 700000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "DEKA Research": 46300000,
- "Datalex": 25500000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Einstein Bros. Bagels": 500000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Eversource": 11700000000,
- "Everspin": 62100000,
- "FIRST": 18700000,
- "FatFace": 244700000,
- "Ferrellgas": 2100000000,
- "FormFactor": 747900000,
+ "Clover Creative Group": 25000000,
+ "Cmc corp": 7000000,
+ "Coginov": 10000000,
+ "Comeau Associates": 16200000,
+ "CommandLink": 5600000,
+ "Computer Networking Services of NH": 10300000,
+ "Comtech Global": 7000000,
+ "ConRes": 4000000000,
+ "Conest": 4400000,
+ "Connected Bits": 3100000,
+ "Cornerstone Software": 4900000,
+ "Corprotect": 1400000,
+ "Crawford Software": 16900000,
+ "Creative Energies": 2400000,
+ "Creative Marketing Guru": 12600000,
+ "CrowdFlik": 10000000,
+ "CrystalVision Inc.": 24200000,
+ "Culver Technologies": 3700000,
+ "Cyber Sphere": 7000000,
+ "CyberSN": 4800000,
+ "CyberTrinity Solutions": 29600000,
+ "Cyberhawk": 4700000,
+ "DB Solo": 7000000,
+ "DLL Solutions": 50100000,
+ "DMWData": 25800000,
+ "DSP Consulting": 1400000,
+ "Dartmouth Data": 17000000,
+ "Data Acuity": 6000000,
+ "Data Evolution": 37100000,
+ "Data Mobility Group": 17500000,
+ "Dataserv INC.": 7300000,
+ "Datdec": 21800000,
+ "Daystar Direct": 23200000,
+ "Dbcreation": 2300000,
+ "Dead on Demand": 22200000,
+ "Decision Wave": 19100000,
+ "Delorey": 11700000,
+ "Dental IT Solutions": 7500000,
+ "Deployment Technologies Inc.": 6000000,
+ "DesignLinx Solutions": 1400000,
+ "DestructData": 4400000,
+ "Devine Systems": 20400000,
+ "Dharma Computers": 16400000,
+ "Digital Forensics Team": 4100000,
+ "Digital Media Designs": 31500000,
+ "Digrafika": 3900000,
+ "Diversified Programming": 19900000,
+ "Django Software Foundation": 10000000,
+ "DominionTech": 171000,
+ "Down To One Technologies": 12600000,
+ "Dynamic Internet": 5400000,
+ "E Tech Group": 200000000,
+ "E. Crane Computing": 46900000,
+ "EMF Inc.": 2000000,
+ "EMINENT Technologies": 20700000,
+ "Eagle Network Solutions": 1400000,
+ "Ebryx": 5500000,
+ "Edgewood Solutions": 34400000,
+ "Einfosystems": 5400000,
+ "Enfield Public Library": 7800000,
+ "Engageware": 18900000,
+ "Ensure Technologies": 18800000,
+ "Erin Gerald": 6000000,
+ "EsoSoft": 4200000,
+ "Eversafe IT": 16300000,
+ "Ewarenow": 24000000,
+ "Explorics": 4200000,
+ "Eyeray": 6900000,
+ "FIREHORSE": 315000,
+ "FOSS Software": 16300000,
+ "Factor Three Webworks": 25100000,
+ "Falcon HFx": 13100000,
+ "First Light Technologies": 2400000,
+ "Fivos Health": 5000000,
+ "Flash Cards Inc.": 6200000,
+ "Fletcher Designs": 14900000,
+ "Flynn Systems": 3400000,
+ "Forrester Environmental Services Inc.": 6600000,
"Fortinet": 4100000000,
- "Free State Project": 7600000,
- "Frito-Lay Inc.": 19600000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Golder Associates Inc.": 1000000000,
- "Great Harvest": 21200000,
- "Guitar Center": 2300000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Hayden Shapes": 12000000,
- "Hemlock Society": 10000000,
- "Hershey Creamery Company": 124000,
- "Hippo Press": 8200000,
- "Hobby Lobby": 5300000000,
- "HockeyTech Inc.": 10000000,
- "Homesense": 4100000,
- "Hotpoint": 2800000,
- "Hudson": 2000000000,
- "IHEARTMEDIA": 3800000000,
- "Intelitek": 3300000,
- "Internet Systems Consortium": 6200000,
- "Iron Mountain Incorporated": 5000000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jimmy Fund": 9600000,
- "John Hancock Financial": 9500000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "Kupenda": 2600000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Lin-Wood Public School": 22600000,
- "Lincare Holdings": 2000000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Long John Silver's": 404000000,
- "Lovesac": 389800000,
- "Lyon & Healy": 7000000,
- "M-Audio": 2300000,
- "MFJ Enterprises": 7800000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Manchester Transit Authority": 22200000,
- "Marlow Industries": 1500000000,
- "McLane Company": 50000000000,
- "Meltwater": 401600000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning Journal": 6000000,
- "Moyes Delta Gliders": 2100000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NBT Bank": 30100000,
- "NEMO Equipment": 8000000,
- "NHRS": 29100000,
- "NOAA Weather Radio": 36400000,
- "Net Ministries": 4000000,
- "New Hampshire Women's Bar Association": 14000000,
- "Northway Bank Northway Financial Inc.": 10200000,
- "ON Semi": 8300000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "PRINOTH AG": 76000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Parker Hannifin": 15900000000,
+ "Fourae": 6600000,
+ "Freedom Computer": 26300000,
+ "Freedom Data": 47800000,
+ "Freedom Networking": 11000000,
+ "Frost Data Systems": 21800000,
+ "Fubeus": 18600000,
+ "GREENWALD RICHARD": 21200000,
+ "GREGORVIOS Graphic Design Studio": 1200000,
+ "GatherWorks": 20400000,
+ "Gemr": 4000000,
+ "Gen Y Creative": 19300000,
+ "Gilead Web Services": 7800000,
+ "Gillware": 10800000,
+ "GiveSmart": 12000000,
+ "Global Network Systems": 10000000,
+ "Globe Tech Inc.": 5800000,
+ "GoAntiquing": 13500000,
+ "Granite Rose Morgans": 37200000,
+ "Granite State BMW Riders": 28300000,
+ "Granite Technologies": 26000000,
+ "Graphic Details": 6300000,
+ "Great North Woods Webpage Design": 41800000,
+ "Green Island Graphics": 6900000,
+ "Grinning Moon Creative": 10600000,
+ "Ground Up Landscape Materials": 20900000,
+ "GuideMark Systems LLC.": 2000000,
+ "Gwarlingo Studio": 5600000,
+ "HREF": 14100000,
+ "Hair To Dye For": 18000000,
+ "Hamilton Software": 10800000,
+ "Hawk Ridge Systems": 53500000,
+ "HealthJobsPro": 638000,
+ "Heynow": 2000000,
+ "High Country Home Interior Design and Custom Cabinetry": 29000000,
+ "Highdata Software": 20200000,
+ "HoGo": 10000000,
+ "Howard Systems": 13300000,
+ "I.T. Insiders": 7400000,
+ "IT Excel": 35800000,
+ "IT Guardian": 36700000,
+ "IT Secure": 36400000,
+ "ITAG US.": 10300000,
+ "Icentrix analytics": 15900000,
+ "IdeaKites": 706000,
+ "Ident-A-Kid": 13500000,
+ "ImageXpert": 24200000,
+ "InXero": 3600000,
+ "Inception Tech": 21000000,
+ "Infospan Technologies": 16700000,
+ "Infosys Public Services": 90000000,
+ "Infusion Studio": 3500000,
+ "Insight Replay": 1000000,
+ "InsightAtlast": 7000000,
+ "Instant Technologies": 12800000,
+ "Integrated Cyber": 2400000,
+ "Integris - Managed IT Services Houston": 43200000,
+ "Interactive Systems Inc.": 19200000,
+ "Interware Development": 706000,
+ "IntraSystems": 4400000,
+ "Inv3rsion": 17600000,
+ "Isee systems": 11000000,
+ "J.RED Digital Arts": 18700000,
+ "JANET LEYDON": 4600000,
+ "JIC-ELCO": 16100000,
+ "JRTwine": 11000000,
+ "Jadeview": 13400000,
+ "Jd Media": 482000,
+ "John Segal": 14500000,
+ "Joscor": 2900000,
+ "Julien Richard3": 7700000,
+ "KIVA Group": 10000000,
+ "KRUSHgraphics": 2900000,
+ "KSD Creative": 1400000,
+ "Ke`aki Technologies": 36000000,
+ "Keene Systems": 52100000,
+ "Kentico": 11500000,
+ "Key Data IT": 10900000,
+ "Keza": 5100000,
+ "Kilpatrick IT Solutions": 54200000,
+ "Kithara": 3800000,
+ "KyTek": 24200000,
+ "LOGYX": 7000000,
+ "Labbe Painting": 24600000,
+ "Ladd Associates": 74000000,
+ "Larcom Studios": 1700000,
+ "LaserVault": 10000000,
+ "Lazyriver Trading Co.": 11300000,
+ "Lexan Systems": 17800000,
+ "LightRiver": 22000000,
+ "LightWave 3D": 7500000,
+ "Lightfin Studios": 1400000,
+ "Linric": 29000000,
+ "Loftware": 100000000,
+ "Log-On": 35000000,
+ "Long Hill Consulting LLC.": 6300000,
+ "Lucidus": 5400000,
+ "Lulu & Roo Design Boutique": 2800000,
+ "Lyme": 6100000,
+ "MCE123": 2500000,
+ "MECHA Software": 35300000,
+ "MERJE Design": 14600000,
+ "MG Markham Design": 978000,
+ "MGS Associates Inc.": 13800000,
+ "Mad Pow Boston Office": 17500000,
+ "Maerix": 5000000,
+ "Mainstay Technologies": 6700000,
+ "MarXtar": 1400000,
+ "Mark Armstrong Illustration": 4300000,
+ "Marshall Creative Design": 19600000,
+ "Marston Creative": 14000000,
+ "Maville Design": 36700000,
+ "MediSpend": 6200000,
+ "Metrica Group": 1400000,
+ "Might & Main": 2300000,
+ "Miovision": 35000000,
+ "Modern Concepts": 4000000,
+ "Morse Data Corporation": 10000000,
+ "Morse Technologies": 5000000,
+ "Mosaic Technology": 433000,
+ "Mosedale integrated Solutions": 5000000,
+ "Municipal Supply Sales Co.": 10400000,
+ "N'ware Technologies": 30600000,
+ "NCS Global": 2700000,
+ "NEXT CHOICE ADVISORS": 18800000,
+ "NH-HTC": 4900000,
+ "NICK LEVESQUE": 14100000,
+ "NICKS PAGES.": 2800000,
+ "Nam Technologies": 7900000,
+ "Nanocomp Technologies Inc.": 5600000,
+ "Navspan": 1900000,
+ "NebCreative": 2700000,
+ "Neomatrix": 13400000,
+ "Netlogic my365": 385000,
+ "New Era Technology": 22200000,
+ "Nfina": 15300000,
+ "NineCats": 26700000,
+ "No Silence Media": 6000000,
+ "North Country Graphics": 12800000,
+ "North Country Graphics NH": 23700000,
+ "North Shore Data Services": 6200000,
+ "North Star Web Services": 2800000,
+ "Northledge Technologies": 13400000,
+ "Northwoods Software": 38400000,
+ "Nouveau Group": 17500000,
+ "NuWave Technologies": 29600000,
+ "OBEDIENT MACHINE": 3500000,
+ "OIKOS Software": 6000000,
+ "OMS SafeHarbor": 16900000,
+ "OSR": 4500000,
+ "OSR Online": 19800000,
+ "Octo studios": 11700000,
+ "Omada Technologies": 6800000,
+ "OmniSource IT": 53300000,
+ "OneGlobe": 48700000,
+ "Ourhost": 14900000,
+ "PACEIMPACT": 2700000,
+ "PERUSE SOFTWARE": 34200000,
+ "Packet Capture Software and Appliances": 5800000,
+ "Parkerhill": 2400000,
+ "Party Track": 18600000,
"Paylocity Corporation": 923400000,
- "Penguin Point": 36700000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Piggly Wiggly": 500000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piping Technology": 80000000,
- "PlaneSense": 10000000,
- "Planned Parenthood": 1600000000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "RR Auction": 36500000,
- "Realtor": 118000000,
- "Red Arrow Diner": 3100000,
- "Red Wing Shoes": 700000000,
- "Renewable Energy Group": 2900000000,
- "Renkus-Heinz": 6900000,
- "Rexair": 35000000,
- "Rokon": 3700000,
- "Rotel": 38800000,
- "SAU 39": 10200000,
- "SEPTA": 145600000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Sarku Japan": 310000,
- "Schleuniger": 225800000,
- "SemaConnect": 29000000,
- "Service CU": 11100000,
- "Severud Associates Consulting Engineers P.C.": 7000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Smuttynose Brewing Company": 19000000,
+ "Pelluche Creative": 2600000,
+ "Penguin Computing Inc.": 21700000,
+ "Perceptions Studio": 4500000,
+ "Peregrine Design": 12800000,
+ "PerfCap": 36800000,
+ "Perfectly Good": 20300000,
+ "Performax": 45400000,
+ "Perseid Software": 41200000,
+ "Persystence": 30200000,
+ "Pfgc": 2900000,
+ "PiF Technologies": 2000000,
+ "Pittsburgh Networks": 11000000,
+ "Plainspoke": 9400000,
+ "Porchlight Studio": 12700000,
+ "Postmatic": 177000,
+ "Printavo": 4400000,
+ "ProVisS": 19600000,
+ "Professional Software for Nurses": 47300000,
+ "Propriety": 23400000,
+ "Provado Labs": 3000000,
+ "QPS": 10000000,
+ "Quantem Aviation Services LLC.": 37500000,
+ "Quiet Software": 1400000,
+ "RDV Systems": 6000000,
+ "RIGHTSIZING": 17400000,
+ "RMON Networks": 9600000,
+ "RTM Communications": 6000000,
+ "RYCOMM": 16400000,
+ "Radianse": 16500000,
+ "RafterOne": 12000000,
+ "Recordsforce": 20500000,
+ "Red Leaf Development": 10000000,
+ "Red Sky Alliance": 3000000,
+ "RedBliss Design": 54400000,
+ "Relycom": 22700000,
+ "Responsive Concepts": 25800000,
+ "Resposio": 24800000,
+ "Retail Control Systems": 3600000,
+ "Retrieve": 6000000,
+ "Right Networks": 70000000,
+ "RightBid": 2400000,
+ "Roberge Design": 25100000,
+ "Rock Solid Results": 6900000,
+ "Rockport Technology Group": 12600000,
+ "Romore": 14500000,
+ "Roshi Tech": 49900000,
+ "RoyceFamily Computer Services": 10500000,
+ "SAPinsider": 37500000,
+ "SGA Software": 31200000,
+ "SMS Computer Services": 18700000,
+ "SOFTTECH AG": 242000,
+ "Sadhana Consulting": 19400000,
+ "Safety Net Solutions": 7600000,
+ "Sassafras Software": 5400000,
+ "Sawyer Web Works": 3900000,
+ "Scott E. Pond Designs": 6400000,
+ "Sea Change Systems": 1700000,
+ "Seacoast Laboratory Data Systems": 10200000,
+ "Sector Software": 5100000,
+ "Secured Network Services": 7800000,
+ "Security Crossing": 14300000,
+ "SecurityCurve": 1400000,
+ "Secutor Solutions": 2400000,
+ "Sequoya Technologies": 10400000,
+ "Shapiro & Co.": 23600000,
+ "Siltek": 5600000,
+ "Siltek Corporaiton": 22600000,
+ "Simplified Clinical": 30200000,
+ "Sincera": 24300000,
+ "Sitecore": 90000000,
+ "Sky Terra": 1000000,
+ "Sky Websites": 5600000,
"Snappii": 7900000,
- "Solidscape": 35300000,
- "Sophia Institute Press": 7000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sun & Ski Sports": 15000000,
- "Sun Life": 17200000000,
- "Sylvan Learning": 12600000,
- "TUV NORD": 500000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Technology Student Association TSA": 10000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Art of Shaving": 45000000,
- "The Berlin Daily Sun": 7000000,
- "The Exonian": 17300000,
- "Things Remembered": 300000000,
- "Thorlabs": 550500000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Bank Morrisville Vermont": 48000000,
+ "SoftLanding Systems": 34500000,
+ "Software Concepts International": 2200000,
+ "Software Innovations": 10400000,
+ "Software Technology International": 14600000,
+ "SolidXperts": 18000000,
+ "Soreye": 11400000,
+ "Southern NH Software": 33700000,
+ "Spinnaker Add-ins": 2400000,
+ "Stable Secretary": 27400000,
+ "StarsystemsDirect": 52500000,
+ "Sterling Design & Communications": 29600000,
+ "Stone Pond Technology": 37000000,
+ "Stratus Hub": 4000000,
+ "String Soft": 26200000,
+ "Studio A Design": 16800000,
+ "SubItUp": 14300000,
+ "Sublime Solution": 47100000,
+ "Sullivan Wolf Design": 5600000,
+ "SuperiorSolutionsInc": 14800000,
+ "Surf City Design": 17100000,
+ "SyAM Software": 5800000,
+ "SymQuest": 38300000,
+ "Symmetry Consulting": 6400000,
+ "Synapse XTL": 7100000,
+ "Synectics": 11700000,
+ "SyntegraTech": 13600000,
+ "System i Developer": 2200000,
+ "Systems & Communications Sciences Inc.": 6600000,
+ "TAC-2 Communications": 20300000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TG GRAPHICS": 9900000,
+ "TPGi": 5000000,
+ "TRADEPOINT 360": 24500000,
+ "TablesReady": 484000,
+ "Tabs3": 12200000,
+ "TactiCom": 16500000,
+ "Tactical Software": 19500000,
+ "Taylor River": 49800000,
+ "TeamEDA": 7000000,
+ "TeamLogic Inc.": 7200000,
+ "TechSquare": 9600000,
+ "Techexcess": 9900000,
+ "Technical Decisions": 1400000,
+ "Ted Roche": 20400000,
+ "Temple Logic": 3900000,
+ "Tevron": 2300000,
+ "Text Inc.": 13700000,
+ "Textco": 15800000,
+ "The ATOM Group": 6500000,
+ "The Hynes Group": 20200000,
+ "The Impact Group": 6600000,
+ "The Nth Power": 12200000,
+ "The Rusty Bucket": 1900000,
+ "The iConsortium": 34900000,
+ "ThingaMaWebs": 11300000,
+ "Thom Little Associates": 22900000,
+ "Top App Creators": 2400000,
+ "Topgallant Partners": 21900000,
+ "Total Design Solutions LLC.": 6400000,
+ "Trademark Graphic Design": 21100000,
+ "Transaction Pro": 5000000,
+ "True Blue Software": 29000000,
+ "Trylon": 8400000,
+ "Turbotek": 3500000,
+ "TwiLight Software": 34800000,
+ "Twinstate Technologies": 7600000,
+ "UIanswers": 23000000,
+ "Uconnect": 3300000,
"Unit 4": 550000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of Hawaii Press": 3300000,
- "University of New Hampshire InterOperability Laboratory": 628000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "Virtual Learning Academy Charter School": 3200000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Weathervane Seafoods": 100000000,
- "Westat Research inc.": 597000000,
- "Whelen": 500000000,
- "Wild Willy's Burgers": 9000000,
+ "Utility Cloud": 11000000,
+ "VGo Communications": 10000000,
+ "VOYAGER SYSTEMS": 9500000,
+ "Vantage Technologies Inc. | Vantage Data Recovery": 20100000,
+ "Vartopia": 7000000,
+ "Vault Solutions": 29000000,
+ "Verse Media": 3800000,
+ "Vinfotech": 3000000,
+ "Visual Legacy Group": 25100000,
+ "Vizteck": 3400000,
+ "WECnology": 51300000,
+ "WSB Technologies": 29300000,
+ "WWCS": 30600000,
+ "Weather Source": 6500000,
+ "WebDPW": 3300000,
+ "WebSavvy Studio": 25800000,
+ "Wedgewood Graphic Design": 124000,
+ "West Web Pages": 17800000,
+ "Wetherbee Creative": 6900000,
+ "White Mountain CAD": 2700000,
+ "White Star Software": 1400000,
+ "Whitelight Creative": 10900000,
+ "Windhill": 5200000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
+ "Worcus": 26100000,
+ "Workgrid": 6700000,
+ "Worldcom Exchange": 110000000,
+ "XOR Media": 22900000,
+ "XRSolutions": 47600000,
+ "Xelor Software": 2400000,
+ "Yellow Kite Creative": 34700000,
"Yieldmo": 9000000,
- "Zoom Telephonics": 9000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "askMLabs": 127000,
+ "eGrove Systems": 25000000,
+ "ec2 Software Solutions": 12200000,
+ "hopTo": 3800000,
+ "i-Virtualize": 3000000,
+ "iManage Informed's Cleaning Management Software": 17400000,
+ "wyDay": 2400000,
+ "wydraTEK": 1400000
},
"New Jersey": {
- "3D International": 4000000000,
- "3Shape": 300000000,
- "A.M. Best Company": 3900000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACG World Wide": 500000000,
- "ACI Worldwide": 1400000000,
- "ACORD": 37200000,
- "ADM": 94400000000,
+ "A Garden Party": 15500000,
+ "A Mobile Techs Onsite IT Support Services": 36800000,
+ "ABI Hosting": 52000000,
+ "ACT Data": 10000000,
"ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "AFL-CIO": 138000000,
- "ALM": 186900000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ATF": 1000000000,
- "ATS Automation": 1800000000,
- "Abacus Federal Savings Bank": 18800000,
- "Acadia": 517200000,
- "Acrisure": 3800000000,
- "Acxiom": 1300000000,
- "Adore Me": 115000000,
- "Aerolineas Argentinas": 1500000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Akorn New Jersey": 682400000,
- "Alkem Laboratories": 1400000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
+ "AE BACKOFFICE": 35600000,
+ "AFScott": 36700000,
+ "AIT Global": 35000000,
+ "ATANDRA": 15700000,
+ "AVG": 200000000,
+ "Abay Group": 20400000,
+ "Access Architectural Glass": 26400000,
+ "AccessIG": 34600000,
+ "AccuWeb Hosting": 5500000,
+ "Accudata Systems": 15200000,
+ "Adbakx": 19000000,
+ "AdroitMinds": 22700000,
+ "Advanced Threat Analytics": 14000000,
+ "AllCom Global Services": 53500000,
+ "Alloy Software": 11900000,
+ "AlphaCentrix": 20000000,
"Altair Engineering": 552600000,
- "Alternative Comics": 21000000,
- "Amboy Bank": 60000000,
- "AmeriServ": 10000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Mosquito Control Association AMCA": 26500000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amoroso's": 25000000,
- "Amway North America": 9500000000,
- "Arc Holdings": 3000000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Aspen Insurance": 3700000000,
- "At Home store": 1700000000,
+ "Altek Business Systems": 16800000,
+ "American Made Overhead Door": 17000000,
+ "American Network Expert": 48800000,
+ "Ampersand Graphics": 19200000,
+ "Amrut Software": 10000000,
+ "Anagha Softech": 35000000,
+ "Analytics In Focus": 21100000,
+ "Antechnologie": 10700000,
+ "Anu data": 31700000,
+ "Apar Technologies": 1600000000,
+ "Apexon": 75000000,
+ "AppShark": 15000000,
+ "Applied Business Systems": 440000000,
+ "Arena Design": 10000000,
+ "Argent Associates": 35900000,
+ "Arria NLG plc.": 1000000,
+ "Artigiano Design Studio": 26400000,
+ "Ascender Studios": 22600000,
+ "Astir Services": 70000000,
"Atlantic": 59500000,
- "Atlantic City Jitney": 70100000,
+ "Atulya": 24300000,
"Aujas": 17500000,
- "Austrian": 565000000,
+ "Avalon Business Systems": 10300000,
+ "Avani Technology Solutions": 65000000,
"AvePoint": 215800000,
- "Avvo": 29900000,
- "Axos Bank": 806700000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BOBST": 1600000000,
- "Baird investment bank": 3400000000,
- "Banco Montepio": 600000000,
- "Bare Necessities company": 66000000,
- "Barnes & Noble Education": 1400000000,
- "Barnes & Thornburg": 575500000,
- "Barry Callebaut": 8400000000,
- "Baseball Factory": 10000000,
- "Bassett Furniture": 521500000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "BeenVerified": 14500000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Labs": 75000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berkshire Hathaway GUARD Insurance Companies": 32100000,
- "Bernafon": 138000000,
- "Bessemer Trust": 682100000,
- "Blue Owl Capital": 991600000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bonchon": 60000000,
+ "Avenga": 200000000,
+ "Aventa Systems": 14400000,
+ "Azoi Inc.": 20600000,
+ "Azure Knowledge": 19700000,
+ "B&R Solutions": 14100000,
+ "BBB Technology": 24400000,
+ "BairesDev": 105000000,
+ "Bardess": 21000000,
+ "BayState InfoTech": 16900000,
+ "Benjamin Allen": 19600000,
+ "BizEnablers": 45100000,
+ "BlueStone Backup": 42200000,
+ "BodHost": 10000000,
"Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Boston Whaler": 40000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "BronxNet": 13100000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Brown & Brown Insurance": 3400000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "Burlington County Times": 15500000,
+ "Boyum IT Solutions": 22700000,
+ "Brillio": 400000000,
+ "Business Recovery Center": 10000000,
"CACI": 6200000000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CJ Logistics": 1000000000,
- "CSCEC": 203200000000,
- "CSL": 1900000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal Water": 14300000,
- "CardCash": 164100000,
- "Case Western Reserve University": 1200000000,
- "Casella": 1100000000,
- "Catch A Rising Star": 10200000,
- "Cellular Sales": 1700000000,
- "Ceragon": 297400000,
- "Champion's Oncology": 54100000,
- "ChapStick": 20300000,
- "Charles River Associates": 568700000,
- "Charles River Laboratories": 4000000000,
- "Chick-fil-A": 5800000000,
- "Chr. Hansen": 1100000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Climax Brewing": 49700000,
- "Cole-Parmer": 500000000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
+ "CEM Business Solutions": 10500000,
+ "CI Global": 10000000,
+ "CIGNEX": 74300000,
+ "CITIUS TECHNOLOGIES": 23700000,
+ "CJIS Solutions": 10000000,
+ "COLAMCO": 35200000,
+ "CPP Associates": 17400000,
+ "CREST-approved": 10000000,
+ "CSI Technology": 10000000,
+ "CSI Technology Group": 45900000,
+ "CWS Software": 33800000,
+ "CapeLogic": 26800000,
+ "Caregility": 10000000,
+ "Carmeli Studio": 42600000,
+ "Cat Technologies": 31900000,
+ "Catalogic Software": 18200000,
+ "Ccit Inc.": 35000000,
+ "Centurum": 10000000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Changepond": 150000000,
+ "Chenoa Information & Software Services Pvt. Ltd.": 30000000,
+ "CiBan": 11400000,
+ "Cityworks": 11000000,
+ "Clipix": 1000000,
+ "Cohere Cyber Secure": 33600000,
+ "ComStar Systems Group": 17700000,
+ "Communication Experts Incorporated": 27700000,
"Comodo": 178500000,
- "Conduent Business Services LLC.": 3900000000,
- "Constant Contact": 361900000,
- "Continental Packaging Solutions": 1000000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Corbion N.V.": 1200000000,
+ "Compest Solutions": 39400000,
+ "Comptech Associates": 25000000,
+ "Compuflex": 25400000,
+ "Computer Solutions & Technologies LLC.": 14900000,
+ "Computer Solutions - IT Service": 10000000,
+ "Computer Tech LLC.": 38000000,
+ "Compworldwide": 10300000,
+ "Comtec Enterprises Ltd.": 15000000,
+ "Conquest Data Systems": 31400000,
+ "Consiga Technologies": 10700000,
+ "ConvergeOne": 1600000000,
+ "ConvergeSol": 12000000,
"Corcentric LLC.": 120000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Courier-Post": 10000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crane Co.": 3200000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "D'Artagnan": 114500000,
- "D. E. Shaw": 625000000,
- "DJO Global": 1200000000,
- "Dacor": 90000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Deep Foods": 58000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Delaware River and Bay Authority": 10100000,
- "Delta Galil": 2100000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Diageo": 18800000000,
- "Dictionary Society of North America": 15200000,
+ "CoreMedia Systems": 13500000,
+ "Corente": 32100000,
+ "CorpData": 14800000,
+ "County Business Systems": 10000000,
+ "Creative Web Inc.": 12500000,
+ "Crewlogix": 35000000,
+ "Cundiffoil": 36400000,
+ "CxT Group": 24800000,
+ "CyanLine": 15600000,
+ "Cybercom Services": 10000000,
+ "Cyboticx": 70000000,
+ "DCS Web Designs": 11500000,
+ "DFOCUS": 35000000,
+ "DNS by Comodo": 6300000,
+ "DOCUMED MEDICAL TRANSCRIPTION": 10000000,
+ "Daida": 22400000,
+ "Damco Solutions": 40000000,
+ "Danny Glix": 14700000,
+ "Daragon": 17200000,
+ "Data Diamonds": 22300000,
+ "Data Momentum Inc.": 10000000,
+ "Data Pioneer": 22800000,
+ "Data Softech": 36300000,
+ "DataNumen": 10000000,
+ "Datavision Software Solutions Pvt Ltd.": 30000000,
+ "DbCom Consulting Inc.": 10000000,
+ "Decusoft": 13000000,
+ "Delphus": 30700000,
+ "DeltaSoft": 10000000,
+ "Derex Technologies": 14400000,
+ "Design Master": 25000000,
+ "Diane Omara Secretarial Servic": 11000000,
"Digital Realty": 4700000000,
- "DirecTV Stream": 33300000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Dow Jones": 1600000000,
- "Dr. Praeger's": 30500000,
+ "Distributor Computer Systems": 21000000,
+ "Doli Systems": 25000000,
+ "DotCom Creatives": 17800000,
+ "DoubleBridge": 50000000,
+ "DoubleCheck Software": 10000000,
+ "Dragonfly Interactive": 14900000,
"DriveNets": 200000000,
- "E Trade": 2900000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
+ "Durkin Computing": 28300000,
+ "E Touch International Llc.": 14500000,
+ "ELCO Integrated Solutions": 16000000,
+ "EarthCam": 15000000,
+ "Eastridge Technology": 16800000,
"Ebix": 991100000,
- "Edgewell": 2200000000,
- "Edison Properties": 17000000,
- "Einstein Bros. Bagels": 500000000,
- "Einstein Healthcare Network": 1200000000,
- "Electro Rent": 343800000,
- "Elmwood Cemetery": 18100000,
- "Elsevier": 3500000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Entertainment Community": 10000000,
- "Episcopal Church": 96100000,
+ "Eclipse Integrated Systems": 13700000,
+ "Elantisystems": 10000000,
+ "Element Logic": 35000000,
+ "Elwood Studio": 21200000,
+ "Emaxed": 23100000,
+ "EmconIT": 25000000,
+ "Envision Enterprise Solutions": 13000000,
"Equinix": 7300000000,
- "Eros Media World": 203300000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Faegre Drinker": 512900000,
- "Farmer Brothers": 469200000,
- "Fashionphile": 57200000,
- "Ferrari": 8700000000,
- "Ferrellgas": 2100000000,
- "Ferrero SpA": 15000000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Espire": 25900000,
+ "EverView": 280000000,
+ "Evo Web Dev": 15300000,
+ "ExcelGens": 25000000,
+ "Expentor": 25000000,
+ "ExterNetworks": 23800000,
+ "Farata Systems": 13300000,
+ "Finoaura": 10000000,
"Fiserv": 17700000000,
- "FlexWage": 10000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Foresters": 1600000000,
- "Forman Mills": 296800000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freightliner": 150000000,
- "FrieslandCampina": 443600000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Financial Corporation": 1000000000,
- "GE HealthCare": 17700000000,
- "GMC": 1000000000,
- "Galaxy Surfactants": 10000000,
- "Gama Aviation": 246800000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Genie Energy": 353400000,
- "Gibbons P.C. Gibbons": 108100000,
- "Gilead": 27500000000,
- "Glaston Oyj Abp": 206900000,
+ "Flying Saucers": 28000000,
+ "Flying Turtle": 21400000,
+ "Focus Softnet": 21100000,
+ "ForeFront Inc.": 14400000,
+ "Formpipe": 57900000,
+ "FoxiTech": 22200000,
+ "Fulcrum Logic": 21300000,
+ "Full Service Web Sites": 26000000,
+ "Futran Solutions": 50000000,
+ "Future Technologies Inc.": 23500000,
+ "G-Asra Tech": 30100000,
+ "GAM Information Systems": 26800000,
+ "GSV Systems": 22200000,
+ "Gill Web Creations": 14500000,
+ "Global Data Management Inc.": 35000000,
+ "Global Digital Forensics": 12000000,
"Global Shares Trustees UK Limited": 18700000,
- "Goodman Global Group Inc.": 1900000000,
- "Grand Central Baking Company": 20700000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Groupe SEB": 8800000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HBC": 5600000000,
+ "Gologic": 18300000,
+ "Gotham Technology Group": 140500000,
+ "Graphic Visions": 25800000,
+ "HAPPIEST MINDS": 164600000,
"HCL Tech": 12000000000,
- "HLW": 50000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hackensack Meridian Health": 4500000000,
- "Hair Club": 400000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hetero USA Inc.": 274900000,
- "Hobby Lobby": 5300000000,
- "Hoboken Volunteer Ambulance Corps Inc.": 10600000,
- "Huawei": 100000000000,
- "Hyundai Motor America": 100700000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
+ "HPI International": 18000000,
+ "Haddonfield Vision": 13000000,
+ "Harvest Exchange": 37800000,
+ "Haverly": 15900000,
+ "Hermitage Info Tech": 25000000,
+ "Hexaware": 971000000,
+ "Highwood": 10000000,
+ "I-Verve": 15000000,
+ "IBP Technologies": 35000000,
+ "IMM The eSignature Company": 24100000,
"INFINITT": 10000000,
- "IQOR": 1000000000,
- "Iconectiv": 55900000,
- "Industrial Bank": 25000000,
+ "ION Group": 825000000,
"InetSoft": 17000000,
+ "Info Optics": 10000000,
+ "Infoaxis": 10100000,
+ "Infojini Consulting": 24500000,
+ "Inforeem": 15000000,
+ "Informatic Tech": 16000000,
+ "Infoway Software": 10000000,
+ "Infrastructure Technology Solutions": 48600000,
"Ingenuity Cloud Services": 15000000,
- "Ingredion Incorporated": 7200000000,
- "Inquirer": 12200000,
- "InterDigital": 481300000,
- "Intercept Pharmaceuticals": 285700000,
- "Intl Fcstone": 61700000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Islami": 10000000,
- "JEI Learning Centers LLC.": 17400000,
- "JOC Group": 350000000,
- "Jack Henry": 1300000000,
- "Janssen Global Services": 45600000000,
- "Jeanneau": 600000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Johns-Manville Corporation": 3000000000,
- "Journeys company": 8600000,
- "KONE": 10900000000,
- "Kalitta Air": 200000000,
- "Kaplan": 1500000000,
+ "Innoveo": 15000000,
+ "Insync Outsourcing": 10000000,
+ "Intaver": 139000,
+ "Intellect Technologies": 20900000,
+ "Intelligent Automation": 45000000,
+ "Interactive Capture Systems": 53600000,
+ "Interscape Technologies": 22100000,
+ "Intersoft Technologies": 33000000,
+ "Intone": 39200000,
+ "Intuitive": 35000000,
+ "Inventive IT": 25000000,
+ "Ironside IT Partners": 39700000,
+ "It Connect Inc.": 30300000,
+ "JADEE": 35600000,
+ "JAMIS": 35000000,
+ "JKO Consulting": 25100000,
+ "Joyce Media": 17400000,
+ "Jucha": 24800000,
+ "K Soft Systems": 25000000,
+ "K&G Data Solutions": 27500000,
+ "KUBRA": 186300000,
"Kellton": 111300000,
- "Kennedys Law": 284000000,
- "Kent International": 50200000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kramer Guitars": 49800000,
- "Krapf Group": 150000000,
- "Kroll": 3000000000,
- "L&T technology Services": 746800000,
- "L.G. Balfour Company": 290000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LG CNS": 3100000000,
- "LabVantage": 48500000,
- "Ladenburg Thalmann": 1500000000,
- "Landmark Worldwide": 29100000,
- "Larsen & Toubro Infotech": 2100000000,
- "Lattice Semiconductor": 585600000,
- "LeTip International": 12700000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerner David": 11900000,
+ "Keystrata Inc. Company closed in 2015": 25000000,
+ "Klish Group": 30300000,
+ "Koger": 25700000,
+ "Kustomer": 23200000,
+ "LCA Networks": 17100000,
+ "LMRK": 29000000,
+ "LVL237": 21200000,
+ "Lakefront Media": 11500000,
+ "LaserVault": 10000000,
+ "LatentView Analytics Corporation": 69200000,
+ "LawSoft": 25400000,
+ "Lee Lilly": 27200000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lions Gate": 3600000000,
- "Liquitex": 18000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Lord Abbett": 300000000,
- "Loro Piana": 842800000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lukoil OAO.": 126600000000,
- "Lupus Foundation of America": 13700000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Machineart": 23400000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Magyar Bank": 28900000,
- "Marcus & Millichap": 1500000000,
- "Marlow Industries": 1500000000,
- "Marquis Who's Who Ventures LLC.": 25000000,
- "Martindale-Hubbell": 20900000,
- "Mary Help of Christians Academy": 112800000,
- "MassLive": 19800000,
- "MasterCraft": 761500000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Mead Johnson Nutrition Ecuador Cia. Ltda.": 3700000000,
- "Meade": 16100000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Mettler-toledo Inc.": 3900000000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Money Management": 30000000,
- "Monroe County Transit Authority": 14900000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning star": 1900000000,
- "Munich Re": 73300000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Retail Solutions": 21200000,
- "Natures Harmony Farm": 57600000,
- "Neiman Marcus": 2600000000,
- "NetJets": 816000000,
- "New Flyer": 2400000000,
- "New Jersey United Christian Academy": 19200000,
- "New York Fed": 21100000,
- "Newark Renaissance House": 10100000,
- "News 12 Networks": 10000000,
+ "Lifewares": 32000000,
+ "LogicG": 35000000,
+ "LogicalDOC": 13500000,
+ "M & JG Enterprise": 10000000,
+ "MAR Solutions": 19400000,
+ "MPSS INC.": 10000000,
+ "MSR Cosmos": 120000000,
+ "MY REGISTRY": 5000000,
+ "Macedonia Missionary Baptist": 14700000,
+ "Made4net": 14300000,
+ "Maintech": 42000000,
+ "Managed Technical Services": 38600000,
+ "Manna Design": 10500000,
+ "Marco Technologies": 400000000,
+ "Mareana": 12000000,
+ "Marlabs": 160000000,
+ "Maxima Consulting": 27300000,
+ "Meadowgate": 16000000,
+ "MetComm": 32000000,
+ "Meticular": 24900000,
+ "Mformation": 35000000,
+ "Miercom": 10000000,
+ "Millennium Technologies": 10000000,
+ "Model Right": 35100000,
+ "Morgan Gaynin": 18800000,
+ "Munidex": 18100000,
+ "My Thoughts And Ideas..": 19100000,
+ "N-SIDE": 23500000,
+ "N. Willner": 10000000,
+ "NCS Technologies": 32000000,
+ "NEC Labs": 41000000,
+ "NOVISYS": 35000000,
+ "Natsoft": 250000000,
+ "Net at Work": 53000000,
+ "NetworkingPS": 10000000,
+ "New Era Technology": 22200000,
+ "Nexagen": 30800000,
+ "Nfina": 15300000,
+ "Niteo Partners": 19300000,
+ "Nityo": 175000000,
"Nividous": 34400000,
- "Nobel Biocare": 890100000,
- "ORBCOMM": 255200000,
- "OceanFirst": 17300000,
- "Ogilvy": 387500000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Orbis Books": 31500000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Oticon": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Instruments": 514900000,
- "P. C. Richard & Son": 15100000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Parker Hannifin": 15900000000,
+ "Nu-Image Design": 10000000,
+ "NuWare": 10000000,
+ "OM Group Inc.": 1100000000,
+ "Object Technologies CEM": 12000000,
+ "Ocean Computer Group": 20200000,
+ "Oncore Inc.": 15000000,
+ "OneMarketData": 15600000,
+ "OneVision Software AG": 16000000,
+ "Openstream": 25000000,
+ "Opulent soft": 10700000,
+ "Orange Technolab": 35000000,
+ "Orbittech": 25000000,
+ "Outreach Telecom & Energy": 61400000,
+ "PITERION": 35000000,
+ "PQ Systems": 26000000,
+ "PRS Technologies": 21700000,
+ "PSRTEK": 20000000,
+ "Palnar": 35000000,
"Paylocity Corporation": 923400000,
- "Peermusic": 46300000,
- "Penguin Books": 1500000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Pepperidge Farm": 28200000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "PharMerica": 2100000000,
+ "Penn Creative Group": 19100000,
+ "Phi Software": 18900000,
+ "Phocas": 50000000,
"Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Polaris Project": 14700000,
- "PredPol": 10000000,
- "Press of Atlantic City": 100000000,
- "Price Chopper": 1500000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
+ "Pilotlight": 10000000,
+ "Platinum VPS": 11600000,
+ "PolySystems": 23300000,
+ "Polylogics Systems & Services": 16400000,
+ "Power Analytics": 19000000,
+ "Pozent": 23700000,
+ "Precision Point": 22400000,
+ "Progent": 13200000,
+ "ProgressTek": 42100000,
+ "Progressive Systems Development": 25000000,
+ "Prowise Solutions": 12000000,
+ "Proximity Technology": 32100000,
+ "PruTech": 43000000,
+ "PsyGrafx": 29200000,
"QAD Allocation": 12000000,
- "Quad Metalworks": 3100000000,
- "QuickChek": 1000000000,
- "Quiznos": 50000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
+ "QCOM": 32600000,
+ "QCT": 388000,
+ "Qualitest Group": 220000000,
+ "Questa Technology": 30200000,
+ "RADgov": 13700000,
+ "RCG Global Services": 90000000,
+ "RCI Technologies": 25000000,
+ "RIBUS GROUP": 13000000,
+ "Race Computer Services": 28300000,
"Rackspace": 3100000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Regeneron": 13700000000,
- "Relax The Back": 11600000,
- "Republic Bank": 314200000,
- "Ridgewood Country": 13700000,
- "RioCan Real Estate Investment Trust": 919400000,
- "Riverside Partners": 14400000,
- "Rolls-Royce": 15300000000,
- "Rolls-Royce Motor Cars": 940000000,
- "Ron Jon Surf Shop": 18900000,
- "Ronald McDonald House Charities": 59500000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "R\u00f6hlig Logistics": 36500000,
+ "Rapidsoft Systems": 18500000,
+ "Rare Medium": 16900000,
+ "RayonSoft": 10000000,
+ "Relevance Lab": 40000000,
+ "RendezView": 21200000,
+ "Revelwood": 21000000,
+ "Richmond Computer": 10800000,
+ "Rocon Technology": 10900000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SBA Communications": 2500000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SOSV": 20000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SAVTEC Inc.": 13900000,
+ "SBP Digital": 35000000,
+ "SMG Canada ULC": 64800000,
+ "STEP one step ahead": 12500000,
+ "SVK TECH": 25000000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Santander Bank": 14800000,
+ "Sailthru": 28500000,
+ "Samiti Technology": 14100000,
+ "Sapiens": 382000000,
+ "Sapphire Cloud Solutions": 17000000,
+ "Sattrix": 10000000,
"Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shiseido": 8200000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simon & Schuster": 814000000,
- "Simplot": 6000000000,
- "Simply Fresh by McCaffrey's": 45000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Snyder's-Lance": 8600000000,
- "SodaStream": 476100000,
- "Sodexo": 22300000000,
+ "Sectigo": 31000000,
+ "Sector Micro": 30600000,
+ "SecurePeopleBase": 32500000,
+ "Security Compass": 10000000,
+ "Semperis": 40000000,
+ "SensoR Technologies": 181000000,
+ "Seventhsense Technologies": 14200000,
+ "Shore Points Pools & Billiards": 50700000,
+ "Silicom": 114300000,
+ "SilverFast": 7000000,
+ "Siri InfoSolutions": 17500000,
+ "SkyeITS": 11900000,
+ "SmarTek21": 27000000,
+ "Smart IMS": 40000000,
+ "Smith Design": 10000000,
+ "Software Verify": 15000000,
"Sonata Software": 853800000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
+ "Sparta Systems": 101100000,
+ "Sryas": 35000000,
"Stack Overflow Inc.": 70000000,
- "Stantec": 3100000000,
- "State Street": 12100000000,
- "Steadfast Networks": 10100000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Stride Inc.": 1400000000,
- "Strides Pharma Science": 476600000,
- "Student Transportation of America": 637200000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Pharma": 5600000000,
- "Superb Internet": 13800000,
- "Supermicro": 3800000000,
- "Swatch Group": 32000000000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Syska Hennessy Group": 60900000,
- "TDK": 14000000000,
- "TECHNOGYM FRANCE Sas.": 687800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tacony": 285000000,
- "Tandy Leather Factory": 81600000,
- "Tanzania Cigarette Company": 20200000000,
- "Taro": 561300000,
- "Tata Chemicals": 1500000000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
+ "Start Up Farms International": 10000000,
+ "Stayinfront": 25000000,
+ "StratisTier": 16200000,
+ "Stratix Systems": 88600000,
+ "Strawberry Infotech": 75000000,
+ "Sumtotal Systems LLC.": 120000000,
+ "SunDesign Studios": 34300000,
+ "Sunflower Lab": 19300000,
+ "SwankTek": 24200000,
+ "SwiftReach": 75000000,
+ "Symbiance": 25000000,
+ "Synametrics": 13100000,
+ "SynapseCo": 11100000,
+ "Synetek Solutions": 35100000,
+ "Systech International": 75000000,
+ "T3I LTD.": 10000000,
+ "TCG Digital": 75000000,
+ "TDG Interactive": 12200000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TEP Solution": 24900000,
+ "TITANIUM COMMUNICATIONS": 35800000,
+ "Tanisha Systems": 170000000,
+ "Tarantini Panzarotti": 66600000,
+ "TechComp Inc.": 10500000,
+ "Techatalyst": 10000000,
+ "Techdemocracy": 42000000,
+ "Techniciti": 23200000,
+ "Techno-Comp": 70000000,
+ "Technology Professionals Group Inc.": 32900000,
"Telos company": 236800000,
- "Tempur-Pedic": 24700000,
- "Tetra Pak": 11100000000,
- "Textainer": 810000000,
- "Thales Group": 18000000000,
- "The Blue Book": 134600000,
- "The Counter": 85000000,
- "The Frisch School": 16500000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thorlabs": 550500000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Tofutti": 12400000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "TeraSwitch": 17400000,
+ "The Digital Group": 10000000,
+ "The Org company": 2000000,
+ "Thinksoft Global Services": 29500000,
+ "Thought Byte": 19000000,
+ "Thumbprint": 51100000,
+ "Tiger Analytics": 210000000,
+ "TikaMobile": 25200000,
+ "Titan Technologies": 39700000,
+ "Top Hat IT Solutions": 30100000,
+ "TouchGraph": 35800000,
"Trace3 LLC.": 1400000000,
- "Trelleborg": 3000000000,
- "Triton International": 1800000000,
- "Tuff Shed Incorporated": 300000000,
- "Tuscan Dairy Farms": 10100000,
- "Tutor Perini": 10000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "UOB Kay Hian Pte Ltd.": 264100000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union League": 10000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universal Weather": 252200000,
- "Usg Interiors LLC.": 3500000000,
- "Uzbekistan Airways": 340000000,
- "VCA Inc.": 1800000000,
+ "TraverseIT": 28600000,
+ "Treasurer's Briefcase": 28000000,
+ "Tri-Star Solutions": 18100000,
+ "Trial Scope": 13000000,
+ "Trusted Data Solutions": 12700000,
+ "Turn-key Technologies": 20900000,
+ "Twin Lights Group": 10700000,
+ "USR Systems": 14000000,
+ "United Software Group": 100200000,
+ "UpTask": 37300000,
+ "VCS Software": 11100000,
+ "VK Visuals": 23700000,
"VMware": 13200000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
+ "VTECH SOLUTION": 10200000,
+ "ValueFoc": 62700000,
+ "Vancor Systems": 69300000,
+ "Vandis": 35000000,
+ "Ventures Unlimited": 150000000,
"Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vislink": 19000000,
- "Vocelli Pizza": 14000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "West Pharmaceutical Services": 2900000000,
- "Western Digital": 13000000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "White Castle": 720600000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Windels Marx": 19500000,
- "Wissotzky Tea": 75000000,
- "Wje": 150000000,
+ "Vertical Solutions Inc. VSI": 39800000,
+ "Vigilus": 29900000,
+ "Vision-e": 10000000,
+ "Visionware Systems": 57200000,
+ "Vista Pro Design": 17500000,
+ "Vitech Systems Group": 180000000,
+ "WalkTheLot": 32200000,
+ "Webappclouds": 10000000,
+ "Webbed Solutions": 24500000,
+ "Webesco": 10300000,
+ "WetStone Technologies": 33200000,
+ "WinWire": 26400000,
+ "WiseVersa": 10000000,
"Wolters Kluwer": 5400000000,
- "World Financial Group": 10000000,
- "World Journal": 37500000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZEISS": 8800000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000
+ "Won Solutions": 18300000,
+ "Worthington Associates Inc.": 14800000,
+ "Yuliya Design": 20400000,
+ "ZTH Tech": 11900000,
+ "Zenova": 20800000,
+ "Zonenetlink": 21000000,
+ "eGrove Systems": 25000000,
+ "iContracts": 12000000,
+ "iFortress": 15200000,
+ "iLink Digital": 280000000,
+ "iTech US": 20000000,
+ "iThreat": 12800000,
+ "rSpark": 45600000
},
"New Mexico": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
+ "22nd Century Solutions": 166300000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ANRITSU": 864200000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ASMS": 3800000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Advanced Air": 70000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albuquerque Journal": 1600000,
- "All Aboard America": 4400000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American General Media": 41900000,
- "American Indian College Fund": 7800000,
- "American Tinnitus": 4200000,
- "Ampeg": 366000,
- "Amway North America": 9500000000,
- "Arizona Public Service": 4300000,
- "At Home store": 1700000000,
- "Atec": 1600000,
- "AvalonBay Communities": 2000000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
+ "AIRWORX HEATING AND COOLING": 4600000,
+ "AMPLYFI": 23900000,
+ "AVI-SPL": 1300000000,
+ "Abacus Solutions": 17200000,
+ "Abba Technologies": 38800000,
+ "Acira Group": 5800000,
+ "ActiveNation": 52000,
+ "AddonSoftware": 37400000,
+ "Adobe & Stars Bed & Breakfast": 20900000,
+ "Adorable IO": 5000000,
+ "Advanced Network Management Inc.": 130000000,
+ "Advanced Threat Analytics": 14000000,
+ "Aegis Aerospace": 75000000,
+ "Ahhh Design": 1000000,
+ "Albuquerque Information Technology": 6500000,
+ "Amber Ox": 4000000,
+ "American Legion Riders Chapter 21 Post 28": 3100000,
+ "Ameya Global": 12200000,
+ "Andi West Web and IT Consulting": 32600000,
+ "Anjus": 2400000,
+ "Applica": 29300000,
+ "Application Systems Consulting Inc.": 19000000,
+ "Ardham": 5000000,
+ "Argosy Group": 13100000,
+ "Arias Technologies": 26800000,
+ "Arnal Design": 2500000,
+ "Artistic Internet LLC.": 27700000,
+ "Automation Consultants": 30500000,
+ "Avian Design": 5100000,
+ "Axis Health Care Fincl Group": 28300000,
+ "Aztec Media": 24800000,
+ "BASIS International Ltd.": 5000000,
+ "BIZynet": 29700000,
+ "BK Design Solutions": 1800000,
+ "BadDog Design": 21300000,
+ "BasinLandRecords": 9200000,
"Benefit align": 5100000,
- "Best Buddies": 3600000,
- "Bicycle Health": 8700000,
- "Blue Bell Creameries": 675000000,
+ "BidNip": 7000000,
+ "Big Swing": 9800000,
+ "BlueLink IT": 3300000,
"Booz Allen": 8800000000,
- "Bowlin Travel Centers": 28400000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Bullseye glass": 16900000,
+ "Bright Ideas Software": 29300000,
"CACI": 6200000000,
- "Camp Fire": 10000000,
- "Captain D's": 9000000,
- "Carenet Health": 300000000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Cenikor": 42100000,
- "Center for Autism": 500000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Comfort Dental": 17800000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cottonwood Technology Fund": 3000000,
- "Cracker Barrel": 3300000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cumulus Media": 946800000,
- "DAV": 3900000,
- "DMI Inc.": 705000000,
- "Deming Headlight": 6300000,
- "Department of Energy": 190000000,
- "Designboom": 9000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Drury Hotels": 620000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "El Paso Electric": 886900000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "FLETC": 1200000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Flying Star": 33400000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Four Corners Regional Airport": 16200000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G&L Guitars": 8000000,
- "GFL Environmental": 6400000000,
- "Gallup": 187000000,
- "Gallup Independent": 23100000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gracie Barra": 987000,
- "Grassroots Campaigns": 403000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HVS": 47500000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hensel Phelps": 5700000000,
- "Herb company": 2400000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hudson": 2000000000,
- "IDEX Corporate": 3100000000,
- "IEC Electronics": 127000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "InnSuites Hospitality": 6300000,
- "Insurify": 9300000,
- "Integra Technologies": 27300000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Keter": 1500000000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Las Vegas City Schools": 24900000,
- "Lavu POS": 7500000,
- "Learning Express Toys": 2500000,
- "Leidos Holdings Inc.": 13700000000,
- "Leprino Foods": 3500000000,
+ "CAaNES": 4300000,
+ "CTC Software": 25000000,
+ "Cardinality": 33000000,
+ "CaterTrax": 15000000,
+ "Check-It Solutions": 253000,
+ "ClearFunnel": 2400000,
+ "Cliff River Springs": 2000000,
+ "Coldwell Banker Lota Realty Inc.": 5100000,
+ "CommerceData": 5100000,
+ "Comnet": 32700000,
+ "Contemporary Analysis": 3200000,
+ "ConvergeOne": 1600000000,
+ "Corporate Computer Services": 6200000,
+ "Courtright Design": 5500000,
+ "Coyote Solutions Group": 35900000,
+ "Creative Fuel": 35100000,
+ "Creative Lighting": 33700000,
+ "Cuddy & McCarthy LLP.": 4600000,
+ "Cyberlympics": 10000000,
+ "D2 Designs": 3800000,
+ "DBR Visuals": 1400000,
+ "Danforth Travel": 20700000,
+ "Data Basis": 5800000,
+ "Data Dash": 15300000,
+ "Data Recovery Labs": 12900000,
+ "Desert Elements": 5700000,
+ "Desert Elements Design": 5700000,
+ "Designcloud24": 454000,
+ "Diakonos Systems": 26300000,
+ "Diane Fisher": 62600000,
+ "Dibe Nitsaa Creative": 3100000,
+ "Dig-Smart": 22900000,
+ "Digital Dragon Computer Services": 258000,
+ "Digital Forensics Team": 4100000,
+ "DomainVIP": 36200000,
+ "DoubleMRanch": 15200000,
+ "Doxcelerate": 13700000,
+ "Duke City Digital": 5800000,
+ "E-Governance": 481000,
+ "ECL2": 1400000,
+ "Earth Analytic Inc.": 2200000,
+ "ElitePalaces": 3000000,
+ "Empty Saddle Rv Park Llc.": 36600000,
+ "EnvisionIT Solutions": 383000,
+ "Epimedia": 34700000,
+ "ErgoTech": 2000000000,
+ "Evo Web Dev": 15300000,
+ "Expertiva": 61200000,
+ "Exsys": 15100000,
+ "FM Database Consulting": 5500000,
+ "FUYIMA VENTURES": 528000,
+ "FX Design Group": 13500000,
+ "Ferguson Lynch": 27400000,
+ "Fetch Rewards": 150000000,
+ "Fidelity EHR": 7000000,
+ "Finvi": 75000000,
+ "Firefly Business Group": 2000000,
+ "Firstshop - Computer Specialists and Service": 265000,
+ "Focuspoint Designs": 31700000,
+ "Fostercode": 3500000,
+ "FreshySites": 533000,
+ "Funky Olive Invitations Stationery": 1400000,
+ "GEN5 DEVELOPMENT LLC.": 21200000,
+ "Gaucho Imports": 3000000,
+ "Geo Stat": 42000000,
+ "Geonine": 6100000,
+ "Go West Design": 22000000,
+ "Gordian": 115000000,
+ "Grand Terra": 17600000,
+ "Graze Cart": 5400000,
+ "Gym Assistant": 50500000,
+ "HARMONHOUSE": 39400000,
+ "HOLMANS": 58900000,
+ "Hacker Halted": 5000000,
+ "Hardage & Hardage": 1400000,
+ "Holman's USA": 4800000,
+ "I9 Technologies": 50100000,
+ "IMAGI SOFT": 16900000,
+ "INVID": 7000000,
+ "IT Connect Inc.": 12500000,
+ "ITpipes": 151000,
+ "Ima Internet Media Architect": 6500000,
+ "InCaffeine": 6700000,
+ "Infused Graphics": 2000000,
+ "Innava": 6000000,
+ "Integrated Support": 10100000,
+ "Intelligenz": 8800000,
+ "Intelligenz solutions": 8800000,
+ "Interlinx": 16600000,
+ "J and J Technical Services": 49400000,
+ "J&B Data": 24000000,
+ "Jackrabbit": 1700000,
+ "Jentech Marketing": 15900000,
+ "Justice Systems": 4000000,
+ "Justicealign": 4500000,
+ "KITWARE": 4500000,
+ "KYield": 52100000,
+ "Karmic Visions": 16900000,
+ "Keli E": 243000,
+ "Kenneth Ingham Consulting": 10300000,
+ "Late Nite Grafix": 12000000,
+ "Legit Security": 3000000,
+ "Lentech": 13900000,
"Level 3 Communications": 17500000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Long John Silver's": 404000000,
- "Lovelace Health System": 30900000,
- "MOBILE MINI": 593000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "Materion Corporation": 1800000000,
- "Merit Energy": 9200000,
- "Metal Supermarkets": 26800000,
- "MeteorCity": 4200000,
- "Mimi's Cafe": 23000000,
- "Money Management": 30000000,
- "Mosaic": 7200000000,
- "Moyes Delta Gliders": 2100000,
- "Murphy USA": 22800000000,
- "NOAA Weather Radio": 36400000,
- "National Christian Foundation": 27800000,
- "National Indian Youth Council": 18800000,
- "National Oilwell Varco": 7200000000,
- "Navajo Times": 2800000,
- "New Mexico Department of Health": 4500000,
- "Nikola Corporation": 44000000,
- "NuStar Energy": 3200000000,
- "O'Keeffe Museum": 12600000,
- "OPEIU": 7400000,
- "OXXO": 150000000,
- "OneMain Financial": 4100000000,
+ "Lightbend Inc.": 21500000,
+ "Limitless Idea Project": 1400000,
+ "Linking Arts": 15700000,
+ "LittleLight": 20300000,
+ "LoadStorm": 5000000,
+ "Lunarshine": 1400000,
+ "Lynn Creative": 11200000,
+ "MED2000": 12300000,
+ "MOD Mission Critical": 2900000,
+ "Macrolife": 23400000,
+ "Management Architects": 12500000,
+ "Mantos": 29700000,
+ "MatrixMate Printing": 19500000,
+ "Maysoft": 6000000,
+ "McClearen Design Studios": 9300000,
+ "Mcdue Ultimate Audio": 9500000,
+ "MechenbierIT": 2400000,
+ "MediaDesk": 7600000,
+ "MediaGirl": 9800000,
+ "Melissa Rose Design": 549000,
+ "Meperia": 33800000,
+ "Millennium Communications": 31100000,
+ "Miovision": 35000000,
+ "MrOwl": 7000000,
+ "MyCurator": 2400000,
+ "MyHMS": 2900000,
+ "NANODX": 1400000,
+ "NARGA": 3800000,
+ "NICKS PAGES.": 2800000,
+ "NM Collector": 43500000,
+ "NMGI": 20400000,
+ "NOCIX": 3100000,
+ "NikkiO Design": 30800000,
+ "Nova Software": 30300000,
+ "Nube Group": 33400000,
+ "ONLINE SOLUTIONS LLC.": 310000,
+ "OSSDS": 21300000,
+ "Obsidian Solutions Group": 38000000,
"OpenCorporates": 6000000,
"OpenEye": 30000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Pampered Chef": 300000000,
- "Peruvian Connection Ltd.": 70500000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Porsche France SAS.": 34300000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "Raven Rotorcraft": 32500000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Remodelista": 1000000,
- "Rexair": 35000000,
- "Rio Grande Games": 74500000,
- "Rock & Brews": 33300000,
- "Rocket Lab USA Inc.": 186700000,
- "Rodgers Instruments Corporation": 6400000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SEND International": 12800000,
- "SGS S.A.": 28000000000,
- "SITE Design Group": 8000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santa Fe New Mexican": 10000000,
- "Santa Fe Writers Project": 216000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shofur": 23900000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Sodexo": 22300000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "State ECU": 1700000,
- "Stericycle": 3600000000,
- "Stewart & Stevenson": 367000000,
- "Stride Inc.": 1400000000,
- "Stripes Stores": 750000000,
- "Sulzer": 13800000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Cabana": 297500000,
- "Taco Villa": 1500000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Tempur Sealy": 4900000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Church of Jesus Christ": 5200000,
- "The Conservation Fund": 3900000,
- "The Melting Pot": 31500000,
- "The Motley Fool": 550000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Option Creative": 31000000,
+ "Out Of The Blue Graphic & Dsgn": 11700000,
+ "Out Of The Box LLC.": 23400000,
+ "P-Brain Media": 20600000,
+ "POSitive Software": 10200000,
+ "PPC Inc.": 37500000,
+ "PSM Tech": 11900000,
+ "Pacific Wave": 16500000,
+ "Paul Black Design": 12300000,
+ "Petty John D and Co.": 14400000,
+ "Pivot Point Security": 11200000,
+ "Plan B Networks": 9700000,
+ "Polar Bear Media": 29900000,
+ "Poweron Technology": 3500000,
+ "Presidio": 4400000,
+ "Primum IT": 192000,
+ "PriorityOne LLC.": 842000,
+ "PrivaPlan": 7600000,
+ "Prodentity": 1400000,
+ "Pygraphics Inc.": 5700000,
+ "Qgiv": 7500000,
+ "RS21": 6000000,
+ "Raaps Technologies": 10000000,
+ "Real Time Solutions": 10000000,
+ "Records and Data Management": 1400000,
+ "Red Road Networks": 45400000,
+ "Rent Manager": 40900000,
+ "Retis Technologies": 10300000,
+ "RhinoCorps": 20100000,
+ "Right Sized Inventory": 6000000,
+ "Rinse Design": 2700000,
+ "Ripe Inc.": 4400000,
+ "Rubberbandland": 38000000,
+ "S treamkairos": 24800000,
+ "S3 Technologies": 7000000,
+ "SFDBS": 18300000,
+ "SGA Software": 31200000,
+ "SICORP": 6200000,
+ "Saintly Solutions": 1200000,
+ "Santa Fe Group": 36800000,
+ "Santa Fe Web Design": 221000,
+ "Sara Technologies": 12000000,
+ "Schaefer IT Consulting": 28700000,
+ "SciVista": 1400000,
+ "Script Technology": 5100000,
+ "Seritus Solutions": 8000000,
+ "Sharp Informatics": 27500000,
+ "SiliconMesa": 3400000,
+ "Silver Swirl Studios": 31700000,
+ "Skilljar": 27100000,
+ "Skyhound": 6000000,
+ "Snowball Fundraising": 1000000,
+ "Snowcha": 16600000,
+ "Softron": 7000000,
+ "Software Services Company": 14300000,
+ "Spectrum Communications": 8900000,
+ "Spericorn": 6500000,
+ "Speridian": 220000000,
+ "Stallion is": 1500000000,
+ "Store Locator Widgets": 2400000,
+ "Strong Software": 19000000,
+ "Sunshine Studio": 7500000,
+ "TAC Security": 4000000,
+ "TECHNET Enterprises of Florida": 30500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TVR Software": 3000000,
+ "Tabs3": 12200000,
+ "Techmedics": 13000000,
+ "Technology Plus": 15200000,
+ "Teknogeek": 4900000,
+ "Teledata Technologies": 31600000,
+ "Terminal Eleven": 1400000,
+ "ThetaPoint": 1400000,
+ "Think All Day": 3700000,
+ "Toolbox Web Design": 466000,
+ "Total Asset Managers": 1400000,
+ "Triadic": 43200000,
+ "Triple Mesa": 19500000,
"True Digital Security": 14000000,
- "Trust for Public Land": 1200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UNTUCKit": 350000000,
- "US Eagle": 35000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Waste Control Specialists": 40000000,
- "West End Press": 2900000,
- "Western Farmers Electric Cooperative": 10000000,
- "Which Wich": 79500000,
- "Wienerschnitzel": 341000000,
- "Wilson Sporting Goods": 769700000,
+ "Tyler Brown Visuals": 4400000,
+ "UCI Documents": 175000,
+ "Ultramain": 7000000,
+ "Universal Business Computing": 29300000,
+ "Upgrade Taos Computer Solutions": 4400000,
+ "VISION COMPUTING": 10500000,
+ "VLCM": 78500000,
+ "Vaughan Company REALTORS": 9500000,
+ "VidCAD": 33800000,
+ "Vienna Creative": 6000000,
+ "Visgence": 190000,
+ "Vista Control Systems": 21900000,
+ "Visumax": 28900000,
+ "Vizzia Technologies": 10000000,
+ "WeckTech": 19800000,
+ "Westwind Computer Products": 12500000,
+ "Wildflower International": 1200000,
+ "WinshipPhillips": 1400000,
+ "Woktron": 266000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Yellow Pages Directory": 15100000,
- "ZOOperstars": 5100000,
- "Zumiez": 1100000000
+ "Zachary Piper": 5000000,
+ "Zitro Technology Solutions": 3700000,
+ "dynaVu": 29300000,
+ "e Computing Systems": 1400000,
+ "iBetteU": 2900000,
+ "iTEAM Consulting": 19600000,
+ "studio x inc.": 5300000,
+ "wujiart Home": 17200000
},
"New York": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "A&E Television Networks LLC.": 3800000000,
- "AACSB": 22500000,
- "AALDEF": 14000000,
- "ABC Supply": 12100000000,
- "ACORD": 37200000,
- "ADM": 94400000000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFRY": 2300000000,
- "AFSCME": 10800000,
- "AIESEC": 1000000,
- "AIG": 48700000000,
- "AIME": 23400000,
- "ALM": 186900000,
- "AMC Theatres": 3900000000,
- "ANAVEX": 10900000,
- "ARRI": 44100000,
- "ASEA Brown Boveri": 28800000000,
- "ATF": 1000000000,
- "AXA IM": 850000000,
- "Aarong": 120000000,
- "Acorda": 122700000,
- "Acuity Brands": 4000000000,
- "Acumen Fund": 23100000,
- "Adaro Energy": 3600000000,
- "Advantage Rent a Car": 150000000,
- "Advisor Group": 110000000,
- "Aeroflot": 6600000000,
- "Aflac Incorporated": 19300000000,
- "Agent Provocateur": 51400000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Air India": 1600000000,
- "Alleghany Corporation": 11900000000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "Alpine Electronics": 2500000000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Association of Advertising Agencies": 18200000,
- "American Eagle Outfitters": 5000000000,
- "American Industrial Partners": 15000000,
- "Americold Logistics Inc.": 2900000000,
+ "AIGA": 2400000,
+ "AVG": 200000000,
+ "Abacus Group": 28500000,
+ "Absolute of Sa Ambulance Service": 118100000,
+ "ActiveNature": 22800000,
+ "AdGate Media": 1000000,
+ "Adaptavist": 150000000,
+ "Aetion": 35000000,
+ "Affine": 17000000,
+ "Air marketing platform": 1500000,
+ "Alithya": 389900000,
+ "Altair Engineering": 552600000,
+ "Amicus Consulting": 25200000,
+ "Amplitude": 238100000,
"Anaplan": 592200000,
- "Anheuser Busch Inbev India Limited": 58800000000,
- "Aperture": 11800000,
- "Applied Materials": 25200000000,
+ "Apexon": 75000000,
+ "AppCard": 13000000,
+ "AppGuard": 18000000,
+ "Appian": 447200000,
+ "Appmobi": 15700000,
"Apptio": 342500000,
- "Aramex": 1600000000,
- "Arconic": 9000000000,
- "Ardene": 38400000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Ashford": 12900000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Atotech": 1500000000,
- "Austin American-Statesman": 50000000,
- "Australian Laboratory Services": 6600000000,
+ "ArcTouch": 34000000,
+ "Atlantic": 59500000,
"Avanade": 3900000,
- "Avon": 6200000000,
- "Avvo": 29900000,
- "BBDO": 1800000000,
- "BBTV": 337700000,
- "BDO USA": 2000000000,
- "BJ's": 18700000000,
- "BOT": 253000000,
- "BUILDON": 20300000,
- "BYK Additives & Instruments": 1200000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Balyasny Asset Management": 110000000,
- "Barrick": 11900000000,
- "Bebe Stores": 186500000,
- "Becton Dickinson Philippines": 18900000000,
- "BeenVerified": 14500000,
- "Bekins Van Lines Inc.": 33600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Bertelsmann SE & Co. KGaA": 20800000000,
- "Bessemer Trust": 682100000,
- "Bethpage FCU": 13000000,
+ "BairesDev": 105000000,
+ "Beqom": 38400000,
"BetterCloud": 31400000,
- "Bharat Electronics": 2200000000,
- "Black Entertainment Television LLC.": 18000000,
- "Blick Art Materials": 245200000,
- "Boat Rocker": 166500000,
+ "Big Apple Information Systems": 12900000,
+ "BioDigital": 8800000,
+ "BlackLine": 522900000,
+ "Body Labs": 4000000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
- "Broadridge Financial Solutions": 5800000000,
- "BronxNet": 13100000,
- "Brookdale": 2700000000,
- "Brookfield Properties": 2400000000,
- "Brown & Brown Insurance": 3400000000,
- "Burberry": 3600000000,
- "Bureau Veritas": 5700000000,
+ "Boxbe": 13700000,
+ "Brainscape": 5000000,
+ "Brainvire": 40000000,
+ "Braze": 298000000,
+ "Bryte Inc.": 23000000,
+ "Bubble": 7000000,
"C3 AI": 12900000,
- "CBS News": 94000000,
- "CLS Group": 501700000,
- "CRH": 31000000000,
- "CURTISS-WRIGHT": 2500000000,
- "CapitaLand": 1700000000,
- "Center for Governmental Research": 10000000,
- "Cerner Enviza": 12000000,
- "Charles River Laboratories": 4000000000,
- "Checkpoint Systems": 800000000,
- "Cheil Worldwide Inc.": 3000000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "Citymeals": 18400000,
- "Civil Service Employees Association": 10000000,
- "Climate Week NYC": 10000000,
- "CoCo Fresh Tea & Juice": 15000000,
- "Coats Group PLC.": 1500000000,
- "Cole-Parmer": 500000000,
- "College Hunks Hauling Junk": 100000000,
+ "CHEQ |": 15000000,
+ "CYBRA": 1600000,
+ "Catalyst Group": 40000000,
+ "Ceros": 25000000,
+ "Cirium": 10000000,
+ "Clearcode": 28000000,
+ "Clickdriven": 32000000,
+ "CloudZone": 1800000000,
+ "Cloudera": 904800000,
+ "Cloudflare": 894100000,
+ "Code Dx": 2100000,
"Comarch": 400900000,
- "CommBank": 20804304338,
- "Community Bank National Association": 644400000,
- "Convent of the Sacred Heart": 27100000,
- "CooperCompanies": 3200000000,
- "CooperVision": 2200000000,
- "Corgan": 191300000,
- "Corning Glass Works": 14500000000,
- "Costa Coffee": 819500000,
- "Cracker Barrel": 3300000000,
- "Crescent Capital Group": 55000000,
- "Cuneo Gilbert & LaDuca": 17800000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "DC Shoes": 100000000,
- "DLA": 3600000000,
- "Daiwa Securities Group": 6300000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day Pitney": 17300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Deutsche Telekom": 123400000000,
- "Dexus": 602200000,
- "DigitalOptics Corporation": 10000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "DuArt Media Services": 10000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "EBU": 357000000,
+ "Complete Discovery Source": 35000000,
+ "Custom Software Systems": 32300000,
+ "DTN Ag.": 250000000,
+ "Danny Glix": 14700000,
+ "Darl Zehr Photography": 19100000,
+ "Datasea": 17600000,
+ "Days Work Design": 10900000,
+ "Delta Square": 31000000,
+ "Des Mapp": 28800000,
+ "Design Intervention Studio": 11900000,
+ "Digital Bridge": 8000000,
+ "Digital Realty": 4700000000,
+ "Divide": 20200000,
+ "DocStar": 15000000,
+ "Document Imaging Solutions": 10000000,
+ "Duplex Systems": 20700000,
+ "EBURNY HOSTING": 32400000,
"ECI": 48000000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "EIU": 10000000,
+ "EDSOFT IT": 52700000,
+ "EIQ Internet Technologies Inc.": 53300000,
"EPAM": 4500000000,
"EPiServer": 215000000,
- "Eastman": 10600000000,
- "Edwards Lifesciences": 5400000000,
- "El Paso Times": 25000000,
- "Eni": 134600000000,
- "Enterprise Car Sales": 40000000,
- "Entertainment Community": 10000000,
+ "EZZI": 17400000,
+ "Ebix": 991100000,
+ "Elasticsearch B.V.": 977800000,
+ "Enigma Technologies Inc.": 20000000,
+ "Equal Experts": 130000000,
"Equinix": 7300000000,
- "Erste Group": 5800000000,
- "Essity": 1000000000,
- "Etihad Airways": 2700000000,
- "Eversheds Sutherland International LLP.": 1300000000,
- "Everspin": 62100000,
- "FAO": 10000000,
+ "ExperSolve": 19200000,
"FactSet": 1500000000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Fanatics": 2600000000,
- "Fellowship of Christian Athletes": 52200000,
- "Ferrellgas": 2100000000,
- "FirstEnergy": 11900000000,
+ "FalconStor": 17300000,
+ "Fancy Pants Studio": 35800000,
+ "FinMkt": 2900000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "FormFactor": 747900000,
- "Fort Collins Coloradoan": 12000000,
"Fortinet": 4100000000,
- "Fortress Biotech": 77600000,
- "Foster Farms": 3000000000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fresenius SE & Co. KGaA": 42800000000,
- "Frette": 55700000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFG Alliance": 20000000,
- "GI Partners": 14000000,
- "GMAC Ally Financial": 8400000000,
- "GMHC": 27000000,
- "GPO": 10600000,
- "Gama Aviation": 246800000,
- "Gard": 126000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gentherm": 1100000000,
- "Genting Malaysia": 3900000000,
- "Genuine Parts Company": 20500000000,
- "Getir": 245000000,
- "Gibbs & Cox": 100000000,
+ "GDIT": 7900000000,
+ "GRAPHIC HAVOC": 17200000,
"GigaSpaces": 13900000,
- "Gilead": 27500000000,
- "Goodby Silverstein & Partners": 19000000,
- "Gordon Biersch - DTW": 89300000,
- "Grace Institute of New York": 10000000,
- "Graff": 340200000,
- "Grandall Law Firm": 150000000,
+ "Gigapixel Creative": 24900000,
+ "Gloat company": 15000000,
+ "Global Shares Trustees UK Limited": 18700000,
"Graphisoft": 93000000,
- "GreatSchools": 11000000,
- "Greenville News": 75000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "HBC": 5600000000,
+ "Gripeo": 4000000,
+ "Grovo": 11000000,
"HCL Tech": 12000000000,
- "HRG Group": 5200000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hanmi Bank": 258600000,
- "Harbor Freight": 5000000000,
- "HarperCollins": 1700000000,
- "Haworth": 2300000000,
- "Hazelden Betty Ford": 186300000,
- "Hearts On Fire": 13100000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Helix Sleep": 100000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Houzz": 500000000,
- "Huge digital agency": 358000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "IDEMIA": 1100000000,
- "IDEX Corporate": 3100000000,
- "IEC Electronics": 127000000,
- "IES": 10000000,
- "IFC Films": 10500000,
- "IMG": 375000000,
- "IQAir": 20000000,
- "IQOR": 1000000000,
- "ITV Studios": 600000000,
- "IU Health": 7900000000,
- "IceStone": 12100000,
- "Implats'": 7300000000,
- "Industrial Bank": 25000000,
+ "HackHands": 3000000,
+ "Hacker Earth": 5000000,
+ "Halborn": 8900000,
+ "Hivelocity": 10000000,
+ "Hypermind": 10000000,
+ "I Q Systems": 11600000,
+ "I-ON Digital": 35000000,
+ "IBPS Consulting": 50400000,
+ "IM CREATOR": 1000000,
"Ingenuity Cloud Services": 15000000,
- "Innovative Interfaces": 750000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jenner": 38400000,
- "Jersey Mike's": 255400000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jones Day": 2400000000,
- "Journeys company": 8600000,
- "K&L Gates": 1000000000,
- "KIDZ BOP": 12000000,
- "KMG EP.": 3300000000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Karen Millen": 167300000,
- "Karma Mobility": 10000000,
- "Kayser-Roth": 21600000,
- "KeepRecipes": 10200000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "King & Wood Mallesons": 174500000,
- "Kintetsu World Express": 204000000,
- "Kiplinger": 123000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Koss": 16600000,
- "Kotak": 7500000000,
- "LAC Group": 60000000,
- "LEGO": 8100000000,
- "LRN company": 75000000,
- "Lectra": 188800000,
- "Leidos Holdings Inc.": 13700000000,
+ "Insider AU": 60000000,
+ "JOOR": 10000000,
+ "Jason Csizmadi": 22400000,
+ "Jive Software": 250000000,
+ "Jungo": 1800000,
+ "Kaltura": 169400000,
+ "KickApps": 703000,
+ "Knovos": 14900000,
+ "Kosak Design": 54600000,
+ "LOOKBOOKS": 12600000,
+ "Launchpad": 10000000,
+ "Lending Robot": 3000000,
"Level 3 Communications": 17500000000,
- "Levy Institute": 21200000,
- "Liberty Mutual": 48200000000,
- "Life Time": 3000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Lufthansa Technik": 4600000000,
- "Lukoil OAO.": 126600000000,
- "Lux Capital": 14100000,
- "MBIA": 124000000,
+ "Lost Ladybug Project": 16600000,
+ "MEETYOO": 30000000,
"MEGA International S.A.": 47000000,
- "MUFG": 50700000000,
- "MYKITA": 50000000,
- "Macerich": 642300000,
- "Machine Design": 14400000,
- "Magellan Aerospace": 13900000,
- "Main Event": 678000000,
- "Mandarin Oriental": 1100000000,
- "Manlius Pebble Hill School": 19400000,
- "Mashable": 45000000,
- "Matt Brewing Company": 32300000,
- "Mayo Clinic": 14000000000,
+ "MacMicro": 10400000,
+ "Made Thought": 5000000,
+ "Mag": 3200000,
+ "Masabi Limited": 3500000,
"McAfee": 2200000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "McQuaid": 31100000,
- "Medline Industries": 20200000000,
- "Merrithew": 51000000,
- "Metro Inc.": 14400000000,
- "Mettler-toledo Inc.": 3900000000,
- "MiLB": 12900000,
- "Micron Technology": 30800000000,
+ "Medallia": 477200000,
+ "MetroCreativeConnection": 14400000,
"Microsoft": 184900000000,
- "Midas Consoles": 21800000,
- "Minerva Bunkering": 200000000,
- "Mitchell & Titus": 20300000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Monarch Alternative Capital": 40000000,
- "Moody's Analytics": 5700000000,
- "Mount Mercy Academy": 21300000,
- "Mount Sinai Hospital Brooklyn": 9300000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NBA": 7900000000,
- "NEA": 400000000,
- "NETGEAR": 975100000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "Natera": 776000000,
- "National Center for Law and Economic Justice": 10600000,
- "National Grid": 24200000000,
- "National Oilwell Varco": 7200000000,
- "Neiman Marcus": 2600000000,
+ "Mobile Roadie": 1100000,
+ "Mobile Text Alerts": 3800000,
+ "MobileDeveloped": 10000000,
+ "Moloco": 110000000,
+ "MongoDB": 898800000,
+ "Moonit": 4500000,
+ "NYSEG Solutions": 18300000,
+ "Nabler": 10000000,
+ "Nanotronics": 226900000,
+ "Nastel": 7000000,
+ "NetAesthetics": 20100000,
"NetApp": 6500000000,
- "NetJets": 816000000,
- "New York Life Investments": 27100000,
- "Nikola Corporation": 44000000,
- "Nikon": 4900000000,
- "Nippon Steel": 46900000000,
- "Norinchukin Bank": 600000000,
- "Norwich Bulletin": 35800000,
- "Notre Dame School of Manhattan": 11300000,
- "Nyack Public Schools": 14700000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "Oberoi Hotels": 350000000,
- "OceanFirst": 17300000,
- "Oerlikon": 3100000000,
- "Ogilvy": 387500000,
- "Ohl": 3300000000,
- "Ollie Pets Inc.": 20000000,
- "Ollie's Bargain Outlet": 1700000000,
- "One Equity Partners": 973100000,
- "Open Plans": 10200000,
+ "Netsmart": 526000000,
+ "Newbridge Hosting": 21700000,
+ "Nodejitsu": 3100000,
+ "ON24": 196300000,
+ "OSC World": 24600000,
+ "Oberlander Group": 23400000,
+ "OldVersion": 539000,
+ "Ontotext": 21000000,
+ "OpenAVN": 6000000,
"OpenEye": 30000000,
- "Orange Business": 9600000000,
- "Orrick": 975000000,
- "Osborne Association": 31400000,
- "Outback Steakhouse": 2000000000,
- "Oxfam": 10000000,
- "PSE&G": 9300000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Panda Restaurant Group": 3500000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paramount": 32300000000,
- "Paris Baguette": 11200000,
- "Park Aerospace Corp.": 52300000,
- "Park West Gallery": 12400000,
- "Parker Hannifin": 15900000000,
- "Paul Jr. Designs": 21500000,
- "Paulist": 18800000,
- "Peacock TV": 118000000,
- "Penguin Books": 1500000000,
- "Pennsylvania Bar Association": 42500000,
- "Penzeys": 26000000,
- "Perella Weinberg Partners": 631500000,
- "Peruvian Connection Ltd.": 70500000,
- "Pilot Flying J": 3000000000,
- "Pine River Capital Management": 11500000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Polar": 193100000,
- "Pollock-Krasner Foundation": 10000000,
- "Portmeirion Group": 143000000,
- "Precigen": 138800000,
- "Price Chopper": 1500000,
- "Principal Financial Group": 13900000000,
- "Progressive": 12200000,
- "Proskauer": 38000000,
- "Protective Life": 6700000000,
+ "Optimi": 27200000,
+ "PPTXTREME": 12400000,
+ "Paylocity Corporation": 923400000,
+ "Peak AI Ltd.": 7100000,
+ "Personetics": 21400000,
+ "Photon Interactive Mexico": 1000000000,
+ "Pipedrive": 85000000,
+ "Plex Systems": 150000000,
+ "Procore": 664300000,
+ "Proxyclick": 10000000,
"Publicis Sapient": 2700000000,
- "Qantas": 6300000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "QuickChek": 1000000000,
- "RInfra": 3900000000,
- "RSM US": 3300000000,
- "Rabobank": 11700000000,
- "Rad Power Bikes": 138000000,
- "Radius Ventures": 15600000,
- "Random House": 4400000,
- "Regeneron": 13700000000,
- "Reliance Partners": 13500000,
- "Reproductive Rights": 10400000,
- "Repsol": 79000000000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Rho Capital Partners": 15400000,
- "Rh\u00f4ne Group": 75000000,
- "Roc Nation LLC.": 25000000,
- "Rochester Regional": 47700000,
- "S&P Global": 8200000000,
+ "PureSoftware": 50000000,
+ "Pypestream": 6800000,
+ "Pythian": 100000000,
+ "Q Ware CMMS": 75000000,
+ "Ramp": 106000000,
+ "Reliable Computer Services": 17500000,
+ "RichRelevance": 87500000,
+ "Rivers Computer Support": 12800000,
+ "Rodeo Software": 4700000,
+ "Rossum company": 9000000,
"SAP": 33500000000,
- "SCHOTT AG": 2800000000,
- "SGS S.A.": 28000000000,
- "SJW Corp": 580000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SPOP": 18500000,
- "Safelite": 2400000000,
+ "SMTP company": 7000000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salon": 130000000,
- "Santander Bank": 14800000,
- "Schlumberger Limited": 27800000000,
- "Scotiabank": 14900000,
- "Scripps Networks": 3400000000,
- "Sense Worldwide": 12300000,
- "Sentinel Capital Partners": 13000000,
- "Sermo": 51200000,
- "Seven Stories": 10900000,
- "Shiseido": 8200000000,
- "Shore Fire": 24400000,
- "Signarama": 55000000,
- "Simon Kucher": 406200000,
- "Sisters of St. Joseph of Carondelet": 29400000,
- "Sloan": 13800000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
+ "Sanctuary": 3000000,
+ "Scandiweb": 15800000,
+ "Seaters": 8000000,
+ "Secure Endpoints": 23800000,
+ "Secure Technology Group In": 14700000,
+ "ServiceRocket": 18100000,
+ "Shortcut": 3500000,
+ "Sibers Group Ltd.": 35000000,
+ "Signifyd": 150000000,
+ "SilverFast": 7000000,
+ "Skylum": 18500000,
+ "Slack": 1100000000,
+ "Smart Servers": 17100000,
+ "Smartsheet": 712000000,
+ "Snappii": 7900000,
"Snowflake": 1900000000,
- "Sodexo": 22300000000,
+ "SoftTree Technologies": 10300000,
+ "Software Verify": 15000000,
"Solace": 65000000,
- "Somethin' Else": 15000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
+ "SpencerMetrics": 28800000,
"Spire Global": 72900000,
- "Spring Health": 18500000,
- "Springer Nature": 1800000000,
+ "Splunk": 3300000000,
+ "Sqasquared": 25000000,
"Stack Overflow Inc.": 70000000,
- "Stantec": 3100000000,
- "Star Courier": 11900000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Static Media": 10200000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stumptown Coffee Roasters": 40000000,
- "Sturgis Journal": 30900000,
- "Summit School at Nyack": 27100000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Suntory": 11700000000,
- "Swift Transportation Company": 3400000000,
- "TBWA": 1500000000,
- "TDK": 14000000000,
- "TOM FORD": 615000000,
- "TechCrunch": 525000000,
- "Teck Resources": 12600000000,
- "Teijin": 7300000000,
- "Tele Vue": 43200000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Balance Bar": 15000000,
- "The Cornell Club": 25000000,
- "The Daily Beast": 25600000,
- "The Hartford": 21400000000,
- "The Holland Sentinel": 10400000,
- "The Nielsen Company US LLC.": 3500000000,
- "The Scoular Company": 4000000000,
- "The Travelers Companies, Inc.": 31000000000,
- "The United Services Automobile Association": 35600000000,
- "The Ursuline School": 18900000,
- "The Walt Disney Privacy Center": 84400000000,
- "Thoma Bravo": 15000000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Tiger Global Management LLC.": 10000000,
- "Tim Hortons": 2800000000,
- "Topgolf International Inc.": 1100000000,
+ "Staple Design": 9000000,
+ "Stogran": 47800000,
+ "Stroz Friedberg": 31500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Taboola": 1400000000,
+ "Tech Alliance": 21700000,
+ "Tenable\u00ae": 577300000,
+ "The Org company": 2000000,
+ "ThetaRay": 12000000,
+ "Thinknum": 4200000,
+ "Thinksoft Global Services": 29500000,
+ "TigerDirect": 200000000,
+ "Tom's Hardware": 6600000,
+ "Toptal": 200000000,
"Tractable Ltd.": 12000000,
- "Transunion Chile": 3600000000,
- "Trident Group": 794500000,
- "Triumph": 5500000,
+ "Tribeca IT": 10900000,
"True Digital Security": 14000000,
- "Trump Hotels": 75000000,
- "Two River": 15400000,
- "Two Sigma": 1300000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UNDP": 15100000,
- "UNX": 25000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "UnitedMasters": 11100000,
- "Universal Orlando Resort": 281600000,
- "Upwork": 618300000,
- "VCA Inc.": 1800000000,
- "VIEW Micro-Metrology": 18800000,
+ "Uniphore": 19500000,
+ "Ustwo": 10000000,
+ "VAST Data": 100000000,
+ "VMware": 13200000000,
"VStar Entertainment Group": 12100000,
- "Valpak": 43500000,
"Varonis": 457600000,
- "Verdura": 49000000,
- "Verifone": 1800000000,
- "Viatris": 17200000000,
- "Victor Canada formerly ENCON Group Inc.": 10700000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vistra": 600000000,
- "Vivendi": 19800000000,
- "Vodacom": 7000000000,
- "Voith": 4800000000,
- "Von Roll UK Ltd.": 340700000,
- "Voxy": 18000000,
- "W. W. Grainger": 15200000000,
- "WILSONS LEATHER": 250000000,
- "WP Diamonds": 18300000,
- "WSP": 8900000000,
- "White Castle": 720600000,
- "Williams Lea Tag": 1200000000,
- "WisdomTree Investments": 301300000,
- "Wissotzky Tea": 75000000,
+ "Ventucom": 29600000,
+ "Verint Systems": 899800000,
+ "Voyansi": 25000000,
+ "Wikihow": 2400000,
"Wolters Kluwer": 5400000000,
- "World Journal": 37500000,
- "Worthington Industries": 3900000000,
- "Wurtsboro\u2013Sullivan County Airport": 28200000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
- "Yellow Pages Directory": 15100000,
+ "Work & Co.": 58400000,
"Yext": 399900000,
- "York Capital Management": 30000000,
- "YouNow": 10000000,
- "ZEISS": 8800000000,
+ "Yieldmo": 9000000,
"Zemingo": 14900000,
- "Ziebart": 1200000000
+ "eTechHelp": 22900000,
+ "smartTrade Technologies": 18800000
},
"North Carolina": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "ACommerce": 35000000,
+ "ADD-ON TECHNOLOGIES": 26100000,
"ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "ATF": 1000000000,
- "Abbott's Frozen Custard": 10900000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Academy Sports Outdoors": 6600000000,
- "Acast": 113400000,
- "Ace Hardware": 7800000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpek": 5700000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Management Association": 21700000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Angel Resource": 10000000,
+ "AGDATA": 27500000,
+ "AITServices": 34200000,
+ "AMS Software": 28200000,
+ "Abacus Group": 28500000,
+ "Acclamare": 14500000,
+ "AceHost Data Center": 19100000,
+ "Acorn Solutions": 30600000,
+ "Actieve": 30200000,
+ "Adelser": 22300000,
+ "Advanced Business Technology": 23700000,
+ "Alexis Scott Designs": 15300000,
+ "Alexon it": 24800000,
+ "Allbridge": 10000000,
+ "Alphanumeric": 33300000,
+ "Altman Initiative": 22200000,
+ "Ampcus": 72800000,
+ "Andrew Davidson": 12200000,
+ "Apex Technology Corporation": 35500000,
+ "Appcomm": 20400000,
+ "Appleget Associates": 26300000,
+ "Appogee": 19400000,
"Apptio": 342500000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Artists Music Guild": 600000000,
- "Asheville City Schools": 150000000,
- "Ashtead Group": 10000000000,
- "At Home store": 1700000000,
- "Atlantic Natural Foods": 63800000,
- "Atlantic Union Bank": 689200000,
+ "ArtiMinds": 15000000,
+ "Associated Consulting Services": 16600000,
+ "Astadia": 30200000,
+ "Atlantic Brokerage": 13900000,
+ "Atlantis Internet Technologies": 16600000,
"Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "AvalonBay Communities": 2000000000,
- "Axalta": 4100000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BIOMERIEUX": 3800000000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Ballard Designs": 65000000,
- "Bank of Tennessee": 76100000,
- "Barbeque Integrated Inc.": 179000000,
- "Barker Black": 14300000,
- "Barnes & Thornburg": 575500000,
- "Barry Callebaut": 8400000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "Beckman Coulter": 2100000000,
- "Becton Dickinson Philippines": 18900000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Biltmore Farms": 17500000,
- "Biological E": 250000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Blum": 2100000000,
- "Bonchon": 60000000,
+ "Atyeti": 42200000,
+ "Austin Computing": 10000000,
+ "Avail Company": 4200000,
+ "Avenir Digital": 51600000,
+ "Avercast": 7700000,
+ "BairesDev": 105000000,
+ "Barricade Software": 46900000,
+ "Bayshore Networks": 18400000,
+ "Bellaworks Web Design": 29800000,
+ "Better Be Ellerbe Peaches": 26500000,
+ "Beyond Now": 11100000,
+ "Big Boom Design": 23000000,
+ "Bitflip technologies": 17100000,
+ "Bloomreach": 117000000,
+ "BluePrince": 12800000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Bose": 3600000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
+ "Brasstarr": 26800000,
+ "Bright Idea Web": 12300000,
+ "Bright Plastics": 24000000,
"Brillio": 400000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Brynwood Partners": 15500000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "Bustec Limited": 10000000,
+ "Buchanan Technologies": 50000000,
+ "Bursys": 25000000,
+ "Byte Design": 20000000,
+ "Byte Sized Solutions": 35200000,
+ "Byte Wyze": 24000000,
+ "C And Company": 24900000,
"CACI": 6200000000,
- "CBA The Association for Christian Retail": 10000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "CNL Financial Group": 317000000,
- "CSL": 1900000000,
- "CTG": 375200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Camso": 1300000000,
- "Can-Am Off-Road": 6300000000,
- "Candlewick": 15000000,
- "Cape Hatteras Electric Cooperative": 19900000,
- "Capital Power": 1900000000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Center for Responsible Lending": 10300000,
- "Cerner": 5800000000,
- "ChapStick": 20300000,
- "Charlotte Country Day School": 65600000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Citi Trends": 862200000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
+ "CCP Technologies": 20200000,
+ "CDI LLC.": 20800000,
+ "CISYS LifeSciences": 13400000,
+ "CMSS": 28600000,
+ "COE Security": 10000000,
+ "CRMNEXT": 20000000,
+ "CTO Outsourcing": 36600000,
+ "Cardinal Solutions Group": 22200000,
+ "Ccis-inc": 25000000,
+ "Centella Consulting": 11900000,
+ "CentricsIT": 15000000,
+ "Cetaris": 23200000,
+ "ChannelAdvisor": 3900000,
+ "Charlotte Colocation": 22100000,
+ "Choose Your Company": 15400000,
+ "Classic City Technology": 31000000,
+ "Cloud Marketeers": 60200000,
"Cloudera": 904800000,
- "Coats Group PLC.": 1500000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Constellis": 1000000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Corteva": 17100000000,
- "Covanta": 1900000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DENSO CORPORATION.": 43500000000,
- "DEX Imaging": 284000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DP World": 10800000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dellner": 30000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "Dimensional Fund Advisors": 200000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Dorel Industries": 2600000000,
- "Drury Hotels": 620000000,
- "Duke Health": 4000000000,
- "ECU Health": 1800000000,
- "EMC Insurance": 645000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Erie Insurance": 2600000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "FHI 360": 690500000,
+ "Cody Wingert Design": 13700000,
+ "Cody joe": 14400000,
+ "Cole Creative": 20900000,
+ "CompSOL USA": 30200000,
+ "CompuLink": 43800000,
+ "CompuTech Consulting": 12300000,
+ "Computer Packages": 15000000,
+ "Computers Inc.": 21800000,
+ "ConnectNC": 14800000,
+ "ConnectWise": 600000000,
+ "Connected Development": 41600000,
+ "Contiem": 25700000,
+ "ConvergeOne": 1600000000,
+ "Corning Data": 27400000,
+ "Corvid Technologies": 23700000,
+ "Country Software": 26200000,
+ "Cutting Edge Tek": 12800000,
+ "Cwhost": 19000000,
+ "CyberSleuth\u00ae": 18200000,
+ "DESIGN TECH MSP INC.": 15300000,
+ "DMS Systems": 37400000,
+ "DOMA Technologies": 33300000,
+ "DPSI": 12300000,
+ "Data Design Associates": 11400000,
+ "Data Network Solutions": 54500000,
+ "Data Networks": 30000000,
+ "Data Solutions Plus": 35000000,
+ "DataCaliper": 31600000,
+ "DataFirst": 15800000,
+ "Dataprise": 52100000,
+ "Dataretrieval": 29800000,
+ "Datum Software": 15700000,
+ "DaySmart": 19900000,
+ "DeRisk QA": 17500000,
+ "DeiLayte": 16700000,
+ "Design One Inc.": 11400000,
+ "Digital Fruition": 16700000,
+ "Digital Healthcare Ltd.": 16800000,
+ "Digital Realty": 4700000000,
+ "Digital Revolutions": 40000000,
+ "Digital Tadpole": 13400000,
+ "DigitalChalk": 12000000,
+ "DirectAdmin Web Hosting": 36500000,
+ "Done Right Software": 10000000,
+ "Donor Express": 26800000,
+ "Dotnetspider": 10000000,
+ "Dovel Technologies": 300000000,
+ "Drake Software LLC.": 87500000,
+ "Drc Web Services": 20900000,
+ "Dtech Systems": 30000000,
+ "Dynamic Quest": 11000000,
+ "E-Line Technologies": 31600000,
+ "EApps Technologies": 18400000,
+ "EDSAA": 10500000,
+ "EINSTEIN DESIGN INC.": 12900000,
+ "EMWD": 10500000,
+ "EQ2's": 10000000,
+ "EarthCam": 15000000,
+ "Eastern Microsystems": 49500000,
+ "Encore Technology Group LLC.": 22500000,
+ "Engineering Software Solutions": 28300000,
+ "Entec Systems": 13500000,
+ "Enterprise Research Inc.": 14400000,
+ "Eton Solutions": 46000000,
+ "Euclid Innovations": 21900000,
+ "Eurostep": 10000000,
+ "Evalueserve": 840000000,
+ "EverView": 280000000,
+ "Exterior Additions Llc.": 29800000,
+ "Ez Web Hosting": 10300000,
+ "F5 Technical Group": 14900000,
+ "FM Systems": 35000000,
+ "FP Complete": 21900000,
"FactSet": 1500000000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
+ "Fairoaks IT": 12600000,
+ "FaithWorks Software": 10300000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Forbo Movement Systems": 109300000,
- "Forest History": 14900000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuquay-Varina High School": 64300000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "Gilead": 27500000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Grindline Skateparks": 27600000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
+ "Five 9s Digital": 25200000,
+ "Flat Top Computers": 40900000,
+ "Focus Technology Group": 16400000,
+ "FormRouter": 28500000,
+ "Fortress Mobile": 21600000,
+ "Fowler and Associates": 11300000,
+ "Freedom Systems": 20500000,
+ "Furniture Retail Operations Group": 16000000,
+ "Futron Inc.": 23200000,
+ "Future Data": 23600000,
+ "GEMA touch": 11900000,
+ "GR8 Designs": 32700000,
+ "GSales-aweber": 25000000,
+ "Gear Stream": 22100000,
+ "GeoDecisions": 35000000,
+ "Gibbs Design": 13400000,
+ "Gillware": 10800000,
+ "Glavinka Logic": 14300000,
+ "Globaltap": 15600000,
+ "GreyTrout": 11400000,
+ "Guidebook": 11200000,
+ "H&A Scientific": 13000000,
+ "H.O.W.D.Y. Media": 24700000,
"HCL Tech": 12000000000,
- "HSM company": 298100000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
+ "HEIRLOOM CRAFTERS LLC.": 17600000,
"HZO": 48500000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Hanes": 6200000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Hayden Shapes": 12000000,
- "Haynes International": 490500000,
- "Haynes and Boone": 15800000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hobby Lobby": 5300000000,
- "Horizon Lines": 10000000,
- "Horizon Therapeutics": 3700000000,
- "Hulu": 4400000000,
- "Hunter Douglas Group": 4600000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "IAMS": 14900000,
- "IAT Insurance Group": 100000000,
- "IDEX Corporate": 3100000000,
- "ILC Dover": 145000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Indiana Public Retirement System": 6200000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
+ "Hatha Systems": 22400000,
+ "HighRoads": 15000000,
+ "Higher Learning Systems": 11000000,
+ "HillbillyGeek DOT Net": 51900000,
+ "Hitchcock Design": 30000000,
+ "Hjr Software": 33700000,
+ "Huffman Oil Co. Inc.": 10200000,
+ "IBG Software": 19100000,
+ "III Eye Digital": 11700000,
+ "IPS Group": 24800000,
+ "IT INNOVATIONS": 10900000,
+ "Iconic Solutions": 20900000,
+ "Ikonz Computer Repair & Website Development": 10900000,
+ "Illumaware": 13000000,
+ "Illuminate Technologies UK Ltd.": 75000000,
+ "Imagination innovations": 16300000,
+ "InVue": 172800000,
+ "Infinite Corporation Solutions": 16600000,
+ "Informatica": 1500000000,
"Insightsoftware": 350000000,
- "Intel Capital": 21700000,
+ "Instancy": 11700000,
+ "Instructure": 461100000,
+ "InteliPort Fiber": 55400000,
+ "Intelligent Automation": 45000000,
+ "Intelliquip": 10700000,
+ "Intelliswift": 73900000,
+ "InterOperate": 30000000,
+ "Intercomp Systems": 14200000,
+ "Internetwork Engineering": 37000000,
"Intetics": 28500000,
- "Invista": 117900000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Itt Industries Luxembourg": 2900000000,
- "JR Cigars": 10000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jersey Mike's": 255400000,
- "Jetcraft": 26900000,
- "Joe's Crab Shack": 345000000,
- "John William Pope Foundation": 12900000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "Just Aircraft": 16500000,
- "KBR": 7700000000,
- "Kayser-Roth": 21600000,
- "Kelly Services": 5000000000,
- "Ketchum": 500000000,
- "Kidde": 250000000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Koppers": 2000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Lattice Semiconductor": 585600000,
- "Lectra": 188800000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
+ "Io design": 24800000,
+ "IronNet": 30200000,
+ "J J WADE & ASSOCIATES INC.": 14800000,
+ "J1 Design": 12900000,
+ "J2 Software Solutions": 28100000,
+ "JAMY INTERACTIVE": 600000000,
+ "JBoss": 13500000,
+ "JScott Graphic Design": 12900000,
+ "Jenzabar Inc.": 72000000,
+ "KRG Technologies": 91400000,
+ "Kachoolie": 18100000,
+ "Kadro": 24200000,
+ "Kayla Dugger": 10800000,
+ "Ken Pugh": 24500000,
+ "Kim Bolick Design": 11800000,
+ "KyleBrush": 30000000,
+ "LEAD TOOLS": 16600000,
+ "Labescape": 13100000,
+ "Laser Logics": 26900000,
+ "Laurie Sullivan Design": 18400000,
+ "Lead Semantics": 12000000,
+ "LeanTaaS": 17000000,
"Lenovo": 66000000000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Liggett Group": 200000000,
- "Liggett Vector Brands": 200000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lowes Foods": 1600000000,
- "Lufthansa Cargo": 3400000000,
- "Lumos Networks": 131000000,
- "Lupus Foundation of America": 13700000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSA Safety": 1500000000,
- "MSC Industrial Supply": 3800000000,
- "Marcus & Millichap": 1500000000,
+ "Lightning Minds": 10000000,
+ "Lightspeed Technology Group": 22500000,
+ "Lionshare": 18400000,
+ "Litera": 200000000,
+ "Lost Mine Campground": 32000000,
+ "Lyons Information": 11200000,
+ "M. Brown Creative": 15700000,
+ "MCNC": 13400000,
+ "MDSI": 19400000,
+ "METHODFUEL": 12300000,
+ "MICA Information Systems": 10000000,
+ "MOVEMENT WORKS": 23500000,
+ "MacVantage": 21100000,
+ "Mach5": 22300000,
+ "Macro Integration Services": 19900000,
+ "MadWolf": 10000000,
+ "Magna5": 82000000,
+ "Mansfield Computing Solutions": 67600000,
+ "Map Business Online": 17300000,
"Market America": 791100000,
- "Marlin Firearms Company": 42800000,
- "MasterCraft": 761500000,
- "McCormick Taylor": 83000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meetup": 25000000,
- "Meltwater": 401600000,
- "Merck Sharp & Dohme": 59000000000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Family Services": 44900000,
- "MiLB": 12900000,
+ "Mdi Datasystems": 17500000,
+ "MeierWorks": 10000000,
+ "Mercatus": 12200000,
+ "Meridian Cooperative": 46000000,
+ "Metalogix Inc SharePoint and Business Intelligence Experts": 60000000,
"Microsoft": 184900000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Moore County Schools": 13100000,
- "Motiva Enterprises": 20800000000,
- "Mountain Heritage High School": 17600000,
- "Mueller Water Products": 1200000000,
- "Multimatic": 1500000000,
- "Murgitroyd": 72000000,
- "Music & Arts": 12400000,
- "NCDHHS": 10000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "NantHealth": 63300000,
- "National Board for Certified Counselors": 10000000,
- "National Christian Foundation": 27800000,
- "National Day of Prayer": 29000000,
- "National Resilience": 500000000,
- "Neiman Marcus": 2600000000,
+ "Mindgrub": 28000000,
+ "Mirador Software": 35000000,
+ "Mission Technologies Inc.": 14000000,
+ "ModelDesign": 26900000,
+ "NPI Connect": 16500000,
+ "Nabler": 10000000,
+ "Nathan Grimes Design": 20000000,
+ "National Systems America": 25000000,
+ "Navica Web Solutions": 65000000,
+ "Neo Prism Solutions": 12600000,
+ "Nerds On Site": 11300000,
+ "Net at Work": 53000000,
"NetApp": 6500000000,
- "Niche company": 15000000,
- "Nicholas Financial": 48200000,
- "North Sails": 27500000,
- "OMNOVA": 750000000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Old Dominion Freight Line": 6000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orange County School District": 217000000,
- "Orano": 5400000000,
- "Orkin": 1000000000,
- "Ospina Coffee Company": 150000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "PCB Piezotronics": 400000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
+ "NetFoundry": 7000000,
+ "Netmar": 19700000,
+ "Netriplex": 25000000,
+ "Network Technology Solutions": 21700000,
+ "Nfina": 15300000,
+ "Noregon": 22200000,
+ "Nuspire": 31200000,
+ "OATC": 25500000,
+ "OEConnection LLC.": 166000000,
+ "ON24": 196300000,
+ "Objective Systems": 30200000,
+ "Obsidian Solutions Group": 38000000,
+ "Office Automation Systems": 21900000,
+ "OnePath Systems": 74300000,
+ "Optimi": 27200000,
+ "Outliner Software": 19200000,
+ "P4 Technologies": 16700000,
+ "PC PRODUCTS": 14700000,
+ "PCI Energy Solutions": 62500000,
+ "PCi ProActive Communications": 12000000,
+ "PHN Services LLC.": 47300000,
+ "PROPAGANDi": 10500000,
+ "PRS Technologies": 21700000,
+ "PVII": 57200000,
+ "PageManager": 16000000,
+ "PagePlanet": 16500000,
+ "Palmetto Design Firm": 12900000,
+ "Panurgy": 29000000,
+ "Park Place Technologies": 218400000,
+ "Parker Tech Group": 33500000,
+ "Paul Dempsey": 33800000,
"Payscale": 180000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Perkins&Will": 670300000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "Pet Sitter": 10000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pimsleur Language Programs": 30000000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Plant Delights Nursery": 19800000,
- "Porsche France SAS.": 34300000000,
- "Precision BioSciences": 20800000,
+ "Peakox": 24500000,
+ "Pinpoint Systems": 35000000,
+ "Pixels Interactive": 10000000,
+ "Pixicom": 17100000,
+ "PlanetMagpie": 10000000,
+ "Polaris Payroll": 53100000,
+ "Polydora": 29300000,
+ "PowerChurch Software": 10000000,
+ "PraxiPower": 52100000,
"PrecisionHawk": 19200000,
- "Primoris": 4400000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Publix": 52200000000,
- "Qorvo": 1200000000,
+ "Priveon": 38900000,
+ "ProNet Designs": 13000000,
+ "Procysive": 19300000,
+ "Proficio": 23000000,
+ "Progent": 13200000,
+ "Project Hosts": 10000000,
+ "Prometheus Computing": 21200000,
+ "Prometheus Group": 110000000,
+ "Propertybase": 26000000,
+ "Punched In": 29200000,
+ "Qualinet Co.": 67600000,
+ "Qualitest Group": 220000000,
"Qualtrics": 1400000000,
"Qualys": 468700000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "REV Group": 2300000000,
- "RSC Brands": 29400000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "RealtySouth": 55000000,
- "Red Storm": 11700000,
- "Red Wing Shoes": 700000000,
- "Reliance Retail": 26300000000,
- "RenaissanceRe": 4400000000,
- "ReverbNation": 15800000,
- "Rexair": 35000000,
- "Reynolds American": 15800000000,
- "Rider Transit": 34600000,
- "Risk International": 22900000,
- "Riverside Partners": 14400000,
- "Roanoke Rapids Graded School District": 19400000,
- "Roanoke-Chowan News-Herald": 38000000,
- "Robeks": 396000000,
- "Rochester Regional": 47700000,
- "Roehl Transport": 421300000,
- "Roly Poly": 16400000,
- "Rooms To Go": 2500000000,
- "Rowan-Salisbury School System": 48400000,
- "Rubbermaid": 3000000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SCHUNK": 19000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "Quantum Alliance": 402600000,
+ "RLM Communications": 39000000,
+ "RMS Omega": 23100000,
+ "RapidScale": 33000000,
+ "Razor Networks": 34400000,
+ "Realistic Computing Inc. RCI": 21000000,
+ "RealityCharting": 29200000,
+ "Rebecca Jones - Creative Professional": 14600000,
+ "Recognin": 16900000,
+ "Reflective Digital Solutions": 34100000,
+ "Refulgent Technologies": 12400000,
+ "Rentavault": 20900000,
+ "ReproConnect": 16500000,
+ "RetailSystem": 35700000,
+ "Retrodesigns": 29300000,
+ "Rich Design": 11400000,
+ "Richard Freiberg CPA PC.": 24800000,
+ "Rocket Interactive": 14500000,
+ "Rocking Chair Software": 18800000,
+ "Rome Technologies Inc.": 19400000,
+ "S Squared Design": 18000000,
+ "SGA Software": 31200000,
+ "SLIM TIMER": 19600000,
+ "SQLite": 15400000,
+ "SS Systems": 12600000,
+ "STAND 8": 10600000,
+ "SWK Technologies": 38500000,
+ "Safe Data": 33500000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
- "Sanderson Farms": 5600000000,
+ "Salem Salvage & Surplus 336 765-1203": 21400000,
"Sapiens": 382000000,
- "Schleich": 21200000,
- "Science 37": 87000000,
- "Seaboard": 11200000000,
+ "Scarborough Farms": 21500000,
+ "Schedulefly": 15700000,
+ "Scribbles Software": 36600000,
"Seagate Technology": 9400000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "Selective Insurance": 3300000000,
- "SemaConnect": 29000000,
- "Semiconductor Research Corporation": 26700000,
- "Sermo": 51200000,
- "Seydel": 10000000,
- "Sheetz'": 6200000000,
- "ShinMaywa": 1700000000,
- "Shoe Carnival": 1300000000,
- "Showbiz Cheat Sheet": 14100000,
- "Sigma Aldrich": 2800000000,
- "Silicon Valley Bank": 6200000000,
- "Simplot": 6000000000,
+ "Seismic": 300000000,
+ "ServiceTrade": 45500000,
+ "ShiftWizard": 29000000,
+ "Shoshin Technologies": 41500000,
+ "Siblovia": 33100000,
+ "Sign In Compliance": 10000000,
+ "Signalscape": 10000000,
+ "Silent Partner Technologies": 10000000,
+ "SilverSky": 50000000,
+ "Silverline Solutions": 45200000,
+ "Simple Auction Site": 14900000,
"SingleStore": 100000000,
- "Sleep Number": 2100000000,
- "Smallwood": 30000000,
- "Smith & Nephew": 5200000000,
- "Smith Reynolds": 10000000,
- "Snyder's-Lance": 8600000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Sugar Bakery": 26800000,
- "Southwest": 22700000000,
- "Special Metals Welding Products": 11400000,
- "Spoonflower": 23400000,
- "St Lawrence County Historical Association": 13000000,
- "Stanadyne": 23300000,
- "Stantec": 3100000000,
- "StartingBloc": 13600000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stone & Webster": 27400000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "Suntory": 11700000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "Syngenta": 16700000000,
- "Syska Hennessy Group": 60900000,
- "TDK": 14000000000,
- "TPC at Piper Glen": 27800000,
- "TVA": 13000000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "TWR": 16400000,
- "Tandy Leather Factory": 81600000,
+ "Siri InfoSolutions": 17500000,
+ "Skrinak Creative": 20200000,
+ "Skyview Technologies": 31600000,
+ "Snowman Software": 24200000,
+ "SoftPro LLC.": 49000000,
+ "Software Dimensions": 67600000,
+ "Software Dynamics": 16600000,
+ "Software Goldsmith Inc. SGI": 32600000,
+ "Software Systems Group": 32800000,
+ "South Seas Travel": 24400000,
+ "Southeast Technologies": 12200000,
+ "Spaz Chicken": 14700000,
+ "Spiff3D": 23000000,
+ "Spot by NetApp": 45500000,
+ "Stalwart": 30100000,
+ "Standpoint Technologies": 21500000,
+ "Steve Davis Design": 11500000,
+ "StoredTech": 11000000,
+ "Strategis Consulting": 21600000,
+ "StratusVue": 10000000,
+ "Studio 25 Decor": 32900000,
+ "Suttonsoft": 30100000,
+ "Sweb Development": 17000000,
+ "Synaptic Data": 15300000,
+ "Syncfusion": 27000000,
+ "Sysdig": 50000000,
+ "T3 Managed IT": 23200000,
+ "T5 Data Centers": 13600000,
+ "TCDI": 20400000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "THE NORTH STATE DESIGN STUDIO": 10300000,
+ "THZ": 35600000,
+ "TRANS GLOBAL GEOMATICS INC.": 11800000,
+ "TSI Healthcare": 33500000,
+ "Tangible Solutions": 10000000,
"Tanium": 525000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Courier-Times": 10000000,
- "The First Line": 18800000,
- "The Hanover Insurance Group": 3000000000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
+ "Tavve": 12000000,
+ "Taylor Data": 10000000,
+ "Technimove": 35000000,
+ "Technocrates": 29500000,
+ "Technologies Edge": 20000000,
+ "Techverx": 21400000,
+ "Techview Corporation": 17400000,
+ "Tek Source": 11100000,
+ "Temprano": 15000000,
+ "Ten Talents": 10800000,
+ "Textco": 15800000,
+ "The I-Way": 18400000,
+ "The Monogram Shop": 18800000,
+ "The Studio Works": 23300000,
+ "The Tek": 13500000,
+ "Think VSS": 80000000,
+ "ThinkManaged": 39700000,
+ "TierPoint": 405000000,
"TigerDirect": 200000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UNC Board of Governors": 10000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Ultra Electronics": 1200000000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "VCA Inc.": 1800000000,
+ "Top Hat Computing": 22900000,
+ "Top Sail Technologies Inc.": 18400000,
+ "Tresata": 18400000,
+ "Tri-Tronics Pro Electronics": 16100000,
+ "TriMed Technologies": 11600000,
+ "Triad Networking": 17700000,
+ "Triangle Computer Associates": 12400000,
+ "Triangle Solutions": 11100000,
+ "Trianz": 90000000,
+ "Tribis": 12700000,
+ "Trihedral Engineering": 6000000,
+ "Triple D": 53200000,
+ "Turbot": 8000000,
+ "Turnleaf Designs": 26500000,
+ "Turnsmith": 16800000,
+ "Turret Labs": 10000000,
+ "UserVoice": 6900000,
+ "Uwharrie Host": 23800000,
+ "VENYU": 30000000,
"VMware": 13200000000,
- "Valencell": 10000000,
- "Valpak": 43500000,
+ "VR Solutions Inc.": 11100000,
+ "Validity": 10200000,
+ "Vanuston": 16400000,
"Varonis": 457600000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vesuvius France S.A.": 2200000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Vinotemp": 13500000,
- "Vision Source": 11700000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Westfield Insurance": 2000000000,
- "Wheatstone": 21100000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
+ "Varrow": 145000000,
+ "Vast Design": 27700000,
+ "VidSwap": 12800000,
+ "Virtual Resort Manager": 14400000,
+ "Virtucom": 14200000,
+ "Visual Risk IQ": 14300000,
+ "Visual23": 11300000,
+ "WBEM Solutions Inc.": 29200000,
+ "WalkTheLot": 32200000,
+ "WebBabyShower": 24500000,
+ "WebPoint IT Solutions": 31300000,
+ "WebZingos": 11300000,
+ "Wengert": 19400000,
+ "Whitlock IS": 28000000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xsolla": 15200000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000
+ "Worden Brothers": 39900000,
+ "X9 Technologies": 12300000,
+ "XRiver Technologies": 17400000,
+ "Xtern Software": 23800000,
+ "Zigabyte": 26000000,
+ "eVise Intl": 16500000,
+ "enKompass": 11100000,
+ "iTi Communications": 13800000,
+ "international Agency Tax Service": 15300000,
+ "trepX": 13100000
},
"North Dakota": {
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "AFL-CIO": 138000000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "Applied Instruments": 9000000,
- "Army News Service": 16400000000,
- "ArrayComm LLC.": 8800000,
+ "22nd Century Solutions": 166300000,
+ "AVI System's": 272500000,
+ "Allegiance Fundraising Group": 5000000,
+ "Alpha Technologies Inc USA": 25000000,
+ "American Infotech Solutions": 16300000,
+ "Armor Interactive": 322000,
+ "Atlas Business Solutions Inc.": 15800000,
"Atos": 11400000000,
- "Autocall": 6000000,
- "Basin Safety": 7000000,
- "Bekins Van Lines Inc.": 33600000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Boy Restaurants": 26600000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Buckle": 1300000000,
- "Cadex Defence": 7700000,
- "Canad Inns": 170000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Center for Inquiry": 306000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Consolidated": 1200000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
+ "AutoDocs": 32700000,
+ "Awesome Signs & Graphics": 11900000,
+ "BJ Company": 5200000,
+ "BPro Inc.": 22400000,
+ "Bard Creative": 5500000,
+ "BeeGee Designs": 3900000,
+ "Best Estimate Pro": 2400000,
+ "Big Picture Software": 775000,
+ "Blue Muse Art": 8900000,
+ "Blueprint IT Solutions": 404000,
+ "Botlink": 3600000,
+ "BuildingIQ": 7800000,
+ "Buyer at Large": 3100000,
+ "ByteSpeed": 7300000,
+ "Charpentier Creative": 1400000,
+ "Cloud 5 Solutions": 7900000,
+ "Codelation": 2400000,
+ "Cognosante": 25000000,
+ "CompuNet Inc.": 146600000,
+ "Comtech Global": 7000000,
+ "Connect Booster": 4400000,
+ "Continum": 687000,
+ "Core Scientific": 276400000,
+ "CoreLink Administrative Solutions": 53600000,
+ "Corporate Technologies": 38700000,
+ "Creative Monke": 1300000,
+ "Custom Data": 10000000,
+ "DESIGNS ON BROADWAY": 11200000,
"DTN Ag.": 250000000,
- "Dakota College": 3000000,
- "Denbury": 1700000000,
- "Department of Energy": 190000000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EOG Resources": 25000000000,
- "Ecumen": 165000000,
- "Eide Bailly": 254000000,
- "Farmer Brothers": 469200000,
- "Ferrell North America": 11300000,
- "Ferrellgas": 2100000000,
- "Forum Communications": 61500000,
- "Fox Network": 3000000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fulton Beer": 20600000,
- "G&L Guitars": 8000000,
- "Golder Associates Inc.": 1000000000,
- "Grand Forks Herald": 882000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "IHEARTMEDIA": 3800000000,
- "Inventors": 10000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "Jamestown Sun": 7900000,
- "Jenny Craig": 483000000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Just Aircraft": 16500000,
- "Kinder Morgan": 17700000000,
- "Kohler Kitchen & Bath": 6000000000,
- "LUFKIN": 1500000000,
- "Leeann Chin": 2800000,
+ "Dakota Web Creations": 36700000,
+ "Data Tranz": 30300000,
+ "Datum Software": 15700000,
+ "Dawa Solutions Group": 7000000,
+ "Digil\u00f6we": 351000,
+ "Dirty Bird Guns": 9000000,
+ "EIP LLC.": 4200000,
+ "Eagle Creek Software Services": 15000000,
+ "Eldermark": 18000000,
+ "Emesent": 6000000,
+ "Empowered Presence": 1400000,
+ "Erickson Dental Technologies": 4300000,
+ "Event Office": 5200000,
+ "Gobasil": 282000,
+ "HATFIELD WASS & ASSOCIATES": 10000000,
+ "Hash Interactive": 1400000,
+ "Henson Group": 110000000,
+ "High Point Networks": 25000000,
+ "IDA Corporation": 10000000,
+ "ISD FENIQS": 28200000,
+ "ISL Online": 2900000,
+ "InfoTech Solutions for Business": 5800000,
+ "Information Management Systems": 108000,
+ "Inktronic": 14200000,
+ "Intelligent InSites": 21000000,
+ "Iwebnext": 7000000,
+ "Kilands Office Systems": 10000000,
+ "Krondek | Dev UX": 2400000,
+ "Leidholm Technologies": 12200000,
"Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lovesac": 389800000,
- "MATBUS": 4200000,
- "MBF Bioscience": 7000000,
- "MDU Resources": 7000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Midwest Communications": 36300000,
- "Moe's Southwest Grill": 295500000,
- "Mr. Tire": 5700000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "New Flyer": 2400000000,
- "New York Fed": 21100000,
- "NuStar Energy": 3200000000,
- "OneMain Financial": 4100000000,
+ "Loffler Companies": 280000000,
+ "LogicStew": 7600000,
+ "Majnit": 3600000,
+ "Marco Technologies": 400000000,
+ "Medytex": 2400000,
+ "Mekorma": 6000000,
+ "Michelle Jensen Design": 7700000,
+ "Mind Riders Technology": 2200000,
+ "Miovision": 35000000,
+ "Modern Information Systems Inc.": 10000000,
+ "Moxie IT": 35200000,
+ "MyCreativeShop": 5300000,
+ "NETSYNO": 121000,
+ "NICKS PAGES.": 2800000,
+ "NISC": 34100000,
+ "NRG Technology Services": 55900000,
+ "Network Center": 57400000,
+ "Networking Specialists": 4400000,
+ "Netzlink": 563000,
+ "Nfina": 15300000,
+ "OmniByte": 7000000,
+ "Onsharp": 4400000,
+ "OpWorks": 70000000,
"Orion Health": 150000000,
- "Orkin": 1000000000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Prairie Farms": 3100000000,
- "Pretzelmaker": 125000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rodgers Instruments Corporation": 6400000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schmitt Music": 20600000,
- "SemaConnect": 29000000,
- "Service CU": 11100000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Southern Glazer's": 21000000000,
- "Space Aliens Grill & Bar": 10000000,
- "Stantec": 3100000000,
- "Stern Pinball": 28500000,
- "Stine Seed": 1000000000,
- "SunOpta": 812600000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Terracon": 77100000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "USGS": 5000000,
- "Uncle Maddio's": 5300000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "Untappd": 10000000,
- "Valley City Times-Record": 6000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Williston Basin International Airport": 7000000,
- "Wilson Sporting Goods": 769700000,
- "WoodSpring": 150000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Zooplus AG": 2500000000,
- "Zumiez": 1100000000,
- "iHire": 15900000
+ "PartUs": 2400000,
+ "Prairie View Church of God": 19600000,
+ "PredictHQ": 2000000,
+ "Prominent Technology Inc.": 2400000,
+ "Quicksilver Technologies": 361000,
+ "RapL": 4400000,
+ "Razor Tracking": 5000000,
+ "Red River Software": 74300000,
+ "Remco Software": 25000000,
+ "Rent Manager": 40900000,
+ "Risingline": 6900000,
+ "SGA Software": 31200000,
+ "Sensdesign": 139000,
+ "Server Fault": 10000000,
+ "Silicon Plains": 5800000,
+ "Smartshore": 12100000,
+ "Souris Valley Suites": 7000000,
+ "Stallion is": 1500000000,
+ "Stoneridge Software": 33000000,
+ "Stratacom": 2400000,
+ "Stratford Software": 28500000,
+ "Sugars International": 17500000,
+ "Sycorr": 2000000,
+ "Tagmaster": 8000000,
+ "Technology Consultants Inc. VT": 16500000,
+ "Thiken": 343000,
+ "Trynzic": 2000000,
+ "Vaultas": 24700000,
+ "Vexcel": 42900000,
+ "Vision Home Inspectors": 30700000,
+ "Vtrenz": 4300000,
+ "WEB9": 128000,
+ "WEX Health": 500000000,
+ "Wengert": 19400000,
+ "Ygomi": 23400000,
+ "eOne Solutions": 5900000,
+ "extreme365 Europe": 651000,
+ "h Plains": 10000000
},
"Ohio": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAOS": 60300000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
+ "A.M. Design": 27000000,
+ "A2 Consulting": 21500000,
+ "ACU-Serve": 10000000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "ASME": 117500000,
+ "AED Web Design": 15600000,
+ "AIGA": 2400000,
+ "ARKAY Engineering Sales Inc.": 20200000,
+ "ASC Software": 28000000,
+ "ASH Imagine": 19500000,
+ "ASMGi": 17900000,
"ASUS": 19200000000,
- "ATS Automation": 1800000000,
- "AcademyHealth": 18600000,
- "Acadia Healthcare": 2500000000,
- "Acuity Brands": 4000000000,
- "Acxiom": 1300000000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "AirNet": 109300000,
- "Akron Beacon Journal": 23500000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Alien Technology": 50100000,
+ "AT Gi": 23100000,
+ "AVI-SPL": 1300000000,
+ "AVIarts": 33000000,
+ "AZtech Strategies": 67600000,
+ "Accent Exhibits Inc.": 17400000,
+ "Acclimate Technologies": 35300000,
+ "Acendex": 15600000,
+ "Advizex": 240000000,
+ "Affinity IT Group": 18800000,
+ "Afforda": 15800000,
+ "Afidence": 10000000,
+ "Agil IT": 19600000,
+ "Alairis": 13300000,
+ "Algorithm Inc. ERP Experts": 18800000,
"Alithya": 389900000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "AmeriServ": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Greetings": 2000000000,
- "American Record Guide": 27700000,
- "American Share": 26000000,
- "Americold Logistics Inc.": 2900000000,
- "Amoy Food": 667000000,
- "Applied Materials": 25200000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Armoloy": 49100000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Assurant": 8700000000,
- "At Home store": 1700000000,
+ "All Virtual Group": 43500000,
+ "Amanda Scharf": 60700000,
+ "AmeriNet": 42600000,
+ "American Business Solutions": 17200000,
+ "American Dairy Association Mideast": 19600000,
+ "Analysis Express": 11600000,
+ "Andy Clingman": 15600000,
+ "Anecka LLC.": 23900000,
+ "Apexon": 75000000,
+ "Apogee IT Services": 20000000,
+ "Apps Incorporated": 16000000,
+ "Archive Data Solutions": 22900000,
+ "Ardent Services": 33900000,
+ "Arisen": 14700000,
+ "Artopia Web Design": 37800000,
+ "Arunam": 25000000,
+ "Ascend Tech": 11000000,
+ "Ashton Solutions": 48900000,
+ "Aslan Interactive": 15100000,
+ "AssureCare": 35000000,
"Atos": 11400000000,
- "Atria Senior Living": 778500000,
- "Aurecon": 850000000,
- "Australian Laboratory Services": 6600000000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BBYO": 15800000,
- "BJ's": 18700000000,
- "BOBST": 1600000000,
- "BTS Group": 232600000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Barnes & Thornburg": 575500000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Big Boy Restaurants": 26600000,
- "Billerud": 1300000000,
- "Blick Art Materials": 245200000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
- "Bonchon": 60000000,
+ "Automation Technologies": 50700000,
+ "Avail Company": 4200000,
+ "Avercast": 7700000,
+ "Aztec Development": 15600000,
+ "Aztek Consulting Corporation": 10000000,
+ "BAMTECH Media": 14500000,
+ "BBSYS Incorporated": 19600000,
+ "BIG Mountain Technology": 30800000,
+ "BIZ-EDGE": 26000000,
+ "BLUE CHIP DATA": 18000000,
+ "BTECH Consulting": 14900000,
+ "Babin Kitchen & Bath": 17500000,
+ "Baker Norris": 18300000,
+ "BalaBoss": 12300000,
+ "Baldwin Group": 14300000,
+ "BayPointe Technology": 50000000,
+ "Behosting": 18000000,
+ "Benchmark Gensuite": 30000000,
+ "Benthost": 19500000,
+ "Bespoke Creative": 12200000,
+ "Big Red Rooster": 25900000,
+ "BitWiseIm": 24400000,
+ "Black & Carver": 25100000,
+ "Blue Gargoyle": 17500000,
+ "Bluespring": 10000000,
+ "Blueteam Networks": 22400000,
+ "Bookup": 18700000,
"Booz Allen": 8800000000,
- "Botanical Society of America": 11800000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Buckeye CU": 10900000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
+ "Boyum IT Solutions": 22700000,
+ "Breakthrough Technology": 14600000,
+ "Bright Side Studio": 21000000,
+ "Brilliant Fantastic": 26800000,
+ "Brown Dog Net Services": 19700000,
+ "BrownCOW Technology": 33800000,
+ "Buckeye IT": 14500000,
+ "Buckeye Innovation": 13500000,
+ "C-Sharp Technologies": 28100000,
"CACI": 6200000000,
+ "CATERWARE": 12300000,
"CDW": 23800000000,
- "CFM International": 10000000,
- "COSI": 14500000,
- "CPSC": 10000000,
- "CRH": 31000000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Calgon Carbon": 750000000,
- "Cameron Mitchell": 210800000,
- "Camp Fire": 10000000,
- "Canton Local": 14800000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carroll Electric": 10800000,
- "Case Western Reserve University": 1200000000,
- "Cerner": 5800000000,
- "Charles River Laboratories": 4000000000,
- "Checkpoint Systems": 800000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chillicothe Gazette": 29900000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Cincinnati Financial Corporation": 8900000000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Clark Brands": 23000000,
- "Clearwater Paper": 2000000000,
- "Cleveland Film": 14600000,
- "Cleveland Magazine": 11100000,
- "Cleveland Metropolitan School District": 42800000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Columbus Messenger": 21800000,
- "Columbus Regional Airport Authority": 10000000,
- "Comfort Dental": 17800000,
- "Consolidated": 1200000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core-Mark": 17200000000,
- "Corporation Sealy": 1300000000,
- "Covanta": 1900000000,
- "CoverMyMeds": 200000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Cresco Labs": 17700000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "DENSO CORPORATION.": 43500000000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dairymaster": 15000000,
- "Dakkota Integrated Systems": 650000000,
- "Dana Incorporated": 9900000000,
- "Danby Products Limited": 240000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Designer Brands": 3400000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "Doe-Anderson": 17700000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorel Industries": 2600000000,
- "Doscher's Candies": 46000000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "EHS Today": 20000000,
- "EVgo Services LLC.": 34400000,
- "EastwoodCo": 45500000,
+ "CEI America": 92400000,
+ "CEMax": 12200000,
+ "CHERUBINI DESIGNS": 17100000,
+ "CJ's Web Services": 33000000,
+ "CMIT Solutions": 60000000,
+ "CRGITS": 17500000,
+ "Cambay Consulting": 48900000,
+ "Camp Digi": 30700000,
+ "Cardinal Solutions Group": 22200000,
+ "CaterTrax": 15000000,
+ "Cedar Street Graphics": 31500000,
+ "Centella Consulting": 11900000,
+ "CenterGrid": 25000000,
+ "CentraComm": 26700000,
+ "Cequence": 15000000,
+ "ChaseDesign": 25000000,
+ "Chi Corporation": 17100000,
+ "Cincom": 196800000,
+ "Cinlogic": 37000000,
+ "Cinnova": 25000000,
+ "Clubessential": 25000000,
+ "Cluster Software": 13300000,
+ "Code For Dayton": 14600000,
+ "Columbus International Corporation": 12200000,
+ "CompTech Computer Technologies": 21000000,
+ "ComplyNet": 11800000,
+ "CompuCorp": 40300000,
+ "Computer Technology Management Services": 30900000,
+ "Concentric Technologies": 19400000,
+ "Concept XXI": 39000000,
+ "Core Network": 45000000,
+ "Cowgirl Expressions": 30200000,
+ "Creative Design Solutions": 10300000,
+ "CrossControl": 10000000,
+ "CxT Group": 24800000,
+ "CyberAccess Inc.": 17500000,
+ "CyberCon Security": 14300000,
+ "CyberSWIFT": 42000000,
+ "CyberSecOp": 10000000,
+ "Cybergraphix": 23700000,
+ "DAW Products": 18100000,
+ "DENK Creative": 14800000,
+ "DLH DESIGN LLC.": 22200000,
+ "DMA Tech Solutions": 14400000,
+ "Darke Cloud Solutions": 37500000,
+ "Darkhost": 31300000,
+ "DartPoints": 42000000,
+ "Daslos Studios": 31700000,
+ "Data Analysis Technologies": 17500000,
+ "Data Center Knowledge": 23300000,
+ "Data Direction": 23800000,
+ "Data Dynamics": 11000000,
+ "DataLogic": 13500000,
+ "DataServ": 24500000,
+ "Dayton Technology Group": 22000000,
+ "DePompei Designs": 11500000,
+ "DeVine Universe": 30500000,
+ "DeVore": 21400000,
+ "DecisionONE": 300000000,
+ "Design LBS": 27500000,
+ "DesignCrew": 17500000,
+ "DevCare": 22100000,
+ "DiAlo": 16400000,
+ "Dimonoff": 10000000,
+ "Direct Connect": 10800000,
+ "Distinct ONC": 12000000,
+ "Diversified Digital": 24200000,
+ "Dmi Services Llc.": 14000000,
+ "Doth": 10800000,
+ "Dynamic Data Inc.": 22100000,
+ "E-Tech Associates": 12100000,
+ "EJS Creations": 29500000,
+ "EOX Vantage": 11000000,
+ "EQUIVANT": 1500000000,
+ "ERP Suites": 23400000,
+ "Eagle Consulting Partners": 15900000,
+ "EarthCam": 15000000,
+ "EaseUS": 12800000,
"Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Ekso Bionics": 10000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
+ "Edap Tms S.a.": 19000000,
+ "Elite Analytical Solutions": 13800000,
+ "Ellipse Solutions": 22100000,
+ "Elum Music Co.": 32000000,
+ "Embedded Planet": 26000000,
+ "Emerge Inc.": 75000000,
+ "Enterprise Data Soutions Inc.": 12400000,
"Equinix": 7300000000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Farmer Brothers": 469200000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "Finneytown": 27400000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Eventzilla": 15000000,
+ "Everest Technologies": 35000000,
+ "Excel Management Systems": 12200000,
+ "Expedient": 200000000,
+ "FASTAPPZ": 18200000,
+ "FX Design Group": 13500000,
+ "Falconer Technologies": 20000000,
+ "Faultline Software Group Inc.": 15600000,
+ "FinDesign": 10100000,
+ "Fire And Ice Studios": 11700000,
+ "FireTiger": 28600000,
+ "First Place Web Host": 15400000,
+ "First Tracks Technology": 24900000,
+ "Firstech Solutions": 32400000,
"Fiserv": 17700000000,
- "Florida Department of Management Services": 150000000,
- "Forest Hills Local School District": 32700000,
- "Forman Mills": 296800000,
- "Fractal Design": 39500000,
- "Franchise Group": 3300000000,
- "Franklin Electric": 2000000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Fsc": 44200000,
- "GE HealthCare": 17700000000,
- "GP Strategies": 482000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gateway Newstands": 16600000,
- "Generac Power Systems": 4600000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "General Revenue": 22400000,
- "Gentherm": 1100000000,
- "Gillette": 6000000000,
- "Giordanos": 175000000,
- "Global Commercial Credit": 17600000,
- "Globe Life Insurance": 5200000000,
- "Gooseberry Patch": 14100000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "Greenleaf Book Group": 12100000,
- "Grenzebach": 52000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Grippo's": 51100000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
- "HCI": 10100000,
+ "Flairsoft": 27700000,
+ "Flywheel Tech Collective": 15400000,
+ "Fortech LLC.": 22300000,
+ "Freedom Applications": 23500000,
+ "GALAXY HOSTED": 46800000,
+ "GC Cincy": 34600000,
+ "Gainwell Technologies": 1400000000,
+ "Galois": 10000000,
+ "Gavroshe": 19600000,
+ "Georg Automatic Feed Ltd.": 13400000,
+ "GiveSmart": 12000000,
+ "Glass Slate": 62900000,
+ "Glass Thimble": 36600000,
+ "Global Quality Corp.": 32400000,
+ "Gloria Ellis Design Studio": 11500000,
+ "GoTo Solutions": 32100000,
+ "Grantek": 11900000,
+ "Graphic Edge Professional": 12800000,
+ "Graphic Image": 28500000,
+ "Great Migrations": 24000000,
+ "GreenBell": 19900000,
+ "Guide Technologies": 11000000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Heinen's Grocery Store": 450000000,
- "Helmerich & Payne": 1400000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hub Power": 1200000000,
- "Hudson": 2000000000,
- "Huhtamaki": 53200000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "Hyundai Motor America": 100700000000,
- "IAMS": 14900000,
- "ICICI Bank": 18100000000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Ideastream": 15200000,
- "Imagine Schools": 14500000,
- "InMoment": 278000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "Interlake Steamship": 38600000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Johns-Manville Corporation": 3000000000,
- "Join Root": 352800000,
- "Jones Day": 2400000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "Kroger": 130700000000,
- "L&T technology Services": 746800000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "LPK Inc.": 15800000,
- "LUFKIN": 1500000000,
- "Lakewood City Schools": 10800000,
- "Land O'Lakes": 16000000000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "HOOFCASE": 21400000,
+ "Haines": 18800000,
+ "Harvey Advertising & Design": 12100000,
+ "Haz Technologies": 22400000,
+ "HealthEdge": 23600000,
+ "Herip Associates": 26500000,
+ "Himebaugh Consulting": 11900000,
+ "Hollsco": 13500000,
+ "Hot Scripts.": 10000000,
+ "I-Systems Corporation": 10500000,
+ "ID Networks": 31100000,
+ "IQSG": 19500000,
+ "ISSG inc.": 30800000,
+ "IT Vision Tech": 13500000,
+ "Icloud": 90000000,
+ "Ilambs": 41100000,
+ "Illumination Works": 32200000,
+ "Impact Data Imaging": 12500000,
+ "Incite Visual Communications": 13600000,
+ "Indus Technology": 36000000,
+ "Inedo": 5000000,
+ "Infinite Corporation Solutions": 16600000,
+ "Infiniti Systems": 37400000,
+ "Informs": 510000000,
+ "Infoverity": 25000000,
+ "Innovation Chemical Technologies": 25800000,
+ "Innovative Systems and Software Inc.": 32600000,
+ "Integrated Building Systems": 28300000,
+ "Integrated Network Concepts": 19700000,
+ "Integritech": 34000000,
+ "IntelliCap": 15200000,
+ "IntelliNet Corporation": 50000000,
+ "Intelliquip": 10700000,
+ "Intellitech": 10900000,
+ "International Cyber Bus Services": 10700000,
+ "International TechneGroup": 23200000,
+ "Inversion6": 25000000,
+ "Itek Systems": 28300000,
+ "J2LOGIX": 31000000,
+ "J6 Communications": 25400000,
+ "JASStek": 15200000,
+ "JYG Innovations": 12200000,
+ "Jon Daiello": 18800000,
+ "Joshua Branch": 19100000,
+ "K.E. Loveless": 33800000,
+ "Kasten": 28500000,
+ "Kenosis Design Innovations": 31500000,
+ "Kentohionet": 39200000,
+ "Keytel Systems": 37300000,
+ "KiZAN": 12700000,
+ "King Office Services": 11700000,
+ "Konkord IT": 32300000,
+ "LF IT Services": 12400000,
+ "LTech Solutions": 18400000,
+ "Lake Erie Creative": 26200000,
+ "Laketec": 21200000,
+ "Lawhead Software Consulting": 22900000,
+ "Leading Edge Integration": 26900000,
+ "Leatherman & Witzler Law Offices": 11300000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
+ "Leverage Technologies": 32500000,
+ "Lexonix": 19100000,
+ "Lifeline Management Systems": 45300000,
+ "LinTech Global": 38800000,
"Lingaro": 50000000,
- "Lionel": 45500000,
- "Lions Clubs International": 20800000,
- "Liquitex": 18000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Locke Lord": 51000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "MANN HUMMEL": 4700000000,
- "MDB Communications": 25300000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Magellan Aerospace": 13900000,
- "Main Event": 678000000,
- "Mansfield Engineered Components": 10000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Material Sciences": 75000000,
- "Materion Corporation": 1800000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Menopause": 16600000,
- "Metal Supermarkets": 26800000,
- "Metro Inc.": 14400000000,
- "Mettler-toledo Inc.": 3900000000,
- "Michael Hill": 13000000,
- "Michigan Sugar": 46600000,
- "MidAmerican Energy": 66000000,
- "Miller Canfield": 106700000,
- "Milliken & Co.": 2500000000,
- "Minster Machine Company": 148500000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morgan Technical Ceramics": 1400000000,
- "Morgenthaler": 29100000,
- "Mott Foundation": 36300000,
- "Mount Carmel Health": 1700000000,
- "Mount Vernon News": 10200000,
- "Munich Re": 73300000000,
- "Museum of Contemporary Art Cleveland": 19400000,
- "Music & Arts": 12400000,
- "Musim Mas": 7300000000,
- "Mutual of America": 100000000,
- "NABET-CWA": 13400000,
- "NEORSD": 30300000,
- "NIDEC": 15600000000,
- "NYSEG": 800000000,
+ "Link Software": 25500000,
+ "Linric": 29000000,
+ "Logic Soft": 11900000,
+ "Lol Fast Speedshop": 16500000,
+ "London Computer Systems": 40200000,
+ "Lucas Software Engineering Inc.": 25500000,
+ "Lucid Data": 39100000,
+ "MACH Software": 31300000,
+ "MAPSYS": 17700000,
+ "MEC Systems": 24600000,
+ "MFM": 44800000,
+ "MIS Solutions": 14500000,
+ "MTC Document": 13400000,
+ "MUIR Graphics": 14900000,
+ "Maher Consulting & Design": 10600000,
+ "Mahon Studios": 45500000,
+ "Mannus Corporation": 24800000,
+ "Mark3": 14600000,
+ "Marquis Graphics": 36600000,
+ "Martin and Associates": 49400000,
+ "Maximation": 12200000,
+ "MaximumSoft Corp.": 10000000,
+ "Medical Care Center": 30500000,
+ "Mega-Byte Computer Services": 30600000,
+ "Mehdiward": 14900000,
+ "Menya Communications": 27400000,
+ "Micro Advantage": 25700000,
+ "Minkatec Computer Services": 13600000,
+ "Mister Analytics": 47200000,
+ "Modern TECHnique": 27600000,
+ "Moehler Design": 40500000,
+ "Mom Webs": 27900000,
+ "Monkee\u2019s of Madeira": 37500000,
+ "Moss Media": 15200000,
+ "Multifamily Media Management": 23300000,
+ "MyCLDesigns": 13300000,
+ "NET'N COM": 11900000,
+ "NETWORK INTEGRATION SYSTEMS LIMITED": 10000000,
+ "NEXUS CAREER STRATEGISTS LTD.": 13400000,
+ "NGEN LLC.": 25500000,
+ "NTI Inc.": 18800000,
+ "Nanostuffs": 32100000,
"Nanotronics": 226900000,
- "National Christian Foundation": 27800000,
- "National Oilwell Varco": 7200000000,
- "Nationwide": 42100000000,
- "Nautilus machines": 589500000,
+ "Natural Design & Graphics": 34800000,
"NetApp": 6500000000,
- "NetJets": 816000000,
+ "NetOps Consulting": 11700000,
"Netsmart": 526000000,
- "New Flyer": 2400000000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Norbar": 44000000,
- "North Canton City Schools": 19300000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "OCLC": 214600000,
- "OMNOVA": 750000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ohio Art Company - Excellence In Metal Lithography": 10000000,
- "Ohio Community College Athletic Conference": 13200000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omega": 163000000,
- "OmniTRAX": 100000000,
+ "Network Computer Consultants S.O.S.": 20200000,
+ "Network Solutions Provider": 16900000,
+ "Network Technologies": 12800000,
+ "Network Technologies International": 17400000,
+ "Neumeric Technologies": 27400000,
+ "Newbomb Design": 15200000,
+ "Nexus Practice IT Services": 11300000,
+ "Neyer Software": 17900000,
+ "Nfina": 15300000,
+ "Novacura": 13200000,
+ "Nukamedia": 12400000,
+ "OM Group Inc.": 1100000000,
+ "Ohioedge": 12400000,
+ "Oleander Software": 36100000,
+ "On-Target Design": 34400000,
"Onward Technologies": 44100000,
- "Orange Business": 9600000000,
- "Organon International": 815000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Our Lady of Victory School and Church": 39800000,
- "Outback Steakhouse": 2000000000,
- "OverDrive Inc.": 100000000,
- "Oxxford Clothes": 25000000,
- "PSE&G": 9300000000,
- "PT. Cheil Jedang Indonesia": 23100000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pantene": 10000000,
- "Paris Baguette": 11200000,
- "Park National Bank": 367600000,
- "Parker Hannifin": 15900000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "Pepperl Fuchs": 800700000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pierre's Ice Cream": 19900000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plum Market Inc.": 26000000,
- "PolyVision company": 19000000,
- "Powell Industries": 499400000,
- "Prairie Farms": 3100000000,
- "Premier Drums": 10000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
+ "Optimi": 27200000,
+ "Optimle": 31200000,
+ "OrgSpire": 25000000,
+ "Ovo Studios": 26800000,
+ "Oxcyon": 15800000,
+ "PAR Government": 14000000,
+ "PCMRP": 50700000,
+ "PCR Business Systems": 24000000,
+ "Packe": 26200000,
+ "Pakmail Dublin Ohio": 18100000,
+ "Park Place Technologies": 218400000,
+ "Parkey Design": 15200000,
+ "Path Forward": 25000000,
+ "Patriot Software": 29600000,
+ "Pauric McAnespy Web Design": 16600000,
+ "Pawnee": 24500000,
+ "Pelican Technologies": 31100000,
+ "Pellucent": 17300000,
+ "Phillips Design": 25600000,
+ "Pinnacle Solutions Group": 13800000,
+ "Piranha CMS": 15000000,
+ "Pixel Panache": 11600000,
+ "Pixelfire Design": 32100000,
+ "Practical Consulting": 28700000,
+ "PrivacyWare": 10000000,
+ "Proactive Software Solutions": 33300000,
+ "Profile Discovery": 15700000,
+ "Progent": 13200000,
"Publicis Sapient": 2700000000,
- "QuickChek": 1000000000,
- "R. J. Corman": 420000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Republic Bank": 314200000,
- "Riddell Sports Group Inc.": 75000000,
- "Risk International": 22900000,
- "Riverside Health System": 19000000,
- "Riverside Partners": 14400000,
- "Robeks": 396000000,
- "Robinson Fresh": 11400000,
- "Rocky Brands": 593600000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Rubbermaid": 3000000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
+ "QE Software": 11700000,
+ "Quadax": 42500000,
+ "RASP Consulting": 24900000,
+ "RFA - Richard Fleischman and Associates Inc.": 215000000,
+ "RJ Technologies": 24900000,
+ "RP PRO": 10800000,
+ "Radiant Technology Cincinnati": 25200000,
+ "Rainbow Data": 20200000,
+ "RawVoice": 10000000,
+ "Raygun Design": 13400000,
+ "RazorEdge": 18900000,
+ "Razorleaf": 10900000,
+ "RealFlex": 55100000,
+ "Rent Manager": 40900000,
+ "Reonomy": 18300000,
+ "Responsive Data Systems": 10000000,
+ "Revionics Inc.": 46600000,
+ "Rob Schuster": 29700000,
+ "Robintek": 20700000,
+ "RoseTech": 39400000,
+ "Ross-Tek": 14300000,
+ "S4 Inc.": 16500000,
+ "SALIX Data": 20700000,
"SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SIFCO": 89600000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "STEMCO": 380000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Sanderson Farms": 5600000000,
- "Schwebel's": 23800000,
- "Scott Fetzer Company": 250000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Signarama": 55000000,
+ "SLK Software": 150000000,
+ "Saberware": 10400000,
+ "Sancsoft": 12900000,
+ "Saxon Inc.": 18800000,
+ "Scalix": 24000000,
+ "Schedule Tech": 12600000,
+ "Scientel": 33700000,
+ "ScopiaRx": 35600000,
+ "Scriptel": 10400000,
+ "Seamless AI": 43500000,
+ "SecureData 365": 23500000,
+ "Shatterock": 20000000,
+ "Shoes In The Window Photography": 33100000,
+ "Shopmetrics": 19300000,
+ "Simon Technology Solutions": 29500000,
+ "Simplesoft": 14300000,
+ "Simplex-IT": 13700000,
+ "Siri InfoSolutions": 17500000,
+ "Skynet Solutions": 30100000,
"Slack": 1100000000,
- "Sleep Number": 2100000000,
- "Smart Growth America": 10000000,
- "Smith & Nephew": 5200000000,
- "Snyder's-Lance": 8600000000,
- "Soci\u00e9t\u00e9 am\u00e9ricaine de chimie": 632100000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Southwestern Ohio Council for Higher Education": 37700000,
- "Squire Patton Boggs": 701000000,
- "St. Josaphat Eparchy": 16600000,
- "Standard Textile Company": 119500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Steward Health Care": 5400000000,
- "Stine Seed": 1000000000,
- "Summit Management": 34000000,
- "Summit Partners": 71700000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Surface Combustion": 32500000,
- "Swift Transportation Company": 3400000000,
- "Swisslog": 646000000,
- "Sylvan Learning": 12600000,
+ "Small Businet": 31300000,
+ "Snooty Fox": 10600000,
+ "SofTrends": 31200000,
+ "Softchoice": 957500000,
+ "Softworks Inc.": 25800000,
+ "SolGreen\u00ae": 36300000,
+ "Sonit": 25600000,
+ "Sourceone Technology Solutions Inc.": 21300000,
+ "Spade Technology": 20900000,
+ "Spectrum Software Design Co.": 26600000,
+ "SpireTech": 13800000,
+ "SportSoft": 30800000,
+ "Star Seven Six": 10000000,
+ "SteepGraph": 35000000,
+ "Stevens Systems": 24800000,
+ "StoneDonut": 18900000,
+ "StreamLinx": 21200000,
+ "Sumtotal Systems LLC.": 120000000,
+ "SuperLumin": 11300000,
+ "Support Hero": 23400000,
+ "SurePoint": 18000000,
"Symbotic": 30000000,
- "Symrise": 4600000000,
+ "Synaptic Data": 15300000,
"Synnex": 57900000,
- "Synthomer": 3100000000,
- "THK": 2700000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telcel": 2000000000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "The Blue Book": 134600000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Progressive Corporation": 46000000000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
+ "Syntec LLC.": 21600000,
+ "TACTICAL TECHNOLOGIES": 36100000,
+ "TARGIT Brasil": 35000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TRG": 150000000,
+ "Taazaa": 16600000,
+ "Tap TMG": 36000000,
+ "TechRenew": 30100000,
+ "Technocraft Solutions": 25000000,
+ "Technology Software": 25200000,
+ "TechnologyPORT": 46400000,
+ "Tekro": 20300000,
+ "Tempus Resource by ProSymmetry": 29200000,
+ "Terradise": 27100000,
+ "The AME Group Louisville": 214000000,
+ "The Connell Group": 28700000,
+ "The Design Edge": 14500000,
+ "The Experience Channel": 10000000,
+ "The SMS Group": 10900000,
+ "The SpyGlass Group LLC.": 14100000,
+ "Think Ingenuity": 32100000,
"Thunderstone": 26700000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
+ "ToddSantoro": 16300000,
+ "Tony Neary Design": 30200000,
+ "Tornado Technologies": 19700000,
+ "Total Care Computer Consulting": 33400000,
+ "Touchstone Group": 30000000,
"Trace3 LLC.": 1400000000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
+ "Transmissions LLC.": 13000000,
+ "Transpere": 15900000,
+ "Trihedral Engineering": 6000000,
+ "Troy Sayers": 12000000,
"True Digital Security": 14000000,
- "Tuscarawas Valley": 31700000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UDF": 805600000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNIVERSAL MUSIC GROUP N.V.": 10000000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universities Space Research Association": 44200000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Velvet Ice Cream": 34800000,
- "Vera Bradley": 513100000,
- "Vesuvius France S.A.": 2200000000,
- "Viasat": 2800000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Virtusa": 1300000000,
- "Vocelli Pizza": 14000000,
- "Volkert": 124000000,
- "Von Roll UK Ltd.": 340700000,
- "Vontier": 3100000000,
- "Vorys Sater Seymour and Pease": 16400000,
- "Voya Financial": 6900000000,
- "W. W. Grainger": 15200000000,
- "WESCO International": 20700000000,
+ "TrueCommerce": 100000000,
+ "U-R-VALUED": 17500000,
+ "UTC RETAIL": 10000000,
+ "UnitCase": 41100000,
+ "Unlimited Systems": 47500000,
+ "Upic Solutions": 32500000,
+ "VENYU": 30000000,
+ "VPL": 20000000,
+ "VSITECH": 23400000,
+ "Vayu Inc.": 26000000,
+ "Vendor Elite": 10000000,
+ "Ventech Solutions": 143700000,
+ "Verbella": 22200000,
+ "Villa Beach Communications": 24800000,
+ "Virtual Boss": 10000000,
+ "Virtual Technologies Group": 46300000,
+ "Virtus Ventures": 11700000,
+ "Vortex Design": 70900000,
"WIDEPOINT CORPORATION": 13000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Wayne High School": 18200000,
- "West Carrollton High School": 11000000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Westfield Insurance": 2000000000,
- "WhatIfSports": 17500000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Winegardner and Hammons": 51200000,
- "Wje": 150000000,
+ "WRPN": 10500000,
+ "Web Force": 26400000,
+ "WebChisler Internet Services": 12400000,
+ "WebECS": 23400000,
+ "WebHostingSolutions": 16200000,
+ "WebReliance": 20200000,
+ "Website Design Columbus LLC.": 26600000,
+ "Websoft's": 12700000,
+ "Wengert": 19400000,
+ "Western Ohio Computer Org": 14500000,
+ "Western Reserve Systems Group LLC.": 12700000,
+ "WilData": 23500000,
+ "WineDirect": 70000000,
+ "Wire Pro Inc.": 10500000,
+ "Wiresoft": 24300000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yoh": 19000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziply Fiber.": 370000000,
- "Zynga": 2900000000
+ "WorkJam": 16800000,
+ "WyldeSide": 13400000,
+ "Xcase -": 37500000,
+ "Xtek Partners": 10000000,
+ "YDesign Inc.": 10700000,
+ "Yashco": 17000000,
+ "Z-Space": 29200000,
+ "ZenGenius": 15400000,
+ "Zimcom": 18500000,
+ "eTeklogics": 38000000,
+ "kc creations inc.": 21500000,
+ "megaHEIGHTS": 15200000,
+ "qManage": 21100000,
+ "vSync": 25000000
},
"Oklahoma": {
- "24 Hour Fitness": 1500000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "405 Center": 3500000,
+ "501 tech": 177000,
+ "A. Martin Design": 4300000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ASEA Brown Boveri": 28800000000,
- "ASPCA": 260200000,
- "Academy Sports Outdoors": 6600000000,
- "Academy of Achievement": 32800000,
- "Ace Hardware": 7800000000,
- "Ack-Mac": 30000000,
- "Acxiom": 1300000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Alamo Rent a Car": 2900000,
- "Allied Van Lines": 22000000,
- "Allison Transmission": 2700000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
- "Arvest Bank": 958800000,
- "Ashly Audio": 20000000,
- "Association of Christian Librarians": 4600000,
- "At Home store": 1700000000,
- "Atec": 1600000,
- "Atlanta Bread": 5200000,
- "Aviat Aircraft": 8000000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baja Fresh": 500000000,
- "BancFirst": 557400000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beltone": 61600000,
- "Big Whiskey's": 2000000,
- "Black Bear Diner": 18700000,
- "Black Rifle Coffee": 233100000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Boeing Store": 13900000,
+ "AERO Technology": 1400000,
+ "ARM Software": 8900000,
+ "AVI-SPL": 1300000000,
+ "Abacus Information Technologies": 2000000,
+ "Ace On Call": 13000000,
+ "Advanced Network Design": 1400000,
+ "Advanced Systems Group": 174000,
+ "Advanced Tech Enterprises": 2000000,
+ "Advanced Threat Analytics": 14000000,
+ "Alias Cyber Security": 3800000,
+ "AllegianceMD": 5000000,
+ "Alliance Network Solutions LLC.": 2400000,
+ "Alpine Domains": 18100000,
+ "American Computer Resources Inc.": 6200000,
+ "Amshot": 5200000,
+ "Anautics": 2000000,
+ "Anyware Mobile Solutions": 1900000,
+ "AppFutura": 1000000,
+ "ArcLight Group": 378000,
+ "Ardent MC": 23300000,
+ "AristoCAT": 10000000,
+ "Armada Solutions": 3000000,
+ "Armorlight": 472000,
+ "Arokia IT": 9900000,
+ "Asemio": 2800000,
+ "Avansic": 3800000,
+ "BCS ProSoft": 10000000,
+ "BDCI": 2400000,
+ "BOLD-Multimedia": 352000,
+ "BREEZE LEGAL SOLUTIONS": 1400000,
+ "Back40 Design": 3700000,
+ "BeGraphic": 1400000,
+ "Beanlaunch": 5600000,
+ "Beardon": 372000,
+ "Bee Culture": 5500000,
+ "Beyond Square One": 2800000,
+ "Bigfoot Creative": 2400000,
+ "BirdDog Software": 7000000,
+ "Bizbotweb": 248000,
+ "Black Label Technology": 34800000,
+ "Boldradius": 1200000,
"Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "Brain Injury Association of America": 10000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brixmor Property Group": 1200000000,
- "Broad Ripple High School": 1500000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Buckle": 1300000000,
- "Burckhardt Compression": 699500000,
- "Bureau Veritas": 5700000000,
- "Burton Snowboards": 400000000,
- "CHEF'STORE": 1100000000,
- "Cabot Corporation Foundation": 28000000,
- "Cadex Defence": 7700000,
- "Cal-Maine Foods": 3000000000,
- "Camfil": 863100000,
- "Camp Fire": 10000000,
- "Canoo Inc.": 2600000,
- "Canyon Ranch": 150000000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Cellular Sales": 1700000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christian Television Network": 12200000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "City of Weatherford": 201000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "Clean Juice": 7000000,
- "Clearwater Paper": 2000000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Comfort Dental": 17800000,
- "Community Coffee": 245000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Continental Resources": 9500000000,
- "Convatec": 1700000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Covanta": 1900000000,
- "Coveris": 982600000,
- "Cracker Barrel": 3300000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cushing Citizen": 30400000,
- "Cutco Corporation.": 200000000,
- "DAV": 3900000,
- "DJC Oregon": 10000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
+ "Bradford Marketing": 273000,
+ "Build It Digital": 5300000,
+ "Builder Bobs": 3000000,
+ "BuyBack Solutions": 4000000,
+ "Byers Creative": 3900000,
+ "C Solutions Inc.": 120000,
+ "C2 Tech Consulting": 13300000,
+ "CHS Technology": 3000000,
+ "CISO": 46500000,
+ "CM Solutions LLC.": 1300000,
+ "CMIT Solutions": 60000000,
+ "CMTI Corp": 2400000,
+ "COLAMCO": 35200000,
+ "CS3 Technology": 3100000,
+ "Cadd Force": 4400000,
+ "Cage": 2400000,
+ "Canto": 35000000,
+ "Cecilia Hansen": 9600000,
+ "Centella Consulting": 11900000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Chad Rogez Design": 1900000,
+ "Chan-Web Design": 11000000,
+ "ChatBeacon": 4200000,
+ "Cherokee Data Solutions": 6300000,
+ "Chiron Software": 22300000,
+ "Chorus Labs": 368000,
+ "Circle IT": 10000000,
+ "Clevyr": 3600000,
+ "Cloud Computing Technologies": 638000,
+ "Cloud Hybrid": 4200000,
+ "Cloudaction": 2200000,
+ "Code Authority Custom Software Development Tulsa": 3800000,
+ "Cognitive Information": 439000,
+ "Colored Bean": 4600000,
+ "CompNova": 5700000,
+ "Compu Touch": 2400000,
+ "Computer Software Solutions": 10000000,
+ "Conexient": 18400000,
+ "Consolidated Networks": 13000000,
+ "CoralGuy": 8900000,
+ "Corelogic | Mercury Network": 4500000,
+ "CosTrack": 43200000,
+ "CreativeFlave": 166000,
+ "CrossCom": 50000000,
+ "Crosscountry Kennels Llc.": 2500000,
+ "Crown Auto World Bristow Chrysler Jeep Dodge Ram": 23400000,
+ "Custom Software Lab": 1000000,
+ "CyberSecOp": 10000000,
+ "Cynergy Corporation": 1000000,
+ "D288 IT Solutions": 4300000,
+ "DATA3 Corporaiton": 7000000,
+ "DATUM DIGITAL": 373000,
+ "DCA Services": 7000000,
+ "DMC Services": 1400000,
+ "DSC Web Investments": 23500000,
+ "DSN Software": 39700000,
"DTN Ag.": 250000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dobbies Garden Centres": 184100000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "ETS": 1400000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enel": 118500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Finance & Commerce": 3700000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
+ "Dang-A- Dent": 15800000,
+ "DataCom Solutions Inc.": 9500000,
+ "Database Technology": 10000000,
+ "Davinci Network Services": 10000000,
+ "DecisionPoint Systems": 65900000,
+ "Dell EMC Puerto Rico": 102800000000,
+ "Design Limits 25": 5100000,
+ "Designtunnel": 7700000,
+ "Development Consultants Incorporated DCI": 7900000,
+ "Dhdesignz": 4600000,
+ "Digital DK": 3300000,
+ "Digital Forensics Team": 4100000,
+ "Digital Warehouse": 6400000,
+ "Diversified Computer Resources": 9200000,
+ "Diversified Systems Resources": 41000000,
+ "Dzindna": 1700000,
+ "E B Archbald & Associates": 2400000,
+ "EMSCO Solutions": 25000000,
+ "Eagle CMMS": 4600000,
+ "Eaglesun": 10000000,
+ "EasyWorship": 7000000,
+ "Ekcetera": 7600000,
+ "Electra Digital": 2000000,
+ "Electronic Assembly Corporation": 10000000,
+ "Eletelephant": 3300000,
+ "Elite Discovery": 25000000,
+ "Equicore": 2400000,
+ "Eslick Design": 1400000,
+ "Exaptive": 4100000,
+ "Experica": 34400000,
+ "FX Design Group": 13500000,
+ "Fdemo": 18000000,
+ "Fiber Mountain": 467000,
+ "FindMyHost": 1400000,
+ "Five Pack": 5600000,
+ "Flair Data Systems": 35000000,
+ "Flairdocs": 4200000,
+ "Flairsoft": 27700000,
+ "Floranext": 4400000,
"Formstack": 38000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freedom Oklahoma": 5400000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "G4S Global": 9400000000,
- "GardaWorld": 3800000000,
- "Globe Life Insurance": 5200000000,
- "Graebel": 1500000000,
- "Grand River Dam Authority": 415000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harkins": 13700000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Heritage Hall School": 1700000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "HuHot Mongolian Grill": 7000000,
- "IBC Bank": 556800000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "InTown Suites": 3400000,
- "Indian Affairs": 3700000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jerry's Artarama": 932000,
- "Jersey Jack Pinball": 4400000,
- "Jersey Mike's": 255400000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "Kaiser Permanente": 93100000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Inland Marine": 2800000000,
- "Kmart Corporation": 6000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "L.G. Balfour Company": 290000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LUFKIN": 1500000000,
- "La Madeleine": 35200000,
- "Leafbuyer": 4500000,
- "Learning Express Toys": 2500000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Lennys": 9000000,
+ "Freepik": 10300000,
+ "GeekStorage": 2600000,
+ "Geeks are Here": 19600000,
+ "Gladius Solutions": 1300000,
+ "Graphix Station": 15300000,
+ "Graybill Creative": 121000,
+ "Green Country Interactive": 1800000,
+ "HEBCO": 11100000,
+ "Hanebutt Technologies": 10000000,
+ "Hanna Yudzina": 3800000,
+ "Helios Electric": 1400000,
+ "Herolight": 12300000,
+ "High Point Networks": 25000000,
+ "HostBridge": 3000000,
+ "Hostek": 7500000,
+ "Humphrey Associates Inc.": 10000000,
+ "Hunt Web & Graphic Innovations": 989000,
+ "I.T. Guys": 8200000,
+ "IGTG": 1400000,
+ "ION Group": 825000000,
+ "Iconium Software": 3000000,
+ "IdeaStudio | Tulsa Logo Design Specialists": 1400000,
+ "Ideal Computer Solutions": 6400000,
+ "Ignited Media Design": 23500000,
+ "Industrial3D Inc | I3D": 5300000,
+ "Infax Website Build": 359000,
+ "Infinedi": 1100000,
+ "Ingenuite": 2000000,
+ "Integrated Axis Group": 6000000,
+ "Intelek Technologies": 4000000,
+ "InteliCAD": 50500000,
+ "InteliDOX": 2000000,
+ "Intelliquip": 10700000,
+ "InterWorks": 57300000,
+ "Intertribal Software": 3600000,
+ "Intromental": 2700000,
+ "Ionix": 3700000,
+ "JMeister Design": 16300000,
+ "Jackrabbit": 1700000,
+ "Jason Keisling": 2900000,
+ "Jeff Dufour - Artist Designer - Norman Oklahoma": 144000,
+ "Jenkin Design": 4800000,
+ "Jenzabar Inc.": 72000000,
+ "Jump Technology Services": 453000,
+ "JusticeTrax": 5000000,
+ "Kalibrate": 3100000,
+ "Kern Solutions": 2400000,
+ "KeyBridge Technologies": 14100000,
+ "Kid Computers": 140000,
+ "Kurtz Design & Sign Studio": 10500000,
+ "Kyle Wright Creative": 18800000,
+ "LUCID Digital Marketing Services": 2200000,
+ "Landboss": 2400000,
+ "LaserVault": 10000000,
+ "LetRok": 2300000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "Lufthansa Technik": 4600000000,
- "Lynden": 960000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "MSCI": 2200000000,
- "Main Event": 678000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Marlin Firearms Company": 42800000,
- "Materion Corporation": 1800000000,
- "Mazzio's": 6500000,
- "McAlester News-Capital": 12000000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Merit Energy": 9200000,
- "Metal Supermarkets": 26800000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Money Management": 30000000,
- "Motiva Enterprises": 20800000000,
- "Murphy USA": 22800000000,
- "Muskogee Phoenix": 7000000,
- "NCFCA": 9900000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "Native American Times": 5700000,
- "Newmark Group": 4400000,
- "NewsPress": 7000000,
- "NiSource": 5400000000,
- "Niagara Conservation": 2500000,
- "NuStar Energy": 3200000000,
- "Oerlikon": 3100000000,
- "Oklahoma Bar": 5100000,
- "Oklahoma Department of Commerce": 6200000,
- "Oklahoma Department of Wildlife Conservation": 4200000,
- "Oklahoma Turnpike Authority": 10000000,
- "Okmulgee Regional Airport": 46800000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Peace Frogs": 2400000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Philadelphia Church of God": 5800000,
- "Piaggio Aerospace": 8200000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Planned Parenthood": 1600000000,
- "PolyVision company": 19000000,
+ "Leverage Technologies and Systems": 6000000,
+ "LiBRARYSOFT": 2400000,
+ "LightWave 3D": 7500000,
+ "Lion And Lamb Enterprises": 32100000,
+ "Lisa McIlroy": 12700000,
+ "Livegenic": 15000000,
+ "Long Wave": 30000000,
+ "M Y Consulting Group": 2400000,
+ "MCSG Technologies": 15700000,
+ "MEDIA OUTBREAK": 826000,
+ "MacsWebs": 13000000,
+ "Made To Be Unique": 164000,
+ "Maestro Computer and Cable Services Inc.": 2000000,
+ "Mainspring": 2000000,
+ "Manufactured Homes": 5000000,
+ "Matcha Design": 3400000,
+ "Matrixforce": 3000000,
+ "MedExperts": 912000,
+ "Mentor Technologies - Technology Solutions": 549000,
+ "Mercantile Store": 12900000,
+ "Miovision": 35000000,
+ "Mira Sol Creative": 4300000,
+ "Miss Group": 74700000,
+ "Monscierge": 16000000,
+ "Moose Computing": 217000,
+ "My Creative Pixel": 534000,
+ "Myheartcreative": 3700000,
+ "NMGI": 20400000,
+ "Nebraska Networks": 29500000,
+ "NetPro IT": 27500000,
+ "Network Equipment": 1600000,
+ "Neubloc": 15000000,
+ "Nexport Solutions": 19600000,
+ "Next Level Security Systems": 6000000,
+ "Nextech Inc.": 2400000,
+ "Nomerel": 25000000,
+ "Norlem": 5000000,
+ "North Technologies": 20200000,
+ "Novsun | November Sundays Inc.": 1400000,
+ "NowMD": 865000,
+ "OCOSA": 5500000,
+ "OIPA": 10000000,
+ "OUTR": 6200000,
+ "Objectstream": 8900000,
+ "Oklahoma Technology Solutions": 6000000,
+ "Onexte": 6000000,
+ "OnviSource": 10000000,
+ "OpenFusion": 15600000,
+ "Openlink": 325000000,
+ "Optimatics": 22000000,
+ "Oseberg": 8300000,
+ "Osiris Software": 7000000,
+ "PCI Energy Solutions": 62500000,
+ "PHP Supplies": 10000000,
+ "PINNACLE BUSINESS SYSTEMS": 26000000,
+ "POINTBLUE Technology": 641000,
+ "Packard Design Co.": 4300000,
+ "Paragon Solutions": 4200000,
+ "Pardalis": 1400000,
+ "Peak Up Time": 17500000,
+ "People Technology & Processes": 50100000,
+ "Phase 2 Development LLC.": 4400000,
+ "Phillips 360": 1400000,
+ "PixelMongers": 4300000,
+ "Plurabella Pro Photography": 13000000,
+ "Positronix Technology": 2000000,
+ "Praecipio": 22000000,
+ "Preferred Office Technologies": 3500000,
+ "Premier Solutions Group": 11200000,
"Preservica": 13200000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quad Metalworks": 3100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "RadNet": 1400000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rejoice Christian School": 5900000,
- "Relax The Back": 11600000,
- "Renewable Energy Group": 2900000000,
- "RentHop": 1000000,
- "Robeez": 6400000,
- "Rock & Brews": 33300000,
- "Rodgers Instruments Corporation": 6400000,
- "Rolls-Royce": 15300000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sarku Japan": 310000,
- "Schlumberger Limited": 27800000000,
+ "Presidio": 4400000,
+ "Processware Systems": 35000000,
+ "Production Essentials": 1400000,
+ "Productive Technologies": 12000000,
+ "Project Seven Networks": 3700000,
+ "QingCloud": 18000000,
+ "QualityLogic": 13900000,
+ "Quantus IT Solutions": 393000,
+ "QuintEssential Consulting Group": 1400000,
+ "Quo Vadimus Technologies": 1400000,
+ "R7 Solutions": 4800000,
+ "Raccoon Technologies": 8300000,
+ "Rack59": 1400000,
+ "Rattan Consulting": 7000000,
+ "Razor-Tek": 9800000,
+ "ReTenant": 10000000,
+ "Rebirth Entertainment": 9800000,
+ "Redbud Technical Consulting": 7200000,
+ "Reflections Global": 2000000,
+ "Remcon Studios": 11800000,
+ "RepairQ": 2300000,
+ "Resource Associates of Nevada Inc.": 13100000,
+ "Revere Software": 3600000,
+ "Rick Mobley": 1700000,
+ "Rivalhost": 6000000,
+ "Rome Technologies Inc.": 19400000,
+ "S3CCON": 6500000,
+ "SEQTEK": 9000000,
+ "SGA Software": 31200000,
+ "SOFTECHINFO": 29200000,
+ "SPC for Excel": 2400000,
+ "SPRINGDECK": 6200000,
+ "Sahoma Controlware": 4300000,
+ "Saltus Technologies": 17200000,
+ "Sandy Beaches Software": 7000000,
"Scientific Computer Applications": 22700000,
+ "Scott Warren": 6100000,
"Seagate Technology": 9400000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sharp HealthCare": 3800000000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Simplot": 6000000000,
- "Skulls Unlimited": 3000000,
- "Sleep Number": 2100000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Sodexo": 22300000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southern Hills": 10000000,
- "Southwest": 22700000000,
- "Sprinkles Cupcakes": 15800000,
- "St. Louis Music": 6600000,
- "Stanley Steemer": 9500000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stericycle": 3600000000,
- "Stripes Stores": 750000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulphur Times": 10000000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "TBN": 3200000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Bueno Restaurants L.P.": 187000000,
- "Tandy Leather Factory": 81600000,
- "Technology Student Association TSA": 10000000,
- "Telluride Regional Airport": 21200000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "Things Remembered": 300000000,
- "Tired Hands": 7000000,
+ "Secure Agent Software": 10000000,
+ "See Horse Design": 21000000,
+ "SeeMe Digital": 21300000,
+ "Seed Technologies": 6000000,
+ "Selectron": 10000000,
+ "Sentia Systems": 10100000,
+ "Sequoyah Software": 10000000,
+ "Serendipity Prom": 4200000,
+ "Service Express": 130000000,
+ "Shannies Art": 1400000,
+ "Share Data": 29300000,
+ "SilverTree Technology": 4600000,
+ "Sisu Group": 7000000,
+ "SitePro Inc.": 6500000,
+ "Skyline IT Management": 7300000,
+ "Skyline Ink": 5600000,
+ "Skynet Solutions": 6000000,
+ "Smart Image Systems": 6000000,
+ "Softwired": 23500000,
+ "South Central Comprehensive Center": 9800000,
+ "Spatial Front": 18400000,
+ "Spherexx": 2500000,
+ "Splendio": 3800000,
+ "Stablehosts": 3500000,
+ "Stallion is": 1500000000,
+ "Stevens Screen Printing": 22600000,
+ "Store Locator Widgets": 2400000,
+ "Stronghold Data": 24800000,
+ "Stryker Web Design": 7400000,
+ "Studio FJ": 1400000,
+ "Suryl": 2300000,
+ "Sutherland Global Services": 4800000,
+ "SydanTech": 4300000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TURN-KEY it": 1400000,
+ "Tabs3": 12200000,
+ "TeamLogic Inc.": 7200000,
+ "Technology Plus": 15200000,
+ "The 20 MSP": 3300000,
+ "The Math Gym": 1400000,
+ "Thentia": 6200000,
+ "ThriveFast": 1400000,
+ "Tier3MD": 5000000,
+ "TierPoint": 405000000,
+ "Titans of Tulsa": 2400000,
+ "Toad Code": 13700000,
"TokenEx Inc.": 10000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trican Well Service Ltd.": 541000000,
- "Trinity Lutheran College": 18400000,
+ "TouchStar DEV": 218000,
+ "Trace Technologies": 7000000,
+ "Traditions Spirits": 9900000,
"True Digital Security": 14000000,
- "Tuff Shed Incorporated": 300000000,
- "Tulsa World": 41000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
+ "Trwcreditgroup": 1400000,
+ "TulsaConnect": 4200000,
+ "TurboWebs": 6700000,
+ "U-Thrive Marketing": 4600000,
+ "U.S. Sign & Screen Printing LLC.": 25900000,
+ "UDT": 85000000,
"US Fleet Tracking": 11000000,
- "US Vision": 300000000,
- "USA Track & Field": 9000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "University of Oklahoma": 24900000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vector Foiltec": 24100000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vestas": 15500000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Victory Christian School": 3800000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Volkert": 124000000,
- "W. W. Grainger": 15200000000,
- "WEHCO Media": 380000000,
- "WESCO International": 20700000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Warwick Investment Group": 11500000,
- "Weatherford Daily News": 5600000,
- "Western Farmers Electric Cooperative": 10000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "Will Rogers High School": 5200000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
- "WinCo Foods": 7700000000,
- "Winchell's Donut House": 16900000,
+ "Uilabs": 3500000,
+ "Unbreak IT": 76000,
+ "Unibera-Soft": 22400000,
+ "Urvam": 100000,
+ "UserDeck": 143000,
+ "VITEC": 10600000,
+ "VTECH SOLUTION": 10200000,
+ "Valdez International": 40700000,
+ "Veridic Solutions": 2400000,
+ "Verinovum": 5000000,
+ "Verit Labs": 2600000,
+ "Versatile Networks": 319000,
+ "ViperWeb Consulting": 2000000,
+ "Vista Com": 2600000,
+ "Vitech Systems Group": 180000000,
+ "W Energy Software": 8000000,
+ "Waterfield Tech": 3500000,
+ "WebGuy": 20100000,
+ "Webinlook": 22700000,
+ "WebsiteCenter": 60500000,
+ "Whitley Pollet": 35200000,
+ "Willow Bend Design": 650000,
+ "Wilson Public Library": 34100000,
+ "Winston Media": 1400000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Yellow Pages Directory": 15100000,
- "Zenair": 17900000,
- "Zumiez": 1100000000
+ "WordKeeper": 456000,
+ "XTICorp": 4200000,
+ "Xtreme Grace": 30100000,
+ "Xyant Services": 10000000,
+ "Yardbook": 21500000,
+ "Zackography": 3600000,
+ "Zealcon": 6000000,
+ "ZipServers": 651000,
+ "cxLoyalty": 21000000,
+ "iCAT Solutions Inc.": 3900000,
+ "iHOUSEweb": 334000,
+ "iThemes": 7000000,
+ "kwallace LLC.": 6200000,
+ "nEo Stream Services": 769000,
+ "neXrm Solutions": 2400000
},
"Oregon": {
- "24 Hour Fitness": 1500000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
+ "1547 Critical Systems Realty": 10000000,
+ "3rd Studio": 17500000,
+ "A & J Archery": 22800000,
+ "ACW Solutions": 20800000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AL MAR Knives": 2000000,
- "AMC Theatres": 3900000000,
- "ASCM": 26900000,
- "AVEVA": 1600000000,
- "Abcam": 425500000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Adventist Health": 4700000000,
- "AeroVironment": 264900000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Alamo Rent a Car": 2900000,
- "Allagash": 27000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alpine Electronics": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American President Lines": 1300000000,
- "American Society of Landscape Architects": 6700000,
- "American Tinnitus": 4200000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andes Technology": 29300000,
- "Andrew Christian": 8000000,
- "Apartment List": 37300000,
- "Aperture": 11800000,
- "Applied Materials": 25200000000,
- "ArticlesBase": 1000000,
- "Ashland Inc.": 2400000000,
- "Association of Welcoming and Affirming Baptists": 6700000,
+ "AH HA Creative": 19200000,
+ "AIM IT Services": 14300000,
+ "ANIMAL RESCUE ASSOCIATION OF AMERICA": 6700000,
+ "AViCAD": 9000000,
+ "AZAD Technology Partners": 32300000,
+ "AZZCAT DESIGN LLC.": 1100000,
+ "Accero": 35000000,
+ "Accorto": 25200000,
+ "Acorn Host": 13500000,
+ "Adaptavant": 10000000,
+ "Adaptive Integration": 37400000,
+ "Advantage IT": 61900000,
+ "Advantage Route": 30000000,
+ "Advantage Web Solution": 18400000,
+ "AdventEMO": 1000000,
+ "AggFlow": 31800000,
+ "Ahana": 3000000,
+ "Allegro Design": 10000000,
+ "Alpine Internet": 10000000,
+ "Altbricks": 10900000,
+ "Anitian": 22000000,
+ "Annabel Keijzer": 28500000,
+ "Aplonis": 22900000,
+ "Apptoto": 12000000,
+ "Aptus Hosting": 10000000,
+ "Ariste Software": 1400000,
+ "AristoCAT": 10000000,
+ "ArtiMinds": 15000000,
+ "Artwerks": 18100000,
+ "Ascend Software": 41700000,
+ "AspDotNetStorefront": 14600000,
+ "AssetWorks": 25000000,
+ "Assisi Software": 5500000,
"Asure Software": 76600000,
- "Australian Laboratory Services": 6600000000,
- "Autocall": 6000000,
- "Avery Weigh-Tronix Ltd. Avery Weigh-Tronix LLC.": 51800000,
- "Avia": 5700000,
- "Aviat Aircraft": 8000000,
+ "Attila-tek": 12600000,
+ "AudioEye Inc.": 28700000,
+ "Avatron": 22200000,
+ "Aviture": 38300000,
+ "Avocor": 11800000,
"Axium": 15700000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BLC Bank": 8000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Banfield": 774400000,
- "Banque Libano-Fran\u00e7aise S.A.L.": 26300000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Ben & Jerry": 863100000,
- "Beneficial State Bank": 42900000,
- "Beyond Words Publishing": 6000000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Blackstone Publishing": 10000000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Bob's Red Mill": 120000000,
- "Bonchon": 60000000,
- "Booster Juice": 8300000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brammo": 47500000,
- "Breedlove": 3500000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brookdale": 2700000000,
+ "BCT Consulting": 13100000,
+ "BS&A Software": 35000000,
+ "Baytek": 40300000,
+ "Bend Counseling & Biofeedback - Bend Oregon": 23300000,
+ "Bend Internet Solutions": 30500000,
+ "Bend Pro Web": 17000000,
+ "Bethlayne Media": 17300000,
+ "Bird Dog Creative": 3600000,
+ "BitAnimate": 12400000,
+ "BitWagon": 10000000,
+ "BlackPoint IT": 15700000,
+ "Block 81": 3700000,
+ "BlueChannel": 10000000,
+ "BlueVolt": 4800000,
+ "Boyum IT Solutions": 22700000,
+ "Bridge Data Solutions": 27000000,
+ "Bridgetheory": 13600000,
+ "Broadcast Software International": 20000000,
+ "Brown String": 1400000,
"Bubble": 7000000,
- "Buckle": 1300000000,
- "Bullseye glass": 16900000,
- "Burton Snowboards": 400000000,
- "CASH Music": 1000000,
- "CCT Rail System": 28300000,
+ "BuildingPoint Pacific": 7000000,
+ "Bytes": 6700000,
"CDW": 23800000000,
- "CHEF'STORE": 1100000000,
- "CRA Racing": 14400000,
- "CSE Insurance Group": 45000000,
+ "CHR Creative": 7000000,
+ "CHR Solutions": 70000000,
+ "CJGraphix": 11000000,
+ "CMI Software": 23500000,
+ "CMIT Solutions": 60000000,
+ "COLAMCO": 35200000,
+ "CTCI": 1000000,
"CTL Corporation": 50200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Calgon Carbon": 750000000,
- "Cambia Health": 9500000000,
- "Camp Fire": 10000000,
- "Car Toys": 12800000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Chictopia": 3300000,
- "Christian Association for Psychological Studies": 19200000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City of Portland Bureau of Transportation": 6700000,
- "Citybikes": 4200000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Clean Water Services": 3000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Clintons": 35600000,
- "CloudKitchens": 3000000,
- "Coast To Coast Tickets": 4300000,
- "Coava Coffee Roasters": 9000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Christian": 10000000,
- "Columbia Forest Products": 500000000,
- "Condor": 10000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corporation Sealy": 1300000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "DJC Oregon": 10000000,
- "Daily Tidings": 4900000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Defenders of Wildlife": 8400000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Department of Energy": 190000000,
+ "Call the Ninja": 4600000,
+ "Candid Wholesale": 1000000,
+ "Canopy Software": 12200000,
+ "Car Shopping Tips": 26600000,
+ "Careeradex": 1300000,
+ "CarterWorks": 24500000,
+ "Cdivia": 10000000,
+ "Cedexis Ltd.": 6300000,
+ "Centella Consulting": 11900000,
+ "CenterSpace Software LLC.": 238000,
+ "CenterSpan": 2400000,
+ "Centizen": 10000000,
+ "CerCis Consulting": 10000000,
+ "Cerium Networks": 32500000,
+ "Chris Miller Design": 5600000,
+ "Chris mole design": 53300000,
+ "Cinco Design": 35000000,
+ "Cindy Edwards": 2000000,
+ "ClassGather": 10800000,
+ "Clearform LLC.": 7000000,
+ "Cloud Academy": 12100000,
+ "CloudEngage": 2000000,
+ "Code Benders": 1400000,
+ "Colin Mitchel": 12500000,
+ "Colin's Workshop": 36100000,
+ "Colorcubic": 1400000,
+ "Columbiasoft\u200e": 11200000,
+ "Command Prompt": 7000000,
+ "Community Data Link": 5300000,
+ "Compli": 20000000,
+ "CompuNet Inc.": 146600000,
+ "Computer Support Portland": 2700000,
+ "Connect 360": 1400000,
+ "Connex Software": 25400000,
+ "ControlMap": 4900000,
+ "ConvergeOne": 1600000000,
+ "Cornerstone Graphic Design & Marketing": 16200000,
+ "Crave Design": 3600000,
+ "Crippen Design": 22300000,
+ "CrossControl": 10000000,
+ "Crowd.dev": 1000000,
+ "Cursor Control": 1000000,
+ "CyberSecOp": 10000000,
+ "DIGI Studios": 10800000,
+ "DMA CORPORATION LLC.": 41000000,
+ "DMTF": 10000000,
+ "DP Facilities": 16000000,
+ "DREW MAKS": 10000000,
+ "Dasher": 200000000,
+ "Data Recovery Labs": 12900000,
+ "DataFly": 2400000,
+ "Davinci Digital": 10000000,
+ "DeepSurface": 2000000,
+ "DejaOffice": 10000000,
+ "Denali Advanced Integration": 75000000,
+ "Desert Oasis Svc Ctr": 21000000,
+ "DesignPoint Inc.": 10000000,
+ "Deus Machine": 5500000,
+ "DevWells Art": 25500000,
+ "Develop Easy": 17000000,
+ "Dexter Network": 1400000,
+ "Digital Concepts": 21300000,
+ "Digital Fortress": 6000000,
"Digital Realty": 4700000000,
- "Digital Trends": 60000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Dirtnap Records": 3900000,
- "Discogs": 9000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Eagle Newspapers": 34000000,
- "EatStreet": 25000000,
- "Edelman Financial Engines": 80000000,
- "Edwards Vacuum": 889800000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elite Airways": 3000000,
- "Enterprise Car Sales": 40000000,
- "Epitaph": 6000000,
- "Ethan Allen": 845000000,
- "Evo company": 140000000,
- "Exxentric": 1400000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "FlixBus": 450000000,
- "Flora Plant": 2500000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freightliner": 150000000,
- "Friends General Conference": 4500000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fund for Wild Nature": 21800000,
- "Future Sonics": 4800000,
- "G&L Guitars": 8000000,
- "GMC": 1000000000,
- "GNACSports": 1800000,
- "Gaffney Cline": 17500000,
- "GardaWorld": 3800000000,
+ "Diversified": 458900000,
+ "Division Six": 20900000,
+ "DocLogic": 1400000,
+ "Draplin": 7000000,
+ "Durametric": 25600000,
+ "Duro Compagnie": 1400000,
+ "E-String": 18300000,
+ "EATIN' ALIVE LLC.": 5500000,
+ "ECMI": 20000000,
+ "EPAC Software Technology": 30000000,
+ "ERGOS": 10000000,
+ "Echo-X": 33800000,
+ "Eclypsium": 10000000,
+ "Ecteon": 16700000,
+ "Edge Networks": 15000000,
+ "Ednetics": 65000000,
+ "Effectual": 50000000,
+ "Elpis2": 23000000,
+ "Elyse Myers Design": 5900000,
+ "Enscape": 1200000,
+ "Environmental and Engineering Services Inc.": 10000000,
+ "Epkes": 5700000,
+ "Executech": 14800000,
+ "Extension Media": 30000000,
+ "FIDELIS COMMUNICATIONS INC.": 11900000,
+ "FUNNEL INC.": 10000000,
+ "FX Design Group": 13500000,
+ "Facteus": 3000000,
+ "Faction Inc.": 21800000,
+ "Falcon Development": 11800000,
+ "Farquhar Tech": 25600000,
+ "Farquhar Tech Design & Service": 14600000,
+ "Fieldtrip Design": 1300000,
+ "Fixed Fee IT": 10000000,
+ "Flairsoft": 27700000,
+ "Flint Design": 10100000,
+ "Flowline": 4900000,
+ "Fox & Crown Creative": 16700000,
+ "Full Circle Creamery": 33200000,
+ "Future State Consulting": 13000000,
+ "GDB Software": 20000000,
+ "GL Solutions": 25000000,
+ "GTS Services": 30600000,
+ "Galois": 10000000,
"Gather metaverse platform": 1000000,
- "Generac Power Systems": 4600000000,
- "Glu Mobile": 540500000,
- "GoAntiques": 5900000,
- "Goodman Global Group Inc.": 1900000000,
- "Grand Central Baking Company": 20700000,
- "Grass Valley": 426200000,
- "GreenPal": 1200000,
- "Greenberg Traurig": 2000000000,
- "Greenpeace International": 400000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "HELM Boots": 7000000,
- "HSS Hire": 7000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hawthorne Books": 17200000,
- "Hawthorne Hotel": 4700000,
- "Hazelden Betty Ford": 186300000,
- "Hemlock Society": 10000000,
- "Hillsboro Airport": 10000000,
- "Hippo Hardware": 19400000,
- "Hobby Lobby": 5300000000,
- "Hoffman Construction": 1400000000,
- "Home Forward": 4900000,
- "Hood River Distillers": 9000000,
- "Houzz": 500000000,
- "Hydro": 21600000000,
- "Hyster-Yale": 3200000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
+ "Geekoids": 4400000,
+ "Generic Network Systems": 49800000,
+ "Germinate Creative": 28600000,
+ "Gillustrated Airbrush Studio": 43400000,
+ "Golden Xpress Labradoodles": 22300000,
+ "GovPilot": 36000000,
+ "Greater Giving": 15000000,
+ "Grid Dynamics": 243600000,
+ "Griffo Brothers": 10000000,
+ "GuestVision": 14900000,
+ "Gurobi": 100000000,
+ "HB Design Inc.": 10000000,
+ "HUE 13": 1300000,
+ "Handheld": 21100000,
+ "Hanna Boone": 11100000,
+ "Hawk Ridge Systems": 53500000,
+ "HawkSoft": 23000000,
+ "Higher Logic": 59600000,
+ "Hotel Software Systems Ltd.": 26700000,
+ "Htmlthis": 8200000,
+ "I am Ali Design": 10000000,
+ "IDATEMEDIA": 1400000,
+ "IDEX Solutions": 25000000,
+ "IDX A ZeroFox Company": 20400000,
+ "IEQ Technology": 12600000,
+ "IGNW": 18200000,
+ "IGRAFX": 14100000,
"IM CREATOR": 1000000,
- "INFICON": 8000000,
- "ION": 19100000,
- "InFocus": 219800000,
+ "IOvations": 20200000,
+ "ISOutsource": 12000000,
+ "ISSQUARED": 20000000,
+ "IT Assurance - Business IT Support": 21900000,
+ "IVOXY": 23500000,
+ "Iconic Details": 11100000,
+ "Ideal Computer Solutions": 6400000,
+ "Illusio": 2400000,
+ "Imanta Designs": 23900000,
+ "In Time Tec": 12000000,
+ "Informs": 510000000,
+ "Innovaya": 7000000,
+ "Innovyze": 31000000,
+ "Insight Replay": 1000000,
"Insightsoftware": 350000000,
- "Interfor": 354900000,
- "Iron Mountain Incorporated": 5000000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "John L. Scott": 800000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KIXEYE": 60000000,
- "Kaiser Permanente": 93100000000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kill Rock Stars": 18800000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "KitBash3D": 2000000,
- "Knightsbridge FX": 14800000,
- "Krispy Krunchy Chicken": 3400000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Grande High School": 36600000,
- "Landmark Worldwide": 29100000,
- "Lattice Semiconductor": 585600000,
- "Laughing Planet": 10000000,
- "LeTip International": 12700000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "IntelliCAD": 10000000,
+ "Intellutions": 2400000,
+ "InterWest IT": 1900000,
+ "InterWorks": 57300000,
+ "Intersoft Systems": 12000000,
+ "Intuitive": 35000000,
+ "Iverson Design & Marketing": 32100000,
+ "JDM Technology Group": 25000000,
+ "JVM Design JV Media Design": 17200000,
+ "Jada Management": 13800000,
+ "Jama Software": 50000000,
+ "Just Visualize": 3600000,
+ "KAMIND": 10000000,
+ "KD Web Hosting Design": 3100000,
+ "KETIV": 26000000,
+ "KLANGWELT": 14000000,
+ "Karyon Global": 7000000,
+ "Kay Kay Technologies": 13800000,
+ "Kimerasystems": 13200000,
+ "Kin Carta": 80000000,
+ "Kismet Design": 39700000,
+ "Klamath Falls Gems": 5700000,
+ "Kraft Kitty": 10500000,
+ "Launchside": 10000000,
+ "Lead IT Consulting": 6600000,
+ "Learning Services": 10000000,
+ "LegitScript": 35000000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
+ "Level Four Development": 4300000,
"Lexcycle": 2400000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LivaNova": 1000000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lynden": 960000000,
- "M.C. Dean": 1000000000,
- "MFG Inc.": 30000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Macerich": 642300000,
- "Madison Reed": 100000000,
- "Maine Eastern Railroad": 6000000,
- "Marcus & Millichap": 1500000000,
- "Market of Choice Inc.": 300000000,
- "Marlin Firearms Company": 42800000,
- "Marlow Industries": 1500000000,
- "Matson": 4300000000,
+ "LifeAt": 2400000,
+ "Lifeline Computer Solutions": 22000000,
+ "Limestone Networks": 8200000,
+ "Linda Cahan": 9600000,
+ "Logosu": 27500000,
+ "Lucid Meetings": 3200000,
+ "Lucky Sort": 1400000,
+ "Lytics": 10000000,
+ "MPSS INC.": 10000000,
+ "MPulse Software": 6000000,
+ "MadiRuss Creative Services": 10600000,
+ "Madison Ave. Collective": 22300000,
+ "ManageForce": 12000000,
+ "Matt Clifford Designs": 4400000,
+ "Max Dedicated": 16500000,
+ "MayTech AV": 42000000,
"McAfee": 2200000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Meta Filter": 2400000,
- "Metal Supermarkets": 26800000,
- "Metropolitan Service District": 1500000,
- "Microsemi": 1700000000,
- "MidAmerican Energy": 66000000,
- "Milliman": 1200000000,
- "Modere": 4900000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Mountain Mike's Pizza": 68000000,
- "Moyes Delta Gliders": 2100000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NBC Sports": 120000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "NOVESKE": 4600000,
- "National Celiac Association": 3700000,
- "National Model Railroad": 5300000,
- "Nau": 2400000,
- "Neah-Kah-Nie School District": 18300000,
+ "Mcledsoft": 6000000,
+ "MemoryORG": 5500000,
+ "Meriplex": 20000000,
+ "MicroGoV": 1400000,
+ "Mimic Data": 7000000,
+ "Mind to Sight": 23600000,
+ "Miovision": 35000000,
+ "Mona Daly": 11400000,
+ "Monsoon Marketplace": 10000000,
+ "Morpheus Technology Group": 10000000,
+ "Motive Retail": 22800000,
+ "N2N Integrations": 2000000,
+ "NAVIS CRM": 30000000,
+ "NET'N COM": 11900000,
+ "NIC Tech": 2100000,
+ "Nanolab Technologies": 10000000,
+ "NaviSource": 21000000,
"Nemo Design": 9000000,
- "Nikon": 4900000000,
- "Ninkasi Brewing": 12000000,
- "Nordic Semiconductor": 756600000,
- "North Clackamas Christian School": 10000000,
- "North Sails": 27500000,
- "Northwest Bank": 510300000,
- "Nosler": 15000000,
- "NuStar Energy": 3200000000,
- "ON Semi": 8300000000,
- "Oceana": 10000000,
- "Ollie's Bargain Outlet": 1700000000,
- "Olympia Provisions": 2500000,
- "OneMain Financial": 4100000000,
- "Open Alliance": 10000000,
- "Open Sesame": 26000000,
- "Orange Amps": 4200000,
- "Orbital UAV": 14400000,
- "Oregon forests": 9600000,
- "Orenco": 78000000,
- "Orkin": 1000000000,
- "Orrick": 975000000,
- "Otter Co-op": 42700000,
- "Outback Steakhouse": 2000000000,
- "Outside In": 10000000,
- "PECI": 34900000,
- "PEMCO": 500000000,
- "PGROUPD": 15000000,
- "PTV AG": 132700000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific High School": 15000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Palisades Hudson": 2300000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "PeekYou": 6000000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Perka": 2000000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
+ "NetRaising": 10000000,
+ "NetSPI": 50000000,
+ "Network One": 6000000,
+ "Netx Europe eG.": 24300000,
+ "New Net Technologies": 10000000,
+ "Newport Internet": 23700000,
+ "Nfina": 15300000,
+ "Niftywerks": 17500000,
+ "Nine Planets LLC.": 10000000,
+ "Noble Hour": 35500000,
+ "North Portland Yoga": 4800000,
+ "Northwest Analytics": 14500000,
+ "Northwest Elite": 2100000,
+ "Northwest Software": 19500000,
+ "Northwest Technologies Group": 17100000,
+ "Novitas Data": 35000000,
+ "Nu Tech": 12200000,
+ "ON1": 10300000,
+ "OPTION-G": 11400000,
+ "ORCAS": 15000000,
+ "Obsidian Fields": 16300000,
+ "Omilia": 7000000,
+ "On Line Support": 17100000,
+ "OnLine ToolWorks": 10000000,
+ "OnTimeRx": 14900000,
+ "OnceHub - Meeting Journey Builder": 22000000,
+ "Open Dental": 15000000,
+ "OpenMP": 10000000,
+ "OpenSFS": 10000000,
+ "Optibus'": 2000000,
+ "Optimi": 27200000,
+ "Opus Interactive": 6700000,
+ "Orbiter Inc.": 21300000,
+ "Outdoor Visions": 5400000,
+ "Overland Agency": 10000000,
+ "Owen Design": 53700000,
+ "PAR Government": 14000000,
+ "PJ Portlock": 51100000,
+ "PLUS QA": 5500000,
+ "Pacific Intermedia": 10000000,
+ "Pappa Shop": 27400000,
+ "ParaTools": 2400000,
+ "Patrick Dillon Design": 25300000,
+ "People People Formerly DEI Creative": 37900000,
+ "Persistent Assistant": 32600000,
+ "Pfcs": 38300000,
+ "Phoenix Information Systems": 26800000,
"Phoenix Technologies": 16000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pipeworks Studios": 14800000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "Polk County Itemizer-Observer": 10000000,
- "Port of Hood River": 10000000,
- "Port of Morrow": 10000000,
- "Portland Christian Junior Senior High School": 4000000,
- "Post Carbon": 2800000,
- "Prairie Farms": 3100000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
+ "Photon. Net": 48400000,
+ "Pixel Paddock LLC.": 10000000,
+ "PlanNext": 10000000,
+ "Poppie Design": 3000000,
+ "Portland Managed Services": 10000000,
+ "Portline": 23000000,
+ "Potassium Design": 18400000,
+ "Praecipio": 22000000,
+ "Pranamedia": 39500000,
+ "Pre1 Software": 10000000,
+ "Printavo": 4400000,
"Procore": 664300000,
- "Propane Education & Research Council": 10000000,
+ "Projectus": 3300000,
+ "Prophix": 50000000,
"Publicis Sapient": 2700000000,
- "Qorvo": 1200000000,
+ "Punch List": 1000000,
+ "Pure Blue": 2200000,
"QuickSchools": 9900000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "REV Group": 2300000000,
- "RWDI": 26900000,
- "Rayonier": 1100000000,
- "Razorfish LLC.": 403900000,
+ "RELIANCE NETWORK LLC.": 10000000,
+ "RFSTech": 29000000,
+ "RGB Design Studio": 22700000,
+ "Rapid External Solutions": 32900000,
+ "ReactJS": 1000000,
"Read the Docs": 10000000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "RedMonk": 42900000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Renkus-Heinz": 6900000,
- "RentHop": 1000000,
- "Rentrak": 115700000,
- "Revant Optics": 7000000,
- "Rexair": 35000000,
- "Rise Records": 11500000,
- "Roche Bobois": 8300000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Roehl Transport": 421300000,
- "Rohde & Schwarz": 2600000000,
- "Rotel": 38800000,
- "Royal Philatelic Society of Canada": 8600000,
- "Ruth's Chris": 350200000,
+ "Red Devil Computers": 25500000,
+ "Red River Press Inc.": 29900000,
+ "Rent Manager": 40900000,
+ "Resource Data": 32000000,
+ "Resource One": 3500000,
+ "RethinkingWeb": 12900000,
+ "Rhino Web Studios Of New Orleans": 1400000,
+ "Rigado": 12800000,
+ "Right! Systems": 80000000,
+ "Ringgold Inc.": 6000000,
+ "Rize Design": 2400000,
+ "Robert R Sanders": 32300000,
+ "Rogue Web Works": 10000000,
+ "Rome Technologies Inc.": 19400000,
+ "Routeware": 10000000,
+ "Ruby language": 10000000,
+ "RunBrynn": 45500000,
+ "Runbiz Industry Company Limited": 37000000,
+ "S3Edge": 10000000,
"SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SRG Partnership": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SBI Software": 18000000,
+ "SEO Consulting Expert": 6000000,
+ "SGS Brightsight": 23300000,
+ "SVI America": 22900000,
+ "SYSTEMA Automation Singapore Pte. Ltd.": 22800000,
+ "SaagerVision": 16200000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Samaritan Health Services": 500000000,
- "San Antonio Shoemakers": 4700000,
- "Schmidt's Naturals": 5000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "ShadowMachine": 2500000,
- "ShadowTV": 3200000,
- "Shane Co.": 30800000,
- "Shari's": 240000000,
- "Shwood Eyewear": 6000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Smart Growth America": 10000000,
- "Snyder's-Lance": 8600000000,
- "Solectrac": 2500000,
- "Soma Games": 6000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprudge": 6900000,
- "St. Joseph Academy": 3200000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stash Tea Company": 10000000,
- "Steak Escape": 18500000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stimson Lumber": 380000000,
- "Storables": 3700000,
- "Student Transportation of America": 637200000,
- "Stumptown Coffee Roasters": 40000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Swbc Professional Employer Services I Llc.": 356800000,
- "Swift Transportation Company": 3400000000,
- "Swinerton": 4600000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TMT Development": 4200000,
- "TOPS Club": 19600000,
- "TRUMPF": 10200000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "TeamUnify": 1700000,
- "Technology Student Association TSA": 10000000,
- "Tender Loving Empire": 4900000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Conservation Fund": 3900000,
- "The Dyrt": 4000000,
- "The Fruit": 10000000,
- "The Green Grid": 4900000,
- "The Humane Society of the United States": 30700000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Register-Guard": 10000000,
- "The Scoular Company": 4000000000,
- "Tiffany's": 4400000000,
- "Tillamook County Creamery Association": 800000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "Saltire": 2400000,
+ "Sam Is IT": 18300000,
+ "Saveda Web Strategies": 29600000,
+ "ScannerPal": 10000000,
+ "Schedulicity": 10000000,
+ "Scott Larsen": 29900000,
+ "SecurTech": 10000000,
+ "Secure Code Warrior": 27200000,
+ "Selectron": 10000000,
+ "SellerActive": 6500000,
+ "Semicolon LCC": 25900000,
+ "Seraphic Design Inc.": 50200000,
+ "ServerLogic": 18500000,
+ "Sharefaith": 10000000,
+ "SheerID": 40000000,
+ "ShiftWise": 3700000,
+ "Showpad": 52500000,
+ "Sibers Group Ltd.": 35000000,
+ "SideResult Software": 5500000,
+ "SightWorks": 2000000,
+ "SignaCert": 5400000,
+ "Silver Rockets Web & Graphic Design": 5500000,
+ "Silverpine": 3400000,
+ "SimpleMDM": 2500000,
+ "Simplistik": 1200000,
+ "Siri InfoSolutions": 17500000,
+ "SiteGround Blog": 16200000,
+ "Sitecore": 90000000,
+ "Six red": 35600000,
+ "Sky Scientific": 43700000,
+ "Skyhigh Security": 75000000,
+ "SlideShop Marketplace Corp.": 61500000,
+ "Smart Site Design": 12800000,
+ "Sniff Design": 4500000,
+ "Snow Diamond Alpacas": 37300000,
+ "Software Technology": 11000000,
+ "Software4Advisors": 20700000,
+ "Solea Software Solutions Consulting LLC.": 12300000,
+ "Source Code Web": 6100000,
+ "SourcePanel": 6000000,
+ "Speridian": 220000000,
+ "Springbrook Software": 34600000,
+ "Stackery": 3000000,
+ "StockLayouts": 10000000,
+ "Store Locator Widgets": 2400000,
+ "Strategies Group": 11200000,
+ "StruCalc": 10000000,
+ "Structured": 15000000,
+ "Studio Absolute": 37700000,
+ "StudioSysAdmins": 150000000,
+ "Subtext": 2600000,
+ "Sunbourne Media": 10400000,
+ "Surefire Cyber": 10000000,
+ "Survant James": 1400000,
+ "Susan D. Johnson": 17000000,
+ "Swan Island Networks": 3000000,
+ "SwiftView": 35000000,
+ "Symbeo": 10000000,
+ "SynapseCo": 11100000,
+ "SynchroNet": 8700000,
+ "Syntellis": 80000000,
+ "T5 Data Centers": 13600000,
+ "TECHNET Enterprises of Florida": 30500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tabs3": 12200000,
+ "Taetion": 14000000,
+ "Tanuki Interactive": 53300000,
+ "Tech Wizards": 22900000,
+ "TechScaler": 7000000,
+ "TechSpeed": 5000000,
+ "Technology Plus": 15200000,
+ "Tego": 5900000,
+ "Tempest Technologies": 26300000,
+ "That Super Girl": 2800000,
+ "The Tech Shop": 19300000,
+ "The Windows Club": 10000000,
+ "Themesoft": 20000000,
+ "TheoremOne": 33500000,
+ "Thinxtream": 75000000,
+ "Threado": 2000000,
+ "Tiger Sheep": 7000000,
+ "Total Design Shop": 10000000,
+ "Tour Software": 14300000,
"Trace3 LLC.": 1400000000,
- "TransAlta": 2100000000,
- "Transunion Chile": 3600000000,
+ "Travis Watkins": 5500000,
+ "Trevor Graves": 16700000,
+ "Trillium Images": 34400000,
"True Digital Security": 14000000,
- "Trust for Public Land": 1200000,
"Trusted Computing Group": 10000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFW": 4700000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "USB-IF": 10000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "University of Oregon Graduate Teaching Fellows Federation": 1800000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VTech": 2400000000,
- "Vajra Enterprises": 6400000,
+ "Tweeqinfo": 17700000,
+ "Two Loon Software": 1200000,
+ "Ultiris": 1400000,
+ "Unosquare": 33200000,
+ "Uplers": 771800000,
+ "Urban Creatives": 3700000,
+ "Use Co Create": 1000000,
+ "UseMyStats": 20900000,
+ "VMT Software": 31600000,
+ "VR Simulations": 10000000,
+ "VTECH SOLUTION": 10200000,
+ "Vadimages": 2700000,
+ "Valeo Networks": 12100000,
+ "Values of n": 2400000,
"Varonis": 457600000,
- "Veritiv": 7300000000,
+ "Velocity Partners": 20600000,
"Vernier": 50000000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Vibra Healthcare": 672800000,
- "Victim Rights Law Center": 17300000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Voith": 4800000000,
- "Volcom": 380000000,
- "W. L. Gore & Associates": 3800000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Webasto": 250000000,
+ "VertexOne": 12000000,
+ "Vertical Booking": 50000000,
+ "Vesta Corporation": 140000000,
+ "Viewpoint Construction Software": 250000000,
+ "Virtual Assistant Ville": 11800000,
+ "Vision InfoSoft": 12000000,
+ "Vision Technology Services": 1000000000,
+ "Vobile": 70000000,
+ "WESTVM": 2000000,
+ "WY Technology": 4100000,
+ "Warm Media": 30000000,
+ "Warren D Smith": 4700000,
+ "We are Wilde & Co.": 18800000,
+ "Web Mentors": 36100000,
+ "WebNet Express": 11100000,
"Webtrends": 150000000,
- "Wellsprings Friends School": 12400000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Willamette Week": 10000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wje": 150000000,
+ "WinSPC": 21000000,
+ "WineDirect": 70000000,
+ "WintellectNOW": 3800000,
+ "Wistia": 40000000,
+ "WolffPack": 18900000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
"Work & Co.": 58400000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xezo": 1500000,
- "Xylem": 5200000000,
- "Yamhill Carlton School District": 19000000,
- "ZEISS": 8800000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "u-blox Holding AG": 1800000000
+ "YouLinQ": 1400000,
+ "Yulan Studio": 28300000,
+ "Z Networks": 10000000,
+ "Zapproved": 14200000,
+ "Zen Cart Support": 63200000,
+ "Zen Technology Group": 1400000,
+ "dotCal": 51300000,
+ "fusionSpan": 14100000,
+ "iBridge": 35000000,
+ "n -Link": 30100000,
+ "studioJMC": 16400000
},
"Pennsylvania": {
- "3D International": 4000000000,
- "AACOM": 2100000000,
- "AASHE": 24300000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "22nd Century Solutions": 166300000,
+ "5 Star Data": 26800000,
+ "9Ware": 23400000,
+ "A Ankle And Foot Specialists": 11700000,
+ "A Digital Dreamer": 34900000,
+ "A. fake": 50300000,
+ "ACME Design": 20600000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AIG": 48700000000,
- "AIME": 23400000,
- "AMC Theatres": 3900000000,
- "AMREP Corporation": 63000000,
- "ASEA Brown Boveri": 28800000000,
- "ATS Automation": 1800000000,
- "AVEVA": 1600000000,
+ "ADVANCED SOFTWARE APPLICATIONS": 25000000,
+ "AEC Group": 19500000,
+ "AEO Inc.": 5000000000,
+ "AIGA": 2400000,
+ "AP Designworks": 34500000,
+ "ARS Enterprises": 33000000,
"AVG": 200000000,
- "Abacus Federal Savings Bank": 18800000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Acf Industries": 25000000,
- "Acorda": 122700000,
- "Acrisure": 3800000000,
- "Acuity Brands": 4000000000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Agility Logistics": 1800000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Canada": 12200000000,
- "Alkemy X": 32700000,
- "Allegheny County": 20300000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Altoona Mirror": 10000000,
- "Altra Industrial Motion": 1900000000,
- "AmeriServ": 10000000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Annville-Cleona School District": 20000000,
- "Antietam School District": 10800000,
- "Applegreen plc.": 3400000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Argo Group": 1600000000,
- "Armenian Evangelical Church": 30900000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atlanta Public Schools": 38500000,
- "Atria Senior Living": 778500000,
- "Aurora Innovation Inc.": 145300000,
- "Australian Laboratory Services": 6600000000,
- "Avvo": 29900000,
- "Axalta": 4100000000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BTS Group": 232600000,
- "Bachem": 455300000,
- "Baird investment bank": 3400000000,
- "Balboa Bank & Trust S.A.": 35000000,
- "Ballard Designs": 65000000,
- "Bankrate": 434200000,
- "Banner of Truth": 23700000,
- "Barbeque Integrated Inc.": 179000000,
- "Barber National": 37400000,
- "Barker Black": 14300000,
- "Baseball Factory": 10000000,
- "Beacon Capital Partners": 15800000,
- "Beckhoff": 1100000000,
- "Bekaert Steel Wire Corp": 5500000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Berkshire Hathaway GUARD Insurance Companies": 32100000,
- "Blick Art Materials": 245200000,
- "Bluemercury": 918000000,
- "Bob O'Connor Golf Course": 10800000,
- "Bonney Forge": 168000000,
+ "Abator": 13600000,
+ "Acadia Systems": 10000000,
+ "Accion Labs": 35000000,
+ "Accipiter Systems": 10500000,
+ "Accountable Software": 22900000,
+ "Accscient": 10000000,
+ "Active Data Exchange Inc.": 17600000,
+ "Adapt Technical": 30300000,
+ "Advanced Communication Technologies": 27400000,
+ "Advanced Data Management Associates": 15600000,
+ "Advanced Micro Computer Specs": 44100000,
+ "Advizex": 240000000,
+ "Advos Information Technologies": 57100000,
+ "Agents of Value": 13400000,
+ "AlertBot": 18000000,
+ "Alithya": 389900000,
+ "All WebCafe": 22600000,
+ "Alpha Blue Technologies": 16500000,
+ "Alpha Technologies Inc USA": 25000000,
+ "Alphanumeric": 33300000,
+ "Alphaserve Technologies": 37900000,
+ "Altaro": 11400000,
+ "Altek Business Systems": 16800000,
+ "Angelina V": 33000000,
+ "Annabella's Design": 19100000,
+ "Antech Systems": 25000000,
+ "Apogee IT Services": 20000000,
+ "Apogee Inc.": 35000000,
+ "Application Objects Inc.": 18500000,
+ "Applied Medical Software": 26800000,
+ "Archive Data Solutions": 22900000,
+ "Atidan Technology": 17900000,
+ "Audra Jon Hoover": 11600000,
+ "Aureus Tech Systems": 10800000,
+ "Aurora Software": 11700000,
+ "Automated Business Solutions": 14300000,
+ "Automated Results": 33500000,
+ "Avail Company": 4200000,
+ "Avanceon": 12200000,
+ "AwardWallet": 6000000,
+ "Azavea": 11300000,
+ "B&G Design Studios": 17000000,
+ "BDT Custom Computers": 29500000,
+ "BEN SALATA": 29500000,
+ "BGA Studios": 44200000,
+ "BI Solutions": 21200000,
+ "BJSoftware": 14400000,
+ "BK Business Solutions": 22400000,
+ "Bader Enterprises": 12900000,
+ "BallStat": 12000000,
+ "BanProNET": 25100000,
+ "Barcoding": 18500000,
+ "Bare Hands Design": 17100000,
+ "Bart & Associates Inc.": 10900000,
+ "Batelman": 10300000,
+ "Benchmark IT Solutions": 25000000,
+ "Best Web Design Agencies": 10000000,
+ "Bigbang1": 21400000,
+ "BimSym": 45100000,
+ "BitArmor": 9000000,
+ "BizTech Helpers": 23700000,
+ "Bjsutliff.wordpress": 13800000,
+ "Blackfish Development": 32200000,
"Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "BrabenderCox": 16700000,
- "Bradford White": 300000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Bucks County Courier Times": 30000000,
- "Bureau Veritas": 5700000000,
- "BurgerFi International Inc.": 102900000,
- "CRU Group": 69600000,
- "CSL": 1900000000,
+ "Bot Roda": 13500000,
+ "Boundless Creativity": 27400000,
+ "Boyum IT Solutions": 22700000,
+ "BrightFort": 20900000,
+ "Brij": 28600000,
+ "Burst Of Speed": 25700000,
+ "BusinessHut": 10300000,
+ "BusinessOne Technologies": 33100000,
+ "BusinessWare Information Solutions": 10100000,
+ "CAN Technology Solutions": 40500000,
+ "CCL Technologies": 12700000,
+ "CCS Global Tech": 21400000,
+ "CIA Inc.": 14900000,
+ "CNI": 27500000,
+ "CPanda": 17200000,
+ "CSD Branding": 14900000,
+ "CSS Designs": 33100000,
"CSSI Technologies": 22700000,
- "CURTISS-WRIGHT": 2500000000,
- "Calgon Carbon": 750000000,
- "Capital Area Transit": 36200000,
- "Carlisle Companies": 6600000000,
- "Carpenter Technology": 2400000000,
- "Carpenters' Hall": 19700000,
- "Casella": 1100000000,
- "Centene": 144500000000,
- "Cerner": 5800000000,
- "Chewy": 9800000000,
- "Chichester School District": 10000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Ciena": 3700000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "College Hunks Hauling Junk": 100000000,
- "Condor": 10000000,
- "Consumer Affairs": 29300000,
- "Continental Packaging Solutions": 1000000000,
- "Convoy of Hope": 21500000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Cornerstone Research": 250000000,
- "Corning Glass Works": 14500000000,
- "Cracker Barrel": 3300000000,
- "Cradles to Crayons": 30500000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cresco Labs": 17700000000,
- "Crown American Associates": 15200000,
- "Cruise Planners": 488000000,
- "Crystal Fountains": 17200000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
- "Cytokinetics": 148200000,
- "DECTRIS": 38500000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Dayton Superior": 65000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Diamond Foundry": 15000000,
- "Dignity Memorial": 25000000,
- "Dimerco": 1600000000,
- "DirecTV Stream": 33300000000,
- "Discover": 12000000000,
- "District Taco": 35000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dorrance Publishing": 16100000,
- "Drexel Hamilton": 14800000,
- "Dynata": 380300000,
- "EMC Insurance": 645000000,
- "EOG Resources": 25000000000,
+ "CT Inc.": 10000000,
+ "CTI Infotech": 27700000,
+ "Camelot hosting": 10700000,
+ "Campbell Graphic Communications": 42000000,
+ "CenTrak": 52000000,
+ "CermakTech": 14400000,
+ "Certified CIO": 12400000,
+ "Chico Fininho": 17700000,
+ "Chris Young Consulting Company": 10900000,
+ "Cloister Computer": 13100000,
+ "Combex": 11800000,
+ "Comet Way": 10700000,
+ "Companion Data Services": 22900000,
+ "Comply PRO Plus": 10000000,
+ "Compu-Vision": 25000000,
+ "CompuGain": 58000000,
+ "CompuWiz": 12600000,
+ "Computers CPU": 23800000,
+ "Concepts Design": 22400000,
+ "Concort Communications": 14000000,
+ "ConvergentOne": 14800000,
+ "Cooper Graphic Design": 15400000,
+ "CopperHill Consulting": 12000000,
+ "Corello Hosting": 43000000,
+ "Cotter Visual": 17500000,
+ "Cumulo Creative": 20400000,
+ "Cushman & Wakefield | Grant Street Associates Inc.": 25000000,
+ "Custom Integration Solutions": 25200000,
+ "Cutting Edge Design": 10100000,
+ "CyberBuddy": 13900000,
+ "CyberCore Systems": 28400000,
+ "Cyclone Hosting": 31300000,
+ "D B. MILLER": 11700000,
+ "DB Consultants": 11700000,
+ "DCdesignsolutions": 42000000,
+ "DITA Exchange": 10000000,
+ "DLA Systems": 22800000,
+ "DR Technology Solutions": 33500000,
+ "DSA Inc.": 140000000,
+ "DSD Business Systems": 14000000,
+ "DSN Software": 39700000,
+ "DanG Technology": 31800000,
+ "Darl Zehr Photography": 19100000,
+ "Data Mining International": 32300000,
+ "DataHostingSolutions": 12500000,
+ "Datagrove": 26200000,
+ "Datapath": 17000000,
+ "David Galinat Creative Design": 30000000,
+ "DePersico": 21400000,
+ "Deacom LLC an ECI Software Solutions Company": 50000000,
+ "Decilog": 31200000,
+ "Deckert's Communications": 35900000,
+ "Deeplocal": 12000000,
+ "Dental-Exec": 62900000,
+ "DexTechnologies LLC.": 33700000,
+ "Digital Realty": 4700000000,
+ "Direct Axis": 56400000,
+ "Direct Print Mail & Graphics": 22500000,
+ "Dmi Services Llc.": 14000000,
+ "Doc-To-Help": 11500000,
+ "Dormont-Mt. Lebanon Sportsmen's Club": 20900000,
+ "Dotnetspider": 10000000,
+ "Drawing Board": 14900000,
+ "Drexel Management": 32600000,
+ "E-Transit": 32500000,
+ "EBSoftware": 20500000,
+ "ECOLANE": 15000000,
"EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "EastwoodCo": 45500000,
- "EatStreet": 25000000,
+ "ETC Consulting": 21900000,
+ "EZSoft": 14600000,
"Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Eland Publishing": 11000000,
- "Element Materials Technology Group Limited": 975000000,
- "Elsevier": 3500000000,
- "Endress": 750000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
+ "EcomDSS": 11000000,
+ "Education Management Solutions": 37400000,
+ "Elite Hosting Service": 19600000,
+ "Empower Business Solutions": 21500000,
+ "Endurance Technology": 28500000,
+ "Epicor Users Group": 10000000,
"Equinix": 7300000000,
- "Erie City School District": 13400000,
- "Evonik Industries AG": 19700000000,
- "FOREST CITY REGIONAL SCHOOL DISTRICT": 14400000,
- "Faegre Drinker": 512900000,
- "Faithful & Gould": 241100000,
- "Fashionphile": 57200000,
- "Federal Mine Safety and Health Review Commission": 11300000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Excel Micro": 28200000,
+ "Excellerent Solutions": 17300000,
+ "Expedient": 200000000,
+ "FAL Web Design": 39300000,
+ "FIRST SAMCO": 26700000,
+ "FLSI": 26100000,
+ "Factory 44": 19800000,
+ "Fard Systems": 30200000,
+ "Fargo Design Co.": 18200000,
+ "Felice Croul Associates": 35900000,
+ "Fever Smart": 13100000,
+ "Field Control Analytics": 14900000,
"Fiserv": 17700000000,
- "Flexport": 3300000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Financial Corporation": 1000000000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GVT Rail": 26400000,
- "GardaWorld": 3800000000,
- "Garnet Valley School District": 14100000,
- "Gates\ub294": 3500000000,
- "Gateway Newstands": 16600000,
- "Gen Re": 9500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "Gibbs & Cox": 100000000,
- "GiftCards": 78500000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gooseberry Patch": 14100000,
- "Gordon Food Service": 16000000000,
- "Graco Baby": 34700000,
- "Graebel": 1500000000,
- "Greater Johnstown School District": 14300000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grier": 13940000,
- "Grindline Skateparks": 27600000,
- "Grove Collaborative": 361900000,
- "Guitar Center": 2300000000,
- "Guru": 100000000,
- "HBC": 5600000000,
+ "Fivestar Development": 10400000,
+ "Flory Technologies": 15000000,
+ "French Creek Software": 12100000,
+ "G1Development": 25800000,
+ "GDC IT Solutions": 11200000,
+ "GET OUT Design": 13600000,
+ "GHI Design": 10000000,
+ "GK Productions": 29800000,
+ "GRM Information Management": 100000000,
+ "GeoDecisions": 35000000,
+ "Go Cloud With 'Cove LLC'": 28000000,
+ "Golden Technologies": 17500000,
+ "Graham Software": 13500000,
+ "Greener Grass Graphics Events": 35900000,
+ "Gruntware": 18100000,
+ "Guru Technologies Inc.": 21000000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Heidrick & Struggles Gibraltar Limited": 1100000000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Hydro": 21600000000,
- "Hyundai Motor America": 100700000000,
- "IDEMIA": 1100000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Immunocore": 122000000,
- "Industrial Scientific": 182000000,
- "Inquirer": 12200000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Ishida Co. Ltd.": 1200000000,
- "Itt Industries Luxembourg": 2900000000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenkintown School District": 20600000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jessica Kingsley Publishers": 29300000,
- "John Cockerill": 600000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Journeys company": 8600000,
- "Juniper Advisory": 14700000,
- "K&L Gates": 1000000000,
- "KBR": 7700000000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "Kaiser Permanente": 93100000000,
- "Karns Quality Foods": 20000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kennedys Law": 284000000,
- "Kgb": 59500000,
- "Kilwins": 50000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Koppers": 2000000000,
- "Kroll": 3000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LLR Partners": 20000000,
- "LUFKIN": 1500000000,
- "LVHN": 4900000,
- "Land O'Lakes": 16000000000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
+ "HEBCO": 11100000,
+ "HPE Extrusion Solutions": 25800000,
+ "Hamiltonian Systems": 41600000,
+ "Harris School Solutions": 57500000,
+ "Helient": 19000000,
+ "Hinton & Associates": 16000000,
+ "Hoopes Construction & Lawncare": 16400000,
+ "Horizon Information Systems": 18800000,
+ "Hunter Graphics": 20200000,
+ "Hunting and Gatherings": 23200000,
+ "Huntington Business Systems": 20600000,
+ "IMS Technology Services": 38000000,
+ "ION Group": 825000000,
+ "IONOS": 617800000,
+ "ISA Consulting": 25000000,
+ "IT Consulting Services": 26800000,
+ "IT Edge": 12400000,
+ "IT Services Group": 38100000,
+ "IT4": 10000000,
+ "Imagevolution": 19900000,
+ "Implico": 20800000,
+ "InGear": 57100000,
+ "InRhythm Solutions": 13100000,
+ "IndiVision Studios": 30100000,
+ "Infinigy": 12500000,
+ "Infinite Blue": 7000000,
+ "InfoX Systems": 41000000,
+ "Information Age Technologies": 22800000,
+ "Information Solutions & Management Inc.": 25800000,
+ "Information Strategies Plus": 21500000,
+ "Infotech Valley": 19200000,
+ "Ingage": 10000000,
+ "Ink IT": 22700000,
+ "Inn Solutions": 26700000,
+ "Innovative Systems": 38600000,
+ "Inova Technologies": 31700000,
+ "Insight Business Systems": 28300000,
+ "Insightin Health": 10000000,
+ "Inspire Technologies": 13300000,
+ "Integris - Managed IT Services Houston": 43200000,
+ "Inteliment": 15000000,
+ "Introduction": 16100000,
+ "Involta": 60000000,
+ "Iris Interactive": 22800000,
+ "J W Lott Consulting Services": 36500000,
+ "JG Ink Creative": 17500000,
+ "JP's High Tech World": 21500000,
+ "Johnmooredesign": 34500000,
+ "Jordan Lewis IT Consulting": 17400000,
+ "Joseph Spix Consulting Llc.": 18900000,
+ "KJan Studio": 21000000,
+ "KK Pro Design": 51100000,
+ "Kapsoft": 37500000,
+ "Kerridge Commercial Systems": 84300000,
+ "KeyMark": 50000000,
+ "Keystone Med Flight": 10000000,
+ "Kinetic Web": 26400000,
+ "King Mediaworks": 15700000,
+ "Knowland": 20000000,
+ "Kolano Design": 11400000,
+ "Kunj Group": 25000000,
+ "Leapfrog Research": 11500000,
+ "Legato Software": 11000000,
+ "Leighty'S Hunting & Clothing": 65700000,
"Lenovo": 66000000000,
- "Leprino Foods": 3500000000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lions Gate": 3600000000,
- "Little Caesars": 3800000000,
- "Lockton European Brokers Limited": 2700000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Longchamp": 750000000,
- "Lord Abbett": 300000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "MFG Inc.": 30000000,
- "MSA Safety": 1500000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "MarkWest": 2400000000,
- "Marlboro Music": 36100000,
- "Marlow Industries": 1500000000,
- "Materion Corporation": 1800000000,
- "Maxwell Technologies Inc.": 77500000,
+ "Lima Volunteer Fire Company": 24300000,
+ "Linric": 29000000,
+ "Lucas Systems": 15000000,
+ "LunchTime Software": 23300000,
+ "Lynx Technology Partners": 11900000,
+ "MAVI Interactive": 19800000,
+ "MERJE Design": 14600000,
+ "MNG Health": 28000000,
+ "MSP360": 24200000,
+ "Maintenance Strategies Inc.": 25600000,
+ "MantisTech": 20100000,
+ "Marco Technologies": 400000000,
+ "Mastech Digital": 211700000,
+ "Materna GmbH Trainingscenter": 272100000,
+ "MatrixCare": 122000000,
"McAfee": 2200000000,
- "McCormick Taylor": 83000000,
- "McLane Company": 50000000000,
- "Medline Industries": 20200000000,
- "Merck Sharp & Dohme": 59000000000,
- "Merrithew": 51000000,
- "Metabo": 15900000,
- "Middle States Commission on Higher Education": 12500000,
- "Milliman": 1200000000,
- "Milton Hershey School": 1440000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
+ "MenagerieWeb": 56600000,
+ "Meritgames": 28200000,
+ "Metamorphosis Design": 16900000,
+ "MichaelRobert Design & Sales Promotion": 34000000,
+ "Micro Endeavors": 11000000,
+ "Micro Strategies": 110100000,
+ "MicroXpress": 17200000,
+ "Mikula Web Solutions": 14300000,
+ "Milestone Providers LLC.": 12800000,
+ "Miller Creative Group": 22300000,
+ "Miller Information Systems": 100000000,
+ "Millermark": 10800000,
+ "Mills Information Systems": 20500000,
+ "MindRising": 11300000,
+ "Mindmatrix": 14000000,
+ "Minitab Pty Ltd.": 82000000,
+ "Minkatec Computer Services": 13600000,
+ "Miracle Concepts": 22300000,
+ "Miracle India": 10000000,
+ "Model Right": 35100000,
"Monetate": 35000000,
- "Money Management": 30000000,
- "Monroe County Transit Authority": 14900000,
- "Montgomery County MD": 24300000,
- "Moravian history": 98100000,
- "Morgan Lewis": 2400000000,
- "Morgan Technical Ceramics": 1400000000,
- "Morning star": 1900000000,
- "Mosaic Inc.": 10000000,
- "Murphy USA": 22800000000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Christian Foundation": 27800000,
- "National Resilience": 500000000,
- "Neiman Marcus": 2600000000,
+ "Morefield": 17000000,
+ "Moser Consulting": 10000000,
+ "Mountainsoft Technologies": 10000000,
+ "Muni logic": 10100000,
+ "Municipal Software": 19200000,
+ "NET trak": 35000000,
+ "NET'N COM": 11900000,
+ "NOSTOPS COM INC.": 44400000,
+ "NU COMMUNITY CREDIT UNION": 22700000,
+ "Nasteks": 22700000,
+ "Net World Technology": 31700000,
+ "Net2 Technology Group": 15600000,
"NetApp": 6500000000,
"NetObjects": 26700000,
- "NiSource": 5400000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "ON Semi": 8300000000,
- "OXO": 500000000,
- "OceanFirst": 17300000,
- "Ollie's Bargain Outlet": 1700000000,
- "Omnigraphics": 12100000,
- "OneMain Financial": 4100000000,
- "Orange Business": 9600000000,
- "Organic Consumers": 17900000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Oxford Development": 19600000,
- "Oxxford Clothes": 25000000,
- "PAN Foundation": 450400000,
- "PREIT Services LLC.": 300500000,
- "PSE&G": 9300000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Pampered Chef": 300000000,
- "Paris Baguette": 11200000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patriot League": 23300000,
- "Penn National Insurance": 17400000,
- "Penn-Trafford": 22600000,
- "Pennsylvania Bar Association": 42500000,
- "Pennsylvania Turnpike Commission": 58200000,
- "Penzeys": 26000000,
- "Pepperidge Farm": 28200000,
- "Perkiomen": 21700000,
- "Philadelphia Folklore Project": 10900000,
- "Philadelphia Gas Works": 25700000,
- "Philadelphia Spinners": 10000000,
- "Philadelphia Water Department": 10000000,
+ "Netexus Technologies": 16400000,
+ "Network Access": 18100000,
+ "Network Pro Development": 10500000,
+ "New Era Technology": 22200000,
+ "Nfina": 15300000,
+ "Nida Setthachayanon": 23000000,
+ "Noise Solutions": 15900000,
+ "Numantra Technologies": 35000000,
+ "Omnicomp": 28300000,
+ "OnClick Incorporated": 32600000,
+ "OnStreets": 11600000,
+ "Organizational Technology Systems": 13900000,
+ "PC Systems": 25800000,
+ "PC TroniX": 28800000,
+ "PCN-Inc": 28400000,
+ "PICSol": 25800000,
+ "PM Computing": 57100000,
+ "Pagelex": 26500000,
+ "Paradigm Infotech": 10400000,
+ "Paragon Consulting": 31600000,
+ "Park Place Technologies": 218400000,
+ "Pasquine Consulting": 30200000,
+ "Pearl Software": 15800000,
+ "Pegasus Technologies": 20700000,
+ "PeopleForce": 25700000,
+ "Periwinkle studio": 31800000,
+ "Pgh Systems": 28600000,
+ "Philadelphia Computer Support": 30500000,
"Phocas": 50000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Pocono Record": 11800000,
- "Post-Gazette": 34700000,
- "Powell Industries": 499400000,
- "Price Chopper": 1500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Protective Life": 6700000000,
- "Quad Metalworks": 3100000000,
- "QuickChek": 1000000000,
- "Quiznos": 50000000,
- "RIDC Regional Industrial Development Corporation": 10000000,
- "RSM US": 3300000000,
- "RWDI": 26900000,
- "Radio Flyer": 26100000,
- "Rautaruukki Corporation.": 656500000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Renda Broadcasting": 10000000,
- "Republic Bank": 146400000,
- "Rexair": 35000000,
- "Riverside Partners": 14400000,
- "Roehl Transport": 421300000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "Ryan Office": 626000000,
- "S&P Global": 8200000000,
+ "Phorest": 8800000,
+ "Photographs by Jan Thiessen": 24500000,
+ "Pinnacle 21": 20000000,
+ "Pinpoint Systems": 35000000,
+ "Planalytics": 22500000,
+ "PointRight": 15000000,
+ "Polite Design": 18200000,
+ "Pomeroy": 850000000,
+ "Porter Graphics": 13800000,
+ "Preeminent Technology": 21700000,
+ "Premier Technologies": 15400000,
+ "PrismRBS": 10500000,
+ "ProFile Developers": 22400000,
+ "ProTech Internet Group": 31500000,
+ "Progent": 13200000,
+ "Prontix Integration": 27400000,
+ "Q Software": 34900000,
+ "Q1 Technologies": 12300000,
+ "Quonix": 22900000,
+ "R.P.M. Worldwide": 15200000,
+ "RAM Technologies": 46100000,
+ "RB Retail and Service Solutions": 40500000,
+ "RBA Professional Data Systems": 16200000,
+ "Redbug Technologies": 16100000,
+ "RegScan": 10000000,
+ "Reinhold Properties": 243500000,
+ "Renaissance Technologies": 21400000,
+ "RhoMania": 15700000,
+ "Richmond Computer": 10800000,
+ "Robert meyers design": 28500000,
+ "Robots and Pencils": 21500000,
+ "Rotondo": 32600000,
+ "Rowinski Design": 16700000,
+ "S MART F LEX TECH": 11100000,
+ "S19": 30600000,
"SAP": 33500000000,
"SAP Ariba": 1600000000,
- "SCHOTT AG": 2800000000,
- "SEPTA": 145600000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SSC Space": 46100000,
- "SUVCW": 23000000,
- "SYSTRA": 656400000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SAPVIX Technology": 13600000,
+ "SB3D": 10000000,
+ "SIRI Group": 21500000,
+ "SITEVIEW": 32500000,
+ "STATICSHIFT INC.": 17900000,
+ "STPL": 12800000,
+ "SafeChoice": 56300000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
+ "Sales Ally": 15600000,
"Salsa Labs": 18000000,
- "Sam Ash": 400000000,
- "Santander Bank": 14800000,
"Sapiens": 382000000,
- "Sarris Candies": 32000000,
+ "Saucon Technologies": 49500000,
+ "Sayers": 16000000,
"Scala": 120000000,
- "Scandinavian Tobacco Group": 1200000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Schuylkill Transportation System": 44000000,
- "Seaboard": 11200000000,
- "Seasons 52": 300000000,
- "Secop": 1300000000,
- "Select Medical": 6300000000,
- "Sharp HealthCare": 3800000000,
- "Sheetz'": 6200000000,
- "Shippensburg Area School District": 15600000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
- "Society for Protective Coatings": 200100000,
- "Somerset Trust Company": 24900000,
- "Sonoco": 6500000000,
- "South Williamsport Area School District": 48800000,
- "Southern Airways Express": 43000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "Spread Group": 195000000,
- "St. Josaphat Eparchy": 16600000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stitch Fix": 2100000000,
- "Stoney River": 10300000,
- "Strasburg Rail Road": 39100000,
- "Suit Supply France SARL": 350000000,
- "Sun Chemical": 8500000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Swedish Match": 2000000000,
- "Swift Transportation Company": 3400000000,
- "Synthomer": 3100000000,
- "T. Rowe Price": 6500000000,
- "TDK": 14000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technetics Group": 100000000,
- "Technology Student Association TSA": 10000000,
- "Teck Resources": 12600000000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "Thales Group": 18000000000,
- "The Art of Shaving": 45000000,
- "The Ballinger Company": 37000000,
- "The Golf Association of Philadelphia": 10000000,
- "The Hartford": 21400000000,
- "The Hershey Company": 10100000000,
- "The Hotel Hershey": 13800000,
- "The Kiski School": 15790000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Recording Academy": 15800000,
- "The Swarthmore Phoenix": 25000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Tim Hortons": 2800000000,
- "Timken": 4500000000,
- "Topflight Corporation": 10000000,
- "Topgolf International Inc.": 1100000000,
- "Topps Europe Ltd.": 567000000,
- "Torrid": 1300000000,
- "Tourneau": 32800000,
- "Traffic Safety Store": 19900000,
- "TransRe": 500000000,
- "Transunion Chile": 3600000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMH Properties": 193100000,
- "UNICOR": 6400000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union League": 10000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Upper Dublin School District": 20300000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vesuvius France S.A.": 2200000000,
- "Viatris": 17200000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vocelli Pizza": 14000000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Voya Financial": 6900000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WESCO International": 20700000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "Warby Parker": 573100000,
- "West Pharmaceutical Services": 2900000000,
- "Westat Research inc.": 597000000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whitaker House": 36000000,
- "White Castle": 720600000,
- "Williams Companies": 11300000000,
- "Wilshire": 100000000,
- "Wilson Sporting Goods": 769700000,
- "Wje": 150000000,
+ "Schuyl": 26500000,
+ "Secure Gear": 21400000,
+ "SecureAge": 21400000,
+ "Sentinel Technology Group Inc.": 22400000,
+ "Shaffer Technologies": 14400000,
+ "Shawn wall": 18400000,
+ "Sierra Data Centers": 18100000,
+ "Simio Software": 8000000,
+ "Simplistik Software": 57300000,
+ "Siri InfoSolutions": 17500000,
+ "Skbglobal": 26300000,
+ "SmartStream Technologies": 74000000,
+ "SnakeTree": 42800000,
+ "Softworks Computing": 16300000,
+ "Solebury Software": 10000000,
+ "SolutionXchg": 13400000,
+ "Sphinx Solutions": 21500000,
+ "Stellar Services": 10700000,
+ "Step2 Branding": 12200000,
+ "Steve Pinkston": 10100000,
+ "Stratix Systems": 88600000,
+ "Sugar & Spice Products Inc.": 16400000,
+ "SunTec Business Solutions Ltd.": 35000000,
+ "SurferQuest": 12200000,
+ "Susan Ickes Copy Service": 11300000,
+ "Suzy Rae Design": 32400000,
+ "Synario": 25200000,
+ "Syncro Medical": 10000000,
+ "System Design and Support": 16200000,
+ "TAL Technologies": 19000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TISTA Science & Technology": 165000000,
+ "TIW Technology": 25700000,
+ "TZD inKed": 13100000,
+ "TahoeT": 12900000,
+ "Target Systems": 19000000,
+ "Taurus Plus": 16900000,
+ "Tcdi Pittsburgh": 18400000,
+ "Tech Tonics": 33200000,
+ "Techiva": 25000000,
+ "Technische Informationssysteme GmbH": 42500000,
+ "Technodata Solution": 46400000,
+ "Technology Solutions Associates": 23600000,
+ "TekTonic": 25900000,
+ "Teknikos": 16800000,
+ "TerraBase": 16300000,
+ "The ATS Group": 29600000,
+ "The Attivo Group": 10000000,
+ "The Computer Solutions Group LLC.": 18100000,
+ "The Idea Girl": 21400000,
+ "The Logic Group": 22100000,
+ "Thirsten": 26900000,
+ "Thunderbird Software": 23400000,
+ "Timber Hill Technology Solutions": 16000000,
+ "Timesys": 6200000,
+ "TransTechSol": 26400000,
+ "TreCom Systems": 25000000,
+ "Troy Kiick": 33500000,
+ "True Digital Security": 14000000,
+ "UniSolutions": 18800000,
+ "Uptime Computer Services": 33500000,
+ "VVI": 17800000,
+ "Valley IT": 31700000,
+ "Verisma": 20000000,
+ "Versatile Concepts": 32500000,
+ "Versify": 26300000,
+ "VileTech Computer Solutions": 23600000,
+ "Vince Longo & Associates": 10100000,
+ "Virtual simulations": 17100000,
+ "Vitalyst": 26400000,
+ "Wayout Design": 27100000,
+ "Weathertrends360": 4000000,
+ "Web Application Security Consortium": 32200000,
+ "Wengert": 19400000,
+ "Westcott Designz": 33100000,
+ "Wildbit": 24600000,
+ "Willis Consulting of York": 14500000,
+ "WiredContact": 16900000,
"Wolters Kluwer": 5400000000,
- "World of Beer": 40000000,
- "WuXi AppTec": 3400000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000
+ "Wonderhead Collective": 13800000,
+ "Worksmart IT Services": 15400000,
+ "Wuvavi": 10000000,
+ "X tention": 10300000,
+ "XCENT": 28700000,
+ "YinzCam": 4000000,
+ "Yourwebsite2go3": 14000000,
+ "ZIMWIZ": 15900000,
+ "Zivtech": 3700000,
+ "a2c Philadelphia": 15000000,
+ "dck worldwide LLC Arizona Construction Services": 55000000,
+ "e-Docs USA": 32000000,
+ "holoMaXx": 12700000,
+ "inCloud": 11800000,
+ "jN Did That": 17100000,
+ "policyIQ": 33400000,
+ "theITSupportCenter LLC.": 450000000,
+ "troy and associates inc.": 10800000,
+ "tsaADVET": 10500000
},
"Rhode Island": {
- "ABC Supply": 12100000000,
- "ABCya": 1000000,
+ "22nd Century Solutions": 166300000,
+ "4 Design LLC.": 5100000,
+ "6 Square Design & Communications": 5100000,
+ "A2B Tracking": 10000000,
+ "ABC Advanced Business Computing": 13000000,
+ "ACE Technology Advisors": 1400000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "Ace Hardware": 7800000000,
- "Achievement First": 5500000,
- "Adore Me": 115000000,
- "Aflac Incorporated": 19300000000,
- "Alamo Rent a Car": 2900000,
- "Alesis": 6400000,
- "Allied Van Lines": 22000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Mathematical": 10300000,
- "American Society of Genealogists": 3600000,
- "American Society of Landscape Architects": 6700000,
- "American Tourister": 6000000,
- "Amgen": 26300000000,
- "Ampeg": 366000,
- "Andrew Christian": 8000000,
- "Annaly": 1500000000,
- "Armenian Evangelical Church": 30900000,
- "Armoloy": 49100000,
- "Army News Service": 16400000000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "BJ's": 18700000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Best Buddies": 3600000,
- "Bob's Stores": 1000000,
+ "APROPOS Design Solutions": 24800000,
+ "Active Data Solutions": 19000000,
+ "Advanced Network Systems": 19700000,
+ "Agility Internet Solutions": 284000,
+ "Agitar": 4600000,
+ "Alexis Design": 3000000,
+ "Ampliz": 8000000,
+ "Ananke IT Solutions": 10000000,
+ "Apex Technology Group": 290000,
+ "Aqueduct Tech": 53600000,
+ "Armando & Son's Meat Market": 9500000,
+ "Artifact Conference": 143000,
+ "Artinium Inc. Graphic Communications": 523000,
+ "Ascentek": 17600000,
+ "Atelier LKS": 5400000,
+ "AuditWare": 19900000,
+ "AutoRaptor": 7000000,
+ "Aztec Design Services": 3600000,
+ "BCI Computers": 257000,
+ "BX Inc.": 25000000,
+ "Back4App": 2400000,
+ "Bay Computer": 5000000,
+ "Blambot": 435000,
+ "Blue Moon Industries": 10000000,
+ "Blue Sky Group BSG Creative": 4600000,
+ "BonFX": 1300000,
"Booz Allen": 8800000000,
- "Breeze Airways": 50000000,
- "Bridgeway Capital Management": 14000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Charleys": 6100000,
- "Chelsea Clock Company": 53700000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Coast To Coast Tickets": 4300000,
- "Coca-Cola Europacific Partners": 279000,
- "College Hunks Hauling Junk": 100000000,
- "Compass Group": 111500000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crawford Composites": 6300000,
- "Culligan": 1400000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "Day Pitney": 17300000,
- "Dayton Superior": 65000000,
- "Design Observer": 7000000,
- "Dollar General": 35300000000,
- "Dynata": 380300000,
- "D\u2019Angelos": 2400000,
- "EMAC website": 5700000,
- "EMC Insurance": 645000000,
- "EVgo Services LLC.": 34400000,
- "East Bay Newspapers": 2800000,
- "Edelman Financial Engines": 80000000,
- "Electric Boat Co.": 10000000000,
- "Elevance Health": 153200000000,
- "Embrace Home Loans": 180600000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "ExxonMobil": 403200000000,
- "FM Global": 5000000000,
- "FatFace": 244700000,
- "Fenway Partners": 13600000,
- "Ferrellgas": 2100000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Genuine Parts Company": 20500000000,
- "Golden Minerals": 28200000,
- "Golden Spike": 2300000,
- "GreenPal": 1200000,
- "Greenwich Strategy": 10000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hanna Instruments": 220000000,
- "Harbor Freight": 5000000000,
- "Harraseeket Inn": 23200000,
- "Herbalife": 5200000000,
- "Hobby Lobby": 5300000000,
- "Hodgdon Yachts": 33100000,
- "Hyster-Yale": 3200000000,
- "IHEARTMEDIA": 3800000000,
- "IndependentRI": 15000000,
- "International Tennis Hall of Fame": 9000000,
- "Iron Mountain Incorporated": 5000000000,
- "Island Bar": 156000,
- "Itt Industries Luxembourg": 2900000000,
- "Ivory Ella": 2000000,
- "JUMP Bikes": 6000000,
- "Jeanneau": 600000000,
- "Jerry's Artarama": 932000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Jordan's": 1500000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kilwins": 50000000,
- "Kinder Morgan": 17700000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Laserperformance": 70000000,
- "Leaf Trading Cards": 2400000,
- "Leidos Holdings Inc.": 13700000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Locke Lord": 51000000,
- "Loews Hotels": 950000000,
- "Los Angeles Athletic Club": 13500000,
- "Lovesac": 389800000,
- "M-Audio": 2300000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "MassChallenge": 22000000,
- "Materion Corporation": 1800000000,
- "Metal Supermarkets": 26800000,
- "Moe's Southwest Grill": 295500000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NRLC": 5400000,
- "National Celiac Association": 3700000,
- "National Grid": 24200000000,
- "Newport Jazz": 2700000,
- "Nordhavn": 7000000,
- "North Sails": 27500000,
- "ON Semi": 8300000000,
- "Oceana": 10000000,
- "Ollie's Bargain Outlet": 1700000000,
- "Oyster Yachts": 276000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "PrintWithMe": 1000000,
- "Providence Equity": 43100000,
- "Quick Lane": 6000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "RenaissanceRe": 4400000000,
- "Ryan Office": 626000000,
- "SEIU Local 1199NE": 10700000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Santander Bank": 14800000,
- "Scott's-Bell 47": 6000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sharp HealthCare": 3800000000,
- "Showcase Cinemas": 2900000,
- "Smarte Carte": 26000000,
- "Sodexo": 22300000000,
- "Southern Airways Express": 43000000,
- "Southwest": 22700000000,
- "Sprague Energy": 4300000000,
- "St Andrew's School Rhode Island": 1100000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Steel Dynamics": 22700000000,
- "Steiff": 3900000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Sylvan Learning": 12600000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "The Green House Project": 7900000,
- "The Motley Fool": 550000000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Providence Journal": 8300000,
- "The Walt Disney Privacy Center": 84400000000,
- "The Wheeler School": 4100000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Technologies": 80000000,
- "USCIS": 15700000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Warby Parker": 573100000,
- "Whelen": 500000000,
- "Wieland Group": 6100000000,
- "WoodSpring": 150000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Zumiez": 1100000000,
- "evoJets": 187000,
+ "Boyum IT Solutions": 22700000,
+ "CAI Software": 85000000,
+ "CC inspire llc.": 35100000,
+ "CMIT Solutions": 60000000,
+ "CONNECT Computer": 14000000,
+ "Carrie Chatterson Studio": 17700000,
+ "Castle OS": 7000000,
+ "Champagne and Ink": 4600000,
+ "Cinch IT": 2300000,
+ "Compass IT Compliance": 22300000,
+ "Convergence Data": 25200000,
+ "Creative Facility Design": 1400000,
+ "Creosphere": 4900000,
+ "Crompton Systems": 7300000,
+ "Crow Canyon": 6000000,
+ "CyberSecOp": 10000000,
+ "Cybertans": 5000000,
+ "DESIGNxRI": 1500000,
+ "DFMA": 10000000,
+ "Datapath": 17000000,
+ "Datarista": 3500000,
+ "DeConte Figures & Collectibles": 4900000,
+ "Delin Design": 2000000,
+ "Dickinson Lab": 12300000,
+ "Digital Forensics Team": 4100000,
+ "ENTRACK": 500000,
+ "ENVIRONMENTAL RESOURCE ASSOCIATES INC.": 15000000,
+ "EPAC Software Technology": 30000000,
+ "ERP VAR.": 10000000,
+ "East Coast Technology Group": 1900000,
+ "EasyProjectPlan": 2400000,
+ "Echo Messaging": 2400000,
+ "Envision Technology Advisors": 8800000,
+ "Exbabylon": 407000,
+ "EyeciteMedia": 457000,
+ "Field15": 44300000,
+ "File to Backup": 2900000,
+ "ForensicSoft": 10000000,
+ "FormsRus": 557000,
+ "GLObal DYnamics NETwork": 2200000,
+ "Gantter": 2700000,
+ "Gaslimited": 395000,
+ "Groove Networks LLC.": 2400000,
+ "I-M Technology": 1400000,
+ "IBCI": 21800000,
+ "IONIT Networks": 2400000,
+ "ISSGLOBAL": 3400000,
+ "IT Support RI": 4200000,
+ "Indus Technology": 36000000,
+ "Infax Website Build": 359000,
+ "Ink Meets Paper Design": 5200000,
+ "Intelliquip": 10700000,
+ "Island Tech Services": 4200000,
+ "J.R. Redfern": 1400000,
+ "JANETO": 7300000,
+ "JZD ESIGNZ": 3100000,
+ "KRUSHgraphics": 2900000,
+ "Kalibrate": 3100000,
+ "KenWebSoft": 5400000,
+ "Kyber Security": 5800000,
+ "Kyran Research Associates Inc.": 10000000,
+ "Laura Blackwell": 9400000,
+ "LocusPlay": 3000000,
+ "Logicomm IT Services": 1400000,
+ "Lullabot": 8000000,
+ "MERIT Solutions": 6400000,
+ "Macrobyte Resources": 37400000,
+ "McCabe": 9800000,
+ "Medium der Teknor Germany GmbH": 5000000,
+ "Metisentry": 3900000,
+ "Micro Systems Integration Inc.": 13500000,
+ "Might & Main": 2300000,
+ "Minkatec Computer Services": 13600000,
+ "Mintonbroadway": 1300000,
+ "Miovision": 35000000,
+ "Mission Critical Partners": 10000000,
+ "MojoTech": 5000000,
+ "NATIONAL GUARD ASSOCIATION OF RHODE ISLAND": 4300000,
+ "Nam Technologies": 7900000,
+ "Nathan James Woolls": 72000,
+ "Nebulon": 10000000,
+ "Nerds On Site": 11300000,
+ "NetCenergy": 43500000,
+ "Netjectives": 4000000,
+ "Netsimco": 16000000,
+ "Nichols Airbrush": 28200000,
+ "North Street Creative": 1400000,
+ "Online Mooring": 14300000,
+ "Oomph Inc.": 5000000,
+ "OpenBOX": 10000000,
+ "Orkiv Retail Solutions": 1400000,
+ "OverDrive Solutions": 10000000,
+ "Parrott Design Studio": 4300000,
+ "Paws for Design": 18700000,
+ "Payslip": 1600000,
+ "PeteSoft": 11800000,
+ "PicPic Social": 2400000,
+ "Pish Posh Design": 18800000,
+ "PlexHosted": 6000000,
+ "Plum Creative": 25800000,
+ "Predicata": 4600000,
+ "Pro Products Web Development": 10000000,
+ "Protocol Networks": 5000000,
+ "Prov": 10000000,
+ "Qgiv": 7500000,
+ "Quantifacts": 10000000,
+ "RETAIL SOLS": 35000000,
+ "RI Web Gurus": 28100000,
+ "RKO Security": 28300000,
+ "Radley": 4600000,
+ "Ramsey Network Systems": 10000000,
+ "Raphael Enterprises": 13300000,
+ "RelayHub": 6000000,
+ "Remark Holdings": 79100000,
+ "Rome Technologies Inc.": 19400000,
+ "Roplab": 16100000,
+ "Roplab It Solution": 16100000,
+ "Roza - Italian Fashion Outlet": 15800000,
+ "Rubic": 4200000,
+ "SGA Software": 31200000,
+ "SIGNET Electronic Systems Inc.": 50000000,
+ "SMART Management EHR Software for OTPs": 4000000,
+ "SQA Group": 5000000,
+ "SRG Resources": 11900000,
+ "Saviant": 22100000,
+ "Scandia": 5300000,
+ "Scott Williams": 25400000,
+ "Secure Future Tech": 326000,
+ "Secured Network Services": 7800000,
+ "Shimmer Technologies": 240000,
+ "Simplify Dealership Software": 8500000,
+ "Smartapp Inc.": 310000,
+ "Solution Nexus": 10200000,
+ "Sona Systems": 5000000,
+ "Sourced Group": 7000000,
+ "Stephen Dunn Realtor": 16300000,
+ "Stonewall Solutions": 11200000,
+ "Stream Scape": 6000000,
+ "TLIC": 10000000,
+ "Tech Advisory": 7000000,
+ "Techtroid": 3300000,
+ "TechyTeam": 3500000,
+ "Temple Am David": 35300000,
+ "Terrapin Art & Design": 3200000,
+ "The Good Earth Organic Gardening Center": 45900000,
+ "The Innovation Scout": 1000000,
+ "The Mullings Group": 1000000,
+ "Thoughtcap": 1400000,
+ "Tizra": 5400000,
+ "Toni Mills Graphic Design": 21700000,
+ "Torxhead": 1400000,
+ "Translate Abroad": 353000,
+ "USSupernet": 47200000,
+ "Ulterior Graphics": 24400000,
+ "Vertikal6": 6000000,
+ "WAASI": 3800000,
+ "WOMA Design": 10800000,
+ "Wallace Software Solutions": 2000000,
+ "Windlass Creative": 4500000,
+ "Wings Tech": 225000,
+ "Worthy Image": 602000,
+ "XactSense": 3400000,
+ "Your Design Buddy": 4800000,
+ "Zachary Piper": 5000000,
+ "ZdsLogic Technologies": 179000,
+ "Zeus Design": 1100000,
+ "Zing Mobile Apps": 7000000,
+ "ePro Computer Solutions": 33000000,
+ "eSpline": 20300000,
"xTuple": 6400000
},
"South Carolina": {
- "ABC Supply": 12100000000,
- "ACI Worldwide": 1400000000,
+ "11 11 Systems": 6000000,
+ "22nd Century Solutions": 166300000,
+ "5S Technologies": 1400000,
+ "ACS Technologies": 80000000,
"ADP Roseland": 16900000000,
- "AGRU": 20000000,
- "AHT Cooling Systems": 576200000,
- "AL MAR Knives": 2000000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
+ "ADVYON": 15500000,
+ "AFL Hyperscale": 16500000,
+ "ASI Constructors": 20500000,
+ "ASKaPRO": 17500000,
+ "AT-NET Services - Managed IT Services Company Charlotte": 15000000,
+ "ATLATL": 7000000,
"AVG": 200000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acura": 3800000,
- "Aflac Incorporated": 19300000000,
- "AgFirst": 10000000,
- "Aggreko": 1900000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Airliners": 3000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Battlefield Trust": 6000000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Society of Landscape Architects": 6700000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Apple Ford": 17700000,
- "Applegreen plc.": 3400000000,
- "Arbordale Publishing": 24800000,
- "Ardagh Group S.A.": 9000000000,
- "Armoloy": 49100000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Atlanta Bread": 5200000,
- "Atotech": 1500000000,
- "Atria Senior Living": 778500000,
+ "AZtech Strategies": 67600000,
+ "Able Vets Charleston": 95900000,
+ "Accu-Tech Corporation": 8500000,
+ "Active IT Design": 2400000,
+ "Active Technologies": 4500000,
+ "Acumen IT": 35000000,
+ "Adapt Forward": 6600000,
+ "Adaptavist": 150000000,
+ "Adaptive Vision": 10000000,
+ "Addx": 21200000,
+ "Advanced KLAology": 15400000,
+ "AerieHub": 12000000,
+ "Aide Support Inc.": 10100000,
+ "Alexon it": 24800000,
+ "Allen Corporation of America": 17700000,
+ "Alliance Software Corporation": 22700000,
+ "Altfi Data": 2400000,
+ "Altman Initiative": 22200000,
+ "AltrueTECH": 16300000,
+ "American Security": 60000000,
+ "Anderson Integrated Marketing": 8500000,
+ "Angel Company ANGEL Group": 4200000,
+ "Anilogix": 3300000,
+ "Annex Studio": 1800000,
+ "AplusB Software": 7000000,
+ "Arche Designs": 12100000,
+ "AristoCAT": 10000000,
+ "Atlantic Computers": 14000000,
+ "Atlas Tech": 3900000,
+ "Austin Brookie": 12100000,
+ "Auxano Global Services": 3400000,
"Avail Company": 4200000,
- "Avvo": 29900000,
- "B & B Theatres Operating Company Inc.": 53400000,
- "BELFOR": 2000000000,
- "BFGoodrich Tires": 7100000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Berkeley County Airport": 4200000,
- "Berkeley County School District": 555700000,
- "BloomNation": 6000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bob Jones University Museum & Gallery": 12900000,
- "Bojangles": 560000000,
+ "Azalea Creations": 20200000,
+ "Banks Creative": 16400000,
+ "BannerzRus Graphics": 26800000,
+ "Bar Control": 8800000,
+ "BartDaniel": 22600000,
+ "Beacon Communications": 11000000,
+ "Bell\u2019s Auto Body Repair": 9100000,
+ "BenCoxDesigns": 5700000,
+ "Beowulf Technologies": 32600000,
+ "Best Web Design Agencies": 10000000,
+ "Birdseye Technical Services": 11000000,
+ "Bkmacdaddy designs": 4400000,
+ "Black Ice Software": 6000000,
+ "Blackbaud Europe": 637900000,
+ "Blue Acorn iCi": 43600000,
+ "Blue Eye Soft": 2000000,
"Booz Allen": 8800000000,
- "Borden Dairy": 1200000000,
- "BorgWarner": 15300000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Britax": 503100000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Brown Insurance": 3400000000,
- "Bruster's Ice Cream": 2100000,
- "Bubba Gump": 7000000,
- "Buckle": 1300000000,
- "BurgerFi International Inc.": 102900000,
+ "Bordash Design": 1100000,
+ "Boys Farm Inc.": 10200000,
+ "Bradley Ed": 20300000,
+ "BridgeTek Solutions": 7000000,
+ "Buchanan & Edwards": 130000000,
+ "Bunfoot & Brocatelle": 10700000,
+ "ByFarr Graphic Design": 30600000,
+ "Byte Software Services": 29400000,
+ "C & K Systems": 7300000,
"CACI": 6200000000,
- "CHEF'STORE": 1100000000,
- "CTG": 375200000,
- "CURTISS-WRIGHT": 2500000000,
- "Cal-Maine Foods": 3000000000,
- "Camden Property Trust": 2000000000,
- "Camfil": 863100000,
- "Captain D's": 9000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carpenter Technology": 2400000000,
- "Carvel": 5700000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "CertusBank": 2700000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chick-fil-A": 5800000000,
- "Christmas Tree Shops": 15900000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clariant Ltd.": 5500000000,
- "Claro": 9200000000,
- "Clean Juice": 7000000,
- "Clemson Tigers": 1100000,
- "Cleva North America": 7000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia City Paper": 30100000,
- "Columbia Daily Tribune": 2900000,
- "CompX Security": 152400000,
- "Constantia Flexibles": 1700000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Tire the Americas LLC.": 230000000,
- "Core & Main Inc.": 6100000000,
- "Cornerstone Research": 250000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Cousins Maine Lobster": 5100000,
- "Covanta": 1900000000,
- "Cracker Barrel": 3300000000,
- "Cradlepoint": 200000000,
- "Crane Merchandising Systems": 600000000,
- "Crate & Barrel": 1600000000,
- "Crawford Composites": 6300000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D.H. Griffin": 171000000,
- "DAV": 3900000,
- "DEX Imaging": 284000000,
- "DJC Oregon": 10000000,
- "DMI Inc.": 705000000,
- "Dana Incorporated": 9900000000,
+ "CAROLINA NUTRITION": 32100000,
+ "CB Online": 3600000,
+ "CB5 Solutions": 3600000,
+ "CCP Technologies": 20200000,
+ "CDS Information Technology LLC.": 1400000,
+ "CHAMPS Analytics": 7000000,
+ "CMIT Solutions": 60000000,
+ "CNEWorks": 13600000,
+ "COE Security": 10000000,
+ "COLAMCO": 35200000,
+ "CSP Enterprises": 21900000,
+ "Camgian": 5800000,
+ "Candesign Creative Design and Multimedia": 21400000,
+ "Cantey Tech": 4200000,
+ "Capital Network Consultants Inc.": 20600000,
+ "Carolina Innovative Research": 11300000,
+ "Carolina Software": 57200000,
+ "Case Status": 4000000,
+ "Casselware": 17900000,
+ "CaterTrax": 15000000,
+ "Centurum": 10000000,
+ "Certainty Systems": 2000000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Cerulium": 4600000,
+ "Chargerback": 2400000,
+ "Charlotte IT Solutions": 17500000,
+ "Churchsoft": 6200000,
+ "Citymax Gift store thirumala": 7000000,
+ "ClaimLogiq": 6000000,
+ "Clark Data Services": 13500000,
+ "Cloud on Tap": 8000000,
+ "CloudComm": 12300000,
+ "CodeLynx": 12000000,
+ "Collaborative Work Environment": 2400000,
+ "Colophon New Media": 11200000,
+ "CommIT Enterprises": 31000000,
+ "Commerce Guys": 9100000,
+ "Communication Management": 15000000,
+ "Companion Data Services": 22900000,
+ "Computech Canada": 22500000,
+ "Computer Central": 14300000,
+ "Computer Consultants Group": 14200000,
+ "Computer Consulting Group": 19400000,
+ "Computer and Software Solutions": 28300000,
+ "Condrey Solutions": 17600000,
+ "Confluent - Microsoft Power Platform Pros": 2400000,
+ "Contact Plus": 2000000,
+ "Convergent 3D": 2400000,
+ "Convergent Design": 1400000,
+ "Convergent Technologies": 51300000,
+ "Cor Digital": 13900000,
+ "Corsica Technologies": 3800000,
+ "Crafted Solutions": 10800000,
+ "Creative Consultants Group": 21200000,
+ "Creative Take": 26400000,
+ "Cross IT": 8000000,
+ "Cross Link Consulting": 2400000,
+ "Crowdstack": 2000000,
+ "Crowell Systems": 5900000,
+ "Crunchy Data": 7000000,
+ "Customer Imperative": 2100000,
+ "Cut Above Host": 4100000,
+ "Cyber Ensure": 6200000,
+ "CyberChrome": 43400000,
+ "DC BLOX": 18600000,
+ "DCS Inc.": 14700000,
+ "DIG Creative Studio": 4800000,
+ "DMZ Services": 32600000,
+ "DRAYCOR": 69100000,
+ "DSD Business Systems": 14000000,
+ "DartPoints": 42000000,
+ "Data Analyzers Data Recovery Services": 4200000,
+ "Data Network Solutions": 54500000,
"DataWorks Plus": 3000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "Diversey Holdings": 2700000000,
- "Dollar General": 35300000000,
- "Dorchester School District 2": 2000000,
- "Drury Hotels": 620000000,
- "Dynata": 380300000,
- "ECU Health": 1800000000,
- "ELCA South Carolina Synod": 1300000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Embrace Home Loans": 180600000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Ethan Allen": 845000000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "FLETC": 1200000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "Finance & Commerce": 3700000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
+ "Datacom Systems": 2400000,
+ "Datum Software": 15700000,
+ "David Hunt Creative": 28000000,
+ "Design Seven": 13000000,
+ "DevSoft": 1700000,
+ "Devlimer": 5900000,
+ "Diadem Marketing Agency": 4100000,
+ "Digital Forensics Team": 4100000,
+ "Digital Pro Designs": 3700000,
+ "Digital Systems Support": 8600000,
+ "Digital Thinker": 15500000,
+ "DocFinity": 18500000,
+ "Dodeline Design": 27200000,
+ "Domain Cost Club": 1300000,
+ "Doxim": 67000000,
+ "Dr. Ware Technology Services": 15100000,
+ "Drake Software LLC.": 87500000,
+ "Duplicating Products Inc.": 49800000,
+ "Dynepic": 5000000,
+ "E-Starr": 7300000,
+ "EDR Solutions": 15400000,
+ "EFP Technology Solutions": 13700000,
+ "EINSTEIN DESIGN INC.": 12900000,
+ "Ebryit": 13200000,
+ "Electric Red": 2400000,
+ "Electronic Health Network": 3900000,
+ "EmbTrak": 12200000,
+ "Emergent Inc.": 25000000,
+ "Encore Technology Group LLC.": 22500000,
+ "Erin Murphy Art": 1000000,
+ "Esencial Proyectos": 4000000,
+ "Eskape Mate": 3500000,
+ "Excentium": 11100000,
+ "FINBACK 670": 30000000,
+ "Factory Systems": 4000000,
+ "Falconwood": 14400000,
"Fiserv": 17700000000,
- "Fluor Canada": 13700000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "G4S Global": 9400000000,
- "GG Archives": 3600000,
- "GMAC Ally Financial": 8400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Generac Power Systems": 4600000000,
- "Gentherm": 1100000000,
- "Gibson Brands Inc.": 366600000,
- "Globe Life Insurance": 5200000000,
- "Goldklang Group": 24800000,
- "Gordon Food Service": 16000000000,
- "Great Harvest": 21200000,
- "GreatSchools": 11000000,
- "GreenPal": 1200000,
- "Greenville News": 75000000,
- "Greenville-Spartanburg International Airport": 17200000,
- "Greystar Real Estate Partners": 550000000,
- "Groz-Beckert": 108600000,
- "Guitar Center": 2300000000,
- "H&R Firearms": 21000000,
- "H. T. Hackney Company": 3900000000,
- "HBC": 5600000000,
- "HCA Healthcare": 60200000000,
- "HUB International Ltd.": 3200000000,
- "Hackensack Meridian Health": 4500000000,
- "Haemonetics": 1100000000,
- "Haggar": 300000000,
- "Haig Point": 8500000,
- "Hair Club": 400000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Hargray": 184000000,
- "Harveys Supermarkets": 3100000,
- "Hayden Shapes": 12000000,
- "Heathwood": 29200000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hobby Lobby": 5300000000,
- "House of Blues Entertainment LLC.": 4800000,
- "Hunter Douglas Group": 4600000000,
- "Hustle Gang": 2800000,
- "Hwy 55": 3400000,
- "Hy-Vee": 12000000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "Imagine Schools": 14500000,
- "InTown Suites": 3400000,
- "Independent Mail": 6000000,
- "Indorama Ventures": 6600000000,
- "Ingredion Incorporated": 7200000000,
- "Innisbrook Golf Resort": 8000000,
+ "Fivable": 2400000,
+ "Flowgear": 3000000,
+ "Fluid Junction": 1400000,
+ "Forms InMotion": 2400000,
+ "Fox Meadows Software": 12600000,
+ "Foxhaven Associates": 13700000,
+ "Fractal Solutions": 11700000,
+ "Fuel Travel": 1500000,
+ "Future Tech Systems": 19900000,
+ "GC&E Systems Group": 59000000,
+ "GP Technologies": 7000000,
+ "GRAF-INKS": 5700000,
+ "GRSi": 53400000,
+ "Gallus Golf": 3800000,
+ "Gantt": 24400000,
+ "Gar-Con Inc.": 26600000,
+ "Gee Creative": 12600000,
+ "GeoWireless": 6000000,
+ "GlobalNow": 25000000,
+ "Glytec": 12000000,
+ "Gnoso": 12100000,
+ "Godlan": 13900000,
+ "Gordian": 115000000,
+ "Gov Solutions Group": 7800000,
+ "Government Contractors Insurance Services Inc.": 12500000,
+ "Gramercy Tech": 9200000,
+ "GreenWizard": 2700000,
+ "Greenville Web": 1100000,
+ "Grover Web Design": 2900000,
+ "H-Line Soft": 35000000,
+ "HF Labs": 31600000,
+ "HMP Marketing Designs": 13400000,
+ "HOEI": 32500000,
+ "Haber Group": 10600000,
+ "Hamilton Innovative": 20100000,
+ "Hannush Web": 13400000,
+ "HillSouth": 3500000,
+ "Homeland Secure IT": 2300000,
+ "Hooks Systems": 4600000,
+ "Hoppmann Creative": 3800000,
+ "HotshotCWS": 5400000,
+ "Human Presence": 7000000,
+ "ID Software": 2400000,
+ "IDT4biz": 47200000,
+ "IMS Technology Services": 38000000,
+ "INFORMATIONBASICS": 12000000,
+ "INNOPLEX": 35000000,
+ "INSite Business Solutions": 1600000,
+ "ION 247": 6000000,
+ "IST2": 27600000,
+ "ITPMG": 7300000,
+ "Icloud": 90000000,
+ "ImageServ": 1000000,
+ "Imagination Pathway": 31700000,
+ "Indus Technology": 36000000,
+ "Industry Specific Software Inc ISS": 8700000,
+ "Infinities Online Hosting": 16900000,
+ "InfoTech Design": 5300000,
+ "Infotec Systems Corporation": 15900000,
+ "Innovak International": 17300000,
"Instructure": 461100000,
- "Insurify": 9300000,
- "Integral Systems": 10000000,
- "Interfor": 354900000,
- "Invest Financial Corporation": 290000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "JMC Communities": 6000000,
- "Jackson Free Press": 5700000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Jittery Joe's": 3100000,
- "Joe's Crab Shack": 345000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "Just Aircraft": 16500000,
- "KBR": 7700000000,
- "Kelly Services": 5000000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kistler": 385000000,
- "Knots of Love": 4300000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Krispy Krunchy Chicken": 3400000,
- "L.G. Balfour Company": 290000000,
- "LGI Homes": 2300000000,
- "LSEG": 9500000000,
- "Laborie": 56300000,
- "Lancaster CSD": 11500000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
+ "Integrated Computer": 9100000,
+ "Integrated Support Systems": 14500000,
+ "Integrated Technology Services LLC - ITS": 6000000,
+ "Intellectual Alchemy": 25700000,
+ "Intelli-NET": 11400000,
+ "IntelliSystems": 10000000,
+ "InterDev": 14000000,
+ "Interact2Day": 35500000,
+ "Interactive Business Systems": 19900000,
+ "Interloop": 2400000,
+ "Intermedia Group": 13400000,
+ "Internetwork Engineering": 37000000,
+ "Iron Gate Real Estate": 4200000,
+ "IronLogix": 1400000,
+ "Itsm solutions": 4700000,
+ "J Chris Campbell": 3300000,
+ "J Fletcher Design": 6100000,
+ "JDM Technology Group": 25000000,
+ "JDO Designs": 16800000,
+ "JOBSCOPE": 6200000,
+ "Jackson Technologies": 28000000,
+ "Jackson\u2019s Southern Kitchen": 29200000,
+ "Johnson Electric Company Inc.": 27100000,
+ "Joshua Morgan": 7900000,
+ "Joye Group": 6000000,
+ "Justek": 2500000,
+ "JusticeTrax": 5000000,
+ "K2 Tech Group": 2400000,
+ "KMC Consulting": 10000000,
+ "KML Computer Services": 4800000,
+ "Kainaw": 16200000,
+ "Kalibrate": 3100000,
+ "Katalyst NEW Copy": 29100000,
+ "Keen Infotek": 33800000,
+ "Ken Inc.": 15300000,
+ "KeyMark": 50000000,
+ "Keystone Bytes Consulting": 39400000,
+ "Kinectra": 10100000,
+ "Kkcomm": 23200000,
+ "Kontakt Inc.": 4700000,
+ "Kopis": 6300000,
+ "Kotori Technologies": 42700000,
+ "L exiCode": 36000000,
+ "Lavaleer Solutions": 18000000,
+ "LeMay Creative": 42100000,
+ "Left Hand Graphic Design": 7600000,
+ "Lemmondsdesign Inc.": 1500000,
"Level 3 Communications": 17500000000,
- "Lexington County School District One": 17500000,
- "Life Is Good Company": 150000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Diversified Architectural Consulting": 2000000,
- "Little Free Library": 9500000,
- "Lloyd's": 473500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lowes Foods": 1600000000,
- "M.C. Dean": 1000000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Magellan Health": 7500000000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McCormick Taylor": 83000000,
- "MedStar Health": 5600000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Metal Supermarkets": 26800000,
- "Meyer Davis": 9000000,
- "Miami Grill": 150000000,
- "Michelin": 28300000000,
- "Milliken & Co.": 2500000000,
- "Missoula Montana Airport": 22900000,
- "Moe's Southwest Grill": 295500000,
- "Montage Hotels": 400000000,
- "Mood Media": 475100000,
- "Morley Companies": 19600000,
- "Motiva Enterprises": 20800000000,
- "Mr. Tire": 5700000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mynavyexchange": 7000000,
- "NCG Cinemas": 9100000,
- "NOAA Weather Radio": 36400000,
- "National Celiac Association": 3700000,
- "National Wild Turkey Federation": 6000000,
- "Net Ministries": 4000000,
- "Newark": 450000000,
- "Nicholas Financial": 48200000,
- "North Sails": 27500000,
- "Northrim": 124500000,
- "Northwest Bank": 510300000,
- "OMNOVA": 750000000,
- "OceanaGold": 744700000,
- "Oerlikon": 3100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneBlood": 1300000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orano": 5400000000,
- "Orbit Books": 7000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Outokumpu": 9800000000,
- "Oxxford Clothes": 25000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Palmetto Electric Cooperative Inc.": 4400000,
- "Paris Baguette": 11200000,
- "Park National Bank": 367600000,
- "Park Seed Company": 8400000,
- "Parker Hannifin": 15900000000,
- "Patric Chocolate": 18900000,
- "Peace Frogs": 2400000,
- "PharMerica": 2100000000,
- "Piaggio Aerospace": 8200000,
- "Piedmont Augusta": 4300000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Port City Java": 3400000,
- "Pretzelmaker": 125000000,
- "PrimoHoagies": 2600000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Psych Central": 5100000,
- "Publix": 52200000000,
- "Quad Metalworks": 3100000000,
- "Quick Lane": 6000000,
- "QuikTrip": 11000000000,
- "R. J. Corman": 420000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Rexair": 35000000,
- "Richland County School District Two": 26000000,
- "Risk International": 22900000,
- "Rite Rug": 9500000,
- "Roehl Transport": 421300000,
- "Roly Poly": 16400000,
- "Ron Jon Surf Shop": 18900000,
- "Rooms To Go": 2500000000,
- "Royal Terberg Group": 7000000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "SGS S.A.": 28000000000,
- "SHEEX": 4400000,
- "SIM": 4000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMS Holdings Corporation": 32800000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "San Antonio Shoemakers": 4700000,
- "Santee Cooper": 1900000000,
- "Savills North America": 6000000,
- "Schaeffler Group": 15600000000,
- "SemaConnect": 29000000,
- "Senor Frog's": 8000000,
- "ServiceMaster Clean": 48500000,
- "ShadowTV": 3200000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Smarte Carte": 26000000,
- "Society for Protective Coatings": 200100000,
- "Solectrac": 2500000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southern Ohio Synod": 30600000,
- "Southwest": 22700000000,
- "Spartanburg One": 19400000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanadyne": 23300000,
- "Standard Textile Company": 119500000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starlight Children's Foundation": 2700000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Stephens": 2300000000,
- "Stern Pinball": 28500000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "SunOpta": 812600000,
- "Suominen": 491400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "Symrise": 4600000000,
- "Synthomer": 3100000000,
- "TCBY": 8800000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Technetics Group": 100000000,
- "Technology Student Association TSA": 10000000,
- "Teijin": 7300000000,
- "Tempur-Pedic": 24700000,
+ "License Online": 2400000,
+ "Love Mitsubishi": 9000000,
+ "Luminant Design": 12000000,
+ "Lunarpages": 5800000,
+ "M D Technologies": 16300000,
+ "M2 Communications": 4000000,
+ "M2 Technologies": 32900000,
+ "MCM Network Systems": 5900000,
+ "MP Cloud": 6000000,
+ "MYTecSoft": 25000000,
+ "Maga Design": 16000000,
+ "Magnum Software Systems": 28400000,
+ "Mailprotector": 6500000,
+ "Maple Design": 3300000,
+ "Martus Solutions": 10100000,
+ "Maud Bentley Design": 7600000,
+ "Mecca Hosting": 10300000,
+ "Medical Software": 46000000,
+ "Medium der Teknor Germany GmbH": 5000000,
+ "Mefford Research": 8000000,
+ "Meg Austin Design": 3600000,
+ "Mega Informatics": 7000000,
+ "Mendis": 32900000,
+ "Meridian Group International": 22700000,
+ "Merit Technologies": 6000000,
+ "Mi-Co Inc.": 7100000,
+ "Micad": 7000000,
+ "Might & Main": 2300000,
+ "Mindplant": 9600000,
+ "Minkatec Computer Services": 13600000,
+ "Mirror Images": 4000000,
+ "Mission Solutions Group": 2000000,
+ "Mixnet": 24400000,
+ "Modulant": 20000000,
+ "Mojoe": 23900000,
+ "MoonClerk": 1400000,
+ "Moore & Moore Computing": 28900000,
+ "Moovila": 2800000,
+ "Morgan 6": 8000000,
+ "Mottfolio": 4800000,
+ "Muzit": 1400000,
+ "NCITE Solutions Group": 20900000,
+ "NPI Connect": 16500000,
+ "NUCLOUD": 10000000,
+ "Nadine Regan": 6000000,
+ "Neiconi": 22700000,
+ "NeoTekSystems": 37400000,
+ "Net3 Technology": 5100000,
+ "NetTec NSI": 10000000,
+ "Netalytics": 4300000,
+ "NewBold": 33300000,
+ "NexGen Data Systems": 31700000,
+ "NexNow": 3300000,
+ "Nfina": 15300000,
+ "Noregon": 22200000,
+ "Northland Systems": 20400000,
+ "Nursenav": 4400000,
+ "OTN Solutions": 9500000,
+ "Obsidian Solutions Group": 38000000,
+ "Omatic Software": 7200000,
+ "One Place Concepts": 13100000,
+ "One Smart Media": 12800000,
+ "OneDataSource": 2400000,
+ "Ontrak": 15100000,
+ "Operations Technologies": 12200000,
+ "Opex Technologies": 20800000,
+ "OptimWise": 3400000,
+ "OrangeCoat": 9500000,
+ "Orbiter Inc.": 21300000,
+ "Orion 247": 8000000,
+ "PC PRODUCTS": 14700000,
+ "POSSCON": 3200000,
+ "PSSI": 26200000,
+ "PUBLIQ Software": 6000000,
+ "Page1 Branding": 13000000,
+ "Palmetto Computer Consulting": 9800000,
+ "Palmetto Design Firm": 12900000,
+ "Palmetto Technology Group": 4100000,
+ "Paul Swider": 28400000,
+ "Pegasus Web Productions": 19300000,
+ "Period Three": 2400000,
+ "Personal Productivity Hacks": 11500000,
+ "PhishLabs": 18000000,
+ "Pico Quantitative Trading": 48500000,
+ "Pinnacle Practice Solutions": 5500000,
+ "Pivotal IT": 3800000,
+ "Pixel & Paper Designs": 7200000,
+ "Pixel Point": 10300000,
+ "Point Enterprises": 10800000,
+ "Pollock Company Pollock": 30600000,
+ "PolySystems": 23300000,
+ "Pomeroy": 850000000,
+ "Poster Boy Design": 14600000,
+ "Power-Link Software Systems Inc.": 26800000,
+ "PowerQuote Software": 3300000,
+ "Practical Systems LLC.": 31400000,
+ "Predicate": 10000000,
+ "Prevention I.T.": 8100000,
+ "Priorpoint Managed Cloud Services": 39500000,
+ "Prostar Enterprises Llc.": 3700000,
+ "Protech Systems": 14100000,
+ "Purchasing at a Glance": 40000000,
+ "PyLadies": 2400000,
+ "Pylon Technology": 6000000,
+ "Pylon design": 6000000,
+ "Quiver Graphics": 20300000,
+ "RMS Omega": 23100000,
+ "ROK Technologies": 13200000,
+ "RWS Consulting": 7400000,
+ "Rainier Holistic LLC.": 34400000,
+ "RedSail Technologies LLC.": 35000000,
+ "Referral MD": 10000000,
+ "Regional One": 23300000,
+ "RelyID": 1000000,
+ "Renaissart": 23300000,
+ "ResolvIT ERP LLC.": 11700000,
+ "Resolve Software Development": 9400000,
+ "Resource Management Concepts": 12600000,
+ "Respect Technology": 3200000,
+ "Robojuice": 1400000,
+ "Rocking Chair Software": 18800000,
+ "Rome Technologies Inc.": 19400000,
+ "Ruff Furniture": 15100000,
+ "S2Tech": 15700000,
+ "SAM-LAB": 2400000,
+ "SC Upstate I.T.": 4000000,
+ "SGA Software": 31200000,
+ "SI Solutions": 11000000,
+ "SKELPO": 4000000,
+ "STEM Premier": 2000000,
+ "Saber Corporation": 12300000,
+ "Sandia Systems": 35800000,
+ "Sassy's Savings": 3300000,
+ "Schmoll Creative": 4300000,
+ "SchoolSource Technologies": 2400000,
+ "SealingTech": 3200000,
+ "SecureGive": 6000000,
+ "Security First IT": 5600000,
+ "SeedProd": 2400000,
+ "Seth Berry Photography": 31000000,
+ "Sev1Tech": 45600000,
+ "Shift Admin": 5000000,
+ "Simmons Computer Services": 8200000,
+ "SiteGround Blog": 16200000,
+ "Soft Blue": 1900000,
+ "Softcons": 6000000,
+ "Softdocs": 23000000,
+ "Software Projects Consulting": 19200000,
+ "Software Servant": 30300000,
+ "Southside Solutions": 34000000,
+ "Spartan Technology": 14700000,
+ "SpartanTec": 6900000,
+ "SpinSys": 14300000,
+ "Spinvi": 7000000,
+ "Springland": 16100000,
+ "Sprockets": 3500000,
+ "Stasmayer": 4300000,
+ "Sterling Solutions": 49200000,
+ "Strategic Information Group": 7500000,
+ "Structured IT": 6000000,
+ "Studio 202": 14700000,
+ "Studio 303.": 22900000,
+ "Studio 9 Co.": 11200000,
+ "Subsplash": 10000000,
+ "SunDial Technologies": 35500000,
+ "SunRiver IT": 7800000,
+ "Susan Searway Art & Design": 16100000,
+ "Swampfox": 12200000,
+ "SynerJay": 29400000,
+ "Synergistic Office Solutions": 49800000,
+ "Synesis International": 20400000,
+ "TDD - The Design Department": 11100000,
+ "TECH VUDU": 3300000,
+ "TECHSOFT Inc.": 4000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TIAG": 16900000,
+ "TJ's Elements": 1100000,
+ "TSA Choice": 5300000,
+ "Tabs3": 12200000,
+ "Taylor Data": 10000000,
+ "Tc And Kk Inc.": 25000000,
+ "Team IA.": 28900000,
+ "Team Wolfe": 26600000,
+ "TeamLogic Inc.": 7200000,
+ "Teamphoria": 14000000,
+ "Technica LLC.": 8100000,
+ "Technology Plus": 15200000,
+ "Tecnova Solutions": 5300000,
"Tenable\u00ae": 577300000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "The Daily Gamecock": 2500000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
- "The North Face": 2000000000,
- "The Points Guy": 3400000,
- "The Scoular Company": 4000000000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UNTUCKit": 350000000,
- "USALCO": 7300000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Urban Design Associates": 9000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VSE Corporation": 9800000,
- "VT Group": 185000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Vericor": 26900000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Vesuvius France S.A.": 2200000000,
- "Vibra Healthcare": 672800000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Voith": 4800000000,
- "Volkert": 124000000,
- "Volkswagen": 51300000000,
- "W. L. Gore & Associates": 3800000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Western & Southern Financial Group": 5300000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westminster Catawba Christian School": 1000000,
- "Which Wich": 79500000,
- "Wild Wing Cafe": 5400000,
+ "TerraStride": 5400000,
+ "Terri Perkins": 8100000,
+ "The 20 MSP": 3300000,
+ "The Art Store": 7000000,
+ "The Comdyn Group": 8900000,
+ "The MIL Corporation": 135000000,
+ "The Teneo Group": 12400000,
+ "The Ulysses Group": 26000000,
+ "The Zigs Creative": 23700000,
+ "ThinkManaged": 39700000,
+ "Thrive NextGen": 150000000,
+ "Thundernet": 38500000,
+ "Tiny Minute": 3000000,
+ "Touchality": 2400000,
+ "TrakItNow": 7000000,
+ "TraxlerSoftware": 10300000,
+ "Traxxis GPS": 1400000,
+ "Tree LLC.": 1400000,
+ "Trilogix": 10000000,
+ "Trofholz": 21300000,
+ "Trudy Gove": 21600000,
+ "Trudy Gove Design": 35600000,
+ "Truematter": 23400000,
+ "TurboBid": 17000000,
+ "Two Rivers Technologies": 23800000,
+ "TypeRocket": 3200000,
+ "Ultigift": 10000000,
+ "Unified Network Group": 17900000,
+ "UniversityTickets": 10000000,
+ "Upswot": 1000000,
+ "Usaidata": 29300000,
+ "Ushur": 10000000,
+ "VENYU": 30000000,
+ "VET1 IT": 20600000,
+ "VIGIERS COMPUTER SERVICES LLC.": 25800000,
+ "VTECH SOLUTION": 10200000,
+ "Vacation Rental Software": 8000000,
+ "Vdl Enabling Technology Group": 12000000,
+ "Vendr": 20000000,
+ "Ventu-lite Inc.": 32100000,
+ "Vereen's Farm & Turf Center": 15000000,
+ "Verge Health": 35000000,
+ "Virtual Marketing Concepts": 10400000,
+ "Visibility Software": 5800000,
+ "Vision-e": 10000000,
+ "Vista Graphic Designs": 15300000,
+ "Visual Branding Agency": 24300000,
+ "WDS3": 37400000,
+ "WITH ROVE": 22300000,
+ "Walling Info Systems": 3400000,
+ "Wao Photo": 17100000,
+ "Watermark Solutions": 13000000,
+ "WealthEngine": 15000000,
+ "Web Access": 5600000,
+ "Web First Creations": 3200000,
+ "Web Safari at Giraffeweb": 8500000,
+ "Web aggression": 11700000,
+ "WebNet Media Group": 26700000,
+ "Webheads": 26700000,
+ "Website Pipeline": 10200000,
+ "Website Velocity": 4000000,
+ "Wells Gallery": 21900000,
+ "Wengert": 19400000,
+ "Wingard Graphics": 14800000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "Wpromote": 72300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "ZOOperstars": 5100000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
+ "WorkWies": 5800000,
+ "Workhorse Collective LLC.": 8100000,
+ "XD Graphics": 1500000,
+ "Yella Soft": 3600000,
+ "Zachary Piper": 5000000,
+ "Zeta Compliance Tech LLC.": 21800000,
+ "ZetaSafe": 6000000,
+ "Zoltes": 7000000,
+ "eLink": 12000000,
+ "eSTS": 34700000,
+ "eUnify": 60400000,
+ "iGateway MS": 3100000,
+ "iGetSales LLC.": 27800000,
+ "intY": 53900000,
+ "netGALAXY Studios": 17900000
},
"South Dakota": {
- "ABC Supply": 12100000000,
+ "0xEvilC0de": 370000,
+ "ACS Software": 12600000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Agropur": 7700000000,
- "Alamo Rent a Car": 2900000,
- "Alex Johnson": 16900000,
- "Alexander Street": 8800000,
- "Allison Transmission": 2700000000,
- "Alzheimer's Association": 81500000,
- "American College of Apothecaries": 3200000,
- "American Eagle Outfitters": 5000000000,
- "American Indian College Fund": 7800000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Applied Instruments": 9000000,
- "Association of Free Lutheran Congregations": 6500000,
- "At Home store": 1700000000,
- "BBR Music Group": 2600000,
- "Bekins Van Lines Inc.": 33600000,
- "Beltone": 61600000,
- "Brain Injury Association of America": 10000000,
- "Buckle": 1300000000,
- "Cadex Defence": 7700000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Clark Brands": 23000000,
- "Continental Resources": 9500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "Einstein Bros. Bagels": 500000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
- "Exact Data": 20000000,
- "ExxonMobil": 403200000000,
- "Farmer Brothers": 469200000,
- "Farmers Business Network": 60000000,
- "Ferrellgas": 2100000000,
+ "AVI System's": 272500000,
+ "Access Systems": 324000,
+ "Active Data Systems": 1300000,
+ "Advanced Threat Analytics": 14000000,
+ "AgWare UAAR": 2500000,
+ "Alpha Technologies Inc USA": 25000000,
+ "Asio Studio": 1400000,
+ "AuSum Creative": 474000,
+ "AutoConX": 162000,
+ "BPro Inc.": 22400000,
+ "Bieber Design Wedding": 214000,
+ "Black Hills Information Security": 7000000,
+ "BrightPlanet": 4000000,
+ "Building Start": 1400000,
+ "CHR Solutions": 70000000,
+ "CITEcloud": 2400000,
+ "CMIT Solutions": 60000000,
+ "CSI - Computer Service Innovations": 12800000,
+ "Central Media Designs": 4000000,
+ "Central Software Solutions": 10000000,
+ "CentralSquare Technologies": 59000000,
+ "ChalkLabs": 1400000,
+ "Chenega Logistics Llc.": 300000000,
+ "CitiTech": 6000000,
+ "Class Manager Plus": 221000,
+ "CompuNet Inc.": 146600000,
+ "ConvergeOne": 1600000000,
+ "CyberSecOp": 10000000,
+ "DNN 4 Less": 6700000,
+ "DOT-RHX Systems": 2400000,
+ "DakBio": 2900000000,
+ "Dakota Cloud Recovery": 1100000,
+ "DakotaQ": 1400000,
+ "Data Playground": 1400000,
+ "DataBank IMX": 37000000,
+ "DekTec": 19400000,
+ "Digital Forensics Team": 4100000,
+ "EL Design Studio": 4700000,
+ "ELBO": 2000000,
+ "Eagle Creek Software Services": 15000000,
+ "EasyOFAC": 2400000,
"Fiserv": 17700000000,
- "Foster Farms": 3000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Beer": 20600000,
- "G&L Guitars": 8000000,
- "GreenPal": 1200000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "HuHot Mongolian Grill": 7000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "ItsBurgerTime": 9700000,
- "JLG Architects": 10000000,
- "Jack Henry": 1300000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KBR": 7700000000,
- "Kirby Company": 500000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Krispy Krunchy Chicken": 3400000,
- "L. G. Everist": 10000000,
- "Leaf Trading Cards": 2400000,
- "Leeann Chin": 2800000,
+ "Flywheel Ag": 2500000,
+ "For The Win Interactive": 6500000,
+ "Foxfire Systems Group": 7000000,
+ "GDM Solutions": 1600000,
+ "Geo-Connections Inc.": 6000,
+ "Giant Leap": 18100000,
+ "H Data Recovery": 680000,
+ "HY-TEK Ltd.": 5800000,
+ "High Point Networks": 25000000,
+ "Huether Design": 203000,
+ "IPS Group": 24800000,
+ "IT Outlet": 3000000,
+ "Identifex": 490000,
+ "Infotech Solutions LLC.": 21900000,
+ "Intellectual Technology Inc.": 10000000,
+ "InteractiveTHINK": 6000000,
+ "JamesDugan Casino Marketing": 420000,
+ "Jamesdugan Inc.": 1300000,
+ "Jk Personal Touch": 19300000,
+ "Journey Technology Solutions": 2400000,
+ "KT Connections": 24900000,
+ "Lemonly": 1500000,
"Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Lovesac": 389800000,
- "MOBILE MINI": 593000000,
- "Marine Turbine": 50000000,
- "MarketBeat": 7000000,
- "Marlin Firearms Company": 42800000,
- "Midwest Communications": 36300000,
- "NOAA Weather Radio": 36400000,
+ "LiveSquare Security": 14200000,
+ "Loffler Companies": 280000000,
+ "MOD Mission Critical": 2900000,
+ "Makaio Design": 20800000,
+ "Marco Technologies": 400000000,
+ "Maus Strategic Planning Software": 7100000,
+ "Mergetool": 1400000,
+ "Midwest Asphalt": 11800000,
+ "Miovision": 35000000,
+ "Montessorium": 3000000,
+ "MuSystems": 16800000,
+ "Navigant Cymetrix": 55000000,
"Norton": 1300000000,
- "NuStar Energy": 3200000000,
- "NuView IRA": 7000000,
- "One World Direct": 28000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "PCL Construction": 6300000000,
- "POET": 310000,
- "Parker Hannifin": 15900000000,
- "PharMerica": 2100000000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Prairie Farms": 3100000000,
- "Principal Financial Group": 13900000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RSM US": 3300000000,
- "Rapid City Regional Airport": 23100000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "SCHEELS": 800000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SONIFI": 10900000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sanderson Farms": 5600000000,
- "Schmitt Music": 20600000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silencer Central": 10000000,
- "Sleep Number": 2100000000,
+ "Ocean Cafe Graphics": 20200000,
+ "Omnitech Inc.": 10000000,
+ "PC Doctor of Sioux Falls": 3000000,
+ "Portal Web Hosting": 10000000,
+ "PredictHQ": 2000000,
+ "Property Meld": 3400000,
+ "Query Inc.": 3700000,
+ "Quik Signs": 36600000,
+ "R & G Visions": 60300000,
+ "RevRise": 690000,
+ "Reva Graves Creative": 40200000,
+ "RezSystems": 11900000,
+ "Riverside Technologies Inc. RTI": 19000000,
+ "Run Spot": 8800000,
+ "Rushmore Web Design": 17900000,
+ "SBS CyberSecurity": 14500000,
+ "SFWebguy": 3200000,
+ "Secure Marking": 2400000,
"Smartsheet": 712000000,
- "Society Tea": 4300000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Stanley Steemer": 9500000,
- "Steak Escape": 18500000,
- "Stericycle": 3600000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Summit League": 49000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Terex": 4400000000,
+ "Software Unlimited Inc.": 3400000,
+ "Sparticl": 420000,
+ "Sterling Computers": 740000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tech2 Dynamic": 497000,
+ "Technology Plus": 15200000,
+ "TekMtn": 6200000,
+ "The Gage Team": 15400000,
+ "The I.T. Company": 2500000,
+ "TierPoint Sioux Falls West Data Center": 19100000,
"TigerDirect": 200000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "US Eagle": 35000000,
- "USGS": 5000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "University of South Dakota": 400000000,
- "Veritiv": 7300000000,
- "Vermeer": 1000000000,
- "Victoria's Secret": 5400000000,
- "W. W. Grainger": 15200000000,
+ "Time Management Systems": 17200000,
+ "TotalKayoss Web & Graphic Design": 17900000,
+ "Trinity Networx": 3400000,
+ "Turner Lee": 23900000,
+ "Webplus Shop": 23100000,
"Wolters Kluwer": 5400000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Zumiez": 1100000000
+ "Workplace IT Management": 219000,
+ "Xigent Solutions": 18400000,
+ "XiriuS Business Solutions": 15100000,
+ "Zuercher Technologies": 11300000,
+ "eTek Studio": 4300000,
+ "h Plains": 10000000,
+ "iOmounts": 2400000,
+ "imINDY LLC.": 3200000
},
"Tennessee": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACE Cash Express": 600000000,
- "ADM": 94400000000,
+ "150 Websites": 14500000,
+ "22nd Century Solutions": 166300000,
+ "2313 Creative": 1000000,
+ "2st": 28300000,
+ "A Mobile Techs Onsite IT Support Services": 36800000,
+ "A tune": 14500000,
+ "A1 Restaurant Equipment Inc.": 10500000,
+ "AAP Consulting": 21900000,
+ "AB Computer": 26800000,
+ "ADAN Technologies": 14400000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AMC Theatres": 3900000000,
- "ASEA Brown Boveri": 28800000000,
- "AUSA": 23000000,
- "Academy Sports Outdoors": 6600000000,
- "Acadia Healthcare": 2500000000,
- "Ace Hardware": 7800000000,
- "Acxiom": 1300000000,
- "Adore Me": 115000000,
- "Advantage Rent a Car": 150000000,
- "Aeroframe Services": 17500000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Albemarle Asset Management ltd. London": 4300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "America's Swimming Pool": 54600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Fence": 100000000,
- "American Greetings": 2000000000,
- "American President Lines": 1300000000,
- "American Psychopathological Association": 12000000,
- "American Tinnitus": 4200000,
- "American Water": 3800000000,
- "Americold Logistics Inc.": 2900000000,
- "Apartment List": 37300000,
- "Arconic": 9000000000,
- "Ardent Records": 23200000,
- "Army News Service": 16400000000,
- "Artists Music Guild": 600000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Atlantic Natural Foods": 63800000,
- "Atlantic Union Bank": 689200000,
- "Atria Senior Living": 778500000,
- "Autistic Self Advocacy Network": 2500000,
- "Avant LLC.": 29800000,
- "Ave Maria Press": 3200000,
- "Axios": 76000000,
- "BBYO": 15800000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Back Yard Burgers": 120000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Ballet Memphis": 4900000,
- "Bank of Tennessee": 76100000,
- "Barbeque Integrated Inc.": 179000000,
- "Barnes & Thornburg": 575500000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Becton Dickinson Philippines": 18900000000,
- "Beef 'O' Brady's": 6200000,
- "Bekins Van Lines Inc.": 33600000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bible in the Schools": 13800000,
- "Biscuit Love": 4000000,
- "Black Rifle Coffee": 233100000,
- "Blount County Rescue Squad": 27200000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
- "Borden Dairy": 1200000000,
- "Bossard": 920500000,
- "Boston Consulting Group": 8600000000,
- "Brain Injury Association of America": 10000000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "Bush's Beans": 250000000,
- "C Spire": 5000000000,
- "CELINE": 600000000,
- "CONCRETE MARKETING": 19400000,
- "CRA Racing": 14400000,
- "Camden Property Trust": 2000000000,
- "Camso": 1300000000,
- "Carpenter Technology": 2400000000,
- "Cellular Sales": 1700000000,
- "Chattanooga Area Regional Transportation Authority": 15900000,
- "Chattanooga Times Free Press": 17500000,
- "Check Into Cash": 1000000000,
- "Chester County Schools": 13500000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Christ Community Health": 22900000,
- "Christian Television Network": 12200000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "Clark Brands": 23000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
- "Coffee County Schools": 10000000,
- "Coker Tire": 37500000,
- "College Hunks Hauling Junk": 100000000,
- "Commercial Appeal": 150000000,
- "Commission on Accreditation for Respiratory Care": 5700000,
- "Community Coffee": 245000000,
- "Concord entertainment company": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "CoreCivic": 1900000000,
- "Cousins Maine Lobster": 5100000,
- "CoverMyMeds": 200000000,
- "Cracker Barrel": 3300000000,
- "CraftWorks Holdings": 720000000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crown Financial Ministries": 10700000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "D.H. Griffin": 171000000,
- "DENSO CORPORATION.": 43500000000,
- "DEX Imaging": 284000000,
- "DMI Inc.": 705000000,
- "Dalton School": 2800000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Dignity Memorial": 25000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drury Hotels": 620000000,
- "EEOC": 10000000,
- "EVgo Services LLC.": 34400000,
- "East of Chicago Pizza": 6000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Edgewell": 2200000000,
- "Einstein Bros. Bagels": 500000000,
+ "AMS Software": 28200000,
+ "AT-NET Services - Managed IT Services Company Charlotte": 15000000,
+ "AVI-SPL": 1300000000,
+ "Ably": 10000000,
+ "Absentys": 10300000,
+ "Access Systems": 20500000,
+ "AccuReg Software": 22500000,
+ "AcquiData": 18500000,
+ "Adapt One": 2000000,
+ "Advanced Network Solutions": 12000000,
+ "Advanced Threat Analytics": 14000000,
+ "Advizex": 240000000,
+ "Aegis Aerospace": 75000000,
+ "Afs Information Systems": 18300000,
+ "Agero": 600000000,
+ "Agile Ticketing Solutions": 5700000,
+ "Aicomp": 4500000,
+ "Aisling Technologies": 29600000,
+ "Alchemy Cloud": 14000000,
+ "Alfonso Llamas": 12300000,
+ "Algiz Technology": 10000000,
+ "All Clear System": 11800000,
+ "Alpha Omega Consulting Group Inc.": 21200000,
+ "Anderson Design Group": 10600000,
+ "Anexix": 22000000,
+ "Appex innovation": 7000000,
+ "Appspace": 10000000,
+ "Apro Network Professionals": 14200000,
+ "Arahant": 16200000,
+ "Artis Networks": 12700000,
+ "Assurance Data": 10000000,
+ "Atiba Mobile App Services": 3100000,
+ "Atiba Network Services": 3700000,
+ "Atiba Software": 5900000,
+ "Avail Company": 4200000,
+ "Avetta": 100000000,
+ "Avidex": 27000000,
+ "BCTI": 15400000,
+ "BILL TYLER DESIGNS": 6200000,
+ "BKRZ": 24900000,
+ "Bacheler Technologies": 62100000,
+ "Bacheler Technologies - Nashville": 62100000,
+ "Backup RX": 11000000,
+ "Ball Frog": 6500000,
+ "Baltic Studios": 16700000,
+ "Basic Safe": 3500000,
+ "Becky's Graphic Design": 29300000,
+ "Bedroc": 22600000,
+ "BiT Dealership Software": 18500000,
+ "Blacksnow Media LLC.": 33700000,
+ "Blue Equinox": 10000000,
+ "BlueCore Technologies": 20200000,
+ "Bondware": 9700000,
+ "BrainBridge Systems": 25800000,
+ "Brantley Inc.": 19000000,
+ "Brightree": 500000000,
+ "Brillius": 28400000,
+ "Burk I.T.": 31600000,
+ "C-Corp Incorporated": 10100000,
+ "CA West": 11400000,
+ "CCSI - Computer Consulting Services": 10000000,
+ "CEI America": 92400000,
+ "CISTECH": 28400000,
+ "CMIT Solutions": 60000000,
+ "CODE Plus": 22500000,
+ "COLAMCO": 35200000,
+ "COMPUTER HELP LLC.": 15900000,
+ "CW Enterprises Inc.": 13200000,
+ "Cachengo": 51100000,
+ "Cambria": 28300000,
+ "Capas Hub Knoxville SEO Expert": 25600000,
+ "Cast Designs & Supply": 44800000,
+ "Catalyst Technology Group USA": 10800000,
+ "Catapult Communications": 22000000,
+ "Catt Lyon": 9600000,
+ "Centella Consulting": 11900000,
+ "Central Research": 14500000,
+ "Centresource": 20000000,
+ "Charity Check": 5700000,
+ "Chung Design": 12400000,
+ "Church Office Online": 5400000,
+ "Cicayda iDiscovery": 6800000,
+ "Civilized": 17300000,
+ "ClassGather": 10800000,
+ "Clearwater Security": 12500000,
+ "Clients First Business Solutions - SAP Business One Consulting": 34300000,
+ "Clinard Home Improvement": 11200000,
+ "Clinix": 10000000,
+ "Cloudvue": 25000000,
+ "CodeScience": 24000000,
+ "Codetaxi Llc.": 6500000,
+ "Codis": 19900000,
+ "Cognitus Consulting": 20000000,
+ "Cole Informatics": 18600000,
+ "Commando Blog": 1000000,
+ "Complete Computer Services": 33800000,
+ "Complex Industries": 11500000,
+ "Computer Worldss": 15400000,
+ "Concept Technology": 9100000,
+ "ConvergeOne": 1600000000,
+ "Conversant Group": 12300000,
+ "Cook Systems": 13500000,
+ "Cordially Creative": 19100000,
+ "Core BTS": 220000000,
+ "Cq graphic design": 11400000,
+ "Creative Trust": 47100000,
+ "Cumberland International": 27200000,
+ "Cyber Corp Software": 7000000,
+ "CyberSecOp": 10000000,
+ "CyberTech LLC.": 7000000,
+ "DARVIS": 1800000,
+ "DC BLOX": 18600000,
+ "DESIGN CLARK": 14400000,
+ "DOTReady": 30300000,
+ "DPRA": 6300000,
+ "Dancing Knox LLC.": 39500000,
+ "Data Guidance Group": 3100000,
+ "Data Meaning": 10000000,
+ "Data Recovery Labs": 12900000,
+ "Data Tapestry": 75000000,
+ "DataMart Technologies": 7500000,
+ "DataRide": 24100000,
+ "DataTriangle": 2400000,
+ "Datamation": 3200000,
+ "Dataprise": 52100000,
+ "Dataretrieval": 29800000,
+ "Davenport Group": 35200000,
+ "Deatherage Web Development": 5800000,
+ "Denniston Inc.": 4800000,
+ "Denver T. Stevens Creative": 11900000,
+ "DescriptMED": 16900000,
+ "DesignGum": 6500000,
+ "Designway": 31600000,
+ "DevGuru": 13800000,
+ "Di-Fi Solutions LLC.": 32500000,
+ "Digital Dream Forge": 25000000,
+ "Digital Innovations Inc.": 11400000,
+ "Digital Minds International": 13400000,
+ "Dionach": 16500000,
+ "Disciple Design": 17600000,
+ "Diversified": 458900000,
+ "Dixie Willard Design": 3600000,
+ "Doc2e file": 10000000,
+ "Dossier Inc.": 3000000,
+ "Doxcelerate": 13700000,
+ "Dozen Software": 2100000,
+ "Drake Software LLC.": 87500000,
+ "DynaSis": 14000000,
+ "EOSYS Group": 11000000,
+ "ER2": 3100000,
+ "ESENSE IT": 26000000,
+ "EYEJAZZ": 21100000,
+ "EagleRidge Technologies": 28500000,
+ "Easy Designs": 3800000,
+ "Ecteon": 16700000,
+ "Ekklesia 360": 5000000,
"Elasticsearch B.V.": 977800000,
- "Elavon": 550000000,
- "Endeavor Air": 510000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
+ "Eleazar Group": 19300000,
+ "Elevated Computing": 67600000,
+ "Elite Technology Group": 44300000,
+ "Eliza Brock": 29800000,
+ "Emids": 100000000,
+ "EntOrgCorp": 1500000,
+ "Epicor Users Group": 10000000,
"Equinix": 7300000000,
- "Ergon Refining": 4500000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Every Nation": 4400000,
- "Evonik Industries AG": 19700000000,
- "Exact Data": 20000000,
- "Faithful & Gould": 241100000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "Fluor Canada": 13700000000,
- "Fox Network": 3000000000,
- "Franklin Municipal Airport": 15600000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fund for Constitutional Government": 14200000,
- "G4S Global": 9400000000,
- "GATX India Private Limited": 1300000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "GP Strategies": 482000000,
- "GardaWorld": 3800000000,
- "GeenStijl": 1000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gibson Brands Inc.": 366600000,
+ "Eric Winton": 14100000,
+ "Essintial Enterprise Solutions": 64000000,
+ "Ethridge Daniel Computer Systems": 7400000,
+ "Evoque Data Center \u2013 Dallas Allen": 21000000,
+ "Expedient": 200000000,
+ "Experts Exchange": 4400000,
+ "Ezchef": 34800000,
+ "FX Design Group": 13500000,
+ "Farner Inc.": 47600000,
+ "Fast Iron": 15800000,
+ "Ferocious Graphix": 27600000,
+ "Fidelity Networks": 13400000,
+ "Fortunesoft IT Innovations": 34700000,
+ "Fountain City Untd Methdst Ch": 17200000,
+ "Frank Harris": 10700000,
+ "Friends Of The Appalachian Center For Craft Of Tennessee Facct": 10000000,
+ "Fused": 10000000,
+ "GC&E Systems Group": 59000000,
+ "GROM": 60000000,
+ "GSales-aweber": 25000000,
+ "GeekPreach": 7900000,
+ "Generation Systems": 18800000,
+ "Geodatix": 16500000,
+ "Geyra": 12700000,
+ "Gigafaith": 37000000,
+ "Gillis Graphics": 30200000,
+ "Global IT & Recovery Services": 12000000,
"Global Shares Trustees UK Limited": 18700000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
- "Great Smoky Mountains Railroad": 4000000,
- "GreatSchools": 11000000,
- "Greystar Real Estate Partners": 550000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "H. T. Hackney Company": 3900000000,
- "HCA Healthcare": 60200000000,
+ "GoalHawk": 19200000,
+ "Gonzo systems": 15500000,
+ "Grace Goad": 32800000,
+ "Grafik Touch Advertising Agency": 16700000,
+ "Graphics By Jacqueline": 17600000,
+ "Gray Dove Ministries": 21100000,
+ "Green Pond Creative": 3600000,
+ "Groundlevel": 32200000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HVS": 47500000,
- "Haemonetics": 1100000000,
- "Haggar": 300000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hard Rock": 5200000000,
- "Harrow Health": 72500000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Hippocrene Books": 15700000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
+ "HOLMANS": 58900000,
+ "HWA International": 23600000,
+ "Hagerman": 35000000,
+ "Haile Coaching & Leadership": 17700000,
+ "Harwood Int.": 31800000,
+ "Healthcare Blocks": 12900000,
+ "Heatherstone": 2900000,
+ "Hemmersbach": 288000000,
+ "Hewitt Associates LLC.": 11700000,
+ "Hillhouse4design": 10600000,
+ "Home Choice Windows and Doors": 11400000,
"Hornsby Brand Design": 10300000,
- "Hudson": 2000000000,
- "ICICI Bank": 18100000000,
- "IDEMIA": 1100000000,
- "IDLE AIR": 9000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "Industrias Magneti Marelli Mexico": 12000000000,
- "International Bluegrass Music Association": 66200000,
- "International Comfort Products": 41800000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jabil": 33500000000,
- "Jack Henry": 1300000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Johnson Braund": 11000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KIPP": 11300000,
- "KONE": 10900000000,
- "Kelly Services": 5000000000,
- "Kendall Hunt": 37400000,
- "Kia Kima": 37900000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kingsport City Schools": 4600000,
- "Kirby Company": 500000000,
- "Knoxville Christian School": 16300000,
- "Knoxville News Sentinel": 1100000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Koppers": 2000000000,
- "Kramer Guitars": 49800000,
- "Kroger": 130700000000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "Kuhn Rikon": 17500000,
- "Kwik Shop": 595000000,
- "L'Observatoire International": 21700000,
- "L.G. Balfour Company": 290000000,
- "LBMC": 28000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "LegalShield": 145000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Hound Gear": 22600000,
+ "House of Scott": 35000000,
+ "HudsonYards Studios - Creative Production Services Agency": 17300000,
+ "I-care Reliability Inc.": 25000000,
+ "IB Tech Consulting": 30500000,
+ "ICONVERGENCE": 12800000,
+ "IGT Solutions": 230000000,
+ "INTEGRITY NETWORK SOLUTIONS": 57100000,
+ "IT Decisions": 23500000,
+ "IT Niche": 8900000,
+ "IT Select": 38100000,
+ "IT4E": 10900000,
+ "ITonDemand": 39500000,
+ "Icloud": 90000000,
+ "InStream": 4000000,
+ "Inception Network Strategies": 26700000,
+ "Infinity Business Consulting": 11100000,
+ "Info-graphics Inc.": 35400000,
+ "InfoSystems Cyber": 23800000,
+ "Inn Solutions": 26700000,
+ "Integrated Data Management Services": 10000000,
+ "Integrated Data Solutions": 24800000,
+ "Intelli System IT": 11000000,
+ "IntelliSoft Technologies": 30400000,
+ "Intelliquip": 10700000,
+ "Internetwork Engineering": 37000000,
+ "Intervan": 27900000,
+ "Interweave Technologies": 10200000,
+ "Invisible ink graphics": 20500000,
+ "J Mitchell Consulting": 18900000,
+ "JDM Technology Group": 25000000,
+ "JK Design | Graphic Communications": 3700000,
+ "JODIE YANEZ": 28100000,
+ "JOVANI DESIGN": 26100000,
+ "Jacorp Technical Solutions": 53600000,
+ "Jclauson": 13900000,
+ "Jeff Walker": 30700000,
+ "Jenzabar Inc.": 72000000,
+ "Jester Designs": 15600000,
+ "KMC Consulting": 10000000,
+ "Kasey Creative": 10600000,
+ "Kathleen Rae Knowling": 26100000,
+ "Keener Marketing": 21800000,
+ "Keller Schroeder": 10000000,
+ "KerseyGraphics": 32900000,
+ "KeyLogic": 26300000,
+ "KeyStone Solutions": 13400000,
+ "Kindful": 10000000,
+ "Kineso": 1400000,
+ "Kinnick": 6500000,
+ "Kneelindesign": 5600000,
+ "Kraft Enterprise Systems": 41700000,
+ "Kreative 1s": 15300000,
+ "Kristof Creative": 5900000,
+ "Kythera Labs": 2800000,
+ "LPS Integration": 100000000,
+ "Lakeview Inn Kingston": 14600000,
+ "Lester Infoservices.": 17900000,
+ "Let's Talk Computers": 27300000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Liberty FCU": 11300000,
- "Life Care Centers of America": 3000000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Lion Oil": 30800000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "Lyndhurst Foundation": 12200000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "MFJ Enterprises": 7800000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Main Event": 678000000,
- "Malco Theatres": 35300000,
- "Marcus & Millichap": 1500000000,
- "MasterCraft": 761500000,
- "Maury County Public Schools": 39600000,
- "McCormack Baron Management Services Inc.": 6000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Measurement Incorporated": 63000000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Memphis International Airport": 300000000,
- "Metal Museum": 2700000,
- "Metal Supermarkets": 26800000,
- "Metro Nashville Public Schools": 5400000,
- "Meyer Davis": 9000000,
- "Midwest Communications": 36300000,
- "Milliken & Co.": 2500000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Morning star": 1900000000,
- "Motiva Enterprises": 20800000000,
- "Mueller Water Products": 1200000000,
- "Multimatic": 1500000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "MyOutdoorTV": 7000000,
- "Mynavyexchange": 7000000,
- "NHLPA": 14400000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "National Christian Foundation": 27800000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Model Railroad": 5300000,
- "National Religious Broadcasters": 10000000,
- "Newark": 450000000,
- "Nicholas Financial": 48200000,
- "Nikola Corporation": 44000000,
- "North Carolina Mutual Life Insurance Company": 17900000,
- "OOCL": 33600000,
- "OPEIU": 7400000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Voices": 65000000,
- "Oxford Instruments": 514900000,
- "Oxxford Clothes": 25000000,
- "PERMA-PIPE": 37700000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pampered Chef": 300000000,
- "Park 'N Fly": 48500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Patriot Rail": 120200000,
- "Paulist": 18800000,
- "Pedernales Electric Cooperative": 496900000,
- "Peermusic": 46300000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pennymac": 1200000000,
- "Penzeys": 26000000,
- "PharMerica": 2100000000,
- "Piccadilly": 10000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Plastic Omnium": 8800000000,
- "Pollo Tropical": 600000000,
- "Porsche France SAS.": 34300000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Prairie Farms": 3100000000,
- "Premier Drums": 10000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "ProFlowers": 209100000,
- "Progress Rail": 1500000000,
- "Proscan": 4000000000,
- "Protective Life": 6700000000,
- "Publix": 52200000000,
- "QuickChek": 1000000000,
- "QuikTrip": 11000000000,
- "Quiznos": 50000000,
- "R. J. Corman": 420000000,
- "RSM US": 3300000000,
- "Rainforest Cafe": 10000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
- "Reliance Partners": 13500000,
- "Republic Bank": 314200000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Riverside Partners": 14400000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Rotel": 38800000,
- "Ruth's Chris": 350200000,
- "Rutherford County Schools": 14800000,
- "Ryan Office": 626000000,
- "Ryman Hospitality Properties": 1100000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMS Holdings Corporation": 32800000,
- "SRG Global": 1500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Salsarita's Franchising LLC.": 33600000,
- "Sam Ash": 400000000,
- "Samford": 173000000,
- "Santander Bank": 14800000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster": 2000000000,
- "ServiceMaster Clean": 48500000,
- "Shane Co.": 30800000,
- "Shelby County Sheriff's Office": 9500000,
- "Shoe Carnival": 1300000000,
- "Shore Fire": 24400000,
- "Signarama": 55000000,
- "Silent Lambs": 10900000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
+ "Liddle Design": 31600000,
+ "LifeConnect": 14000000,
+ "Little Light Designs": 71400000,
+ "Long Island Internet Headquarters": 13600000,
+ "Lunar Lincoln": 10000000,
+ "Lynette Sesler": 10600000,
+ "M&M Micro": 22100000,
+ "Macro Solutions": 48400000,
+ "Madrabbitsolutions": 2300000,
+ "Magnatron": 1200000,
+ "Mammoth LLC.": 115000000,
+ "Manuh Solutions": 17000000,
+ "Maria Colomy": 2100000,
+ "Martin Fed": 16900000,
+ "MatrixCare": 122000000,
+ "MediaShout": 4900000,
+ "Memorial Business Systems": 13100000,
+ "Metadata Technology North America": 2400000,
+ "Metdia Corporation": 1600000,
+ "Metova": 10500000,
+ "Metrix Solutions": 55300000,
+ "Metro IT Service": 30700000,
+ "Michael Powell Design": 12200000,
+ "Middle Tennessee Oral Sleep Therapy Dr Brian Devine": 5700000,
+ "Middleware Associates": 10200000,
+ "Millennium Infotech": 25000000,
+ "Milsoft": 25400000,
+ "Ministry Brands": 100000000,
+ "Miovision": 35000000,
+ "Mks Design Services": 11700000,
+ "Mktech Computers": 14200000,
+ "MogulNetworking": 1000000,
+ "Mrs. Wizard": 23400000,
+ "N-Design Creative": 29600000,
+ "NAStek": 7000000,
+ "NCITE": 22300000,
+ "NCrowd": 7500000,
+ "NGP": 57200000,
+ "NICitPartner": 249000000,
+ "NMGI": 20400000,
+ "NTBC Maynardville": 18200000,
+ "Ncontracts": 38100000,
+ "NetGain Technologies": 47600000,
+ "NetGreene": 16700000,
+ "NetTec NSI": 10000000,
+ "Network Coverage": 10000000,
+ "Network Data Source": 22500000,
+ "Network Integration": 26600000,
+ "Netwurk": 23000000,
+ "Nfina": 15300000,
+ "Niccolo Bella": 4300000,
+ "Nonlinear regression": 19400000,
+ "Novatek International": 20000000,
+ "Noxigen": 39700000,
+ "Ntracts": 10000000,
+ "NuOrigin": 1400000,
+ "O'Neil Computer Consulting": 25800000,
+ "OPTION-G": 11400000,
+ "Oakwood Systems Group": 30000000,
+ "Obsidian Solutions Group": 38000000,
+ "Ocoee Adventure Travel": 19800000,
+ "Ocoee Technologies": 30500000,
+ "Ogmediagroup": 3900000,
+ "Oman Systems": 19600000,
+ "Online Development": 14200000,
+ "Open Door Design & Technology": 17700000,
+ "Opex Technologies": 20800000,
+ "Optimal Process": 1400000,
+ "Optimus Media": 14100000,
+ "Orange Box Designs": 15800000,
+ "Orbesoft": 39500000,
+ "Orgbrat": 12300000,
+ "Orionbelt LLC.": 32400000,
+ "Ormed Information Systems Inc.": 35100000,
+ "P5 WebSolutions": 18800000,
+ "PC Systems": 25800000,
+ "PCS Simplify with Technology": 25000000,
+ "PILEUM": 26800000,
+ "PNT Data": 14500000,
+ "PRO VIEW SYSTEMS": 18800000,
+ "Passtouch": 2600000,
+ "Paxis Technologies": 41100000,
+ "Pc Virus Tech": 25800000,
+ "Pea Tree Designs": 22600000,
+ "Pearce Design and Advertsing": 8700000,
+ "Pinnacle Solutions Group": 13800000,
+ "PointClear Solutions": 11000000,
+ "Pomeroy": 850000000,
+ "Pratt Computing Technologies": 16200000,
+ "PredictHQ": 2000000,
+ "PremierPoint Solutions": 77000000,
+ "Pro Cleaners": 35300000,
+ "Pro Sys": 12700000,
+ "ProGResS Inc.": 15200000,
+ "ProIRB": 16600000,
+ "ProRacing Sim": 17900000,
+ "Prodigo Solutions": 12000000,
+ "Projected Financial Statements": 6600000,
+ "Proscan Solutions": 22500000,
+ "Provar Testing": 5800000,
+ "ProviderTrust": 11700000,
+ "Provisions Group": 13200000,
+ "Qualifacts": 30000000,
+ "R J S Industrial Services Inc.": 30200000,
+ "R.E. French": 24500000,
+ "RURIC": 88400000,
+ "Radfrog": 12400000,
+ "ReCPro Software": 4500000,
+ "Redscan": 11500000,
+ "Reltio": 37800000,
+ "Reonomy": 18300000,
+ "RepuGen": 6900000,
+ "Rhodes Design": 22500000,
+ "Richards Design": 22000000,
+ "Ridenour Co.": 11700000,
+ "Rievent": 2000000,
+ "Roistat Inc.": 2600000,
+ "Romo Auto Care": 3600000,
+ "RunTime Computing": 1400000,
+ "SCR Network": 16900000,
+ "SGA Software": 31200000,
+ "SNMP": 29300000,
+ "SOS Systems": 13800000,
+ "Safe Network Solutions": 17800000,
+ "Saftek": 22400000,
+ "Salute Mission Critical": 15600000,
+ "SandStorm IT": 11300000,
+ "Sasquatch Hosting": 3700000,
+ "Saturn V Software": 29900000,
+ "Scarbrough": 14800000,
+ "Scott Lilly": 16900000,
+ "Sertainty": 10000000,
+ "Service Express": 130000000,
+ "ShareSafe Solutions": 16000000,
+ "Sharefaith": 10000000,
+ "ShiftWizard": 29000000,
+ "Si Tec Consulting": 15800000,
+ "Sidetrips": 19800000,
+ "Sierra Web": 32000000,
+ "Simple Index": 26600000,
+ "Site Ox": 8500000,
+ "Site-Shack Web Design": 39800000,
+ "Sitemason": 10900000,
+ "Skuid": 20600000,
+ "Small Bear Technologies": 10000000,
+ "Small Systems Inc.": 13900000,
"Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southeastern Freight Lines": 1400000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stantec": 3100000000,
- "Stanton Chase": 57100000,
- "Starr Insurance Companies": 3500000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stephens": 2300000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stoney River": 10300000,
- "Streamsound Records": 1300000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Sun Chemical": 8500000000,
- "Sun Records": 4600000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TBN": 3200000,
- "TVA": 13000000000,
- "TVS SCS UK": 1000000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Talonbooks": 4600000,
- "Tandy Leather Factory": 81600000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Tempur-Pedic": 24700000,
- "Tennessee Department of Children's Services": 350000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Texas RioGrande Legal Aid TRLA": 21500000,
- "The Do Book Company": 6000000,
- "The Hershey Company": 10100000000,
- "The Melting Pot": 31500000,
- "The New Press": 10900000,
- "The North Face": 2000000000,
- "The Parking Spot": 46000000,
- "The Recording Academy": 15800000,
- "The Woodbridge Group": 1200000000,
- "Things Remembered": 300000000,
- "Thomas Nelson": 20000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Timken": 4500000000,
- "Toccata Classics": 15400000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Tricon Residential": 513200000,
+ "Smuka Trading Inc.": 15900000,
+ "Software Earnings": 35200000,
+ "Soltus": 10800000,
+ "Sourcepass": 32000000,
+ "Southeastern Financial Network": 8100000,
+ "Sovereign Sportsman Solutions": 150000000,
+ "Sparco": 491200000,
+ "Speridian": 220000000,
+ "Sphera Solutions": 120000000,
+ "SpinifexIT": 23800000,
+ "Spireon": 251600000,
+ "Spiro Graphics": 12900000,
+ "Spoon West": 7800000,
+ "Stargate Industries": 2400000,
+ "Starletta": 11700000,
+ "StatLink Systems": 10000000,
+ "StatTrac": 57200000,
+ "Stragistics": 20800000,
+ "Strategic Business Systems": 13600000,
+ "StratusGrid": 52200000,
+ "Striker Systems": 1300000,
+ "Studio 202": 14700000,
+ "SymplifyTech": 37600000,
+ "Syndigo": 150000000,
+ "Syntellis": 80000000,
+ "SysCorp Computer Services": 23800000,
+ "TEC Environmental Laboratories Inc.": 13500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TN Grafix": 24200000,
+ "Tabs3": 12200000,
+ "Tailor made security": 18300000,
+ "Tallega Software LLC.": 4000000,
+ "TargetRecruit": 70000000,
+ "Teaming": 4400000,
+ "Tech Ed Us": 18600000,
+ "Technical & Scientific Application Inc. TSA Inc.": 15000000,
+ "Technology Plus": 15200000,
+ "Technology ResourceSE": 13100000,
+ "Technology Source": 34500000,
+ "Telaid Industries": 80000000,
+ "Tenn Hens Design": 10200000,
+ "Tennessee Party Bike": 23200000,
+ "Tevora": 37900000,
+ "TextLIVING": 10000000,
+ "Thatcher Design": 25600000,
+ "The AME Group Louisville": 214000000,
+ "The Buckley Agency": 22900000,
+ "The Gray Umbrella": 11300000,
+ "The SERO Group": 31600000,
+ "The Sweetwater Flea Market": 35000000,
+ "The Visual Republic": 7200000,
+ "Think intuitive": 17500000,
+ "Thinkfarm Interactive": 2400000,
+ "Thinking Out Loud Design": 37700000,
+ "Thrive NextGen": 150000000,
+ "TierPoint": 405000000,
+ "Timewell": 28300000,
+ "Tiro Security": 3700000,
+ "Transformations Inc.": 30100000,
+ "Trilliant Health": 24000000,
+ "Trimen Computers": 24800000,
+ "Trinetix": 24600000,
+ "Trinisys": 18000000,
+ "Trophies Etc": 82100000,
"True Digital Security": 14000000,
- "Truxton Trust": 10000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UL Solutions": 2700000000,
- "UMC": 8900000000,
- "UMH Properties": 193100000,
- "UNTUCKit": 350000000,
- "UPI": 17100000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vantiva": 3500000000,
- "Velsicol Chemical Corporation": 13200000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volkert": 124000000,
- "Volkswagen": 51300000000,
- "Vontier": 3100000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waffle House": 1300000000,
- "Warby Parker": 573100000,
- "Waverly Central High School": 14700000,
- "Waves Audio": 32500000,
- "Western & Southern Financial Group": 5300000000,
- "Westfield Insurance": 2000000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "Whirlpool": 20600000000,
- "White Castle": 720600000,
- "Wienerberger": 4900000000,
- "Wild Wing Cafe": 5400000,
- "Williams Companies": 11300000000,
- "Wilson Sporting Goods": 769700000,
+ "True Vision 360": 12400000,
+ "TrueNAS Minis 3rd Gen.": 10000000,
+ "Turpin": 50500000,
+ "Tutone Web": 19600000,
+ "Twins Technologies": 19600000,
+ "Two Cents Design": 12500000,
+ "Typelogic": 18600000,
+ "UDT": 85000000,
+ "UDig": 27000000,
+ "US DataVault": 9800000,
+ "Unifi Web": 7600000,
+ "Uniguest": 30000000,
+ "Unitas Global": 43900000,
+ "United Software Group": 100200000,
+ "Ushur": 10000000,
+ "Verilogic Solutions": 13000000,
+ "Verinext": 83000000,
+ "Village Frame & Art": 28100000,
+ "Virtual Computing Systems": 28300000,
+ "Virtual Resort Manager": 14400000,
+ "Visakey": 7100000,
+ "Vision Software Technologies": 27400000,
+ "Visionary Design Group": 10600000,
+ "Visual World": 30500000,
+ "WISEware": 17500000,
+ "Wagstaff Design": 4400000,
+ "Wallpraise": 11500000,
+ "Waterservices LLC.": 11700000,
+ "Watson Design": 36200000,
+ "Web Magic LLC.": 39700000,
+ "WebSlingers": 1400000,
+ "Webopedia": 10000000,
+ "Webservio": 12000000,
+ "Website World": 17500000,
+ "WheelHouse Solutions": 2700000,
+ "WhiteSpace Solutions": 2000000,
+ "Wide Awake Studio": 4500000,
+ "Wilson Computer Services": 14900000,
+ "Windward Media": 13600000,
+ "Wiseman\u2019s Clothing & Shoes": 11400000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "Wounded Warrior Project": 15300000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000,
- "iXsystems": 100000000
+ "WordTricks": 9100000,
+ "WorkCompass": 3900000,
+ "Yagna Technologies": 7000000,
+ "ZK Creative": 17900000,
+ "Zephyr Global": 1400000,
+ "dinCloud": 36200000,
+ "eDOC Help": 20200000,
+ "eWeek": 13600000,
+ "i2i Population Health": 8600000,
+ "i3 Verticals Healthcare": 26500000,
+ "iOnTech": 25000000,
+ "iXsystems": 100000000,
+ "k8s Lens": 1200000,
+ "xAssets": 26800000
},
"Texas": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "1547 Critical Systems Realty": 10000000,
"ADP Roseland": 16900000000,
- "AEP": 27500000000,
- "AET Tankers": 25000000,
- "AFSCME": 10800000,
- "ALTANA": 3000000000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "ASEA Brown Boveri": 28800000000,
- "AST SpaceMobile": 20100000,
- "ATF": 1000000000,
- "AXA XL": 7700000000,
- "Academy Sports Outdoors": 6600000000,
- "Accion U.S. Network": 13900000,
- "Achievement Hunter": 16900000,
- "Ack-Mac": 30000000,
- "Activ Solar": 10000000,
- "Acuity Brands": 4000000000,
- "Adcole": 15000000,
- "Adore Me": 115000000,
- "Advantage Rent a Car": 150000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alief ISD": 10000000,
+ "Aadhavan": 22900000,
+ "Absolute of Sa Ambulance Service": 118100000,
+ "Accelerant": 25000000,
+ "Access Lane": 13300000,
+ "Ace Communication": 19000000,
+ "Advancetech Systems 2": 26600000,
"Alithya": 389900000,
- "AllClear ID": 12000000,
- "Allegheny Technologies": 3300000000,
- "Allianz": 160700000000,
- "Allied Universal": 20000000000,
- "Alorica": 2500000000,
- "Altra Industrial Motion": 1900000000,
- "Alzheimer's Association": 81500000,
- "American Association of Clinical Endocrinologists": 23400000,
- "American Eagle Outfitters": 5000000000,
- "American Greetings": 2000000000,
- "American Momentum Bank": 25000000,
- "American Trucking Associations": 180900000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Angelina & Neches River Railroad": 28600000,
- "Anglo Eastern": 6000000,
- "Apartment List": 37300000,
- "Applanix": 21100000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Argo Group": 1600000000,
- "Army News Service": 16400000000,
- "Arthur D. Little": 295000000,
- "Ashford": 12900000,
- "AspenTech": 860300000,
- "At Home store": 1700000000,
+ "Altair Engineering": 552600000,
+ "AlternativeTo": 4900000,
+ "Amensys": 32400000,
+ "Apexon": 75000000,
+ "AppColl": 12000000,
+ "AppShark": 15000000,
+ "Arrow Digital - Dallas": 12000000,
+ "AssetWorks": 600000000,
+ "Asure Software": 76600000,
+ "Atlantic": 59500000,
"Atos": 11400000000,
- "Austin\u2013Bergstrom International Airport": 17200000,
- "Australian Laboratory Services": 6600000000,
+ "Aujas": 17500000,
+ "Austin Computing": 10000000,
"Avanade": 3900000,
- "Axalta": 4100000000,
- "Axogen": 134000000,
- "BBDO": 1800000000,
- "BBYO": 15800000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "BTS Group": 232600000,
- "BYK Additives & Instruments": 1200000000,
- "Bassett Furniture": 521500000,
- "Baylor": 920500000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekins Van Lines Inc.": 33600000,
- "Belcan": 1000000000,
- "Bessemer Trust": 682100000,
- "Betterment LLC.": 50000000,
- "Black Rifle Coffee": 233100000,
- "BlueLinx": 4600000000,
- "Boehringer Ingelheim": 23300000000,
- "Bon Appetit Management": 120000000,
+ "Avanci": 5100000,
+ "Avanti Technology": 30200000,
+ "AvePoint": 215800000,
+ "Avin Computer Solutions": 10200000,
+ "BDK Tech Solutions": 29600000,
+ "BairesDev": 105000000,
+ "Barcoding": 18500000,
+ "Beck Technology Inc.": 9000000,
+ "Bloomfire": 11000000,
+ "Blue Nelson": 12400000,
+ "Bluebeam": 69600000,
+ "Board International": 150000000,
"Booz Allen": 8800000000,
- "BorgWarner": 15300000000,
- "Boston Consulting Group": 8600000000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Brady High School": 20300000,
+ "Boundary": 7000000,
"Braze": 298000000,
- "Breckenridge Brewery": 30000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Bridgestone": 28600000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Broadridge Financial Solutions": 5800000000,
- "Brookdale": 2700000000,
- "Brookshire's Food & Pharmacy": 2600000000,
- "Brown & Brown Insurance": 3400000000,
- "Brownsville South Padre Island International Airport": 22900000,
- "Brownwood Bulletin": 21700000,
- "Bruce Foods": 30000000,
- "Bureau Veritas": 5700000000,
+ "Brillio": 400000000,
+ "BroadPoint Federal": 17500000,
+ "Broadleaf Commerce": 9000000,
+ "Bubble": 7000000,
+ "Buildium": 75000000,
+ "C is 4 Creative": 21300000,
"C3 AI": 12900000,
"CACI": 6200000000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CTG": 375200000,
- "Callaway Golf": 3700000000,
- "Capital Impact": 10000000,
- "CarParts": 645300000,
- "Carlisle Companies": 6600000000,
- "Castleberry ISD": 19000000,
- "Centene": 144500000000,
+ "CG Infinity": 75000000,
+ "CITOC - Houston Managed IT Services Company": 10000000,
+ "COLVIN & ASSOCIATES": 25500000,
+ "COMPU-DATA International": 10000000,
+ "CSPI": 25000000,
+ "CYBERNET MBSE": 213200000,
+ "Camelot Integrated Solutions": 10000000,
"Ceros": 25000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "Cirrus Logic": 2000000000,
- "Clariant Ltd.": 5500000000,
- "Clark Construction": 5000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
+ "Certified eSupport": 14900000,
+ "Chesapeake Technology": 14600000,
+ "Cincom": 196800000,
+ "Cittacreativos": 34000000,
+ "Clear Measure": 10500000,
+ "Clooz": 28000000,
"Cloudera": 904800000,
"Cloudflare": 894100000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Confie": 75000000,
- "Constant Contact": 361900000,
- "Consumer Affairs": 29300000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Continental Electronics": 31800000,
- "CooperVision": 2200000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Corteva": 17100000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
+ "CodeGear": 150000000,
+ "ColoGlobal": 10000000,
+ "Comlink Southwest LLC.": 29300000,
+ "Computer Connections": 48600000,
+ "Computer Tech LLC.": 38000000,
+ "Computer USA": 10800000,
+ "Computing Strategies Inc.": 15600000,
+ "Comware": 13000000,
+ "Creatiff Graphics Llc.": 10500000,
"Critical Start": 89400000,
- "Cross Roads Independent School District": 10000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cyient Inc.": 575100000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "DZS": 373600000,
- "Daikin": 34800000000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Day & Zimmermann": 2400000000,
- "Daystar": 15500000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Demag Cranes": 25200000,
- "Dematic": 3200000000,
- "Diageo": 18800000000,
- "Diamond Foundry": 15000000,
- "Dignity Memorial": 25000000,
- "DirecTV LA": 22400000,
- "DirecTV Stream": 33300000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dooney": 40000000,
- "Drury Hotels": 620000000,
+ "Custom Computer Integrations": 16300000,
+ "Cyren": 30000000,
+ "DNN Corp.": 9500000,
+ "DTN Ag.": 250000000,
+ "Decypher": 19100000,
+ "Digicode": 25600000,
+ "Digital Hype": 23000000,
+ "Digital Realty": 4700000000,
+ "Doc2e file": 10000000,
+ "DocStar": 15000000,
"Dubber": 17500000,
- "Duchesne": 10100000,
- "E Trade": 2900000000,
- "EDP Renovaveis": 2100000000,
- "EEOC": 10000000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Einstein Bros. Bagels": 500000000,
- "El Paso Electric": 886900000,
- "El Paso Times": 25000000,
- "Electro Rent": 343800000,
- "Element Markets": 19900000,
- "Emirates SkyCargo": 3100000000,
- "Endress": 750000000,
+ "ECI": 48000000,
+ "EJ Stout Design": 13800000,
+ "EPMI": 10000000,
+ "Ebix": 991100000,
+ "Elasticsearch B.V.": 977800000,
+ "EnITma Corporation": 3600000,
+ "EnergySys Pty Ltd.": 7000000,
"Enfora": 17500000,
- "Eni": 134600000000,
- "Enterprise Holdings": 23900000000,
- "Equifax": 5100000000,
+ "Enigma Technologies Inc.": 20000000,
+ "Ensure Technologies": 18800000,
+ "Eolas": 49800000,
"Equinix": 7300000000,
- "Ethiopian Airlines": 4000000000,
- "Everspin": 62100000,
- "Evonik Industries AG": 19700000000,
- "ExxonMobil": 403200000000,
- "Eyebuydirect": 235000000,
- "FWISD": 30100000,
+ "Etapmus": 10000000,
+ "Evapt": 55000000,
+ "FINE THINGS INTERIOR DESIGNS": 27400000,
"FactSet": 1500000000,
- "Fagron UK Ltd.": 665700000,
- "Faithful & Gould": 241100000,
- "Fancy Fortune Cookies": 26800000,
- "Farmer Brothers": 469200000,
- "Fedrigoni": 1800000000,
- "Ferrellgas": 2100000000,
- "Ferrovial": 7800000000,
- "First Horizon Corporation": 2900000000,
- "First United Bank Insurance Solutions Inc.": 10000000,
- "First Watch": 677600000,
+ "FalconStor": 17300000,
+ "Field Control Analytics": 14900000,
"Fiserv": 17700000000,
+ "Flair Data Systems": 35000000,
"Flippa": 22000000,
- "Fluor Canada": 13700000000,
- "FormFactor": 747900000,
"Fortinet": 4100000000,
- "Freedom Interior Decorators": 11200000,
- "Frontier Airlines": 3000000000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GE Power Conversion": 519000000,
- "GMAC Ally Financial": 8400000000,
- "GSC Enterprises Inc.": 34000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "General Dynamics Mission Systems": 4400000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "Gentherm": 1100000000,
- "Gilat Satellite Networks": 220300000,
- "Good Times Burgers": 138700000,
- "Gordon Biersch - DTW": 89300000,
- "Gordon Food Service": 16000000000,
- "Granite Real Estate": 315200000,
+ "Futurex": 9000000,
+ "GCS Technologies": 34900000,
+ "Genesis Networks": 1200000000,
+ "Gigster": 50000000,
+ "Global Data Systems | Managed Service Provider": 120000000,
"Graphisoft": 93000000,
- "Grasim Bhiwani Textiles": 42400000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Grifols Mexico S.A. De C.V.": 10600000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
- "H. T. Hackney Company": 3900000000,
- "HBC": 5600000000,
- "HCA Healthcare": 60200000000,
+ "GrayMatter Software Services": 1200000,
+ "Graylog": 339000,
+ "Gryphon Group": 10000000,
+ "Guide IT": 1000000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Halliburton": 19000000000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Hensel Phelps": 5700000000,
- "Heraeus": 33400000000,
- "Herbalife": 5200000000,
- "Hertz Investment Group": 27200000,
- "Highland Park Independent School District Potter County Texas": 33600000,
- "Hilcorp": 4000000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Houston Airport System": 50000000,
- "Hudson": 2000000000,
- "Huhtamaki": 53200000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "Hydro": 21600000000,
+ "HPI International": 18000000,
+ "Happy Returns company": 9200000,
+ "HawkWebDesign": 10000000,
+ "HealthMark Group": 40000000,
"Hypergiant": 85000000,
- "Hyundai Motor America": 100700000000,
- "H\u00f6gan\u00e4s AB.": 1000000000,
- "ION": 19100000,
- "IQOR": 1000000000,
- "IU Health": 7900000000,
- "Indorama Ventures": 6600000000,
- "Information Systems Security Association": 13700000,
+ "IT Multimedia": 34000000,
+ "Images-on-Call": 11300000,
+ "Informatica": 1500000000,
+ "Infoweb Communications": 26300000,
"Ingenuity Cloud Services": 15000000,
+ "Insight Networks": 49700000,
"Insightsoftware": 350000000,
- "International Society for Performance Improvement": 18300000,
- "Interpipe": 1100000000,
- "Intl Fcstone": 61700000000,
+ "Instructure": 461100000,
+ "Intaver": 139000,
+ "Integration Objects": 9400000,
+ "Intive": 75000000,
"Intuit": 13300000000,
- "Invista": 117900000,
- "Iron Mountain Incorporated": 5000000000,
- "Jabil": 33500000000,
- "Jack Nadel International": 100000000,
- "Jardine Lloyd Thompson": 1900000000,
- "Jersey Mike's": 255400000,
- "Jewelers of America": 26900000,
- "Johnny Rockets": 552000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "K&N Engineering": 138700000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "KWIK TRIP": 5000000000,
- "Kaiser Permanente": 93100000000,
- "Kapsch CarrierCom AG": 123200000,
- "Karma Mobility": 10000000,
- "Kemet Electronics Services": 1600000000,
- "Kemper": 5800000000,
- "Kenya Airways": 2300000000,
- "Kerrville ISD": 16200000,
- "Ketchum": 500000000,
- "Kimco Realty": 468500000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kokomo Perspective": 16000000,
- "Kongsberg Gruppen": 3200000000,
- "L&T technology Services": 746800000,
- "LEARFIELD": 164200000,
- "LEGO": 8100000000,
- "La Quinta Inns & Suites": 975100000,
- "Landry's": 4600000000,
- "Laureate Education": 1200000000,
- "Lazy Dog Restaurants": 210000000,
- "LegalMatch": 17600000,
- "LegalShield": 145000000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Leprino Foods": 3500000000,
+ "Intuvi": 35700000,
+ "Inventive IT": 25000000,
+ "Jensen Software": 34000000,
+ "Jive Software": 250000000,
+ "John Galt Solutions Inc.": 10500000,
+ "Jvion": 12300000,
+ "Kainos": 397300000,
+ "Karanji": 35000000,
+ "Karras": 25500000,
+ "King of Beer and Wine": 12100000,
+ "LanSource": 10000000,
+ "Laxton": 40000000,
+ "Leads On Line": 12000000,
"Level 3 Communications": 17500000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "LiuGong": 29700000,
- "Logan's Roadhouse": 462400000,
- "Lokring": 12000000,
- "Long John Silver's": 404000000,
- "Louis Vuitton": 14000000000,
- "MSC Industrial Supply": 3800000000,
- "MUFG": 50700000000,
- "Madison Metropolitan School District": 30500000,
- "Magellan Health": 7500000000,
- "Main Event": 678000000,
- "Marquette Transportation": 350000000,
- "McKinsey & Company": 10600000000,
- "McLane Company": 50000000000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Messenger News": 48500000,
- "Methanex": 3100000000,
- "Metro McAllen": 19800000,
- "Micron Technology": 30800000000,
- "Mimi's Cafe": 23000000,
- "Mineralogical Society of America": 34700000,
- "Miss Texas": 10000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Montgomery County MD": 24300000,
- "Montgomery ISD": 18900000,
- "Morrison Foerster": 1200000000,
- "Mountain Mike's Pizza": 68000000,
- "Munich Re": 73300000000,
- "Mynavyexchange": 7000000,
- "NIDEC": 15600000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Natera": 776000000,
- "National Kitchen & Bath Association NKBA": 10500000,
- "National Oilwell Varco": 7200000000,
- "Nationwide": 42100000000,
- "Neiman Marcus": 2600000000,
+ "LiquidDevs": 26400000,
+ "Lone Wolf Real Estate Technologies": 31000000,
+ "M-Files": 42600000,
+ "MOURI Tech": 36000000,
+ "MacGPS Pro": 31400000,
+ "MartianCraft": 5100000,
+ "Matthew Gideon": 29500000,
+ "Maximus Life": 11700000,
+ "Medallia": 477200000,
+ "Meriplex": 20000000,
+ "Mimecast": 575300000,
+ "ModelSheet": 47300000,
+ "Modulant": 20000000,
+ "Monetate": 35000000,
+ "MongoDB": 898800000,
+ "NMGI": 20400000,
+ "National Business Data Systems NBDS": 16500000,
"NetApp": 6500000000,
- "New Capital Partners": 13400000,
- "Niman Ranch": 65000000,
- "Nippon Steel": 46900000000,
- "Nokona": 12000000,
- "Novica": 19900000,
- "OCEF": 27700000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "OXXO": 150000000,
- "Odyssey Space Research": 18700000,
- "Oerlikon": 3100000000,
- "Offerpad Brokerage CA Inc.": 4100000000,
- "Old Dominion Freight Line": 6000000000,
- "Omniplan Inc.": 10400000,
- "Orascom Construction": 3400000000,
- "Outback Steakhouse": 2000000000,
- "Outsmart Magazine": 11900000,
- "Ovintiv": 7000000000,
- "PCL Construction": 6300000000,
- "PERMA-PIPE": 37700000,
- "Pacific Dental Services": 1400000000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
- "Pall Corporation": 2900000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Paramount": 32300000000,
- "Paramount Group": 10000000,
- "Parker Hannifin": 15900000000,
- "Parkland": 19500000000,
- "Patagonia": 1000000000,
- "Paulist": 18800000,
- "Penzeys": 26000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Pioneer Natural Resources": 23500000000,
- "Pitney Bowes": 3500000000,
- "Plum Market Inc.": 26000000,
- "Polar Beverages": 50000000,
- "Praj": 180400000,
- "Principal Financial Group": 13900000000,
+ "Netzone Solutions": 10300000,
+ "NextWealth": 13000000,
+ "Nitrio": 10000000,
+ "North Point Corp": 10500000,
+ "OneTrust": 180000000,
+ "Orbital Services": 23500000,
+ "P.I. Confluence": 18400000,
+ "Periscope Holdings": 24500000,
+ "Photon Interactive Mexico": 1000000000,
+ "Pixels Interactive": 10000000,
+ "Powersgaming": 47900000,
+ "Princeton Lakes Property": 31300000,
+ "Pro Sys": 12700000,
+ "Procore": 664300000,
+ "Prometheus Group": 110000000,
"Publicis Sapient": 2700000000,
- "Qantas": 6300000000,
- "Quad Metalworks": 3100000000,
- "Quanta Services": 17100000000,
- "QuikTrip": 11000000000,
- "RSM US": 3300000000,
+ "QA Consultants": 32000000,
+ "Qualtrics": 1400000000,
+ "REPL Group Part of Accenture": 42900000,
+ "RSTO": 10000000,
"Rackspace": 3100000000,
- "Rainforest Cafe": 10000000,
- "Redwood Materials": 35000000,
- "Regeneron": 13700000000,
- "Repsol": 79000000000,
- "Resideo": 6300000000,
- "Rexair": 35000000,
- "Richardson International": 1100000000,
- "Rockwell Medical": 68800000,
- "Roehl Transport": 421300000,
- "Rohde & Schwarz": 2600000000,
- "Rolls-Royce": 15300000000,
- "Royal HaskoningDHV": 729500000,
- "Russell Reynolds Associates": 297600000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "Ryman Hospitality Properties": 1100000000,
+ "Rank One": 2400000,
+ "Rax Inc.": 29200000,
+ "Redgate": 67700000,
+ "Reonomy": 18300000,
+ "Replicon company": 50000000,
+ "Revelation Interactive": 17000000,
+ "Revionics Inc.": 46600000,
+ "Rite Software": 32100000,
+ "RobotLAB": 190000,
"SAP": 33500000000,
- "SCA Health": 2000000000,
- "SCHEELS": 800000000,
- "SCHUNK": 19000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMBC Group": 40800000,
- "SMTC Corporation": 250000000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SBP Digital": 35000000,
+ "SEON": 15000000,
+ "SHOOINTEK": 10000000,
+ "STS Systems Integration": 25000000,
+ "SVAM": 20000000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Sanderson Farms": 5600000000,
- "Sapphire Ventures": 78100000,
- "Schlumberger Limited": 27800000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Scott Fetzer Company": 250000000,
- "Seaboard": 11200000000,
+ "SailPoint": 495400000,
+ "Salsa Labs": 18000000,
"Seagate Technology": 9400000000,
- "Select Medical": 6300000000,
- "Shiseido": 8200000000,
- "Sigma Aldrich": 2800000000,
- "Simon Kucher": 406200000,
- "Simplot": 6000000000,
- "Skyline High School": 2200000000,
- "Smith & Nephew": 5200000000,
- "Smurfit Kappa": 12300000000,
- "Snc Lavalin": 5600000000,
- "Snyder's-Lance": 8600000000,
+ "ServiceMax": 180000000,
+ "Shamrock Steel Sales": 55000000,
+ "Sincerus": 37700000,
+ "Sine Software": 17400000,
+ "Skbglobal": 26300000,
+ "SnapStream": 7000000,
+ "Snappii": 7900000,
+ "Social Solutions": 34700000,
"SoftServe": 570200000,
+ "SoftSmiths": 15200000,
"Software Advice": 55000000,
- "Sonoco": 6500000000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spacetime Studios": 57800000,
- "Spanx LLC.": 400000000,
- "Spence Diamonds": 30000000,
- "Sprinkles Cupcakes": 15800000,
- "Stanley Consultants Inc.": 198000000,
- "Stantec": 3100000000,
- "State Farm Insurance": 78900000000,
- "State Street": 12100000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steelcase Inc.": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stone & Webster": 27400000,
- "Sulzer": 13800000000,
- "Sun Chemical": 8500000000,
- "Sun Communities": 2600000000,
- "Sun Life": 17200000000,
- "Sundown High School": 19600000,
- "Swift Transportation Company": 3400000000,
- "Swisslog": 646000000,
+ "Southland Technology": 14600000,
+ "SpaceCenter Systems": 11700000,
+ "Splunk": 3300000000,
+ "Stephen Vance": 25800000,
+ "Strategic Maintenance Solutions": 17200000,
+ "Sumo Group Inc.": 74000000,
"Symbotic": 30000000,
- "Syngenta": 16700000000,
+ "Symphonic Source": 4400000,
"Synnex": 57900000,
- "TDK": 14000000000,
- "TOM FORD": 615000000,
- "TOPS Club": 19600000,
- "Taylor Farms": 2800000000,
- "Techint": 1500000000,
- "Teekay": 491500000,
- "Telcel": 2000000000,
- "Tempur-Pedic": 24700000,
- "Ternium": 8700000000,
- "Tetra Pak": 11100000000,
- "Texas Pacific": 594500000,
- "Texas Property and Casualty Insurance Guaranty Association": 11100000,
- "The Awty International School": 26900000,
- "The First Line": 18800000,
- "The Marketing Arm": 35000000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Ohio Farmer newspaper": 12700000,
- "The Parking Spot": 46000000,
- "The United Services Automobile Association": 35600000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Tiffany's": 4400000000,
- "Time4Learning": 19000000,
- "Times Record News": 19500000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Traffic Safety Store": 19900000,
- "Transunion Chile": 3600000000,
- "Trelleborg": 3000000000,
+ "Systems Application Engineering": 28400000,
+ "TEKPROS": 11500000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TRUGlobal": 75000000,
+ "Tanisha Systems": 170000000,
+ "Tanium": 525000000,
+ "Tarantini Panzarotti": 66600000,
+ "Techspedite": 12300000,
+ "TekTools": 25000000,
+ "The Beckett Group": 19900000,
+ "The Org company": 2000000,
+ "Tiger Analytics": 210000000,
+ "TigerDirect": 200000000,
+ "Total Technology": 33700000,
+ "Trace3 LLC.": 1400000000,
"Trellix": 483500000,
- "Tribe of Judah": 17900000,
- "Tricon Residential": 513200000,
- "TrueCar": 170700000,
- "Two Sigma": 1300000000,
- "TxDOT": 10000000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UFP Technologies": 80000000,
- "UL Solutions": 2700000000,
- "UNX": 25000000,
- "UPS Capital": 50000000,
- "USCIS": 15700000,
- "Umicore": 4500000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Universal Weather": 252200000,
- "VCA Inc.": 1800000000,
+ "Trihedral Engineering": 6000000,
+ "Trilogy": 33800000,
+ "Trinity Software": 20900000,
+ "True Digital Security": 14000000,
+ "Trust Radius": 10000000,
+ "Turvo": 24300000,
+ "UTSI": 26300000,
+ "Unifiedds": 26000000,
+ "VDIworks": 6000000,
"VMware": 13200000000,
- "Varsity Brands": 1200000000,
- "Velsicol Chemical Corporation": 13200000,
- "Verso": 37100000,
- "Vestas": 15500000000,
- "Vesuvius France S.A.": 2200000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Vladar": 10000000,
- "Voith": 4800000000,
- "Volga-Dnepr": 29700000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wacker Chemie": 8400000000,
- "Waco Texas": 59800000,
- "Waffle House": 1300000000,
- "Wahoo's": 69100000,
- "Warwick Investment Group": 11500000,
- "Weidemann - Produktionswerk": 102000000,
- "West Orange-Cove Consolidated Independent School District": 10400000,
- "Westat Research inc.": 597000000,
- "Western Horseman": 15600000,
- "Wheatstone": 21100000,
- "Whirlpool": 20600000000,
- "WildTangent Inc.": 15700000,
- "Wilson Sonsini": 860000000,
- "WinCo Foods": 7700000000,
- "Wing-Time": 37200000,
- "Wje": 150000000,
+ "Vauto": 150000000,
+ "Verint Systems": 899800000,
+ "Versata": 32500000,
+ "Versona Systems": 12300000,
+ "Visual Matrix": 24300000,
+ "W5 Technologies": 14100000,
+ "WP Engine": 200000000,
+ "Waco Orthopedic": 30300000,
+ "WiredRE": 14500000,
"Wolters Kluwer": 5400000000,
- "World Journal": 37500000,
- "World Tang Soo Do": 23000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "Yahoo": 7400000000,
- "Zynga": 2900000000
+ "Woopra": 11000000,
+ "Xait Ltd.": 159000,
+ "Yext": 399900000,
+ "YourCause": 15000000,
+ "Ziffity": 10000000,
+ "gTeam": 150000000,
+ "iLink Digital": 280000000
},
"Utah": {
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
+ "321 Forms": 9200000,
+ "AB Computer": 26800000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "ANDI International": 8000000,
- "ARUP Laboratories": 135400000,
- "ASEA LLC.": 24600000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alpine School District": 28500000,
- "Alzheimer's Association": 81500000,
- "Amalgamated Sugar": 55400000,
- "Aman": 150000000,
- "America's Swimming Pool": 54600000,
- "American Civil Defense Associates": 36600000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Fence": 100000000,
- "American Society of Genealogists": 3600000,
- "American Society of Landscape Architects": 6700000,
- "Americold Logistics Inc.": 2900000000,
- "Amway North America": 9500000000,
- "Andrea Electronics": 2100000,
- "Andrew Christian": 8000000,
- "Applied Materials": 25200000000,
- "Arbiter Sports": 5600000,
- "Armada company": 10000000,
- "Armenian Evangelical Church": 30900000,
- "Army News Service": 16400000000,
- "Art of Living": 6000000,
- "Aspen Institute For Behavior": 152100000,
- "At Home store": 1700000000,
- "Atria Senior Living": 778500000,
- "Australian Laboratory Services": 6600000000,
- "AutoGyro": 15000000,
- "Autocall": 6000000,
+ "AEPCO": 13100000,
+ "AIQ": 39100000,
+ "ANGLEPOINT": 18000000,
+ "ATAdvantage": 67600000,
+ "AVI-SPL": 1300000000,
+ "Ability Business Solutions": 16900000,
+ "Accelerate Media Group": 2400000,
+ "Acclamare": 14500000,
+ "Accscient": 10000000,
+ "Ace Data Centers": 2400000,
+ "AceTek Solutions": 70000000,
+ "Acquire Forensics": 150000000,
+ "ActionTRAK": 24500000,
+ "Addsum": 16100000,
+ "Addx": 21200000,
+ "Adroit Infosystems": 2500000,
+ "Advantage Software Solutions": 19500000,
+ "Afterdawn Design": 12100000,
+ "Alessandra Design": 18100000,
+ "Alexandria Library Management": 2300000,
+ "All About Your Own Website": 18600000,
+ "All Homecare": 27300000,
+ "Ally Media Group": 1400000,
+ "AltaPoint": 10500000,
+ "Aluvii": 1400000,
+ "Anchor Six": 13000000,
+ "Animals In Motion": 29800000,
+ "AppCard": 13000000,
+ "AppCreative": 2400000,
+ "ApplicantPro": 16200000,
+ "Appsbee": 25000000,
+ "Appvencha": 2000000,
+ "Archibus": 20000000,
+ "Architectural Nexus Inc.": 27200000,
+ "Armored Online": 20400000,
+ "Atrapoint": 12700000,
+ "Attorney Resume": 70000000,
+ "Attune Events": 14400000,
+ "AudioEye Inc.": 28700000,
+ "Auric Solar": 76500000,
+ "Automile": 20000000,
"Avail Company": 4200000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "BIOMERIEUX": 3800000000,
- "Ballet West": 7800000,
- "Barebabies": 3500000,
- "Barnes & Thornburg": 575500000,
- "Barrick": 11900000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beacon Capital Partners": 15800000,
- "BeaverTails": 4100000,
- "Becton Dickinson Philippines": 18900000000,
- "Bekins Van Lines Inc.": 33600000,
- "Berry Corporation bry": 698700000,
- "Best Buddies": 3600000,
- "Black Bear Diner": 18700000,
- "Black Diamond Equipment": 4400000,
- "Black Rifle Coffee": 233100000,
- "Blendtec": 56000000,
- "Blick Art Materials": 245200000,
- "Bonneville International": 38600000,
- "Booster Juice": 8300000,
+ "Avetta": 100000000,
+ "BRAVE FOREST CREATIVE": 12800000,
+ "Bailey Gregory E": 13400000,
+ "Banfill Software Engineering": 37400000,
+ "BayaTree": 15300000,
+ "Beezix": 3000000,
+ "BetterLinux": 3100000,
+ "Beyondware": 35700000,
+ "BinaryArt and Design": 15600000,
+ "Blackrock NeuroMed": 11500000,
+ "Blair Tech | Computers": 18700000,
+ "Blink Software Inc.": 8300000,
+ "Blue Door Media": 10900000,
+ "Blue Equinox": 10000000,
+ "BlueStep": 31400000,
+ "Blueidesign": 10600000,
+ "Bookwhen": 1000000,
"Booz Allen": 8800000000,
- "Boston Store": 7500000,
- "Bozeman Yellowstone International Airport": 10000000,
- "Breeze Airways": 50000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
+ "Bowen Design Works": 24200000,
+ "Box Support": 4400000,
+ "Box Works": 10000000,
+ "Bradford Ink": 3800000,
+ "Brain spin": 5800000,
+ "BrainStorm Inc.": 20000000,
+ "Brainvire": 40000000,
+ "Bright Solutions Technology": 10700000,
"Brillio": 400000000,
- "Brown & Bigelow": 32700000,
- "Bruster's Ice Cream": 2100000,
- "Buckle": 1300000000,
- "Burton Snowboards": 400000000,
- "CHEF'STORE": 1100000000,
- "CURTISS-WRIGHT": 2500000000,
- "Cadex Defence": 7700000,
- "Cafe Rio": 215000000,
- "Casper's Ice Cream": 9700000,
- "Cedar Fort Inc.": 3200000,
- "Cellular Sales": 1700000000,
- "CentraCom": 51100000,
- "Chamberlain Group": 150000000,
- "Charitable Society for Social Welfare": 6300000,
- "Charles River Associates": 568700000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Circle K": 14700000000,
- "Civica Rx": 4800000,
- "Clariant Ltd.": 5500000000,
- "Clarion Partners": 150000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "CloudKitchens": 3000000,
+ "Brydge": 15000000,
+ "Busybusy": 11700000,
+ "CC Software": 11200000,
+ "CDR InfoSys": 29500000,
+ "CHRISTMAN DENTAL LTD.": 31000000,
+ "CLEARVIEW Business Intelligence LLC.": 4000000,
+ "CMIT Solutions": 60000000,
+ "CONTRACT PAL": 10300000,
+ "CTC Software": 25000000,
+ "CWTI": 12600000,
+ "Canary Speech": 2000000,
+ "Canopy Inc.": 10000000,
+ "Caselle": 26500000,
+ "Castler Media": 10800000,
+ "Cedesta": 2400000,
+ "Centeva": 15000000,
+ "Cerium Networks": 32500000,
+ "Certifinder": 6000000,
+ "ChartLogic": 15800000,
+ "Chic Geek Tech": 18900000,
+ "Christo Nicolle": 1400000,
+ "Chronos Inc.": 10400000,
+ "Cityworks": 11000000,
+ "Classic Software": 15300000,
+ "Clawson Designs": 10200000,
+ "Clever Coding": 59200000,
+ "Cloud Academy": 12100000,
+ "Cloud10 Group": 1400000,
"Cloudflare": 894100000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Conduent Business Services LLC.": 3900000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corning Glass Works": 14500000000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Creditcall": 100000000,
- "Crossroads of the West Council": 29600000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "DJO Global": 1200000000,
- "DLA": 3600000000,
- "Davis School District": 5000000,
- "Dawn Foods": 1100000000,
- "DeWalt Industrial Tool Company": 4000000000,
- "Dematic": 3200000000,
- "Deseret": 4200000,
- "Discover": 12000000000,
- "Dollar General": 35300000000,
- "Doppelmayr Cable Car": 150000000,
- "Dynata": 380300000,
- "E Trade": 2900000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "EVgo Services LLC.": 34400000,
- "East Hollywood": 9400000,
- "Eastern Canvas Products Inc.": 50000000,
+ "Cloudnet Cambodia": 10800000,
+ "Cloudnexa": 34500000,
+ "Cobalt Graphics": 1000000,
+ "Codazen": 2400000,
+ "Codebase": 10000000,
+ "Codefresh": 10000000,
+ "CogniTech": 17700000,
+ "Collins Computing": 14800000,
+ "Competitive Edge Office Systems": 6000000,
+ "Complete XRM": 30000000,
+ "Compliance Solutions": 11200000,
+ "CompuNet Inc.": 146600000,
+ "Concentsus": 14600000,
+ "Conexus": 17000000,
+ "Connvertex": 5600000,
+ "Controlpad": 6000000,
+ "ConvergeOne": 1600000000,
+ "Convergence Labs": 3100000,
+ "Convina": 21200000,
+ "Coreix": 7000000,
+ "Corona technologies": 36400000,
+ "Cosmic Design": 21700000,
+ "Cybertech Systems": 18100000,
+ "Cyrious Software": 10800000,
+ "Cytrus Logic": 30000000,
+ "DAKCS": 23000000,
+ "DHI Computing": 17400000,
+ "DP Facilities": 16000000,
+ "DSL Creative": 57100000,
+ "Damundus": 3600000,
+ "Dasheroo": 2000000,
+ "Data Canopy": 2000000,
+ "Data Recovery Labs": 12900000,
+ "Dataretrieval": 29800000,
+ "Datum Software": 15700000,
+ "Day One App": 1500000,
+ "DecisionPoint Systems": 65900000,
+ "Denyer DeZignz": 16500000,
+ "Desarrollo de aplicaciones": 4500000,
+ "Design Master": 41800000,
+ "Design of Today": 24200000,
+ "Designed by Laura": 18100000,
+ "Devcich&co": 16700000,
+ "Dexi": 10000000,
+ "Diamond Edge": 16900000,
+ "Digital DataComm": 16400000,
+ "Digital Forensics Team": 4100000,
+ "Digital Harbor": 20700000,
+ "Digital Pharmacist": 22000000,
+ "DirectScale": 5100000,
+ "Dive Shop 360": 2400000,
+ "Divinesoft": 22500000,
+ "DomainVIP": 36200000,
+ "Dominion Technologies": 26500000,
+ "Dpr Communications Llc.": 17500000,
+ "Dsco": 12300000,
+ "Dyaus Software": 18700000,
+ "DynaGrace": 6000000,
+ "EA Answers": 6000000,
+ "ECI Software Solutions": 365000000,
+ "EDTEC INSTRUMENTS LLC.": 11500000,
+ "EF Creative": 15600000,
+ "ESFT Inc. \u00ae": 3400000,
"Ebix": 991100000,
- "Edelman Financial Engines": 80000000,
- "Edwards Lifesciences": 5400000000,
- "Einstein Bros. Bagels": 500000000,
- "Engel & V\u00f6lkers": 1200000000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Equality Utah": 4400000,
- "Ethan Allen": 845000000,
- "Evans & Sutherland - A Cosm Company": 69200000,
- "Evo company": 140000000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
- "Fibernet": 54300000,
+ "Eccovia": 4800000,
+ "EdgeX": 11700000,
+ "Elaniin": 1300000,
+ "Elementum Ltd.": 25000000,
+ "Engage3": 35000000,
+ "Ensign Software": 31100000,
+ "Ensign Software Support Inc.": 15500000,
+ "Enterprise Integration": 11000000,
+ "Entrata India": 100000000,
+ "Equinox IT Services": 29400000,
+ "Ergoweb": 32500000,
+ "EscrowTech": 29200000,
+ "ExeVision": 6000000,
+ "Executech": 14800000,
+ "Exit 74 Designs": 16000000,
+ "FBSoft": 24000000,
+ "FOREUP": 30400000,
+ "Faber Acoustical": 21100000,
+ "Facet LLC.": 22400000,
+ "FamilyID": 11200000,
+ "FastDomain": 18200000,
"Filevine Inc.": 38000000,
- "First Horizon Corporation": 2900000000,
- "First Watch": 677600000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Forbes Marshall": 25600000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Franklin Resources Inc.": 2900000000,
- "Fraternal Order of Police": 33900000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Freightliner": 150000000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G&L Guitars": 8000000,
- "GE HealthCare": 17700000000,
- "GMAC Ally Financial": 8400000000,
- "GardaWorld": 3800000000,
- "Gibbs Smith": 7500000,
- "Global Payments Integrated": 1400000,
- "Globe Life Insurance": 5200000000,
- "GoHealth LLC.": 1200000000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gossner": 9300000,
- "GreenPal": 1200000,
- "Greenberg Traurig": 2000000000,
- "Greystar Real Estate Partners": 550000000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
+ "Flairdocs": 4200000,
+ "Flex Rental Solutions": 13300000,
+ "FlexSim": 13000000,
+ "Flitch Creative": 4600000,
+ "Foundation X": 1400000,
+ "Free Website": 27600000,
+ "Fresh Byte": 22300000,
+ "Fruth Group": 16400000,
+ "GC&E Systems Group": 59000000,
+ "GDEVSOLUTIONS": 1400000,
+ "GIBSON SHIRTS LLC.": 16600000,
+ "Gadzoom": 3000000,
+ "Gatemaster": 10000000,
+ "Genesistems": 16800000,
+ "Genwin": 1300000,
+ "GetBridge": 16400000,
+ "Giraffon": 4600000,
+ "Girmiti": 35000000,
+ "Go Extreme Online": 25700000,
+ "Gomo learning": 22700000,
+ "Graphic Evolution Inc.": 19100000,
+ "GreaText": 13400000,
+ "Groove Technology Solutions": 25000000,
+ "Grow Inc.": 13300000,
+ "Guru Technologies": 10400000,
+ "Guruuve": 4200000,
+ "HEBCO": 11100000,
+ "HEROIC Cybersecurity": 3000000,
"HZO": 48500000,
- "Haemonetics": 1100000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hart Ski Corporation": 7000000,
- "HealthEquity": 778000000,
- "Henry's Tavern": 7000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Home Exchange": 6700000,
- "HuHot Mongolian Grill": 7000000,
- "Hudson": 2000000000,
- "Hughes Network Systems": 2000000000,
- "Hunter Douglas Group": 4600000000,
- "Hurricane City UT": 3300000,
- "Hydro": 21600000000,
- "ICE Mortgage Technology": 690100000,
- "IDEX Corporate": 3100000000,
- "IHEARTMEDIA": 3800000000,
- "IPVM": 7000000,
- "ISISPACE": 12300000,
- "Ikanos Communications": 10000000,
- "InMoment": 278000000,
- "InTown Suites": 3400000,
- "Indian Affairs": 3700000,
- "Indiana Public Retirement System": 6200000,
- "Infinite Discs": 2500000,
+ "Haines": 18800000,
+ "Hakia": 3400000,
+ "HammerTap": 24000000,
+ "Haverly": 15900000,
+ "Hawkart Design Services": 17900000,
+ "Hearth And Home": 17500000,
+ "Heritage Web Solutions": 4200000,
+ "Hh2": 30000000,
+ "Holle Andersen": 11100000,
+ "Homebusinessonline": 26500000,
+ "Hoodoo Digital": 16000000,
+ "Howe Innovative": 1000000,
+ "HumanXtensions": 22300000,
+ "Hype Pype Studio": 13800000,
+ "Hypergene": 14800000,
+ "I-FOUR Media": 32100000,
+ "IPBan": 1400000,
+ "IT Fellows": 2400000,
+ "ITweebs": 6200000,
+ "Ian Mathias": 19000000,
+ "Ice Planet": 22200000,
+ "Ice Planet Design": 22200000,
+ "ImageMind": 11600000,
+ "Imagicom": 11600000,
+ "In-tech Solutions": 6700000,
+ "In8Sync": 2400000,
+ "Inbound Computer Solutions": 1400000,
+ "India Cyber Connect": 11900000,
+ "Inevat": 2400000,
+ "Infinite Technologies Inc. ITI": 25000000,
+ "Infobytes": 2400000,
"Ingenuity Cloud Services": 15000000,
+ "Innovasystems": 28300000,
"Instructure": 461100000,
- "Insurify": 9300000,
- "Intl Fcstone": 61700000000,
- "Iron Mountain Incorporated": 5000000000,
- "JBT FoodTech": 1400000000,
- "Jack Nadel International": 100000000,
- "Jamba": 70000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "Johnny Rockets": 552000000,
- "Journeys company": 8600000,
- "Junttan": 24000000,
- "KBR": 7700000000,
- "KGHM": 5200000000,
- "KONE": 10900000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kmart Corporation": 6000000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Grill Inc.": 176300000,
- "L.L.Bean": 1600000000,
- "LEGO": 8100000000,
- "Landmark Worldwide": 29100000,
- "Leaf Trading Cards": 2400000,
- "Leggett & Platt": 5300000000,
- "LendingClub Corporation": 1200000000,
+ "Integrated Services Group": 17000000,
+ "Integrinet IT": 24600000,
+ "Integrity Solutions Inc.": 11300000,
+ "Inteledyne": 17400000,
+ "Intelliquip": 10700000,
+ "IntraSee": 22400000,
+ "Ishway": 13200000,
+ "Isograph": 25300000,
+ "It Arrived": 13200000,
+ "J. Wick design": 14700000,
+ "JC-Dezigns": 16400000,
+ "JET Technical": 22000000,
+ "JMM Software": 43300000,
+ "JavaPipe": 4700000,
+ "Jess Gallant Design": 16500000,
+ "JobNimbus": 21000000,
+ "Jordan Minton": 1800000,
+ "Jrooz Review Center Inc.": 15700000,
+ "JusticeTrax": 5000000,
+ "KPI Fire": 4200000,
+ "Kaizen Softworks": 47900000,
+ "Kantata": 35000000,
+ "Keen Logic Consulting": 11400000,
+ "KeepnTrack": 13000000,
+ "Kellagraphic Design Studio": 6000000,
+ "Keyboard Express": 30900000,
+ "KickTech": 26900000,
+ "Knowligence": 3300000,
+ "KomBea Corp": 20900000,
+ "Kurt Lavoie | Graphic Designer": 3700000,
+ "L2L": 32500000,
+ "LAURA GRAFICA": 19000000,
+ "LOCO Solutions": 16200000,
+ "Laduma": 4000000,
+ "Lancera": 4300000,
+ "Lane Patterson": 18600000,
+ "Leo Insights": 1000000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Love Home Swap": 10300000,
- "Lovesac": 389800000,
- "Lyon & Healy": 7000000,
- "M.C. Dean": 1000000000,
- "METech Recycling Inc.": 24400000,
- "MOBILE MINI": 593000000,
- "MOMO Srl.": 5000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Major Drilling": 590400000,
- "Marcus & Millichap": 1500000000,
- "Marlin Firearms Company": 42800000,
- "Masimo": 2000000000,
- "Materion Corporation": 1800000000,
- "McLane Company": 50000000000,
- "McWane": 1700000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Meyer Davis": 9000000,
- "Micron Technology": 30800000000,
- "Milliman": 1200000000,
- "Milt's Stop & Eat": 36600000,
- "Mimi's Cafe": 23000000,
- "Modere": 4900000,
- "Moe's Southwest Grill": 295500000,
- "Montage Hotels": 400000000,
- "Mountain Mike's Pizza": 68000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "My Gym Children's Fitness Center": 6000000,
- "NJ TRANSIT": 818400000,
- "NOAA Weather Radio": 36400000,
- "Nammo": 13700000,
- "National Auto Sport Association": 5900000,
- "National Celiac Association": 3700000,
- "National Commission for the Certification of Crane Operators": 12700000,
- "National Model Railroad": 5300000,
- "National Oilwell Varco": 7200000000,
- "Navajo Times": 2800000,
+ "LifeOmic": 12500000,
+ "Lightspeed DMS": 31300000,
+ "Link 121": 11400000,
+ "Logical Front": 26800000,
+ "Loveland Innovations": 2000000,
+ "LunaSoft": 2600000,
+ "MC SOFTWARE": 6000000,
+ "MDSC": 3100000,
+ "MOBMAN STUDIOS": 14700000,
+ "MOD Mission Critical": 2900000,
+ "MVi - Millennial Vision Inc.": 11500000,
+ "Mach7 Enterprises": 1600000,
+ "Madyson's Marshmallows": 10500000,
+ "Mainstreet Computers": 11800000,
+ "Manufactured Homes": 5000000,
+ "MarketDial": 1000000,
+ "Marketware": 4100000,
+ "Marla Gill Art & Design": 17600000,
+ "Marquis Software Solutions": 22900000,
+ "Mary Corley Designer": 12700000,
+ "MasterControl": 100000000,
+ "Mazziotti Design": 17000000,
+ "Medsphere": 15000000,
+ "Meridian Title Co.": 14500000,
+ "Meticular": 24900000,
+ "Midnight Oil Graphic Design & Printing Services": 15800000,
+ "Midphase": 10000000,
+ "Miovision": 35000000,
+ "Monnit": 15000000,
+ "Motivosity": 7100000,
+ "My Faster": 25000000,
+ "MyRec": 10300000,
+ "Mystic Media": 22100000,
+ "NITYA Software Solutions Inc.": 20800000,
+ "NLE": 29400000,
+ "NLign": 27300000,
+ "Navigator Business Solutions": 17500000,
+ "Need A Geek": 24900000,
"NetApp": 6500000000,
- "Niagara Conservation": 2500000,
- "Niman Ranch": 65000000,
- "Norbest": 115000000,
- "O.C. Tanner company": 540000000,
- "ON Semi": 8300000000,
- "OOCL": 33600000,
- "OS News": 10400000,
- "OnDeck": 485000000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "PRINOTH AG": 76000000,
- "PT. Huntsman Indonesia": 8000000000,
- "Pace Analytical": 450000000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pampered Chef": 300000000,
- "Paradise Bakery & Caf\u00e9": 23700000,
- "Park 'N Fly": 48500000,
- "Park Record": 9600000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Patriot Rail": 120200000,
- "PeekYou": 6000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Pho Hoa": 2500000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Pixar": 500000000,
- "Planned Parenthood": 1600000000,
- "Premier Lacrosse League": 2000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quad Metalworks": 3100000000,
+ "NetSPI": 50000000,
+ "Network Coverage": 10000000,
+ "Network Integration": 26600000,
+ "Network Solutions International": 17300000,
+ "Newbury Enterprise": 9500000,
+ "Nex One": 28500000,
+ "Nexus IT": 1700000,
+ "Nita Design": 16800000,
+ "Novacoast": 100000000,
+ "OCTORN": 3900000,
+ "OS Tailors": 26500000,
+ "Object Systems International": 41100000,
+ "ObservePoint": 15200000,
+ "OceanManager": 3000000,
+ "Omilia": 7000000,
+ "Omniq": 61200000,
+ "OneSource Software": 13200000,
+ "Opalforce": 5500000,
+ "Optimi": 27200000,
+ "Optrics": 28100000,
+ "Orbiter Inc.": 21300000,
+ "OurLink": 20100000,
+ "Out'a the linez": 18600000,
+ "PC House Calls": 3000000,
+ "PDCflow": 2000000,
+ "PDQ": 22200000,
+ "PGTEK": 35000000,
+ "Packetblast": 12500000,
+ "Pain Management Center Www.utahpaincenter": 45000000,
+ "Paramount Acceptance": 37500000,
+ "Park City Yurts": 49800000,
+ "Particl": 4500000,
+ "Patch Retention": 7000000,
+ "Peak Software": 42500000,
+ "PearTree Designs": 11600000,
+ "PegasusNext": 15800000,
+ "Periscope Holdings": 24500000,
+ "PlanSwift": 10000000,
+ "Plus11": 2400000,
+ "Pocomos": 7700000,
+ "PointClickCare": 260800000,
+ "Power Angle": 14400000,
+ "Premier Software": 25600000,
+ "Prime-Tek": 11600000,
+ "ProShay Web Development": 1400000,
+ "ProdataKey": 13800000,
+ "Propertybase": 26000000,
+ "Protoven": 1400000,
+ "Pxlworthy": 10200000,
+ "QFloors": 17600000,
+ "Quality Produce": 27900000,
"Qualtrics": 1400000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RAA": 6300000,
- "RED Digital Cinema": 55200000,
- "Rad Power Bikes": 138000000,
- "Radian": 1300000000,
- "Realtor": 118000000,
- "Red Leaf Resources": 47400000,
- "Red Wing Shoes": 700000000,
- "Relax The Back": 11600000,
+ "Quivers": 11200000,
+ "Qvera": 49400000,
+ "RFE Hosting": 5400000,
+ "RJNetworks": 18600000,
+ "RackWare": 7900000,
+ "RainFocus": 45000000,
+ "Re robot": 16400000,
+ "RealtyAPX": 3800000,
+ "Reonomy": 18300000,
"Reputation": 18500000,
"Rescale": 35000000,
- "Rexair": 35000000,
- "Rimac Automobili": 28200000,
- "Robinson Fresh": 11400000,
- "Rodgers Instruments Corporation": 6400000,
- "Ronald McDonald House Charities": 59500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "S-S Worldwide": 20000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SCHEELS": 800000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "San Antonio Shoemakers": 4700000,
- "Sanderson Farms": 5600000000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "Savills North America": 6000000,
- "Schiff Nutrition International": 8000000,
- "Schreiber Foods": 4800000000,
- "Scorpion company": 61900000,
- "SeaQuest aquariums": 2400000,
- "Seaboard": 11200000000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Seven Peaks Water Park Duneland": 21800000,
- "Shakey's": 112000000,
- "Shane Co.": 30800000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simplot": 6000000000,
- "Skyworks Aeronautics": 3000000,
- "Sleep Number": 2100000000,
+ "Revver": 25000000,
+ "Rivet Logic": 2900000,
+ "Rovi Tracker": 33100000,
+ "Rusoaie": 5500000,
+ "Rylex Consulting": 39200000,
+ "S ureSoft": 24700000,
+ "SA International": 10000000,
+ "SA Technologies": 30000000,
+ "SSquare Technologies": 16500000,
+ "Safaltek": 24800000,
+ "Sakka Studio": 1400000,
+ "Salt City Studio": 16400000,
+ "Salt Project": 15000000,
+ "Sara Curtis": 22900000,
+ "SciTools": 10000000,
+ "Scientific Software Group": 7000000,
+ "Sean M. McMahon Design": 4000000,
+ "Security Weaver": 6000000,
+ "SecurityMetrics": 69400000,
+ "Sequoia Group": 17100000,
+ "ShareSlot": 25000000,
+ "Sharpe": 38100000,
+ "ShopSite": 2200000,
+ "Sigalabs": 21800000,
+ "Silk Scientific": 23700000,
+ "Simplus": 67100000,
+ "Site Solutions": 20000000,
+ "SiteCapture": 1400000,
+ "SixFifty": 30000000,
+ "Skybend": 11800000,
"Smartsheet": 712000000,
- "Snyder's-Lance": 8600000000,
+ "Snowfly": 12100000,
"SoftServe": 570200000,
- "Sonoco": 6500000000,
- "Sorenson's Ranch School": 18300000,
- "Southwest": 22700000000,
- "Sprinkles Cupcakes": 15800000,
- "Stadler Rail": 8300000,
- "Standard-Examiner": 6100000,
- "Stanley Consultants Inc.": 198000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Steward Health Care": 5400000000,
- "Stitch Fix": 2100000000,
- "Suhr JS Technologies Inc.": 3600000,
- "Sulzer": 13800000000,
- "Sun & Ski Sports": 15000000,
- "Swanson Industries": 6700000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
- "Sword Health": 6000000,
- "SyberJet": 7800000,
- "Sylvan Learning": 12600000,
- "TCBY": 8800000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Tata Chemicals": 1500000000,
- "Taylor Farms": 2800000000,
- "Taylorsville High School": 22100000,
- "Technology Student Association TSA": 10000000,
- "Telarus LLC.": 6800000,
- "Tempur-Pedic": 24700000,
- "Terracon": 77100000,
- "The Channel": 25000000,
- "The Melting Pot": 31500000,
- "The National Club": 6400000,
+ "SolutionStream": 16000000,
+ "Solutions II": 70000000,
+ "Soren Innovations": 18800000,
+ "SpaceIQ": 10000000,
+ "SpamHero": 35000000,
+ "Sphera Solutions": 120000000,
+ "Split Software Inc.": 45000000,
+ "SponsorCX": 4200000,
+ "Sproul Creative": 10700000,
+ "St George Visitirs & Convention Bureau": 34500000,
+ "Stallion is": 1500000000,
+ "Start Studio": 6000000,
+ "Stova": 10000000,
+ "Strategic Reporting Systems": 10400000,
+ "Structured": 15000000,
+ "Studio 2150": 6200000,
+ "Studio B Visual Communication": 6700000,
+ "Studio Cloud": 6000000,
+ "Sumaria Systems": 29000000,
+ "Summit Branding": 26400000,
+ "SuperLumin": 11300000,
+ "Surgeworks": 17100000,
+ "Swink": 6600000,
+ "Symtec": 10700000,
+ "Synthesis Network Specializing": 4000000,
+ "SysTools": 12000000,
+ "TECHeGO": 5100000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "Tactick": 4500000,
+ "TazWorks": 35700000,
+ "Teamaxess France": 21000000,
+ "TecServ": 26500000,
+ "Techessentials": 10700000,
+ "Technocrates": 29500000,
+ "Teem": 11000000,
+ "Terralogic": 75000000,
"The Org company": 2000000,
- "The Parking Spot": 46000000,
- "The Scoular Company": 4000000000,
- "Thumbtack": 170600000,
- "Tiffany's": 4400000000,
- "Tom Balding": 7000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
+ "The Other Firm": 6000000,
+ "Think Tank Creative Consortium": 18400000,
+ "Tim Carol Designs": 15900000,
+ "Todo en Software": 5400000,
+ "TopHat Solutions": 18100000,
"Trace3 LLC.": 1400000000,
- "Tracerco": 47500000,
- "Trading Places": 27200000,
- "Traffic Safety Store": 19900000,
- "Tread Lightly": 5300000,
- "Tredegar Corporation": 42600000,
+ "Tracer AI": 6000000,
+ "Tran Creative": 23900000,
+ "Treeline Group": 24400000,
+ "Trenholm Glass": 26900000,
+ "TriVir": 27200000,
"Trihedral Engineering": 6000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Ski and Snowboard": 3400000,
- "UFP Industries": 9700000000,
- "UMWA": 3000000,
- "UNTUCKit": 350000000,
- "US Eagle": 35000000,
- "USCIS": 15700000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United Union of Roofers Waterproofers & Allied Workers": 4300000,
- "University Press of Colorado": 8300000,
- "Urban Design Associates": 9000000,
- "Usg Interiors LLC.": 3500000000,
- "Utah Education Network": 6200000,
- "Utah Retirement Systems": 23400000,
- "Utah Transit Authority": 4100000,
- "VCA Inc.": 1800000000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Vernal Regional Airport": 5000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wahoo Studios": 10100000,
- "Warby Parker": 573100000,
- "WebAIM": 8000000,
- "Whelen": 500000000,
- "Wienerschnitzel": 341000000,
- "Williams Companies": 11300000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
+ "Trust Guard": 1000000,
+ "Tuma Solutions": 29400000,
+ "Twisted Pixels": 25800000,
+ "Tybera": 10000000,
+ "UN-REALITY": 3500000,
+ "Utah Discount Realty": 15000000,
+ "VASST": 17700000,
+ "VLCM": 78500000,
+ "VRTECHSS": 3600000,
+ "Vangarde": 12100000,
+ "Vasion": 25000000,
+ "Veritract": 2000000,
+ "Vi On Corporation": 120000000,
+ "Virtel Marketing": 11300000,
+ "Virtual Internet": 16700000,
+ "W orkMax": 8200000,
+ "Wasatch Dev": 11900000,
+ "Waystar": 130000000,
+ "Weave Communications Inc.": 136300000,
+ "Web Carpenter": 28300000,
+ "Web NX": 35400000,
+ "WebSTAT": 10000000,
+ "Weber Basin Water Conservancy District": 26000000,
+ "Whistic": 2000000,
+ "Wild Ginger Software Inc.": 39400000,
+ "Wistia": 40000000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
+ "Woodbury Technologies": 57200000,
"Workfront": 200000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Zumiez": 1100000000
+ "Workstream": 14300000,
+ "Wydah": 11600000,
+ "Xallex": 23300000,
+ "Xinuos": 10000000,
+ "Yoo Foo": 16200000,
+ "Your Design Guys": 7000000,
+ "Youth Tech Hub": 30000000,
+ "ZAACT": 10000000,
+ "ZOOMinity Productions": 16900000,
+ "ZULU SIX": 18800000,
+ "ZZ Inc.": 10000000,
+ "Zip Scan": 16400000,
+ "Zygote": 39700000,
+ "i.t.NOW": 2600000,
+ "iCentris": 2700000,
+ "iSam Blue": 25500000,
+ "iSecureUs": 5700000,
+ "iWorQ": 6500000,
+ "rFocus": 11700000,
+ "xMatters": 10000000
},
"Vermont": {
- "ABC Supply": 12100000000,
+ "22nd Century Solutions": 166300000,
+ "ABELMed": 8000000,
+ "ALISTA Technologies": 275000,
"AMC Bridge": 19600000,
- "ANICHINI": 7500000,
- "ARA": 289500000,
- "ATF": 1000000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Alamo Rent a Car": 2900000,
- "Alzheimer's Association": 81500000,
- "Amato's Sandwich Shops Inc.": 49400000,
- "American Eagle Outfitters": 5000000000,
- "American Society of Genealogists": 3600000,
- "Army News Service": 16400000000,
- "AspenTech": 860300000,
+ "Accur8 Software": 7000000,
+ "ActiveCo": 373000,
+ "Adept Technologies": 4000000,
+ "Aerie Consulting": 1400000,
+ "Agilion": 1400000,
+ "Aprexis": 6000000,
+ "Area 52 Hosting": 3900000,
+ "Ascension Technology Corporation": 3700000,
"Asure Software": 76600000,
- "Aubuchon Hardware": 128000000,
- "Barry Callebaut": 8400000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Black Diamond Equipment": 4400000,
- "BlueLinx": 4600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Burlington College": 112000,
- "Burlington Free Press": 4100000,
- "Burton Snowboards": 400000000,
- "Cadex Defence": 7700000,
- "Caledonia Spirits": 7000000,
- "Casella": 1100000000,
- "Cellular Sales": 1700000000,
- "Charles E. Tuttle Company": 2500000,
- "ChowNow": 70000000,
- "Christmas Tree Shops": 15900000,
- "Circle K": 14700000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
- "Crunch Fitness": 190000000,
- "Cub Cadet": 350000000,
- "Cumberland Farms": 6300000000,
- "DAV": 3900000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EVgo Services LLC.": 34400000,
- "Einstein Bros. Bagels": 500000000,
- "Episcopal Church": 96100000,
- "Ethan Allen": 845000000,
- "FatFace": 244700000,
- "GardaWorld": 3800000000,
- "GenealogyBank": 5700000,
- "Georgia Swarm": 7000000,
- "Global Health Council": 14000000,
- "Green Mountain Council": 1100000,
- "Grindline Skateparks": 27600000,
- "Guitar Center": 2300000000,
- "HUB International Ltd.": 3200000000,
- "Harbor Freight": 5000000000,
- "Harpoon Brewery": 15000000,
- "Inventors": 10000000,
+ "B LAQUER DESIGN LLC.": 21300000,
+ "B&K Business Group": 6600000,
+ "Bear Code": 6000000,
+ "Blue Morpho Technologies": 22000000,
+ "BlytheVisual": 1000000,
+ "Booj": 2100000,
+ "Bourne's Service Center": 4700000,
+ "Brault & Barnes Design": 3800000,
+ "Breen Systems": 7000000,
+ "Brian P Graphic Arts": 10000000,
+ "Butternut Systems": 22900000,
+ "C2 Competitive Computing": 35000000,
+ "Capacitor Design Network": 3900000,
+ "Carplugs": 4200000,
+ "Catamount Creatives": 8700000,
+ "Chicago Soft": 11700000,
+ "Clearion": 6000000,
+ "DL DESIGN STUDIO": 26700000,
+ "Data Systems Inc.": 3000000,
+ "Datamann": 5000000,
+ "Deborah Kehoe Design": 4800000,
+ "Delishdesign": 97000,
+ "Design Invasion": 2400000,
+ "Design Youniverse": 3900000,
+ "DesignWise Studios": 61400000,
+ "Development Consultants Incorporated DCI": 7900000,
+ "DominionTech": 171000,
+ "EQ2's": 10000000,
+ "Eagle Network Solutions": 7000000,
+ "Econiq": 17300000,
+ "Ecopixel": 2600000,
+ "Elliot House Bed and Breakfast": 33900000,
+ "EpikOne": 6000000,
+ "Europa IT": 873000,
+ "Faraday AI Inc.": 4000000,
+ "Forest Metrix": 6000000,
+ "Found Line": 1400000,
+ "Global-Z": 3900000,
+ "Gorilla Web Studio": 1400000,
+ "Green Mountain Software": 10000000,
+ "Green River": 525000,
+ "Greensea": 6000000,
+ "Huron PM": 2400000,
+ "IBCI": 21800000,
+ "Image Relay": 13600000,
+ "Infiswift": 4200000,
+ "Inntopia": 8000000,
+ "Intellidimension": 10000000,
+ "Interrobang Design": 3500000,
"Ipswitch Inc.": 75000000,
- "Iron Mountain Incorporated": 5000000000,
- "JEI Learning": 1300000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "Kohler Kitchen & Bath": 6000000000,
- "L.L.Bean": 1600000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lovesac": 389800000,
- "Lupus Foundation of America": 13700000,
- "Lyon & Healy": 7000000,
- "MBF Bioscience": 7000000,
- "MOBILE MINI": 593000000,
- "Mammut": 250000000,
- "Marlboro Music": 36100000,
- "Mazzio's": 6500000,
- "Melbourne Bowling Club": 244000,
- "Meta Filter": 2400000,
+ "It Services Llc Vermont": 16200000,
+ "Ivy Computer": 10000000,
+ "JDDesignvt": 3100000,
+ "JEG DESIGN INC.": 5400000,
+ "Jersey Girls Farm Store": 30400000,
+ "Julian Kelly Design": 4800000,
+ "Keystone Technologies": 6000000,
+ "Killington Classic": 22300000,
+ "KingsBridge BCP": 2400000,
+ "Knowledgement": 2000000,
+ "Lacoss Designs": 50500000,
+ "Laureate Learning": 2400000,
+ "Logic Branch": 2400000,
+ "Longhouse Software": 6500000,
+ "MISys": 4800000,
+ "Mad River Web": 21700000,
"Mi9 Retail": 36200000,
- "Milliman": 1200000000,
- "Moe's Southwest Grill": 295500000,
- "Music & Arts": 12400000,
- "NBT Bank": 30100000,
- "NOAA Weather Radio": 36400000,
- "Ollie's Bargain Outlet": 1700000000,
- "One Tree Planted": 3700000,
- "OneMain Financial": 4100000000,
- "Ooma": 179000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Paleontological Research Institution": 4700000,
- "Park 'N Fly": 48500000,
- "Phoenix House": 3500000,
- "Planned Parenthood": 1600000000,
- "Price Chopper": 1500000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Putney School": 5000000,
- "Quick Lane": 6000000,
- "Realtor": 118000000,
- "Rokon": 3700000,
- "SKATOPIA": 4800000,
- "Safelite": 2400000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Santa Cruz Bicycles LLC.": 5400000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shoe Carnival": 1300000000,
- "Signarama": 55000000,
- "Sleep Number": 2100000000,
- "Small Dog": 3700000,
- "Spectrum Youth and Family Services": 4100000,
- "St Albans Messenger": 4200000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stave Puzzles": 6000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Teradyne": 3300000000,
- "Terason": 6000000,
- "The Bus": 6000000,
- "The Humane Society of the United States": 30700000,
- "The Mountain Times": 22300000,
- "Torrid": 1300000000,
- "Trudeau 3.0": 30300000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "USCIS": 15700000,
- "UniFirst": 2000000000,
- "Union Bank Morrisville Vermont": 48000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Untappd": 10000000,
- "VCA Inc.": 1800000000,
- "Vermont Public": 5000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Virtium": 50000000,
- "Whelen": 500000000,
+ "Might & Main": 2300000,
+ "Miovision": 35000000,
+ "Mollie Coons": 2600000,
+ "Monitordroid": 299000,
+ "Mosedale integrated Solutions": 5000000,
+ "Mullan ILLUSTRATION": 3600000,
+ "MyRec": 10300000,
+ "N Hawley Business Solutions": 16400000,
+ "NATIONAL Business Technologies": 4900000,
+ "NEMRC": 7000000,
+ "NPI Technology Management": 2500000,
+ "NatWorks": 2000000,
+ "Nine Dreams": 33200000,
+ "Northern Lights Career Development Center": 31100000,
+ "OAK3": 3200000,
+ "OCR Solutions": 102000,
+ "Off Grid Media Lab": 5900000,
+ "Okay Plus": 8100000,
+ "OneReport": 8000000,
+ "OpenLink Software": 10000000,
+ "Patton Web Dev": 1400000,
+ "PenPencilEraser": 4400000,
+ "Physicians Computer Company PCC": 25000000,
+ "PieMatrix": 7000000,
+ "Power Shift Online": 1100000,
+ "Pro AV Systems": 3700000,
+ "Punchpass": 15000000,
+ "Quadric Software": 6100000,
+ "Qwerkal": 6700000,
+ "RCxRules": 1400000,
+ "RainWorx": 8000000,
+ "Renaissance Information Systems": 10000000,
+ "Retail Edge": 10000000,
+ "Rival Brands": 1400000,
+ "Rome Technologies Inc.": 19400000,
+ "Rose Computer Technology Services": 623000,
+ "Rural Solutions": 115000,
+ "SUI Solutions": 2000000,
+ "Secured Network Services": 7800000,
+ "Sensible World": 569000,
+ "SensorCloud": 315000,
+ "Shulware": 4000000,
+ "Solidarity of Unbridled Labour": 17500000,
+ "Soluno": 454000,
+ "SpiralSpark": 4900000,
+ "Springer-Miller Systems": 17800000,
+ "Sunburst Software Solutions": 1400000,
+ "SymQuest": 38300000,
+ "SynEcology": 7000000,
+ "Syndigo": 150000000,
+ "Syron Design": 57300000,
+ "Systems & Software S&S.": 193000,
+ "THORWORX": 25100000,
+ "TableRock design House": 21400000,
+ "Taurus Plus": 16900000,
+ "Tech Vault": 5500000,
+ "TechShields": 1000000,
+ "Technology Consultants Inc. VT": 16500000,
+ "Temblor Creative": 1400000,
+ "The Vermont Sail Freight Project": 38300000,
+ "The Vt Vibe": 4700000,
+ "TimeWave Media": 1400000,
+ "Tone Creative": 6000000,
+ "Tracktio": 3400000,
+ "TurnTree": 1400000,
+ "Twinstate Technologies": 7600000,
+ "VendorRisk": 1200000,
+ "Vermont Internet Design": 25500000,
+ "Vermont Systems": 10000000,
+ "WSA Solutions": 1400000,
+ "Wetherby design": 15800000,
"Wolters Kluwer": 5400000000,
- "World Learning": 7200000,
- "World Tang Soo Do": 23000000,
- "XPO Logistics": 7700000000,
- "Zumiez": 1100000000
+ "Wyzaerd": 2400000,
+ "XProtean": 10000000,
+ "YiZRi": 401000,
+ "Yummie Nation": 207000,
+ "ekaBOX": 4700000,
+ "iTech US": 20000000
},
"Virginia": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "AAHA": 24000000,
- "ABC Supply": 12100000000,
- "ABMC": 10000000,
- "ACE Cash Express": 600000000,
+ "22nd Century Solutions": 166300000,
+ "A-TEK Inc.": 17500000,
"ADP Roseland": 16900000000,
- "ADVA Optical Networking SE": 695700000,
- "AEP": 27500000000,
- "AFL-CIO": 138000000,
- "AFSCME": 10800000,
- "ALPA": 50900000,
- "AM GENERAL LLC.": 230000000,
- "AMC Theatres": 3900000000,
- "ARA": 289500000,
- "ARLnow": 10000000,
- "ASCE": 15700000,
- "ASI Government LLC.": 10100000,
- "ATF": 1000000000,
- "AUSA": 23000000,
- "Abbott's Frozen Custard": 10900000,
- "Aberdeen Carolina and Western Railway": 23700000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Acuity Brands": 4000000000,
- "Advantage Rent a Car": 150000000,
- "AeroVironment": 264900000,
- "Aesop": 270000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Agility Logistics": 1800000000,
- "Air Canada": 12200000000,
- "Airborne Tactical Advantage Company": 16400000,
- "Airlines Reporting Corporation": 150000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "Amerada Hess": 8000000000,
- "America's Swimming Pool": 54600000,
- "American Eagle Outfitters": 5000000000,
- "American Management Association": 21700000,
- "American President Lines": 1300000000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Anton Paar": 460000000,
+ "AG2 Link": 44500000,
+ "AGSI Systems": 24000000,
+ "Abc Montessori Center": 30300000,
+ "AccessAgility": 13500000,
+ "Accrete": 28000000,
+ "Acuity Systems": 10900000,
+ "Adaptavist": 150000000,
+ "Advanced Agile": 11900000,
+ "Agility Technologies": 33100000,
+ "Agillence": 22200000,
+ "Alexant": 15700000,
+ "Allen Corporation of America": 17700000,
+ "Alynnlee": 23800000,
+ "American Infotech Solutions": 16300000,
+ "Aneukor": 16000000,
+ "AntiPatterns": 21100000,
+ "ApeSoft": 12000000,
+ "Aperio Global": 29400000,
+ "Apertures": 29900000,
+ "AppGuard": 18000000,
+ "AppNet Solutions": 16600000,
"Appian": 447200000,
- "Applied Materials": 25200000000,
- "Aptara Corp - Home": 75000000,
- "Arconic": 9000000000,
- "Ardagh Group S.A.": 9000000000,
- "Ardene": 38400000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
+ "Applied Computing Technologies": 29400000,
+ "Applied Solutions": 12000000,
+ "Ardent MC": 23300000,
+ "Art Dept. Inc.": 23600000,
+ "Ascolta Training": 10100000,
"Atlantic": 59500000,
- "Atlantic Power": 271200000,
- "Atlantic Union Bank": 689200000,
- "Aubuchon Hardware": 128000000,
- "AvalonBay Communities": 2000000000,
- "Avanti Communications": 66900000,
+ "AtomRain": 12600000,
+ "Attatech": 11900000,
+ "Atyeti": 42200000,
+ "AutoDocs": 11500000,
+ "Avail Company": 4200000,
"AvePoint": 215800000,
- "Axios": 76000000,
- "B.F. Saul": 92300000,
- "BELFOR": 2000000000,
- "BJ's": 18700000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Ballard Designs": 65000000,
- "Barbeque Integrated Inc.": 179000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bay Coast Railroad": 26300000,
- "Belcan": 1000000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Bentley Motors": 3200000000,
- "Black Rifle Coffee": 233100000,
- "Bloomberg Industry": 736000000,
- "Blue Bell Creameries": 675000000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bojangles": 560000000,
- "Bonchon": 60000000,
+ "B3 Group": 59300000,
+ "BDNet Corporate Networking": 23300000,
+ "BIFACT": 15700000,
+ "BRMi": 19300000,
+ "BV Tech": 17900000,
+ "BairesDev": 105000000,
+ "Barking Dog Graphics": 49200000,
+ "Base 16 Consulting": 21600000,
+ "Beeline Design": 30100000,
+ "BestToolBars": 48400000,
+ "Beta Systems": 331100000,
+ "Biswas Information Tech Solutions": 13500000,
+ "Biz Net Technologies": 18200000,
+ "BizFlow": 11000000,
+ "Blackhawk Consulting": 21700000,
+ "BlockDOS": 6700000,
+ "Blue Mountain Data Systems": 10300000,
+ "Blue Ridge Crest": 21000000,
+ "Blue Tang Solutions": 11900000,
+ "BlueAlly": 11700000,
+ "Bookerville": 29500000,
"Booz Allen": 8800000000,
- "BrabenderCox": 16700000,
- "Breeze Airways": 50000000,
- "Breitling": 588300000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Bright Health Inc.": 3800000000,
- "BrightStar Care": 300000000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown & Bigelow": 32700000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
- "BurgerFi International Inc.": 102900000,
- "C-VILLE": 22600000,
+ "Boyum IT Solutions": 22700000,
+ "Brandilynn Michelle": 30500000,
+ "BridgeTek": 43500000,
+ "Brightspot": 15000000,
+ "Brookneal": 21700000,
+ "Budget Builder": 22400000,
+ "Byte Cellar": 17700000,
+ "C Watkins & Associates Inc.": 18600000,
"CACI": 6200000000,
+ "CCP Technologies": 20200000,
"CDW": 23800000000,
- "CHEF'STORE": 1100000000,
- "CJ Logistics": 1000000000,
- "CONRAD": 10600000,
- "CURTISS-WRIGHT": 2500000000,
- "Cambium Learning Group": 160000000,
- "Capital Impact": 10000000,
- "Cellular Sales": 1700000000,
- "Center for Autism": 500000000,
- "Checkpoint Systems": 800000000,
- "Cheeburger": 55600000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Children's Miracle Network Hospitals": 26000000,
- "Christmas Tree Shops": 15900000,
- "Chubb Limited": 43500000000,
- "Cici's": 18300000,
- "Circle K": 14700000000,
+ "CF Software Consultants": 19600000,
+ "CTOvision": 10000000,
+ "Casepoint": 93000000,
+ "Celtic Wolf Inc.": 11200000,
+ "Centella Consulting": 11900000,
+ "Chris Flick": 12300000,
"Cirium": 10000000,
- "Citi Trends": 862200000,
- "Clyde's": 220000000,
- "College Board": 1100000000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
- "Conduent Business Services LLC.": 3900000000,
- "Constellis": 1000000000,
- "Continental Automotive \u7d0b\u5225\u30c6\u30b9\u30c8\u30b3\u30fc\u30b9": 36300000000,
- "Convenience": 12800000,
- "Coptic Orphans": 22000000,
- "Core & Main Inc.": 6100000000,
- "Corning Glass Works": 14500000000,
- "Corporation Sealy": 1300000000,
- "Cozen O'Connor LLP.": 517300000,
- "Cracker Barrel": 3300000000,
- "Crate & Barrel": 1600000000,
- "Crunch Fitness": 190000000,
- "Crutchfield": 12600000,
- "Cub Cadet": 350000000,
- "Cutco Corporation.": 200000000,
- "Cyient Inc.": 575100000,
+ "Clango": 10000000,
+ "Cleared Solutions": 36200000,
+ "Cleverex": 15500000,
+ "Cloudera": 904800000,
+ "ClueTrust": 17700000,
+ "Coalfire Federal": 31300000,
+ "Coderiver": 14700000,
+ "Cognosante": 25000000,
+ "Coherent Logic": 10000000,
+ "CompInsTech": 22600000,
+ "Compass Systems": 21600000,
+ "Computer Business": 29200000,
+ "Computer Mission": 13800000,
+ "Computer Networks": 20100000,
+ "Computer Systems Center Inc.": 26000000,
+ "Concise Systems": 17800000,
+ "Continental Realty Services Inc.": 17300000,
+ "Corelight": 10900000,
+ "Corporate Zen": 29200000,
+ "Corvid Technologies": 23700000,
+ "CreamTec": 20700000,
+ "Croton dynamics": 10000000,
+ "Cumberland Technology": 16300000,
+ "Custom Data Systems": 18700000,
+ "CyberLynx": 11400000,
+ "CyberSheath": 10200000,
"Cyren": 30000000,
- "D.H. Griffin": 171000000,
- "DFAS": 10000000,
- "DISA": 120000000,
- "DLA": 3600000000,
- "DMI Inc.": 705000000,
- "DTRA": 15100000,
+ "D And H Consulting": 21400000,
+ "DANE LLC.": 13400000,
+ "DBT Data": 13600000,
+ "DHK": 20500000,
+ "DNC Corp": 18800000,
+ "DSA Inc.": 140000000,
+ "DSI Tech": 37200000,
"DXC Technology Company": 14800000000,
- "Daily Gazette": 10200000,
- "Dana Incorporated": 9900000000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "Day & Zimmermann": 2400000000,
- "Department of Energy": 190000000,
- "Dexter Industries": 11400000,
+ "Data Meaning": 10000000,
+ "Data and Analytic Solutions": 44800000,
+ "DataControl LLC - Microsoft Access Database Development": 15500000,
+ "DataOne Software": 20400000,
+ "Decisiv": 23500000,
+ "Design & Conquer": 21900000,
"Digital Realty": 4700000000,
- "Dignity Memorial": 25000000,
- "DirecTV Stream": 33300000000,
- "District Taco": 35000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "DonorsTrust": 31100000,
- "Dooney": 40000000,
- "Drury Hotels": 620000000,
- "E Trade": 2900000000,
+ "Dignari": 12500000,
+ "DomainVIP": 36200000,
+ "Dominion Dealer Solutions": 270700000,
+ "Dss Solutions": 20000000,
+ "Dynamic Technology Systems": 52400000,
+ "E-Line Technologies": 31600000,
+ "EDI Partners": 14300000,
+ "ELSchneider": 16400000,
"EPAM": 4500000000,
- "ESFI": 10000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "Eastman": 10600000000,
- "Easy Star Records": 10500000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Ekso Bionics": 10000000,
+ "ESENTIRE": 130000000,
+ "East Virginia Company Llc.": 13300000,
+ "Eastern Data": 19700000,
"Elasticsearch B.V.": 977800000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Equifax": 5100000000,
+ "Electrosoft": 12600000,
+ "Encentric": 32600000,
+ "Enterprise Information Services": 50000000,
+ "Entre Computer Center": 20500000,
"Equinix": 7300000000,
- "Erie Insurance": 2600000000,
- "Ethan Allen": 845000000,
- "Ethiopian Airlines": 4000000000,
- "Etihad Airways": 2700000000,
- "F&M Bank": 43000000,
- "FCPS": 400000000,
- "FHI 360": 690500000,
- "Fairfax Station Railroad Museum": 18100000,
- "Faithful & Gould": 241100000,
- "Families for Russian and Ukrainian Adoption": 60600000,
- "Fauquier County": 10900000,
- "Federal Realty Investment Trust": 1000000000,
- "Federated Wireless": 42500000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
+ "Evolv Design": 16400000,
+ "Evoque Data Center \u2013 Dallas Allen": 21000000,
+ "Executive Technology": 17200000,
+ "Exoft": 53800000,
+ "Exposure Assessment Inc.": 10900000,
+ "FFontaine": 30500000,
+ "FINE THINGS INTERIOR DESIGNS": 27400000,
+ "Fab Gear": 30500000,
"Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "Forrester": 525100000,
+ "Flex Metrics": 21100000,
+ "Forescout": 250000000,
"Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Framebridge": 14700000,
- "Franklin Municipal Airport": 15600000,
- "Fraternal Order of Police": 33900000,
- "Frazier Quarry": 44100000,
- "Fuddruckers Restaurants LLC.": 230000000,
- "Fulton Financial Corporation": 1000000000,
- "Future Publishing": 3300000000,
- "G4S Global": 9400000000,
- "GFL Environmental": 6400000000,
- "GMAC": 25000000,
- "GMC": 1000000000,
- "GW Medical Faculty Associates": 20200000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "Global Health Council": 14000000,
- "Globalvia": 600000000,
- "Globe Life Insurance": 5200000000,
- "Golder Associates Inc.": 1000000000,
- "GomSpace": 24700000,
- "Gordon Biersch - DTW": 89300000,
+ "FoxGuard Solutions": 10000000,
+ "FranConnect": 62000000,
+ "FusionExperience": 10000000,
+ "Futron Inc.": 23200000,
+ "GA-CCRi": 14000000,
+ "GDIT": 7900000000,
+ "Galois": 10000000,
+ "GeoDecisions": 35000000,
+ "George Kuffel Consulting": 10500000,
+ "Gigasheet": 2000000,
+ "Global Com VA": 12400000,
+ "Global Geographic": 16900000,
+ "Global InfoTek": 27300000,
+ "Globaltap": 15600000,
"GovCIO": 15000000,
- "Gracies Dinnertime Theatre": 10400000,
- "Graham Media Group": 600000000,
- "Great Harvest": 21200000,
- "Greystar Real Estate Partners": 550000000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guilford": 24500000,
- "Guitar Center": 2300000000,
- "Gun Owners": 10000000,
- "HCA Healthcare": 60200000000,
"HCL Tech": 12000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hanes": 6200000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Haworth": 2300000000,
- "Haynes and Boone": 15800000,
- "Headlam": 827100000,
- "Hensel Phelps": 5700000000,
- "Herbalife": 5200000000,
- "HistoryNet": 10000000,
- "Hoar Construction": 12700000,
- "Hobby Lobby": 5300000000,
- "Hoffman Construction": 1400000000,
- "HomeLight": 300000000,
- "Hotel 24 South": 27100000,
- "Huawei": 100000000000,
- "Hudson": 2000000000,
- "Hyundai Motor America": 100700000000,
- "IARPA": 15900000,
- "IBA Worldwide": 383200000,
- "IBFD": 18400000,
- "IDEMIA": 1100000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "ISOC": 39700000,
- "Information Systems Security Association": 13700000,
- "International Centre for Missing & Exploited Children": 10000000,
+ "HESCO Blastbloc Limited": 35300000,
+ "Hanover Hosting": 26900000,
+ "Hanu Soft": 25000000,
+ "HarmonyTech": 17100000,
+ "Hastings Design": 12800000,
+ "Helix Computer Systems": 36500000,
+ "Helptech Group": 12200000,
+ "Hexaware": 971000000,
+ "Hitachi Vantara Federal": 54300000,
+ "I5 creative": 11000000,
+ "IBSS": 20000000,
+ "ICON LLC.": 25100000,
+ "ICS Nett": 13500000,
+ "ID Technologies": 100000000,
+ "IDISCOVER Global": 10400000,
+ "IECA": 15700000,
+ "IOMAXIS": 15400000,
+ "IT Decisions": 23500000,
+ "ITC Federal": 10000000,
+ "Inclusion Cloud - Hire Top 1 Software Engineers in 72h": 25000000,
+ "Inetprime": 20000000,
+ "Infojini": 13000000,
+ "Information Management Group": 23000000,
+ "InnoVest Group": 15400000,
+ "Innotech Consultants": 18400000,
+ "Insight Systems": 23300000,
+ "Intact Technology": 46100000,
+ "Intaver": 139000,
+ "Integrio Technologies": 20000000,
+ "Inteligic": 20100000,
+ "InterCom Network": 11600000,
+ "InterVision": 19000000,
+ "International Display Systems": 32200000,
+ "Interoperability Clearinghouse": 17200000,
+ "Interrex": 38800000,
"Intuit": 13300000000,
- "Inventors": 10000000,
- "Iron Mountain Incorporated": 5000000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "Joe's Crab Shack": 345000000,
- "John Hancock Financial": 9500000000,
- "Johnny Rockets": 552000000,
- "Johns-Manville Corporation": 3000000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "KBR": 7700000000,
- "KONE": 10900000000,
- "KSB": 2600000000,
- "Kaiser Permanente": 93100000000,
- "Kaplan": 1500000000,
- "Kapsch": 830500000,
- "Keefe Bruyette & Woods": 425000000,
+ "JNPCS": 10100000,
+ "JWB INC.": 22500000,
+ "Jaspin Interactive": 13000000,
+ "Jenzabar Inc.": 72000000,
+ "JumpSoft": 46000000,
"Kellton": 111300000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kintetsu World Express": 204000000,
- "Kirby Inland Marine": 2800000000,
+ "Kenetx Systems": 26300000,
+ "Keta Technologies": 12800000,
+ "KeyBridge Technologies": 14100000,
"Knowland": 20000000,
- "Koppers": 2000000000,
- "Kratos Defense & Security Solutions Inc.": 898300000,
- "Kroll": 3000000000,
- "Kruger": 1400000000,
- "Kymeta": 40000000,
- "L.G. Balfour Company": 290000000,
- "LBC Express": 103200000,
- "LCPS": 11700000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "La Madeleine": 35200000,
- "Landmark Worldwide": 29100000,
- "Lazy Dog Restaurants": 210000000,
+ "Kodeco": 10000000,
+ "LS Technologies": 37500000,
+ "Lake Shore Software": 13600000,
+ "Leadership By Numbers": 18000000,
"LeaseWeb Netherlands B.V.": 100000000,
- "Lee's Famous Recipe": 10100000,
- "Leidos Holdings Inc.": 13700000000,
- "Leoni Special Cables": 5400000000,
+ "Leuntje A Lowry": 11900000,
+ "Levanture": 18300000,
"Level 3 Communications": 17500000000,
- "Lexmark": 3600000000,
- "Life Is Good Company": 150000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Liggett Vector Brands": 200000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lincoln Financial Distributors Inc.": 18900000000,
- "Lineage Logistics": 2100000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lockton European Brokers Limited": 2700000000,
- "Loews Hotels": 950000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "Los Angeles Athletic Club": 13500000,
- "Louis Vuitton": 14000000000,
- "Lumos Networks": 131000000,
- "M.C. Dean": 1000000000,
- "MANN HUMMEL": 4700000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Madison Reed": 100000000,
- "Marcus & Millichap": 1500000000,
- "Markel Corporation": 12300000000,
- "Marlin Firearms Company": 42800000,
- "Marstel-Day": 22300000,
+ "LevelEdge Software": 18000000,
+ "Liquid Mercury Solutions": 35500000,
+ "Logistics Systems": 24900000,
+ "MERP Systems": 31800000,
+ "MSR Cosmos": 120000000,
+ "Magnus Management Group": 12000000,
+ "MartianCraft": 5100000,
+ "Mastech Digital": 211700000,
+ "MathCraft": 42700000,
+ "Matrix Consulting": 10700000,
"McAfee": 2200000000,
- "McLane Company": 50000000000,
"Medallia": 477200000,
- "Medical Society of Virginia": 16200000,
- "Medline Industries": 20200000000,
- "Mellow Mushroom": 69000000,
- "Merck Sharp & Dohme": 59000000000,
- "Meridian Knowledge Solutions": 14300000,
- "Merrithew": 51000000,
- "Metropolitan Partnership": 24200000,
- "Micron Technology": 30800000000,
- "Mimi's Cafe": 23000000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Money Management": 30000000,
- "Montgomery County MD": 24300000,
- "Motiva Enterprises": 20800000000,
- "Murphy USA": 22800000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NGA": 5000000000,
- "NJ TRANSIT": 818400000,
+ "Mednetpartners": 38600000,
+ "Megabyte Computers": 35000000,
+ "Metronome LLC.": 19600000,
+ "Mr. Tech Support": 11900000,
+ "Multivision Inc.": 21500000,
+ "Mystek Systems": 24400000,
+ "NDTI": 28300000,
+ "NET'N COM": 11900000,
+ "NETE": 70000000,
"NJVC": 45000000,
- "NOAA Weather Radio": 36400000,
- "NSBA": 11300000,
- "Nady Systems Inc.": 12000000,
- "Nammo": 13700000,
- "National Association of Biology Teachers": 20500000,
- "National Automobile Dealers Association": 15700000,
- "National Commission for the Certification of Crane Operators": 12700000,
- "National Steel and Shipbuilding Company": 480000000,
- "National Taxpayers Union Foundation": 10000000,
- "Neiman Marcus": 2600000000,
+ "NT Concepts": 98000000,
+ "Nationwide IT": 17900000,
+ "Nebula LLC.": 26300000,
+ "Net Ventures": 13900000,
+ "Net2Net Solutions": 10500000,
"NetApp": 6500000000,
- "NetJets": 816000000,
- "New Kent High School": 18800000,
- "NiSource": 5400000000,
- "Nikola Corporation": 44000000,
+ "NetOwl": 6000000,
+ "NetServices Inc.": 11300000,
+ "NetTec NSI": 10000000,
+ "New Era Technology": 22200000,
+ "Next Generation Office Svcs": 22700000,
+ "NextgenID": 15400000,
+ "Neyer Software": 17900000,
+ "Nickels Inc.": 121800000,
+ "Nomad Mobile Guides": 27000000,
+ "Norasack Design": 27400000,
"NowSecure": 15300000,
- "Ocado": 3000000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OneMain Financial": 4100000000,
- "OneWeb": 50000000,
- "Ooma": 179000000,
- "Orascom Construction": 3400000000,
- "Orkin": 1000000000,
- "Outback Steakhouse": 2000000000,
- "Outsmart Magazine": 11900000,
- "Oxxford Clothes": 25000000,
- "PTV AG": 132700000,
- "Pace Analytical": 450000000,
- "Pacific Life": 13900000000,
- "Packaging Corporation of America": 8400000000,
- "Pactiv Evergreen": 45000000,
+ "Nu-Pulse": 29100000,
+ "OE-Mail Recovery": 10000000,
+ "OSI Federal": 50000000,
+ "OST Inc.": 30000000,
+ "Oblong": 25500000,
+ "Obsidian Solutions Group": 38000000,
+ "OmniSystems": 14000000,
+ "One Network": 60000000,
+ "Open Systems Technologies OST Corporation": 11800000,
+ "Open Technology Group": 19600000,
+ "PRECISION COMMUNICATION AND TECHNOLOGY LLC.": 22200000,
+ "PRS Technologies": 21700000,
+ "Pace Systems": 14200000,
"Parallels Holdings": 1000000000,
- "Paralyzed Veterans of America": 26500000,
- "Parents Television Council": 10000000,
- "Paris Baguette": 11200000,
- "Parker Hannifin": 15900000000,
- "Partners Group": 2900000000,
- "Patagonia": 1000000000,
- "Paya Inc.": 276900000,
- "Peet's Coffee": 36700000,
- "People of Praise": 13100000,
- "PharMerica": 2100000000,
- "Phillips Edison": 496900000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
+ "Pathagoras": 19700000,
+ "PhotoMix": 11200000,
+ "Planned Systems International": 150000000,
"Plateau Systems": 328000000,
"Plex Systems": 150000000,
- "Primoris": 4400000000,
- "Prince William County Public Schools": 4200000,
- "Princeton Longevity Center": 21500000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Protective Life": 6700000000,
+ "Powersim Solutions": 34400000,
+ "Powersolv": 11000000,
+ "Praescient Analytics": 11600000,
+ "Praxis Engineering": 13000000,
+ "PrecisionIT": 30800000,
+ "Previstar": 24200000,
+ "Progent": 13200000,
+ "Prominere": 25400000,
+ "Proso": 22800000,
"Publicis Sapient": 2700000000,
- "Publix": 52200000000,
- "Quad Metalworks": 3100000000,
- "R. J. Corman": 420000000,
- "REISS": 298800000,
- "RSM US": 3300000000,
+ "QBit Systems": 25000000,
+ "Quadtec": 10100000,
+ "RDS Control": 31300000,
"Rackspace": 3100000000,
- "Realtor": 118000000,
- "Redwood Materials": 35000000,
- "Revature": 64300000,
- "Rexair": 35000000,
- "Richmond Boys Choir": 15000000,
- "Riverside Health System": 19000000,
- "Road Runners Club of America": 10000000,
- "Robeks": 396000000,
- "Rocket Lab USA Inc.": 186700000,
- "Roehl Transport": 421300000,
- "Rolls-Royce": 15300000000,
- "Rooms To Go": 2500000000,
- "Rosetta Stone": 182700000,
- "Ryan Office": 626000000,
- "S&P Global": 8200000000,
- "SABRA DIPPING CO. LLC.": 450000000,
+ "Real Soft Technologies LLC.": 25000000,
+ "Rebecca Dodelin Design": 26700000,
+ "Reel Media Printing Svcs Llc.": 10700000,
+ "Relis LLC.": 13700000,
+ "Resource Management Concepts": 12600000,
+ "Resource Stack": 12100000,
+ "Rfxcel": 17000000,
+ "RiskLens": 12500000,
+ "S2 Analytical Solutions": 15600000,
"SAP": 33500000000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMART Technologies": 500000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
+ "SAP NS2": 10000000,
+ "SHDOW": 26500000,
+ "SHR Consulting Group": 14900000,
+ "SMS Data Products Group Inc.": 20000000,
+ "SMX": 227600000,
+ "SOFTWARE QUALITY CENTER": 10000000,
+ "SYSRAD": 21500000,
+ "SaaS Maker": 10000000,
"Sage Group": 2100000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Sam Ash": 400000000,
- "Sangamo": 112100000,
+ "SaiTech Inc.": 11700000,
+ "Saltwater Creative. All": 21000000,
+ "Santeon": 23900000,
+ "Saturn Flyer": 35200000,
"Savi Technology": 20000000,
- "Scality": 69000000,
- "Seasons 52": 300000000,
- "See's Candies": 25000000,
- "Select Medical": 6300000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Showplace Icon": 38900000,
- "Signarama": 55000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
- "Society for Risk Analysis": 10000000,
- "Sodexo": 22300000000,
+ "Scott Jemielity": 34000000,
+ "SecureAge": 21400000,
+ "Semantic AI": 8000000,
+ "ServiceRocket": 18100000,
+ "Shadow-Soft": 26100000,
+ "Shaw Systems": 20000000,
+ "Shawn Stern Computer Services": 13600000,
+ "SilverLining Design": 12600000,
+ "Siri InfoSolutions": 17500000,
+ "Site Hook": 18100000,
+ "SkyePoint": 42500000,
+ "Snowflake": 1900000000,
"Softcat": 1600000000,
- "Somerset Trust Company": 24900000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Special Libraries Association": 15800000,
+ "Softeon": 75000000,
+ "Software Apps": 32500000,
+ "Software Catalysts": 30400000,
+ "Software Verify": 15000000,
"Spire Global": 72900000,
"Splunk": 3300000000,
- "Stantec": 3100000000,
- "Starmont": 10200000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Stevens Reed Curcio & Potholm": 38800000,
- "Strategic Education Inc.": 1100000000,
- "Stratolaunch LLC.": 28700000,
- "Stride Inc.": 1400000000,
- "Suit Supply France SARL": 350000000,
- "Sun & Ski Sports": 15000000,
- "Superb Internet": 13800000,
- "Swift": 981700000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
+ "Spyder Technologies": 10100000,
+ "SpydrSafe": 10000000,
+ "Stractical Cloud": 25000000,
+ "Stratera": 25000000,
+ "Studio A Design": 16800000,
+ "Summit Web Design": 34900000,
+ "Sunny Banana": 11500000,
+ "Suvola": 51000000,
+ "SynGlyphX": 16000000,
"Synnex": 57900000,
- "Syska Hennessy Group": 60900000,
- "TEOCO": 186200000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taylor Farms": 2800000000,
- "Technology Student Association TSA": 10000000,
- "Teradyne": 3300000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "Thales Group": 18000000000,
- "The Columbia Group": 10000000,
- "The Counter": 85000000,
- "The Country Club of Virginia": 42000000,
- "The Hook": 19000000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Tiffany's": 4400000000,
- "Topgolf International Inc.": 1100000000,
- "Topps Europe Ltd.": 567000000,
- "Torrid": 1300000000,
- "Tostan": 32700000,
- "Tourneau": 32800000,
- "Transurban": 9400000000,
- "Tredegar Corporation": 42600000,
- "Trelleborg": 3000000000,
- "Trump Hotels": 75000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UNOS": 63400000,
- "USCIS": 15700000,
- "Ukrop's Food Group": 1500000000,
- "Ultra Electronics": 1200000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "United States Mint": 3800000000,
- "Universal Leaf South Africa": 2500000000,
- "Usg Interiors LLC.": 3500000000,
- "Utilimaster Corporation": 850000000,
- "VCA Inc.": 1800000000,
- "VITAC": 63300000,
+ "Sysorex": 13000000,
+ "Systems Support Group Inc.": 18000000,
+ "T and T Consulting Services Inc.": 13700000,
+ "TASC Management": 17600000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TMR Inc.": 16300000,
+ "TWD & Associates Inc.": 21500000,
+ "TeKnofirm": 17100000,
+ "Tech Wizards": 39700000,
+ "Technical Data Freeway Inc.": 14600000,
+ "Technique Solutions": 12000000,
+ "Technology Assurance Group": 12700000,
+ "Technology Catalyst": 16300000,
+ "TekMasters": 35700000,
+ "Tekk-nology": 23000000,
+ "Tellenger": 12200000,
+ "Telos company": 236800000,
+ "Terralogic": 75000000,
+ "The Green Technology Group": 21200000,
+ "The Org company": 2000000,
+ "The Solution Design Group": 22400000,
+ "Torknet": 26900000,
+ "Travtech": 17500000,
+ "Triptease": 12900000,
+ "Tritus": 12200000,
+ "True Creative Services": 28300000,
+ "Tuck Technologies": 10000000,
+ "Tyrula": 13100000,
+ "UNANIMOUS AI": 3000000,
+ "Uncharted Software": 11000000,
+ "Unissant": 32000000,
+ "Universolutions": 10500000,
+ "VECTARE": 35900000,
"VMware": 13200000000,
- "VT Group": 185000000,
"Varonis": 457600000,
- "Vera Bradley": 513100000,
+ "Vbrick": 23300000,
+ "Vectec": 10300000,
+ "Verato": 12800000,
"Verint Systems": 899800000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Virginia State Bar": 10000000,
- "Virginia Transformer": 200000000,
- "Vista Outdoor": 3200000000,
- "Vocelli Pizza": 14000000,
- "Volcom": 380000000,
- "Volkswagen": 51300000000,
- "W.C. and A.N. Miller": 11800000,
+ "Verite Group": 21700000,
+ "Vircosoft": 33400000,
+ "Virtual Atlantic": 14800000,
+ "Visualization Software": 12700000,
"WIDEPOINT CORPORATION": 13000000,
- "WSP": 8900000000,
- "Waffle House": 1300000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Westat Research inc.": 597000000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Wieland Group": 6100000000,
- "Wing": 13400000,
- "Wje": 150000000,
+ "Warren Systems": 13800000,
+ "Watershed Security": 19500000,
+ "Websites For Anything": 24200000,
+ "WellZone": 11500000,
+ "Wesuki": 25000000,
+ "WhosHere": 481000,
+ "Wings Digitizing": 39700000,
+ "Wistia": 40000000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "Worldwide Responsible Accredited Production": 13400000,
- "XPO Logistics": 7700000000,
- "Xometry Inc.": 350000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yahoo": 7400000000,
+ "WorkMETHODS": 25000000,
+ "XTIVIA": 50700000,
+ "Xait Ltd.": 159000,
"Yext": 399900000,
- "Yogaville": 26200000,
- "ZEISS": 8800000000,
- "Zama Group": 14500000,
- "Zumiez": 1100000000,
- "Zynga": 2900000000,
- "u-blox Holding AG": 1800000000
+ "Z & A Inc.": 10000000,
+ "Zenith Technologies": 125000000,
+ "Zentere": 38800000,
+ "Zillion Technologies": 41000000,
+ "eDirectHost": 11200000,
+ "eProperty Plus": 10000000,
+ "eWorthy": 28600000,
+ "iCUBE Systems": 12400000,
+ "iContracts": 12000000,
+ "iGov": 130000000,
+ "iHosting Web": 51100000,
+ "iORMYX": 13400000,
+ "serve-you LLC.": 32600000,
+ "xSynthesis": 10000000,
+ "xTuple": 6400000
},
"Washington": {
- "24 Hour Fitness": 1500000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
+ "2interact": 19000000,
+ "9Logic": 10000000,
+ "ABC Quick Stitch Upholstery": 13000000,
"ADP Roseland": 16900000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "AMD": 21600000000,
- "AQuantive": 112700000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
+ "ADTAQ": 42100000,
+ "AIM Consulting": 64000000,
+ "AMI AssetTrack": 10000000,
+ "AMS Technology": 16300000,
+ "Ability Software Services": 10300000,
"Absolute of Sa Ambulance Service": 118100000,
- "Acadia Healthcare": 2500000000,
- "Accel": 50000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Aditi Technologies": 72000000,
+ "Accelalpha": 23000000,
+ "Accrete Solutions": 25000000,
"Affine": 17000000,
- "Aflac Incorporated": 19300000000,
- "Agilent": 6700000000,
- "Air Canada": 12200000000,
- "Al-Anon": 10000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
+ "Agile Systems": 18700000,
+ "Akal Tech": 30200000,
+ "Alliance Enterprises": 11600000,
"Altair Engineering": 552600000,
- "Alzheimer's Association": 81500000,
+ "Altriva": 46500000,
"Amazon": 2808000000,
- "American Cruise Lines": 68400000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Management Association": 21700000,
- "American Seafoods": 600000000,
- "American Veterans for Equal Rights. We Are You!": 17000000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Ankama": 42000000,
+ "Ames Bros": 16800000,
+ "Ammyy LLC.": 10000000,
+ "An Elegant Touch": 13000000,
+ "AnswerDash": 5000000,
+ "Apexon": 75000000,
"Appen Limited": 45000000,
- "Ardagh Group S.A.": 9000000000,
- "Army News Service": 16400000000,
+ "Apptio": 342500000,
+ "Ashbeck Design": 11100000,
+ "Ask Juan Networks": 45500000,
"Asure Software": 76600000,
- "At Home store": 1700000000,
- "Atlantic Power": 271200000,
- "Australian Laboratory Services": 6600000000,
- "AvalonBay Communities": 2000000000,
+ "Avail Company": 4200000,
"Avanade": 3900000,
"AvePoint": 215800000,
- "Avista Utilities": 1500000000,
- "Avvo": 29900000,
- "Axon": 1100000000,
- "BDO USA": 2000000000,
- "BELFOR": 2000000000,
- "Baird investment bank": 3400000000,
- "Baja Fresh": 500000000,
- "Banfield": 774400000,
- "Bardahl": 27800000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Belcan": 1000000000,
- "Bellevue School District": 250000000,
- "Beltone": 61600000,
- "Ben & Jerry": 863100000,
- "Beneficial State Bank": 42900000,
- "Bentley Motors": 3200000000,
- "Bessemer Trust": 682100000,
- "Bio-Rad": 2800000000,
- "Black Bear Diner": 18700000,
- "Blue Origin LLC.": 1000000000,
- "BlueLinx": 4600000000,
- "Bonchon": 60000000,
+ "BCI Creative": 10800000,
+ "BEMO provides": 13000000,
+ "Barcoding": 18500000,
+ "BeamChek": 11400000,
+ "Belltech Systems": 37500000,
+ "Benchmate": 19600000,
+ "BigHand": 45000000,
+ "Binary Anvil": 18000000,
+ "Biodentity": 19900000,
+ "Bizooku": 23600000,
+ "Blackbourn Design": 18900000,
+ "Blast Analytics": 12400000,
+ "Blueprint Technologies": 78500000,
"Booz Allen": 8800000000,
- "Boston Consulting Group": 8600000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brightcove": 214400000,
+ "Boundless Energy": 37700000,
+ "Boxes and Arrows": 41900000,
+ "Bpci": 13200000,
+ "Brad Dundas Creative": 13200000,
+ "Brandfolder": 15600000,
+ "Bridge Data Solutions": 27000000,
"Brillio": 400000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
"Bsquare": 39900000,
- "Buckle": 1300000000,
- "Burberry": 3600000000,
+ "Business Data Resources Ltd.": 10900000,
+ "C3M Productions": 30600000,
"CDW": 23800000000,
- "CELINE": 600000000,
- "CHEF'STORE": 1100000000,
- "Cafe Rio": 215000000,
- "Canesta": 10000000,
- "Car Toys": 12800000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Carlisle Companies": 6600000000,
- "Cascade Investment Group": 13200000,
- "Cellular Sales": 1700000000,
- "Center For Children & Youth Justice": 13300000,
- "Center for Autism": 500000000,
- "Charles River Laboratories": 4000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Chubb Limited": 43500000000,
- "Circle K": 14700000000,
- "City Year": 162300000,
- "Clarion Partners": 150000000,
- "Clark Construction": 5000000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
+ "CMIT Solutions": 60000000,
+ "COLVIN & ASSOCIATES": 25500000,
+ "COMPUTER BUSINESS SOLUTIONS": 27600000,
+ "CPF Marketing Communications": 14100000,
+ "CREATIVE CREEK": 22900000,
+ "Cakework": 20800000,
+ "Cale Burr": 25300000,
+ "Calligo": 25000000,
+ "Cascade Vet Clinic": 16100000,
+ "Centella Consulting": 11900000,
+ "Chad WMH Soto Ltd.": 14200000,
+ "Chcs Internet Development": 11100000,
+ "Christine Marie Larsen Illustrator": 11800000,
+ "Church Web Works": 11600000,
+ "ClevX\u00ae": 22600000,
+ "CloudMoyo": 33000000,
"Cloudera": 904800000,
- "College Hunks Hauling Junk": 100000000,
- "Columbian": 70000000,
- "Comfort Dental": 17800000,
- "Concrete Herald": 27300000,
- "Condor": 10000000,
- "Conduent Business Services LLC.": 3900000000,
- "Consolidated": 1200000000,
- "Convenience": 12800000,
+ "CompuNet Inc.": 146600000,
+ "Computer Systems & Services": 25200000,
+ "Compwire": 27000000,
+ "Concept Software": 10200000,
+ "Confiz": 90000000,
"Conversica": 35000000,
- "Cooley": 2000000000,
- "Core & Main Inc.": 6100000000,
- "Corporation Sealy": 1300000000,
+ "Corbel Solutions": 22100000,
+ "Corbenic Design": 11700000,
+ "Core Scientific": 276400000,
+ "Corinna Sinclair": 50700000,
+ "Cortex Medical": 16500000,
+ "Cortexa Automation": 30400000,
"Course5 Intelligence": 150000000,
- "Cozen O'Connor LLP.": 517300000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Cyient Inc.": 575100000,
- "DLA": 3600000000,
- "DRW": 485000000,
- "Davey Tree": 1500000000,
- "Davis Wright Tremaine": 445300000,
- "Dawn Foods": 1100000000,
- "Del Monte Fresh Produce Company": 4400000000,
- "Dematic": 3200000000,
- "Department of Energy": 190000000,
- "Detroit Water and Sewerage Department": 10000000,
- "Deutsche Telekom": 123400000000,
+ "Credera": 28300000,
+ "Crimson Software": 27300000,
+ "CrossControl": 10000000,
+ "CyberSecOp": 10000000,
+ "CyberStreams": 38200000,
+ "Cybertech Systems": 18100000,
+ "Cyex Design": 15400000,
+ "D Zines": 19100000,
+ "DPIX Digital Studios": 18300000,
+ "Dapper Associates": 11500000,
+ "Data Recovery Labs": 12900000,
+ "DataSunrise": 13100000,
+ "Dataworks Consulting": 21100000,
+ "DaySmart": 19900000,
+ "Dealer Information Systems": 30000000,
+ "Decker Architects": 12700000,
+ "Delta Cad": 26800000,
+ "DepotPoint": 27100000,
+ "DesignStudio Network": 27300000,
+ "Designs by Intrigue": 21000000,
+ "Diane Fisher": 62600000,
+ "Digital Evidence": 18100000,
+ "Digital Provisioners": 51700000,
"Digital Realty": 4700000000,
- "Dolce & Gabbana": 600000000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Dow Jones": 1600000000,
- "E Trade": 2900000000,
- "EEOC": 10000000,
+ "Digital WarRoom": 35000000,
+ "Digitalis Education": 42000000,
+ "Dimensional Imaging Inc.": 12700000,
+ "Down To Earth Landscaping Inc.": 36100000,
+ "Dyaus Software": 18700000,
+ "Dynamic Computing": 10700000,
+ "EHDP": 21100000,
+ "EI-Tech Networks": 13600000,
"EPAM": 4500000000,
- "EVgo Services LLC.": 34400000,
- "EagleView": 182000000,
- "Eastman": 10600000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Electric Boat Co.": 10000000000,
- "Electroimpact": 96300000,
- "Element Materials Technology Group Limited": 975000000,
- "Enel North America": 44500000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
+ "ESENTIRE": 130000000,
+ "EarthCam": 15000000,
+ "Eckler Software": 15900000,
+ "EdCast": 30000000,
+ "Edge Networks": 15000000,
+ "Edsbits": 26300000,
+ "Ekata": 50000000,
+ "Elektrobit": 279000000,
+ "Elevat": 10200000,
+ "Emerald City Solutions": 11600000,
+ "Empty Nest Graphics": 18700000,
+ "Enso design": 18900000,
+ "Ensure Technologies": 18800000,
+ "Entangled Web": 18400000,
+ "Entellic": 40500000,
+ "Envecon": 10400000,
"Epik": 12000000,
"Equinix": 7300000000,
- "Ethan Allen": 845000000,
- "Everspin": 62100000,
- "Evolution Fresh": 21700000,
- "Exact Data": 20000000,
+ "Erlang Solutions": 11700000,
+ "Evergreen Technologies": 14100000,
"Exadel": 194000000,
+ "ExterNetworks": 33000000,
"ExtraHop": 140000000,
- "Fairwood Press": 17200000,
- "Farmer Brothers": 469200000,
- "Ferrellgas": 2100000000,
+ "Eyelash extension by myra": 24000000,
+ "FanDraft": 4600000,
+ "Faronics": 10000000,
+ "Feathr": 11000000,
+ "FileOnQ": 26300000,
+ "First Mile Services": 13500000,
"Fiserv": 17700000000,
- "Flexport": 3300000000,
- "FlixBus": 450000000,
- "Fluor Canada": 13700000000,
- "Fogo de Ch\u00e3o Brazilian Steakhouse": 362400000,
- "FormFactor": 747900000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Fractal Design": 39500000,
- "Frito-Lay Inc.": 19600000000,
- "Funko": 1300000000,
- "GBC International Bank": 32900000,
- "GMAC Ally Financial": 8400000000,
- "GMC": 1000000000,
- "Galileo Camps": 21000000,
- "GameWorks": 10000000,
- "GardaWorld": 3800000000,
- "General Dynamics Mission Systems": 4400000,
- "Gilead": 27500000000,
- "Global Commercial Credit": 17600000,
- "Global HELP": 11400000,
- "Golder Associates Inc.": 1000000000,
+ "Flexhex": 12300000,
+ "Fubeus": 18600000,
+ "G4 Analytics": 13900000,
+ "GTconsult": 10000000,
+ "General Networks": 15500000,
+ "Gerald L Mcclinton Real Estate": 13200000,
+ "Gig Harbor Design": 51100000,
+ "GigaTech Consulting": 11900000,
+ "GoldSim": 40400000,
+ "Gols Inc.": 21000000,
"Grab Holdings Inc.": 687000000,
- "Graebel": 1500000000,
- "Grand Central Baking Company": 20700000,
- "Grant Transit Authority": 36600000,
- "GreatSchools": 11000000,
- "Greek Gods Yogurt": 30000000,
- "Greenpeace International": 400000000,
- "Grenzebach": 52000000,
- "Greystar Real Estate Partners": 550000000,
- "Grindline Skateparks": 27600000,
- "Grow": 14000000,
- "Guggenheim Partners": 300000000,
- "Guitar Center": 2300000000,
- "Guy Carpenter": 1700000000,
+ "Grant Solutions": 16200000,
+ "Graphisoft": 93000000,
+ "Graphix Goddess": 34500000,
+ "GrayMatter Software Corporation": 14100000,
+ "Greenspacesoftware": 21700000,
+ "Groove Labs Inc.": 14200000,
+ "Groundswell Group Vancouver": 45600000,
+ "Gsquared Design Group": 25800000,
+ "GuestVision": 14900000,
+ "H7 Solutions": 17600000,
+ "HA technologies": 27700000,
"HCL Tech": 12000000000,
- "HOYA": 5000000000,
- "HUB International Ltd.": 3200000000,
- "HUGO BOSS": 3600000000,
- "Hair Club": 400000000,
- "Hall Render": 10700000,
- "Hamburg S\u00fcd": 5900000000,
- "Hanes": 6200000000,
- "Hanmi Bank": 258600000,
- "Hapag-Lloyd": 33100000000,
- "Harbor Freight": 5000000000,
- "Have A Heart": 12300000,
- "Hazelden Betty Ford": 186300000,
- "Hemp Industries Association HIA": 16100000,
- "Henry Pratt": 27700000,
- "Hensel Phelps": 5700000000,
- "Highline Times": 31600000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Holland America Line": 300000000,
- "HomeLight": 300000000,
- "Hulu": 4400000000,
- "Hunter Douglas Group": 4600000000,
- "Hyperlite": 43400000,
- "ICE International Currency Exchange": 25000000,
- "IDEX Corporate": 3100000000,
- "IGA": 250000000,
- "ILLFONIC Inc.": 23900000,
- "INB": 42000000,
- "Identity Digital": 58000000,
- "Inglewood Golf Club": 25900000,
- "Ingredion Incorporated": 7200000000,
- "Intelius": 175000000,
- "Interfor": 354900000,
- "Intl Fcstone": 61700000000,
- "Inventors": 10000000,
- "Ipsos": 2400000000,
- "Iron Mountain Incorporated": 5000000000,
- "Itron": 10000000,
- "Ivi Inc.": 110000000,
- "Jabil": 33500000000,
- "Jamba": 70000000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John Hancock Financial": 9500000000,
- "John L. Scott": 800000000,
- "Johnson Braund": 11000000,
- "Journeys company": 8600000,
- "Judy's Book": 14800000,
- "Juwai": 20000000,
- "KONE": 10900000000,
- "Kaas Tailored": 37800000,
- "Kaiser Permanente": 93100000000,
- "Keller Rohrback": 39800000,
- "Kelly Services": 5000000000,
- "Kendall Hunt": 37400000,
- "Kill Rock Stars": 18800000,
- "Kimco Realty": 468500000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kinross": 4000000000,
- "Kintetsu World Express": 204000000,
- "Kirby Company": 500000000,
- "Kirby Inland Marine": 2800000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Kona Ice": 25700000,
- "Kongsberg Gruppen": 3200000000,
- "Kymeta": 40000000,
- "L.G. Balfour Company": 290000000,
- "LBC Express": 103200000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "LOUD Audio": 72000000,
- "Lake Washington School District": 221000000,
+ "Halcyon Monitoring Solutions": 50800000,
+ "Harbor Design Services": 21400000,
+ "High 5 Software": 45600000,
+ "Horizon DataSys": 10900000,
+ "Huarachitos Cocina Mexicana": 16000000,
+ "Hyperproof": 4500000,
+ "IOpipe": 17000000,
+ "ITonDemand": 39500000,
+ "ITwerx": 26300000,
+ "Icon Imagery": 15300000,
+ "Imagenet LLC.": 38000000,
+ "Impac Services": 18200000,
+ "Impresys": 13500000,
+ "Incorpmedia Digital Marketing": 17200000,
+ "Inspirage": 70000000,
+ "Integrated Contractor Services Inc. - Operations": 13900000,
+ "Intelliquip": 10700000,
+ "InterVision": 19000000,
+ "International Technology Ventures Inc.": 15400000,
+ "InterraIT": 12000000,
+ "Itchy Dog Productions": 31500000,
+ "JWB Consulting": 10200000,
+ "Jansen Design": 10500000,
+ "Jetstream Software": 21300000,
+ "KEVIN COX DESIGN": 19000000,
+ "Kalpa Creatives": 47500000,
+ "Kate's Web Design": 33000000,
+ "Keating Consulting": 25700000,
+ "Kedlin": 10000000,
+ "Kham Studio": 17800000,
+ "Kidware Software": 12300000,
+ "Koldo Barroso": 38900000,
+ "Kripya": 10000000,
+ "Lab59": 32100000,
+ "Lagash": 29900000,
+ "Lagotek": 16700000,
"LatentView Analytics Corporation": 69200000,
- "LeTip International": 12700000,
- "Leggett & Platt": 5300000000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
+ "Laurel Black": 17500000,
+ "Leavenworth Mountain Sports": 26500000,
+ "Legal Marketing Advantage": 10000000,
+ "Lending Robot": 3000000,
+ "Leslie Newman Design": 15300000,
"Level 3 Communications": 17500000000,
- "Leviton Andina S.A.S.": 2000000000,
- "Lexmark": 3600000000,
- "Life Care Centers of America": 3000000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Lions Gate": 3600000000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Livingston International": 40000000,
- "Lockton European Brokers Limited": 2700000000,
+ "Lexcycle": 2400000,
+ "Lighthouse Consulting": 26700000,
+ "Link Tech Computer Services": 26600000,
+ "Linric": 29000000,
+ "Locus Solutions": 10000000,
+ "Log in to Business": 11400000,
"Logitech": 5500000000,
- "Long John Silver's": 404000000,
- "Lotus Communications": 16000000,
- "Louis Vuitton": 14000000000,
- "Lovesac": 389800000,
- "Lufthansa Cargo": 3400000000,
- "Luminex": 437700000,
- "Lupus Foundation of America": 13700000,
- "Lynden": 960000000,
- "METER Group": 35000000,
- "MFG Inc.": 30000000,
- "MOBILE MINI": 593000000,
- "MSC Industrial Supply": 3800000000,
- "Madison Reed": 100000000,
- "Magnite": 145200000,
- "Malaria No More": 10000000,
- "Marel hf.": 1600000000,
- "Matson": 4300000000,
- "McLane Company": 50000000000,
- "Meade": 16100000,
- "Measurement Incorporated": 63000000,
- "MediaTek": 17900000000,
- "Medline Industries": 20200000000,
- "Merrithew": 51000000,
- "Metal Supermarkets": 26800000,
- "Metzler": 700000000,
- "Michael Jordan\u2019s Steak House": 18100000,
- "Micron Technology": 30800000000,
+ "Lollis Broiler And Pub": 49700000,
+ "Lowell Davis": 18300000,
+ "MAQ Software": 120000000,
+ "MY I.T. PROS": 10400000,
+ "Mac N' More": 20300000,
+ "Mage Software": 10300000,
+ "Maplewood Software": 18600000,
+ "Marchex Inc.": 12000000,
+ "Matt Nutsch": 20000000,
+ "Max Technologies": 11600000,
+ "McObject": 16900000,
+ "MetaJure": 10000000,
+ "Michael Scott McGinn": 21200000,
"Microsoft": 184900000000,
- "Midas Consoles": 21800000,
- "Miller Hull": 35000000,
- "Milliman": 1200000000,
- "Mindray": 1200000000,
- "Mineralogical Society of America": 34700000,
+ "Midrange Dynamics": 16900000,
+ "Milsoft": 25400000,
+ "Mobile Integration Workgroup": 10000000,
"ModMed": 250000000,
- "Modelzone": 1684311838,
- "Mohawk Industries": 11800000000,
- "Monolith Productions": 17500000,
- "Morning star": 1900000000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "Mynavyexchange": 7000000,
- "NCSOFT": 2200000000,
- "NIDEC": 15600000000,
- "NOAA Weather Radio": 36400000,
- "NSF": 300000000,
- "Napster": 113000000,
- "Natera": 776000000,
- "National Christian Foundation": 27800000,
- "National Steel and Shipbuilding Company": 480000000,
- "Nautilus machines": 589500000,
+ "Mouseflow": 12000000,
+ "N2uitive": 12200000,
+ "NETCPU Corporation": 12000000,
+ "NFOLKS": 45700000,
+ "NW Technology": 33300000,
"NetApp": 6500000000,
- "NetJets": 816000000,
- "New Flyer": 2400000000,
- "NoaNet": 450000000,
- "North Sails": 27500000,
- "Northrim": 124500000,
- "Northshore School District": 23400000,
- "Northwest Bank": 510300000,
- "Northwest Kidney Centers": 131000000,
+ "NetRaising": 10000000,
+ "Netstar Inc.": 36300000,
+ "Networks Rx": 15900000,
+ "Nice s.r.l. San Jose Office": 10000000,
+ "Nina Noble": 10500000,
+ "NodeSource": 21000000,
+ "Nomad Electronics": 12300000,
+ "Nordlogic": 11000000,
+ "North47": 15400000,
+ "Northwest Home Improvement Company": 35000000,
+ "Northwest Software": 19500000,
"NowSecure": 15300000,
- "NuStar Energy": 3200000000,
+ "Numera": 10000000,
+ "Nuvodia": 15000000,
+ "OSI Digital": 250000000,
+ "Obsidian Solutions Group": 38000000,
+ "OddBurton": 28700000,
"Offer Up": 54600000,
+ "Office Computer Systems Inc.": 37400000,
+ "Omniwave": 17800000,
"OneDrive": 300000000,
- "OneMain Financial": 4100000000,
- "Onni Group": 13700000,
"OpenMarket Inc.": 200000000,
- "Orange Business": 9600000000,
- "Orrick": 975000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Outdoor Research Company": 76800000,
- "PCL Construction": 6300000000,
- "Pace Analytical": 450000000,
- "Pacific Dental Services": 1400000000,
- "Pacific Life": 13900000000,
- "Pacific Maritime Association": 11100000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Pan Pacific DISCOVERY": 260000000,
+ "Orangebelly": 19600000,
+ "PACIFIC SYSTEMS DESIGN TECHNOLOGIES": 21700000,
+ "PC Bennett": 21000000,
+ "PCMRP": 50700000,
+ "PLUSTAT Consulting": 20100000,
+ "Pacific Intermedia": 10000000,
"Parallels Holdings": 1000000000,
- "Paralyzed Veterans of America": 26500000,
- "Parker Hannifin": 15900000000,
- "Patagonia": 1000000000,
- "Pateros": 14700000,
- "Patriot Rail": 120200000,
- "Paul Gauguin Cruises": 15000000,
- "Peacefire": 20300000,
- "Peet's Coffee": 36700000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "Perkins&Will": 670300000,
- "Persistent Systems Inc. Persistent Systems Pte.": 977700000,
- "PharMerica": 2100000000,
- "PillPack": 100000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
+ "Patrick Hildreth Brand & Design": 10900000,
+ "Payscale": 180000000,
+ "People People Formerly DEI Creative": 37900000,
+ "Perez Software": 57200000,
+ "PickAtime": 21900000,
+ "Piraeus Consulting": 13300000,
"PitchBook": 250000000,
- "Pitney Bowes": 3500000000,
- "Planar Systems": 195000000,
- "Planned Parenthood": 1600000000,
- "PlayNetwork": 86000000,
- "Plug Power": 571200000,
- "Porsche France SAS.": 34300000000,
- "Port of Bremerton": 66500000,
- "Port of Grays Harbor": 28300000,
- "Port of Longview": 27300000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "Promethean World": 158800000,
+ "Pixatel": 10000000,
+ "Plain English Technology Services": 10300000,
+ "Planon": 80000000,
+ "PlazHost": 19000000,
+ "Popular Networks": 50300000,
+ "Preferred Business Solutions": 22000000,
+ "Pritchard": 14100000,
+ "Pro Sys": 12700000,
+ "Productive Computer Systems": 14900000,
+ "Provoke Solutions": 35000000,
"Publicis Sapient": 2700000000,
- "Puget Sound Community School": 14700000,
+ "Q Analysts": 40000000,
+ "QCT": 388000,
+ "QorusDocs": 12300000,
+ "Qualtrics": 1400000000,
"Quantum Alliance": 402600000,
- "Quiznos": 50000000,
- "RED Digital Cinema": 55200000,
- "RSM US": 3300000000,
- "Rad Power Bikes": 138000000,
- "Rainforest Cafe": 10000000,
- "Rayonier": 1100000000,
- "RealSelf": 19900000,
- "Realtor": 118000000,
- "Recology": 1200000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Relax The Back": 11600000,
- "Renewable Energy Group": 2900000000,
- "Rexair": 35000000,
+ "Quantum Linux": 26700000,
+ "Quartech": 20400000,
+ "RMB Vivid": 18200000,
+ "Radical Software": 24200000,
+ "Raima": 5600000,
+ "Ramp Group": 23000000,
+ "RealityCharting": 29200000,
+ "Redapt": 92200000,
+ "Renaissance Systems": 24900000,
+ "Rent Manager": 40900000,
+ "Reonomy": 18300000,
+ "Reprise Hosting": 10000000,
+ "Reprise Software": 23300000,
+ "Response Technology": 14600000,
"RichRelevance": 87500000,
- "Robeks": 396000000,
- "Rolls-Royce": 15300000000,
- "Rosetta Stone": 182700000,
- "Royal Garden Hotel": 20000000,
- "Russell Investments": 566500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
+ "RocketShop": 17400000,
+ "SACRED MESSENGERS INC.": 22800000,
"SAP": 33500000000,
- "SARGENT AND GREENLEAF": 37000000,
- "SDS": 10500000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SMART Technologies": 500000000,
- "SRG Partnership": 10000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Salix Pharmaceuticals": 1000000000,
- "Sally Beauty Holdings": 2300000000,
- "Salmon Terminals Inc.": 17800000,
- "Saskatchewan Mining and Minerals": 15000000,
- "Schweitzer Engineering Laboratories": 1000000000,
- "Seagen": 203500000,
- "Seattle Art Museum": 26600000,
- "See's Candies": 25000000,
- "SemaConnect": 29000000,
- "Shakey's": 112000000,
- "Shane Co.": 30800000,
- "Shari's": 240000000,
- "Shiseido": 8200000000,
- "Sid Lee": 180000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Silicon Valley Bank": 6200000000,
- "Simplilearn": 98700000,
- "Simplot": 6000000000,
+ "SMLib": 20000000,
+ "SOMOS Design": 14900000,
+ "SWK Technologies": 38500000,
+ "Sam Is IT": 18300000,
+ "Scope 5.": 16000000,
+ "Seagull Scientific": 22100000,
+ "Secrata": 20300000,
+ "SecureW2": 10200000,
+ "Seeq": 5600000,
+ "Seitel Systems": 16200000,
+ "Serverfarm ATL1 Atlanta": 14600000,
+ "Shamrock Design": 18200000,
+ "Shetewy Tech": 35000000,
"SingleStore": 100000000,
"Siteimprove": 100000000,
+ "Skagit Media": 25800000,
+ "Sky Valley Limited - Website Design & Services": 11400000,
"Skylum": 18500000,
- "Sleep Number": 2100000000,
- "Smarte Carte": 26000000,
+ "Smart Data Center": 10000000,
+ "Smart Site Design": 12800000,
"Smartsheet": 712000000,
- "Smith & Nephew": 5200000000,
- "Snc Lavalin": 5600000000,
"Snowflake": 1900000000,
+ "Softchoice": 957500000,
+ "Software Labs": 31000000,
"Sonata Software": 853800000,
- "Sonder Holdings Inc.": 123000000,
- "Sonoco": 6500000000,
- "Sound Transit": 35600000,
- "Southern Glazer's": 21000000000,
- "Southwest": 22700000000,
- "Sp Plus": 1100000000,
- "Spaceflight Inc.": 15000000,
- "Spacelabs Healthcare": 217000000,
- "Spark Foundry": 600000000,
+ "Sparktrend": 10000000,
+ "Specific-Group": 15000000,
+ "SpeechSelfService": 11700000,
"Splunk": 3300000000,
- "Spokane Transit": 150000000,
- "Spokesman": 18100000,
- "Stantec": 3100000000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stratolaunch LLC.": 28700000,
- "Stride Inc.": 1400000000,
- "Stumptown Coffee Roasters": 40000000,
- "Suit Supply France SARL": 350000000,
- "Sun Life": 17200000000,
- "SunOpta": 812600000,
- "Superb Internet": 13800000,
- "Sweaty Betty": 244400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
- "TOM BIHN": 10000000,
- "TWO MEN AND A TRUCK": 41200000,
- "Taco Time NW": 26500000,
- "Tandy Leather Factory": 81600000,
+ "Spokane SBS": 11300000,
+ "Spokane Software": 26000000,
+ "Squarerigger": 32100000,
+ "Staffordworks": 16600000,
+ "Starcom": 32500000,
+ "Startcom": 36900000,
+ "Stephen Dunn Realtor": 16300000,
+ "Stratford Software": 28500000,
+ "StratusGrid": 52200000,
+ "Structured": 15000000,
+ "Synapse Product Development": 50000000,
+ "Synch": 10000000,
+ "Synergos": 21500000,
+ "Syntonix": 12500000,
+ "SysEleven": 17000000,
+ "System Resources": 28600000,
+ "TCi Design Branding": 27200000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TRG": 150000000,
"Tanium": 525000000,
- "Taylor Farms": 2800000000,
"Teach Town": 25000000,
- "Teague company": 75000000,
- "Technology Student Association TSA": 10000000,
- "Teck Resources": 12600000000,
- "Teddie": 45000000,
- "Tempur-Pedic": 24700000,
- "Teneo": 400000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Bellingham Herald": 12300000,
- "The Bitcoin Foundation Inc.": 10000000,
- "The Channel": 25000000,
- "The First Line": 18800000,
- "The Melting Pot": 31500000,
- "The North Face": 2000000000,
- "The Scoular Company": 4000000000,
- "Thornton Tomasetti": 280000000,
- "Tiffany's": 4400000000,
- "Timberland Regional Library": 20600000,
- "Timken": 4500000000,
- "Topgolf International Inc.": 1100000000,
- "Torrid": 1300000000,
- "TransAlta": 2100000000,
- "Transunion Chile": 3600000000,
- "Transurban": 9400000000,
- "Trelleborg": 3000000000,
- "Trinity Lutheran College": 18400000,
+ "Teal Group Technologies": 18300000,
+ "TechPower IT Solutions": 24400000,
+ "TechStar IT Solutions | Managed IT Department": 38700000,
+ "Technosoft": 210000000,
+ "Technovert": 20000000,
+ "Tempest Technologies": 26300000,
+ "The AES Group": 25000000,
+ "The Advocate Agency": 23200000,
+ "The Best Admins": 15500000,
+ "The Medium": 24400000,
+ "The Org company": 2000000,
+ "The Web Hosting Dir": 10000000,
+ "Theobald Software": 15000000,
+ "Therasoft": 31000000,
+ "Thinkbox": 10000000,
+ "TierPoint": 405000000,
+ "TimeXtender": 5300000,
+ "Topia Mobility Inc.": 190100000,
+ "Trisektor": 35000000,
+ "Triton Technical": 14100000,
+ "TruckTrax": 20000000,
"True Digital Security": 14000000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "U.S. Oil and Refining": 50000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UL Solutions": 2700000000,
- "UNTUCKit": 350000000,
- "USCIS": 15700000,
- "USTR": 10000000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Unilever": 63500000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VIAVI Solutions": 1300000000,
+ "Turnotech": 35000000,
+ "Twin Trees": 33100000,
+ "UBB Central": 14200000,
+ "Uncharted Design": 13900000,
+ "Unify Cloud": 300000000,
+ "Unify Technologies": 15000000,
+ "University Of Puget Sound": 20900000,
"VMware": 13200000000,
- "Valpak": 43500000,
- "Ventec Life Systems": 18500000,
- "Veritiv": 7300000000,
- "Viasat": 2800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Volcom": 380000000,
- "W. W. Grainger": 15200000000,
- "WSP": 8900000000,
- "Wallenius Wilhelmsen": 4400000000,
- "Warby Parker": 573100000,
- "Watson Realty Corp.": 83900000,
- "Webasto": 250000000,
- "Weber Thompson": 41900000,
+ "VTECH SOLUTION": 10200000,
+ "Valorem Reply": 26000000,
+ "Varasset": 18000000,
+ "Vectorform": 12000000,
+ "Velocicolor": 10300000,
+ "Viewpoint Construction Software": 250000000,
+ "Virtual Internet": 16700000,
+ "Vital Soft Inc.": 25600000,
+ "Waypoint Software": 13000000,
"Webtrends": 150000000,
- "Whelen": 500000000,
- "Wienerschnitzel": 341000000,
- "WildTangent Inc.": 15700000,
- "Williams Companies": 11300000000,
- "WinCo Foods": 7700000000,
- "Windermere Real Estate": 500000000,
- "Wings Financial": 243000000,
- "Wje": 150000000,
+ "Wengert": 19400000,
+ "Westward Design": 17500000,
+ "Wheelercreek": 16600000,
+ "Wide Design Team": 11400000,
+ "Windermere Real Estate - Penelope E. Schwartz": 58100000,
+ "Wolken Communica": 19000000,
"Wolters Kluwer": 5400000000,
- "WoodSpring": 150000000,
- "Woodcraft": 200000000,
"Woopra": 11000000,
- "World Concern": 19400000,
- "World Financial Group": 10000000,
- "World Justice Project": 10000000,
- "Wounded Warrior Project": 15300000,
- "XKL": 25800000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "YMCA of the USA": 64100000,
- "Yoh": 19000000,
- "Yoogi's Closet": 10500000,
+ "World Machine": 25200000,
+ "WorldWinger Inc.": 10000000,
+ "Wowrack": 22000000,
+ "Xebia": 226500000,
+ "Xoc": 11000000,
+ "Xoriant": 197500000,
+ "Yakindo Web Designs": 22600000,
"Yubico": 50000000,
- "ZF Friedrichshafen": 43400000000,
- "Zama Group": 14500000,
- "Ziebart": 1200000000,
- "Zola company": 120000000,
- "Zumiez": 1100000000
+ "Zenoti": 92500000,
+ "Zipcon": 17400000,
+ "designs INK": 30000000,
+ "diva-e Digital Value Excellence GmbH": 68600000,
+ "e2e Business Management Solutions": 13500000,
+ "iConvergence Solutions": 17500000,
+ "iLink Digital": 280000000,
+ "lucidSTUDIOS": 35600000,
+ "thinGk": 13000000
},
"West Virginia": {
- "ABC Supply": 12100000000,
- "AEP": 27500000000,
- "AFSCME": 10800000,
- "AMC Theatres": 3900000000,
- "Academy Sports Outdoors": 6600000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Aggreko": 1900000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Battlefield Trust": 6000000,
- "American Eagle Outfitters": 5000000000,
- "American Trucking Associations": 180900000,
- "American Water": 3800000000,
- "American Woodmark": 2100000000,
- "Armstrong": 59900000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "Australian Laboratory Services": 6600000000,
- "BBR Music Group": 2600000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bojangles": 560000000,
+ "22nd Century Solutions": 166300000,
+ "9three Solutions": 4200000,
+ "A & S Computer Learning Center": 32500000,
+ "AES Corporation": 11900000,
+ "ASP Website & Application Development": 10000000,
+ "Ably": 10000000,
+ "Aces & Eights": 1400000,
+ "Advantage Technology": 13100000,
+ "Advizex": 240000000,
+ "Agile5": 12000,
+ "AhaSlides": 4000000,
+ "Aligned Business Services LLC.": 30500000,
+ "Allegheny Design Works": 1100000,
+ "AmeriCommerce": 5600000,
+ "Amg Network Hosting": 180000,
+ "AppWebStudios": 10000,
+ "At DC Corp": 26200000,
+ "Augusta Systems": 5000000,
+ "B.E.S. Technology": 435000,
+ "Blaque Flag Marketing": 472000,
"Booz Allen": 8800000000,
- "Brain Injury Association of America": 10000000,
- "Breezeline": 300000000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "BrightStar Care": 300000000,
- "Brio company": 135800000,
- "Brookdale": 2700000000,
- "Buckle": 1300000000,
- "Calgon Carbon": 750000000,
- "Captain D's": 9000000,
- "Carpenter Technology": 2400000000,
- "Cellular Sales": 1700000000,
- "Chamberlain Group": 150000000,
- "Charleys": 6100000,
- "Chick-fil-A": 5800000000,
- "Child Evangelism Fellowship": 16500000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Clean Juice": 7000000,
- "Coast To Coast Tickets": 4300000,
- "Columbia Forest Products": 500000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Cracker Barrel": 3300000000,
- "Cruise Planners": 488000000,
- "Culligan": 1400000000,
- "D.P. Dough": 9400000,
- "DAV": 3900000,
- "DLA": 3600000000,
- "Davey Tree": 1500000000,
- "Dollar General": 35300000000,
- "Dominion Post": 10000000,
- "EMAC website": 5700000,
- "East of Chicago Pizza": 6000000,
+ "BoydTech Design": 3900000,
+ "C And Company": 24900000,
+ "CIS Internet": 604000,
+ "Canopus Infosystems": 234000,
+ "Carrie Ink": 1400000,
+ "CereProc": 6500000,
+ "Cognosante": 25000000,
+ "ComTech Consulting": 1000000,
+ "Core10": 6000000,
+ "Crouser": 3700000,
+ "DAISY IT MANAGED SERVICES LIMITED": 10000000,
+ "Davideastoninc": 22900000,
+ "DignifiHealth": 1000000,
"Eclipse Foundation": 6200000,
- "Element Materials Technology Group Limited": 975000000,
- "Ellicott Development": 10000000,
- "Embrace Home Loans": 180600000,
- "Enterprise Car Sales": 40000000,
- "Episcopal Church": 96100000,
- "Ergon Refining": 4500000000,
- "Ferrellgas": 2100000000,
- "Field & Stream": 100000000,
- "First Guaranty Bancshares Inc.": 105400000,
- "First Horizon Corporation": 2900000000,
- "First National Bank": 1300000000,
- "First Watch": 677600000,
- "FirstEnergy": 11900000000,
- "Fox Network": 3000000000,
- "Fraternal Order of Police": 33900000,
- "Frito-Lay Inc.": 19600000000,
- "Frontier Airlines": 3000000000,
- "G&L Guitars": 8000000,
- "GardaWorld": 3800000000,
- "Generac Power Systems": 4600000000,
- "Globe Life Insurance": 5200000000,
- "GreatSchools": 11000000,
- "Greenbrier Academy": 23500000,
- "Grindline Skateparks": 27600000,
- "H. T. Hackney Company": 3900000000,
- "Hair Club": 400000000,
- "Harbor Freight": 5000000000,
- "Hobby Lobby": 5300000000,
- "Hoosier Tire": 181300000,
- "Hoss's Steak & Sea House": 4400000,
- "Hwy 55": 3400000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "IPVM": 7000000,
- "Insurify": 9300000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Jersey Mike's": 255400000,
- "Journalism Education": 3800000,
- "Journeys company": 8600000,
- "KVC Health Systems": 7400000,
- "Kanawha Valley Regional Transportation Authority": 7000000,
- "Kimley-Horn": 722300000,
- "Koppers": 2000000000,
- "LEGO": 8100000000,
- "LGI Homes": 2300000000,
- "Lag Guitars": 2400000,
- "Leidos Holdings Inc.": 13700000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "LoanDepot": 2200000000,
- "Logan's Roadhouse": 462400000,
- "Long John Silver's": 404000000,
- "Long and Foster": 1000000000,
- "MarkWest": 2400000000,
- "Miss Virginia USA": 2700000,
- "Moe's Southwest Grill": 295500000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "NABET-CWA": 13400000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "Nikola Corporation": 44000000,
- "Ollie's Bargain Outlet": 1700000000,
- "OmniTRAX": 100000000,
- "OneMain Financial": 4100000000,
- "Oracle Elevator": 9200000,
- "Orange Amps": 4200000,
- "Orkin": 1000000000,
- "Orrick": 975000000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Pactiv Evergreen": 45000000,
- "Parker Hannifin": 15900000000,
- "Penn Mutual Life Insurance Company": 3700000000,
- "PharMerica": 2100000000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Planned Parenthood": 1600000000,
- "Pocahontas Times": 9000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Quick Lane": 6000000,
- "R. J. Corman": 420000000,
- "Randox": 119700000,
- "Rexair": 35000000,
- "Riesbeck's Food Markets": 3600000,
- "Rokon": 3700000,
- "Roy Rogers Franchise Company LLC.": 37000000,
- "SGS S.A.": 28000000000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Saladworks": 4300000,
- "Sally Beauty Holdings": 2300000000,
- "Samaritan's Feet": 7400000,
- "Sarku Japan": 310000,
- "ServiceMaster Clean": 48500000,
- "Sheetz'": 6200000000,
- "Shoe Carnival": 1300000000,
- "Sleep Number": 2100000000,
- "Solectrac": 2500000,
- "Southern Airways Express": 43000000,
- "Special Metals Welding Products": 11400000,
- "St Lawrence County Historical Association": 13000000,
- "St. Josaphat Eparchy": 16600000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Starwood Capital Group": 750000000,
- "Steak 'n Shake Enterprises Inc.": 344300000,
- "Steak Escape": 18500000,
- "Steel Dynamics": 22700000000,
- "Stericycle": 3600000000,
- "Swanson Industries": 6700000,
- "Swift Transportation Company": 3400000000,
- "TCBY": 8800000,
- "Technology Student Association TSA": 10000000,
+ "Eden Design": 6600000,
+ "Enterline Design": 16100000,
+ "Evrichart": 25000000,
+ "Extreme Endeavors": 1400000,
+ "Furnserve": 45800000,
+ "Galaxy Global": 3000000,
+ "Genesys Micro": 10000000,
+ "Glass House Graphics": 10000000,
+ "Greenbrier Technologies & Electric": 3800000,
+ "Griaule": 7000000,
+ "Gulfsoft Consulting": 48300000,
+ "HMS TECHNOLOGIES": 10000000,
+ "Hemmersbach": 288000000,
+ "Hungerhost": 2400000,
+ "Huntington Road Runners": 2600000,
+ "IOMMI Designs": 3500000,
+ "IT Mindshare": 7000000,
+ "ImageServ": 1000000,
+ "Innovative Management & Technology Services LLC IMTS": 8300000,
+ "Intellicus": 4000000,
+ "Interfathom": 24200000,
+ "Itrend Technology": 7500000,
+ "JDS Networking": 1700000,
+ "JesCo | Corlis Creative": 7600000,
+ "KRM Associates": 10000000,
+ "Katie O'Brien": 468000,
+ "Kevin J Carson": 2800000,
+ "KeyLogic": 26300000,
+ "Lakota Software": 2400000,
+ "Lead Docket": 1300000,
+ "Leigh-Leigh LLC.": 403000,
+ "M & M Art Studio": 11500000,
+ "M&S Consulting": 10000000,
+ "M9 Solutions": 22700000,
+ "Media Foundations": 359000,
+ "Menus Plus": 32700000,
+ "Meridian Web": 3600000,
+ "MicroCAD Training & Consulting": 2900000,
+ "MicroEval": 2000000,
+ "Mind Merge Design": 2300000,
+ "Minkatec Computer Services": 13600000,
+ "Miovision": 35000000,
+ "Momenta Creative": 2800000,
+ "Netjectives": 4000000,
+ "Netranom": 895000,
+ "New Era Technology": 22200000,
+ "Oktana": 6000000,
+ "Omni Strategic Technologies": 3400000,
+ "Onexte": 6000000,
+ "PTV Group Americas": 75000000,
+ "Peak Hosted Solutions Inc.": 1400000,
+ "PredictHQ": 2000000,
+ "Primitive House Designs": 24900000,
+ "Pro Design | Web Development & Design": 1600000,
+ "ProBusiness Tools": 46000,
+ "Progressive Solutions": 10000000,
+ "Prosite Business Solutions": 10000000,
+ "Prosource": 50000000,
+ "RapL": 4400000,
+ "Reliable Systems Inc.": 1400000,
+ "Resolver": 30000000,
+ "Ridge View Advertising": 237000,
+ "SVD Solutions": 498000,
+ "SaaS Maker": 10000000,
+ "Second Creek": 1400000,
+ "Secure Planet": 6100000,
+ "Slight Revision": 6700000,
+ "Software Computer Group": 2600000,
+ "Software Systems": 5000000,
+ "Solitary Solutions": 1800000,
+ "Stallion is": 1500000000,
+ "Stealth-ISS": 2600000,
+ "Stewart Design": 19400000,
+ "Strictly Business Computer Systems": 466000,
+ "Swath Design": 30100000,
+ "Synergy BIS": 5100000,
+ "TMC Technologies": 6000000,
+ "TSG Technology Services Group": 300000,
+ "Tec5ive": 3900000,
+ "Technology Plus": 15200000,
"Telos company": 236800000,
- "Terracon": 77100000,
- "The First Line": 18800000,
- "The Highland School": 21900000,
- "Tim Hortons": 2800000000,
- "Torrid": 1300000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "UFP Industries": 9700000000,
- "UMWA": 3000000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "UniCare": 32100000,
- "UniFirst": 2000000000,
- "United Country": 38000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "Vera Bradley": 513100000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Vision Source": 11700000,
- "Vocelli Pizza": 14000000,
- "Voith": 4800000000,
- "W. W. Grainger": 15200000000,
- "Waffle House": 1300000000,
- "Waldo Hotel": 26000000,
- "West Virginia Department of Agriculture": 32100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Sizzlin' Corp.": 6400000,
- "Westfield Insurance": 2000000000,
- "Which Wich": 79500000,
- "Williams Companies": 11300000000,
+ "TenthDegree Technologies": 2700000,
+ "Terzetto Creative": 33000000,
+ "Tierney Studio": 8200000,
+ "Tiva Software": 29400000,
+ "Trabian": 3200000,
+ "Trunkspace Hosting": 4700000,
+ "Tygart": 10000000,
+ "VTECH SOLUTION": 10200000,
+ "VellaSella": 6900000,
+ "WV Vet Tech LLC.": 2400000,
+ "WVPCGEEK": 298000,
+ "Wengert": 19400000,
+ "Wheelhouse Creative": 3100000,
+ "Wild Native": 357000,
+ "WinfoGlobal": 4000000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellow Pages Directory": 15100000,
- "ZOOperstars": 5100000,
- "Ziebart": 1200000000,
- "Zoetis Inc.": 8000000000,
- "Zumiez": 1100000000,
- "evoJets": 187000
+ "XiNiX": 5800000,
+ "Xweb": 2000000,
+ "clearAvenue": 7800000,
+ "eGriffin Web Design": 5800000,
+ "xSynthesis": 10000000
},
"Wisconsin": {
- "12 Yard": 6000000,
- "3D International": 4000000000,
- "ABC Supply": 12100000000,
- "ACCO Brands": 2100000000,
- "ADM": 94400000000,
+ "1547 Critical Systems Realty": 10000000,
+ "2013-2015 metaGarden LLC.": 3700000,
+ "22nd Century Solutions": 166300000,
+ "A Compliance Connection": 24600000,
+ "A E Business Solutions": 14400000,
+ "A Sling and a Stone": 27500000,
+ "ADCi": 32600000,
+ "ADE Electronics Corp": 10000000,
"ADP Roseland": 16900000000,
- "AFL-CIO": 138000000,
- "AFRY": 2300000000,
- "AFSCME": 10800000,
- "AIBS": 20100000,
- "AMC Theatres": 3900000000,
- "ASCM": 26900000,
- "ASEA Brown Boveri": 28800000000,
- "AVL List": 2100000000,
- "Ace Hardware": 7800000000,
- "Activision Publishing Inc.": 7500000000,
- "Acuity Insurance": 120000000,
- "Aflac Incorporated": 19300000000,
- "AgStar": 1800000,
- "Aggreko": 1900000000,
- "Agilent": 6700000000,
- "Agropur": 7700000000,
- "Ahlstrom Filtration LLC.": 50000000,
- "Air Command": 15100000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Albany International Pty Ltd.": 1000000000,
- "Allegheny Technologies": 3300000000,
- "Allied Universal": 20000000000,
- "Allied Van Lines": 22000000,
- "Alorica": 2500000000,
- "Alzheimer's Association": 81500000,
- "American Eagle Outfitters": 5000000000,
- "American Endurance Ride Conference": 10000000,
- "American Family Insurance": 14200000000,
- "American Greetings": 2000000000,
- "American Indian College Fund": 7800000,
- "American Society of Genealogists": 3600000,
- "Americold Logistics Inc.": 2900000000,
- "Amgen": 26300000000,
- "Amway North America": 9500000000,
- "Andrew Christian": 8000000,
- "Ansul Canada Ltd.": 37300000,
- "Applegreen plc.": 3400000000,
- "Applied Instruments": 9000000,
- "Ardagh Group S.A.": 9000000000,
- "Argosy Foundation": 10000000,
- "Army News Service": 16400000000,
- "Ashland Inc.": 2400000000,
- "At Home store": 1700000000,
- "Austin Straubel International Airport": 7000000,
- "Aviat Aircraft": 8000000,
- "BBR Music Group": 2600000,
- "BBYO": 15800000,
- "BELFOR": 2000000000,
- "BW Papersystems": 300000000,
- "Bader Philanthropies": 3800000,
- "Baird investment bank": 3400000000,
- "Baseball Factory": 10000000,
- "Baskin' Robbins": 117100000,
- "Bassett Furniture": 521500000,
- "Beckhoff": 1100000000,
- "BelGioioso": 100000000,
- "Belcan": 1000000000,
- "Bell Bank": 7000000,
- "Beltone": 61600000,
- "Big Boy Restaurants": 26600000,
- "BlueLinx": 4600000000,
- "Bluemercury": 918000000,
- "Bossard": 920500000,
- "Brenntag Australia Pty Ltd.": 18800000000,
- "Brewery Collectibles Club of America": 25800000,
- "Briggs & Stratton LLC.": 1700000000,
- "BrightStar Care": 300000000,
- "BrightStar Wisconsin Foundation": 1500000,
- "Brixmor Property Group": 1200000000,
- "Brookdale": 2700000000,
- "Brown Center for Students of Color": 997900000,
- "Buckle": 1300000000,
- "Bureau Veritas": 5700000000,
- "Burger Boat": 4200000,
- "Bush's Beans": 250000000,
- "CAMECA": 20000000,
+ "AGS Prime": 15700000,
+ "AIR Technology Services": 57200000,
+ "AIT Business Technologies": 31800000,
+ "AVI System's": 272500000,
+ "AVI-SPL": 1300000000,
+ "Abaxent": 12000000,
+ "Absolute Computer Systems": 13400000,
+ "Abts Computer Services": 34900000,
+ "Actelite": 11000000,
+ "Actinion": 22900000,
+ "Adam Infotech": 22900000,
+ "Adam Nye Creative LLC.": 3700000,
+ "Adducive": 28800000,
+ "Adept Computer": 21600000,
+ "Advanced Project Solutions": 21000000,
+ "Advantage Manufacturing Corp.": 14900000,
+ "Aerogel": 10000000,
+ "Affinity Holding": 23100000,
+ "After-Hours Coders": 17000000,
+ "Agent Spam": 10400000,
+ "Airiam": 18000000,
+ "Akoma Enterprises": 29100000,
+ "Alberts Illustration & Design": 1200000,
+ "Alignable": 4000000,
+ "Aline Design Communications Wendy Walsh": 14600000,
+ "Allbridge": 10000000,
+ "Aloha Technologies": 31600000,
+ "Alpha II": 25000000,
+ "Amba Systems": 12500000,
+ "Answerport": 14000000,
+ "Appsuite": 7800000,
+ "Arsenale Dataplane": 1400000,
+ "Artel Design": 29300000,
+ "Artistic Spectrum": 13300000,
+ "Asher Enterprises": 36400000,
+ "Assertive Systems": 11100000,
+ "Associated Collectors Inc.": 21400000,
+ "Astuteo\u2122": 11500000,
+ "Atanasoft": 14300000,
+ "Atlantis Taverna": 22200000,
+ "Authenticom Inc.": 18900000,
+ "Avenue A Design": 35900000,
+ "Avid Ratings": 15000000,
+ "Axim Geospatial": 48500000,
+ "BACKBONE DESIGNS": 1400000,
+ "BCC Software": 14500000,
+ "BEST Systems": 31000000,
+ "BLUE DOLOMITE": 24100000,
+ "BRAMBLE BOOKS": 67300000,
+ "BabbleWare Inc.": 13600000,
+ "Bar-i Liquid Accounting": 2400000,
+ "Bay Area Medical Center": 22000000,
+ "Benefits By Design": 14800000,
+ "BestComp LLC.": 17400000,
+ "Beyond Vision": 6500000,
+ "Big Bang LLC.": 5100000,
+ "Big Fat Designs": 24900000,
+ "Birkey": 6100000,
+ "Blue Gate Farm": 12900000,
+ "Blue Sky Technologies LLC.": 14500000,
+ "Bluebird Auto Rental Systems": 14000000,
+ "Bos Tek": 3300000,
+ "Boyum IT Solutions": 22700000,
+ "Braeger Auto Finance Group LLC.": 20800000,
+ "BridgeWorks": 14500000,
+ "Brightree": 500000000,
+ "Bronenkant": 2600000,
+ "Bungee Craft Technologies": 10300000,
+ "By HamptonDesign": 19100000,
+ "Byte Harmony": 17900000,
+ "CCA Technology": 15800000,
"CDW": 23800000000,
- "CNN Films": 1500000000,
- "CUNA": 68000000,
- "CURTISS-WRIGHT": 2500000000,
- "Camp Fire": 10000000,
- "Can-Am Off-Road": 6300000000,
- "Capital Brewery": 29100000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Castolin": 50000000,
- "Cellular Sales": 1700000000,
- "Centene": 144500000000,
- "Center for Autism": 500000000,
- "Central Penn Business Journal": 4800000,
- "Charleys": 6100000,
- "Check Into Cash": 1000000000,
- "Chewy": 9800000000,
- "Chick-fil-A": 5800000000,
- "Children's Miracle Network Hospitals": 26000000,
- "Chr. Hansen": 1100000000,
- "Christmas Tree Shops": 15900000,
- "Ciox Health": 19300000,
- "Circle Sanctuary": 28600000,
- "Citi Trends": 862200000,
- "City Year": 162300000,
- "City of Middleton": 5500000,
- "Clark Brands": 23000000,
- "Clearwater Paper": 2000000000,
- "CliftonLarsonAllen Wealth Advisors": 1300000000,
- "Coast To Coast Tickets": 4300000,
- "College Hunks Hauling Junk": 100000000,
- "Columbia Forest Products": 500000000,
+ "CHRISTMAN DENTAL LTD.": 31000000,
+ "CIS Secure": 22300000,
+ "CMIT Solutions": 60000000,
+ "CSS Incorporated": 37900000,
+ "CTRL shift": 30700000,
+ "CTaccess": 5000000,
+ "Capital Data": 40000000,
+ "Caspian Technology Concepts": 13600000,
+ "Cayen": 23900000,
+ "Celera Systems": 28700000,
+ "Centaur Systems": 10300000,
+ "Centella Consulting": 11900000,
+ "Centurion Data Systems": 11600000,
+ "Certified Network Consultants LLC.": 28000000,
+ "Chaconia": 10400000,
+ "Chandler Inc.": 29300000,
+ "Chandra Technologies": 10400000,
+ "Chip Connection": 20600000,
+ "Chrysalis Design Works": 11600000,
+ "Citon": 25000000,
+ "Clarity Technology Group": 2400000,
+ "Claude Heintz Design": 25200000,
+ "ClearWater Computer Services Inc.": 19700000,
+ "Coalition Board Shop": 17400000,
+ "CodoniX": 5000000,
+ "Collett Systems": 12800000,
"Comarch": 400900000,
- "ConjuChem LLC.": 15000000,
- "Continental Packaging Solutions": 1000000000,
- "Convenience": 12800000,
- "Core & Main Inc.": 6100000000,
- "Core-Mark": 17200000000,
- "Corteva": 17100000000,
- "Cottman Transmission and Total Auto Care": 4600000,
- "Covanta": 1900000000,
- "Covetrus Software Services Pty.": 4600000000,
- "Cracker Barrel": 3300000000,
- "Craig High School": 18800000,
- "Crate & Barrel": 1600000000,
- "Creative Planning LLC.": 110000000,
- "Cruise Planners": 488000000,
- "Crunch Fitness": 190000000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "Cumulus Media": 946800000,
- "Cupertino Electric": 1500000000,
+ "Combex": 11800000,
+ "Comcentia": 7200000,
+ "CompleteCloud": 14300000,
+ "Computec Integrated Solutions": 26300000,
+ "Computer Know How": 11800000,
+ "Computer Power Group": 15200000,
+ "Computer Supply People": 13900000,
+ "Computers Nationwide": 21800000,
+ "Comstar": 13300000,
+ "Comtech Global": 7000000,
+ "Connected Technology Solutions": 20000000,
+ "Contiem": 25700000,
+ "Continuus Technologies": 2500000,
+ "ConvergeOne": 1600000000,
+ "Core BTS": 220000000,
+ "Corporate Technology Solutions": 11400000,
+ "Creative Edge Studio": 51100000,
+ "Creative Vixen Design": 11200000,
+ "CrossControl": 10000000,
+ "Crytycal Services Management": 23200000,
+ "Culver Advertising-design": 21800000,
+ "Culver Brand Design": 19400000,
+ "Curate Solutions": 2000000,
+ "Custom Computer Systems of Wisconsin Inc.": 11700000,
+ "Customer Analytics": 25000000,
+ "CyberSecOp": 10000000,
+ "Cyberius": 21800000,
"Cyclomedia Technology Inc.": 4800000,
- "D.P. Dough": 9400000,
- "DJC Oregon": 10000000,
- "DJO Global": 1200000000,
- "DKNY": 643000000,
- "DMI Inc.": 705000000,
- "Davey Tree": 1500000000,
- "Dawn Foods": 1100000000,
- "Dayton Superior": 65000000,
- "Dematic": 3200000000,
- "Dignity Memorial": 25000000,
- "Dirtnap Records": 3900000,
- "Discovery Toys": 4000000,
- "Dixon Ticonderoga": 23800000,
- "Dollar General": 35300000000,
- "Donaldson Company Inc.": 3300000000,
- "Drexel Hamilton": 14800000,
- "Drury Hotels": 620000000,
- "Dwight Foster Public Library": 2700000,
- "EDP Renovaveis": 2100000000,
- "EOG Resources": 25000000000,
- "ETS": 1400000000,
- "EVgo Services LLC.": 34400000,
- "East Troy Electric Railroad": 20200000,
- "East-Central Synod of Wisconsin": 13000000,
- "Eastman": 10600000000,
- "EatStreet": 25000000,
- "Ecumen": 165000000,
- "Edelman Financial Engines": 80000000,
- "Einstein Bros. Bagels": 500000000,
- "Element Materials Technology Group Limited": 975000000,
- "Enterprise Car Sales": 40000000,
- "Enterprise Holdings": 23900000000,
- "Episcopal Church": 96100000,
- "Essity": 1000000000,
- "Ethan Allen": 845000000,
- "Experimental Aircraft Association": 15600000,
- "Fancy Feast": 10000000,
- "Farmer Brothers": 469200000,
- "Fat Brain Toys": 40000000,
- "Ferrellgas": 2100000000,
- "Figaro's": 4600000,
- "Finance & Commerce": 3700000,
- "First Watch": 677600000,
+ "CyntrX": 9500000,
+ "DANEnet": 19700000,
+ "DPA Software": 7900000,
+ "DRCS Solutions": 16300000,
+ "DSI Design": 14200000,
+ "DTC Networks": 21800000,
+ "Data Trail Solutions": 3600000,
+ "DataStrait": 19800000,
+ "Dataretrieval": 29800000,
+ "Datex Conference": 15800000,
+ "Datum Consulting": 3600000,
+ "Dean Jeffery Dr": 20200000,
+ "DekTec": 19400000,
+ "Delphinus": 49400000,
+ "Deneb Corporation": 18500000,
+ "Department Of Interiors Ltd.": 61900000,
+ "Desco Dental": 6400000,
+ "Design Interchange": 11000000,
+ "Design That Flies": 16800000,
+ "DesignFuel": 19300000,
+ "Details Matter": 12000000,
+ "Digital Art Factory": 10900000,
+ "Digital Brigade": 26000000,
+ "Digital Data Destruction Services Inc.": 45600000,
+ "Digital Phenom": 12400000,
+ "Dotster LLC.": 25800000,
+ "Doug Schommer": 10500000,
+ "Down Puppy Design": 3900000,
+ "Dragon Technology Solutions": 27600000,
+ "Duckhouse Designs": 25800000,
+ "Dynamic Designs Unlimited": 17500000,
+ "E7 Solutions": 17500000,
+ "ETA Technology Services LLC.": 9100000,
+ "Eagle TG": 6000000,
+ "Eclipse Networking": 23900000,
+ "Elite EXTRA": 20800000,
+ "Elutions": 33500000,
+ "Ember.js": 2000000,
+ "Embytes": 31800000,
+ "Emerging Technologies - SPR": 75000000,
+ "Ems Trendsetters": 14800000,
+ "Entre Computer Solutions": 7000000,
+ "Entropy Multimedia": 25800000,
+ "Envision IT": 6500000,
+ "Escape Key Technologies": 29100000,
+ "EverView": 280000000,
+ "Excel Tech Computer Services": 11300000,
+ "Expedient": 200000000,
+ "FINAL ILLUSTRATION": 13100000,
+ "Fast Lane Computers": 12300000,
+ "Fetch Rewards": 150000000,
+ "Fine Uploader": 10000000,
+ "Finishline Studios": 20200000,
+ "Fired Up Pizza Company": 22700000,
"Fiserv": 17700000000,
- "FlixBus": 450000000,
- "Forman Mills": 296800000,
+ "Flexion": 23500000,
+ "Floranext": 4400000,
"Fortinet": 4100000000,
- "Foster Farms": 3000000000,
- "Fox Network": 3000000000,
- "Franklin Electric": 2000000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "Froedtert Health Inc.": 2700000000,
- "Frontier Airlines": 3000000000,
- "Fulton Beer": 20600000,
- "Future Sonics": 4800000,
- "G4S Global": 9400000000,
- "GE HealthCare": 17700000000,
- "GFL Environmental": 6400000000,
- "Gallup": 187000000,
- "GardaWorld": 3800000000,
- "Gates\ub294": 3500000000,
- "Gehl Company": 10000000,
- "Generac Power Systems": 4600000000,
- "General Mills": 19200000000,
- "General Motors": 147200000000,
- "General Motors Financial Company Inc.": 12900000000,
- "George Webb Interactive Inc.": 22400000,
- "Giordanos": 175000000,
- "Globe Life Insurance": 5200000000,
- "Go To Transport": 9500000,
- "Golder Associates Inc.": 1000000000,
- "Goodman Global Group Inc.": 1900000000,
- "Gordon Food Service": 16000000000,
- "Graef-USA Inc.": 40300000,
- "Great Harvest": 21200000,
- "Griffon Aerospace": 16000000,
- "Grindline Skateparks": 27600000,
- "Gruppe Deutsche Borse": 5700000000,
- "Guild Software": 23800000,
- "Guitar Center": 2300000000,
- "Gundersen Health System": 24100000,
- "HSM company": 298100000,
- "HUB International Ltd.": 3200000000,
- "Hair Club": 400000000,
- "Hal Leonard": 254000000,
- "Hall Render": 10700000,
- "Hamburger Mary's": 7000000,
- "Harbor Freight": 5000000000,
- "HealthSherpa": 9000000,
- "Hedberg Public Library": 21600000,
- "Hendricks Holding": 21400000,
- "Heraeus": 33400000000,
- "Hertz Investment Group": 27200000,
- "Hilton Milwaukee City Center": 5000000,
- "Hobby Lobby": 5300000000,
- "HockeyTech Inc.": 10000000,
- "Holiday Stationstores": 3300000000,
- "Holy Family Memorial": 140000000,
- "Houzz": 500000000,
- "Hunter Douglas Group": 4600000000,
- "Hy-Vee": 12000000000,
- "IGA": 250000000,
- "IHEARTMEDIA": 3800000000,
- "ION": 19100000,
- "Ingredion Incorporated": 7200000000,
- "Intelitek": 3300000,
- "Inventors": 10000000,
- "Invest Financial Corporation": 290000000,
- "Iron Mountain Incorporated": 5000000000,
- "Iron Workers": 2800000,
- "Ishida Co. Ltd.": 1200000000,
- "Jacob Schmidt Brewing Company": 10000000,
- "Jamba": 70000000,
- "JanSport": 15700000,
- "Jeanneau": 600000000,
- "Jenny Craig": 483000000,
- "Jersey Mike's": 255400000,
- "John William Pope Foundation": 12900000,
- "Johnson Health Tech": 800000000,
- "Jostens": 900000000,
- "Journeys company": 8600000,
- "JumpSport": 9400000,
- "KHS GmbH": 1400000000,
- "KONE": 10900000000,
- "KWIK TRIP": 5000000000,
- "Kalmbach": 49000000,
- "Kaplan": 1500000000,
- "Kaplan Financial": 12000000,
- "Kelly Services": 5000000000,
- "Kenosha News": 4300000,
- "Kerry Group": 8500000000,
- "Kilwins": 50000000,
- "Kimley-Horn": 722300000,
- "Kinder Morgan": 17700000000,
- "Kirby Company": 500000000,
- "Kmart Corporation": 6000000000,
- "Knots of Love": 4300000,
- "Kohler Foundation": 2000000,
- "Kohler Kitchen & Bath": 6000000000,
- "Koss": 16600000,
- "Krispy Krunchy Chicken": 3400000,
- "Kroll": 3000000000,
- "L.L.Bean": 1600000000,
- "Land O'Lakes": 16000000000,
- "Laughlin": 95900000,
- "Lawrence University": 10000000,
- "Leaf Trading Cards": 2400000,
- "Learning Express Toys": 2500000,
- "Lee's Famous Recipe": 10100000,
- "Legendary Whitetails": 25500000,
- "Leidos Holdings Inc.": 13700000000,
- "Lerch Bates": 19500000,
- "Lester Public Library": 3900000,
+ "Frontier Software": 47800000,
+ "Frugal Computers": 50500000,
+ "Full Sail Solutions": 21100000,
+ "Funnel Incorporated": 17900000,
+ "GDC IT Solutions": 11200000,
+ "GITLLC": 26300000,
+ "GPDesigning": 25800000,
+ "GRELLINGER": 16800000,
+ "GT Creative Designs": 17400000,
+ "Gainwell Technologies": 1400000000,
+ "General Rubber": 10500000,
+ "Genesis Computer Systems": 30800000,
+ "GeoDecisions": 35000000,
+ "Gillware": 10800000,
+ "Glassen Technology Services": 29300000,
+ "Global Software Solutions Inc.": 26200000,
+ "Global Trading Systems": 22200000,
+ "Goes Studio": 22500000,
+ "Great Lakes Solutions": 31100000,
+ "Green County Wisconsin": 10200000,
+ "Green Hippo": 7000000,
+ "Guardian Business Solutions": 31200000,
+ "Guardian Software": 1600000,
+ "H4 Creative": 35200000,
+ "HMS Consulting": 24200000,
+ "HTMLgraphic": 10800000,
+ "Harness Inc.": 32000000,
+ "Harris' Karate Academy Llc.": 5800000,
+ "HarrisData": 47600000,
+ "Headquarters Inc.": 26500000,
+ "HealthLX": 7000000,
+ "Heartland Business Systems": 147300000,
+ "HelloReferrals": 1400000,
+ "High-Logic": 10000000,
+ "HighFiveRx": 10000000,
+ "Holly Avenue Designs": 21700000,
+ "Hughes Design": 31600000,
+ "Huzzard": 7300000,
+ "INOC": 12600000,
+ "INTERAL": 7000000,
+ "ISCorp": 23100000,
+ "ISR Info": 12000000,
+ "IT Strategies Group": 1800000,
+ "ITConnexx": 31900000,
+ "Identit-e": 1400000,
+ "Illumin8 marketing": 21100000,
+ "Imagineering": 7000000,
+ "InEight": 71000000,
+ "Indeavor": 22000000,
+ "Infinity Software Solutions": 32600000,
+ "Information Systems Engineering | Paper-Less": 57600000,
+ "Infotech Consulting Group": 36100000,
+ "Ink Jelly": 15700000,
+ "Innovative Graphics": 50500000,
+ "Innovia Consulting": 10000000,
+ "Insight BTR": 2400000,
+ "InspectIT": 11400000,
+ "Intech Corp": 11600000,
+ "Integritek": 6000000,
+ "Intelligent Video Solutions": 12500000,
+ "Intelliquip": 10700000,
+ "International Software Products": 10000000,
+ "Ionic": 2900000,
+ "Ironcore": 16500000,
+ "Itr8Group": 2300000,
+ "J. Mauel": 8400000,
+ "JARPdesign": 21500000,
+ "JAXCO": 11900000,
+ "JMeister Design": 16300000,
+ "JRB Development": 18400000,
+ "JacksonSpencer": 3400000,
+ "JahnsTek": 30500000,
+ "Jake Spence": 11000000,
+ "Jason Black": 10900000,
+ "Jennifer A. Niles": 5600000,
+ "Jerry's Music Inc.": 22700000,
+ "Jon Jallings Photography": 11400000,
+ "K8DZn": 30800000,
+ "KMG Software": 26900000,
+ "KNEWVISTA... SHARING INSIGHTS": 13700000,
+ "Ka-Chun Wong": 31600000,
+ "Kalderos": 7500000,
+ "Keith Technologies": 6100000,
+ "Kernel Software": 30200000,
+ "Kettle Moraine Web & Consulting": 11800000,
+ "Keystatic": 19800000,
+ "Klovera": 4100000,
+ "Konect Business Solutions": 71000000,
+ "Konko Technologies": 11900000,
+ "Label Traxx": 18000000,
+ "Lake Companies": 29700000,
+ "Lakeside Press": 10400000,
+ "Lakesoft": 16300000,
+ "Lansare": 26100000,
+ "Larson Software": 11500000,
+ "LaserVault": 10000000,
+ "LeaseCrunch": 3100000,
+ "Lee\u2019s Uniform Center": 36200000,
"Level 3 Communications": 17500000000,
- "Life Time": 3000000,
- "Lifepoint Health": 8300000000,
- "Lincare Holdings": 2000000000,
- "Lincoln Electric Indonesia PT": 3500000000,
- "Lineage Logistics": 2100000000,
- "Lionel": 45500000,
- "Littelfuse": 2500000000,
- "Little Caesars": 3800000000,
- "Little Free Library": 9500000,
- "Livingston International": 40000000,
- "LoanDepot": 2200000000,
- "Lockton European Brokers Limited": 2700000000,
- "Los Angeles Athletic Club": 13500000,
- "Louisiana-Pacific": 3500000000,
- "Lovesac": 389800000,
- "Luminex": 437700000,
- "Lupus Foundation of America": 13700000,
- "M.C. Dean": 1000000000,
- "MFJ Enterprises": 7800000,
- "MGIC Investment Corporation": 1100000000,
- "MOBILE MINI": 593000000,
- "MOOYAH": 11700000,
- "MSC Industrial Supply": 3800000000,
- "Madison Metropolitan School District": 30500000,
- "Manitowoc Public School District": 3600000,
- "Marcus & Millichap": 1500000000,
- "Maritime Metro Transit": 37700000,
- "Materion Corporation": 1800000000,
- "Mayo Clinic Health System": 27900000,
- "McLane Company": 50000000000,
- "Mecum Auctions": 600000000,
- "Medline Industries": 20200000000,
- "Metal Supermarkets": 26800000,
- "Midwest Communications": 36300000,
- "Milio's Sandwiches": 1800000,
- "Milliman": 1200000000,
- "Milorganite": 20200000,
- "Milwaukee Athletic Club": 28800000,
- "Milwaukee Mitchell International Airport": 6000000,
- "Modern Fix": 4600000,
- "Moe's Southwest Grill": 295500000,
- "Mohawk Industries": 11800000000,
- "Molson Coors": 8100000000,
- "Moyes Delta Gliders": 2100000,
- "Mr. Tire": 5700000,
- "Music & Arts": 12400000,
- "Mutual of America": 100000000,
- "NOAA Weather Radio": 36400000,
- "NOVARES": 1400000000,
- "National Bank of Commerce": 32600000,
- "National Celiac Association": 3700000,
- "National Christian Foundation": 27800000,
- "National Model Railroad": 5300000,
- "National Mustard Museum": 17600000,
+ "Linric": 29000000,
+ "Linux-IP": 11900000,
+ "Loffler Companies": 280000000,
+ "Loft 14 Design": 34800000,
+ "Logoless": 10000000,
+ "MADType": 10400000,
+ "MCITY Creative": 13300000,
+ "MPower Innovations": 4500000,
+ "MSI Data": 25000000,
+ "Mac Mini Vault": 8100000,
+ "Madison Avenue Worldwide": 26900000,
+ "Magnifisites": 54600000,
+ "Magnolia Studio": 23900000,
+ "ManagePoint": 26400000,
+ "Mandli Communications": 55200000,
+ "Manta Divers": 22900000,
+ "MarchTwenty": 10400000,
+ "Marco Guarini": 17500000,
+ "Marco Technologies": 400000000,
+ "Marquette Website Design": 5700000,
+ "Mary Magdalen": 15300000,
+ "Master Tool Co Inc.": 13600000,
+ "MatrixCare": 122000000,
+ "Media 3 Group": 21500000,
+ "Meloy": 21100000,
+ "Meridian Group International": 22700000,
+ "Mesh Systems": 12500000,
+ "MetaLocator": 2000000,
+ "Miovision": 35000000,
+ "Mithrax Networking": 8900000,
+ "Modus Design Inc.": 22400000,
+ "Moonlight Designs Studio": 3600000,
+ "Moraine Data Consultants": 14200000,
+ "Moxie IT": 35200000,
+ "Municipal Credit Union": 20000000,
+ "My microhost": 78400000,
+ "Myriad Systems": 26100000,
+ "NCC Technology Group": 19800000,
+ "Naviant": 19700000,
+ "Ncontracts": 38100000,
+ "Net at Work": 53000000,
"NetApp": 6500000000,
+ "NetVPro": 45100000,
+ "Netmoxie": 4300000,
+ "Netsolutions of Wisconsin": 3500000,
+ "Network Connected": 26000000,
+ "NetworkIT": 26400000,
"Networked Insights": 7500000,
- "Newark": 450000000,
- "News From Indian Country": 9200000,
- "Nexus Pharmaceuticals": 79600000,
- "Niagara Conservation": 2500000,
- "North Sails": 27500000,
- "OMNOVA": 750000000,
- "OPEIU": 7400000,
- "Oerlikon": 3100000000,
- "Old Dutch Foods": 5500000,
- "OnMilwaukee": 23200000,
- "OneMain Financial": 4100000000,
- "Orkin": 1000000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Oxxford Clothes": 25000000,
- "Pace Analytical": 450000000,
- "Pacific Cycle": 26300000,
- "Pacific Seafood": 1000000000,
- "Packaging Corporation of America": 8400000000,
- "Paradies Lagard\u00e8re": 345000000,
- "Parker Hannifin": 15900000000,
- "Payden": 10000000,
- "Peermusic": 46300000,
- "Peet's Coffee": 36700000,
- "Penzeys": 26000000,
- "People of Praise": 13100000,
- "Pepperidge Farm": 28200000,
- "PharMerica": 2100000000,
- "Phoenix House": 3500000,
- "Piggly Wiggly": 500000000,
- "Pilot Flying J": 3000000000,
- "Piper Sandler": 747300000,
- "Pitney Bowes": 3500000000,
- "Planned Parenthood": 1600000000,
- "Portillo's Hot Dogs LLC.": 562000000,
- "Pretzelmaker": 125000000,
- "Princeton Review": 16300000,
- "Principal Financial Group": 13900000000,
- "PrintWithMe": 1000000,
- "Progress Rail": 1500000000,
- "Progressive": 12200000,
- "Protective Life": 6700000000,
- "Pulaski Community School District": 3300000,
- "Quad Metalworks": 3100000000,
- "Quiznos": 50000000,
- "REV Group": 2300000000,
- "RSM US": 3300000000,
- "Realtor": 118000000,
- "Red Letter Media": 6000000,
- "Red Wing Shoes": 700000000,
- "Redwood Materials": 35000000,
- "Reliance Partners": 13500000,
- "Renewable Energy Group": 2900000000,
- "Resideo": 6300000000,
- "Reverend Guitars": 19200000,
- "Rexair": 35000000,
- "Rigibore": 19700000,
- "Rising Medical Solutions": 26000000,
- "Riverside University High School": 37300000,
- "Rock & Brews": 33300000,
- "Rocky Rococo Pizza and Pasta": 28900000,
- "Rodgers Instruments Corporation": 6400000,
- "Roehl Transport": 421300000,
- "Rosecrance": 3500000,
- "Russell Investments": 566500000,
- "Ruth's Chris": 350200000,
- "Ryan Office": 626000000,
- "S&S Cycle": 35800000,
- "SC Johnson": 11000000000,
- "SCHEELS": 800000000,
- "SDS": 10500000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "SMART Recovery": 12900000,
- "SOCIETY OF WETLAND SCIENTISTS": 4600000,
- "SOM": 274700000,
- "Safelite": 2400000000,
- "Safway Services LLC.": 25000000,
- "Sage Metering": 4900000,
- "Saia": 2800000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schmidt's Naturals": 5000000,
- "Schmitt Music": 20600000,
- "Schnucks": 3000000000,
- "Schreiber Foods": 4800000000,
- "Schunk Group": 1500000000,
- "Schwinn Bicycle Company": 11400000,
- "ScrappleFace": 6000000,
- "Security Bank": 6000000,
- "SemaConnect": 29000000,
- "Sensient Technologies Corporation": 1400000000,
- "Sentry Safe": 120000000,
- "ServiceMaster Clean": 48500000,
- "Servo Robot Group": 7400000,
- "Sheboygan Christian": 6600000,
- "Shoe Carnival": 1300000000,
- "Shofur": 23900000,
- "Shopbop": 700000000,
- "Sigma Aldrich": 2800000000,
- "Signarama": 55000000,
- "Silicon Labs": 1000000000,
- "Sleep Number": 2100000000,
- "Snapper Inc.": 21000000,
- "Snyder's-Lance": 8600000000,
- "Society Tea": 4300000,
- "Solectrac": 2500000,
- "Sonic Foundry": 27500000,
- "Sonoco": 6500000000,
- "Southwest": 22700000000,
- "Spectrum Industries": 10000000,
- "Speech and Debate": 5500000,
- "St. Lawrence": 3100000,
- "Stantec": 3100000000,
- "Staples Business Advantage": 8700000000,
- "State Bar of Wisconsin": 18100000,
- "State of Wisconsin Investment Board": 7000000,
- "Steak Escape": 18500000,
- "Stericycle": 3600000000,
- "Stern Pinball": 28500000,
- "Stevens Point Brewery": 200000000,
- "Stone & Webster": 27400000,
- "Suhr JS Technologies Inc.": 3600000,
- "SunSetter LLC.": 55300000,
- "Suominen": 491400000,
- "Swift Transportation Company": 3400000000,
- "Sylvan Learning": 12600000,
+ "New Auburn Personal Computer Services LLC.": 1400000,
+ "New Era Technology": 22200000,
+ "New Sky Websites": 2600000,
+ "New e-Business": 17200000,
+ "NexGenCAM": 17200000,
+ "Nexus Technologies LLC.": 10500000,
+ "Ninja Web Studios LLC.": 1400000,
+ "Noble Applications": 3400000,
+ "Nonprofit Tech": 18200000,
+ "Nonsek": 4900000,
+ "Npgmedia - Web Design And Development Services": 11100000,
+ "Nuzum Building Supply Llc.": 34700000,
+ "OCTANE Consulting": 10000000,
+ "Ohyama Lights": 14300000,
+ "Omnigo Software": 25900000,
+ "OnCourse Information": 19400000,
+ "OneEvent Technologies": 24300000,
+ "Ontech Systems": 5500000,
+ "Optime Supply Chain": 10000000,
+ "Orange Whip Design": 25800000,
+ "Osceola Medical Center": 24200000,
+ "Oshkosh Jaycees": 13000000,
+ "Otto Image Service": 12100000,
+ "P3C Technologies": 23100000,
+ "PRS Technologies": 21700000,
+ "Paragon Development Systems": 210000000,
+ "Paragon Software": 32500000,
+ "Parrett Manufacturing Inc.": 20700000,
+ "Parted Magic": 2400000,
+ "Patheon Consulting": 13900000,
+ "Patrick Redmond Design": 11900000,
+ "Paw Print Studio": 21400000,
+ "Peak Data Solutions": 11700000,
+ "Penta Technologies": 16900000,
+ "PerCSoft": 16200000,
+ "Pinnacle Technology": 35000000,
+ "PixelSync Media Services": 45500000,
+ "Plannit": 1400000,
+ "PlantOptics": 48800000,
+ "Plpage": 53300000,
+ "PolyMath Inc.": 25800000,
+ "Poppendieck": 12900000,
+ "PortalMedia": 4100000,
+ "Pratum": 11200000,
+ "Premeau Enterprises": 16600000,
+ "Premier Technologies": 23700000,
+ "President Instrumentarium Dental Inc.": 7900000,
+ "Priton Group": 28500000,
+ "ProCertus BioPharm": 17900000,
+ "Profound Logic": 1600000,
+ "Programmer Help": 2200000,
+ "Progressive Edge": 1400000,
+ "Promo Design": 26300000,
+ "Provide Enterprise": 22600000,
+ "Provident Tech": 39200000,
+ "Prudent Technologies & Consulting": 12000000,
+ "Public Service Request": 1400000,
+ "Pure Oxygen Labs": 19800000,
+ "Quality Plus Consulting": 24800000,
+ "Quill Creative Studio": 16600000,
+ "R ekous": 21800000,
+ "RACINEonline": 14200000,
+ "Racked Hosting": 1400000,
+ "RapidCat": 14100000,
+ "Realtime Control Works": 14400000,
+ "Redox Inc.": 13700000,
+ "Redtail Technology": 26100000,
+ "Reshoot": 19600000,
+ "Roadview": 17400000,
+ "Rohde Design": 33100000,
+ "Rome Technologies Inc.": 19400000,
+ "Ronningen Design": 3400000,
+ "Royal Court Academy of Martial Arts": 11000000,
+ "Royal Solutions": 64800000,
+ "RoyceFamily Computer Services": 10500000,
+ "Ryte Byte": 14400000,
+ "S-Docs": 2900000,
+ "S2 Technologies": 12300000,
+ "SCADA hacker": 21300000,
+ "SGA Software": 31200000,
+ "SKYGEN USA": 134300000,
+ "SWICKtech": 45800000,
+ "Safro Automotive Group": 233100000,
+ "Salute Mission Critical": 15600000,
+ "Satellite Receivers Ltd.": 8900000,
+ "Schumann Studio Graphic Design": 40000000,
+ "SecurIT LLC.": 22900000,
+ "Sergeant Laboratories": 34100000,
+ "Service CEO": 6000000,
+ "Service Express": 130000000,
+ "Shining Brow": 19000000,
+ "ShopWare Inc.": 16200000,
+ "Sieve Networks": 7000000,
+ "Sift Healthcare": 6200000,
+ "Simple Network Consulting": 39200000,
+ "Singlewire": 27000000,
+ "Six red": 35600000,
+ "Skye ODell": 10000000,
+ "Smart Data Solutions": 13600000,
+ "Smart ERP": 11700000,
+ "Smart IS": 18200000,
+ "Snap Programming": 6000000,
+ "Software Verify": 15000000,
+ "Soliton Technologies": 15000000,
+ "SpectrumIT": 10000000,
+ "Sportsselect": 8500000,
+ "Spyder Design": 19600000,
+ "Staff Trak": 37400000,
+ "Stamm Technologies": 7600000,
+ "Startup Milwaukee": 10000000,
+ "Sterling TechPages": 19400000,
+ "StrandControl": 60100000,
+ "Stratil": 6000000,
+ "Sunfire": 62900000,
+ "Sunsational Beach Vacations": 28800000,
+ "Swoop Search": 14900000,
+ "Symbology Creative": 45500000,
"Symbotic": 30000000,
- "Syngenta": 16700000000,
- "TBN": 3200000,
- "TCBY": 8800000,
- "TDK": 14000000000,
- "TOPS Club": 19600000,
- "TWO MEN AND A TRUCK": 41200000,
- "Tandy Leather Factory": 81600000,
- "Tempur-Pedic": 24700000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Tetra Pak": 11100000000,
- "The Bull at Pinehurst Farms": 2500000,
- "The Conservation Fund": 3900000,
- "The First Line": 18800000,
- "The Marcus": 556600000,
- "The Melting Pot": 31500000,
- "The Nielsen Company US LLC.": 3500000000,
- "The North Face": 2000000000,
- "The Republic": 10000000,
- "The Scoular Company": 4000000000,
- "Things Remembered": 300000000,
- "Thomson Reuters": 6500000000,
- "Thornton Tomasetti": 280000000,
- "Tilting Point Media LLC.": 53000000,
- "Timken": 4500000000,
- "Torrid": 1300000000,
- "Trelleborg": 3000000000,
- "Tuff Shed Incorporated": 300000000,
- "U-Haul": 2100000000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Department of Commerce": 17500000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UFP Industries": 9700000000,
- "UGG": 35000000,
- "UNTUCKit": 350000000,
- "US-ASEAN": 5800000,
- "USCIS": 15700000,
- "USGS": 5000000,
- "USTDA": 10000000,
- "UW Credit Union": 45900000,
- "Under Armour": 5700000000,
- "UniFirst": 2000000000,
- "Union Carbide": 5100000000,
- "United Rentals": 10700000000,
- "United States Environmental Protection Agency": 50000000,
- "Urban Ecology Center": 3300000,
- "Usg Interiors LLC.": 3500000000,
- "VCA Inc.": 1800000000,
- "VCY America": 9400000,
- "VITAC": 63300000,
- "Valpak": 43500000,
- "Vera Bradley": 513100000,
- "Veritiv": 7300000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "Voith": 4800000000,
- "Volkswagen": 51300000000,
- "W. W. Grainger": 15200000000,
- "WOCCU": 10000000,
- "WSP": 8900000000,
- "Wacker Neuson SE": 2200000000,
- "Walsworth": 200000000,
- "Warby Parker": 573100000,
- "Western & Southern Financial Group": 5300000000,
- "Western Products": 3800000,
- "Western States - Envelopes Labels & Packaging": 100000000,
- "Whelen": 500000000,
- "Which Wich": 79500000,
- "White Castle": 720600000,
- "Wilo": 1800000000,
- "Windermere Real Estate": 500000000,
- "Wisconsin Institute for Torah Study": 11200000,
- "Wje": 150000000,
+ "Symmetrical Solutions": 26600000,
+ "Symmetry Resource Group": 20900000,
+ "Symphony Corporation": 26800000,
+ "Sync-n-Scale": 7600000,
+ "Syndigo": 150000000,
+ "SynerComm": 12500000,
+ "Synnovation": 10500000,
+ "TBJ Consulting LLC.": 2900000,
+ "TC Networks": 23400000,
+ "TDD - The Design Department": 11100000,
+ "TEKLYNX": 25000000,
+ "TEKSystems Global Services Pvt. Ltd.": 7000000000,
+ "TIP Technologies": 19400000,
+ "Tabs3": 12200000,
+ "Tal Systems": 16400000,
+ "Taylor Computer Services": 20300000,
+ "Technical Support International": 46100000,
+ "Technology Plus": 15200000,
+ "Technomagination": 13200000,
+ "Techtoys": 19700000,
+ "Telaid Industries": 80000000,
+ "The Business Analyst": 14700000,
+ "The Computer Center": 6000000,
+ "The Enterprise Program": 39000000,
+ "The Floor Company Llc.": 32500000,
+ "The Saturn Partners": 12800000,
+ "The Weber Group Inc.": 11000000,
+ "Think Anew": 12400000,
+ "Thomas Design": 39000000,
+ "Thought Focus": 50000000,
+ "Three Rivers Technologies": 7000000,
+ "Ticomix": 19800000,
+ "TierPoint": 405000000,
+ "Time IQ": 35100000,
+ "TimeScape": 17100000,
+ "TriShulla": 28000000,
+ "TroubleLine": 19900000,
+ "TrustEsker": 37000000,
+ "Turner Creative": 20300000,
+ "Twin Cities Web Design": 2900000,
+ "Two3 Design Ink": 9400000,
+ "Unbeaten Path": 18100000,
+ "V-glass Llc.": 13500000,
+ "Valid Webs": 1400000,
+ "VanderBloemen Creative": 2400000,
+ "Vaultas": 24700000,
+ "Verhasselt Construction Inc.": 29300000,
+ "Veridt": 11700000,
+ "Verisma": 20000000,
+ "Verve Industrial Protection": 25000000,
+ "Vibrant Studios": 20500000,
+ "Villa Hosting": 24100000,
+ "Visionality Webs": 26800000,
+ "Vital Technology": 8900000,
+ "WTS Paradigm": 11000000,
+ "Waident": 50400000,
+ "Waterford Design": 11700000,
+ "Website Logic": 13000000,
+ "Webster Bath Remodeling": 15000000,
+ "Webstream Dynamics": 26600000,
+ "Webteam": 47500000,
+ "Well Stack": 70000000,
+ "Wengert": 19400000,
+ "WetStone Technologies": 33200000,
+ "Whitewater Analytics": 10000000,
+ "Whizkids Tech": 3500000,
+ "Wickidcool": 15200000,
+ "Wildcard Corp": 3000000000,
+ "Winter Systems": 39200000,
+ "WiredRE": 14500000,
+ "Wisconsin Web": 21800000,
+ "Wisconsin Web Host": 38500000,
+ "Wisdom Infotech": 25000000,
+ "Wissen": 9200000,
"Wolters Kluwer": 5400000000,
- "Woodcraft": 200000000,
- "Woodland Pattern": 8100000,
- "World Financial Group": 10000000,
- "World Tang Soo Do": 23000000,
- "World of Beer": 40000000,
- "Worthington Industries": 3900000000,
- "XPO Logistics": 7700000000,
- "Xcel Energy": 14000000000,
- "Xylem": 5200000000,
- "ZF Friedrichshafen": 43400000000,
- "Zenair": 17900000,
- "Ziebart": 1200000000,
- "Zumiez": 1100000000
+ "Workhorse Software Services": 2400000,
+ "XiongTech": 19800000,
+ "You Want RESULTS": 11700000,
+ "Z3 Technologies": 23200000,
+ "ZEBRADOG": 1200000,
+ "Zeus NewMedia": 16600000,
+ "ZigSwift": 23600000,
+ "aCubeMed": 17800000,
+ "adNET": 23100000,
+ "eDOCS America": 20300000,
+ "faciliCAD": 38100000,
+ "iPress LLC.": 2700000,
+ "iText Software": 18700000,
+ "ieMentor": 25900000,
+ "responsiveX": 31800000,
+ "we are. Versatile": 15000000
},
"Wyoming": {
- "ABC Supply": 12100000000,
- "ADM": 94400000000,
- "AFL-CIO": 138000000,
- "ANSAC": 6000000,
- "AR-15": 6000000,
- "Ace Hardware": 7800000000,
- "Aflac Incorporated": 19300000000,
- "Al-Anon": 10000000,
- "Alamo Rent a Car": 2900000,
- "Allied Universal": 20000000000,
- "Alzheimer's Association": 81500000,
- "Aman": 150000000,
- "American Eagle Outfitters": 5000000000,
- "Art of Living": 6000000,
- "Aviat Aircraft": 8000000,
- "BBR Music Group": 2600000,
- "BELFOR": 2000000000,
- "Baskin' Robbins": 117100000,
- "Beltone": 61600000,
- "Bicycle Health": 8700000,
- "Black Diamond Equipment": 4400000,
- "Buckle": 1300000000,
- "Cafe Rio": 215000000,
- "Caribou Coffee Operating Company Inc.": 750000000,
- "Center for Inquiry": 306000,
- "Central Wyoming Regional Airport": 12900000,
- "Chick-fil-A": 5800000000,
- "Circle K": 14700000000,
- "Clariant Ltd.": 5500000000,
- "Cornerstone Research": 250000000,
- "Crossroads of the West Council": 29600000,
- "Culligan": 1400000000,
- "Culver's": 1800000000,
- "DAV": 3900000,
- "Denbury": 1700000000,
- "Dollar General": 35300000000,
- "EMAC website": 5700000,
- "EOG Resources": 25000000000,
- "Einstein Bros. Bagels": 500000000,
- "Electrotechnisches Institut Theiler and Company": 1500000000,
- "Episcopal Church": 96100000,
- "Express Arrow": 12300000,
- "FMC Indonesia": 5400000000,
+ "1547 Critical Systems Realty": 10000000,
+ "Advance Graphics": 5100000,
+ "Alces Technologies": 6500000,
+ "Altered Images": 26900000,
+ "Amadensor": 30700000,
+ "Ameri-Tech Equipment": 24500000,
+ "Analytics India Magazine": 1000000,
+ "Anand Tech Media": 3300000,
+ "AppsDoc": 130000,
+ "Arrow Realty Company": 29300000,
+ "Basisadm": 16700000,
+ "Berkman": 2400000,
+ "Big Horn Enterprises": 2400000,
+ "Big Idea Advertising and Graphic Design": 1700000,
+ "Bighorn Web Design": 8900000,
+ "Billy Fire": 2200000,
+ "Bitcoin Web Hosting": 6000000,
+ "Bizzell": 3100000,
+ "BlackFog": 2400000,
+ "Bright Ideas Software": 29300000,
+ "Brilliantlime.github": 1400000,
+ "Brindleware": 1000000,
+ "BrunnerWEB": 16000000,
+ "Brxio": 2400000,
+ "Budget VM": 10000000,
+ "Bytes Managed IT": 5500000,
+ "CMIT Solutions": 60000000,
+ "CNSI": 200000000,
+ "CareRight Technologies": 2400000,
+ "Cheapsslsecurity": 11500000,
+ "Chris the Computer Guy": 19600000,
+ "Christie Technology": 13200000,
+ "CommBase Technical": 24500000,
+ "Communications Technologies": 37500000,
+ "CompuNet Inc.": 146600000,
+ "Conduktor": 2000000,
+ "ConvergeOne": 1600000000,
+ "CosTrack": 43200000,
+ "Creative Curiosity": 2400000,
+ "Crile Carvey Consulting": 23200000,
+ "CuddiHosting": 15800000,
+ "CyberSecOp": 10000000,
+ "Cygnus Softwares": 6000000,
+ "DXwand": 2000000,
+ "DataTribe": 1100000,
+ "Desktop Design": 799000,
+ "DigeTekS": 1400000,
+ "Digil\u00f6we": 351000,
+ "Digital Forensics Team": 4100000,
+ "Digital Spyders": 12000000,
+ "DomainSherpa": 7000000,
+ "Downtown Casper Wedding Walk": 22100000,
+ "Dray Dyekman Reed & Healey P.c.": 5600000,
+ "Dream Design Develop": 9200000,
+ "ESEARCH LOGIX": 1100000,
+ "EffOne": 499000,
+ "Elphill Technology": 2500000,
+ "Empower Solutions": 24600000,
+ "Entech USA Inc.": 37100000,
+ "Entre Technology Services": 32900000,
+ "Enzu": 27100000,
+ "Eunet": 413000,
+ "ExpoTools": 6000000,
"FactSet": 1500000000,
- "Ferrellgas": 2100000000,
- "Fluor Canada": 13700000000,
- "Freddy's Frozen Custard & Steakburgers": 535000000,
- "Frito-Lay Inc.": 19600000000,
- "GardaWorld": 3800000000,
- "Gillette News-Record": 7000000,
- "Good Times Burgers": 138700000,
- "Grindline Skateparks": 27600000,
- "HUB International Ltd.": 3200000000,
- "Halliburton": 19000000000,
- "Harbor Freight": 5000000000,
- "Helmerich & Payne": 1400000000,
- "Herbalife": 5200000000,
- "Hilcorp": 4000000000,
- "Hobby Lobby": 5300000000,
- "Holiday Stationstores": 3300000000,
- "Indiana Public Retirement System": 6200000,
- "Iron Workers": 2800000,
- "Jersey Mike's": 255400000,
- "Journeys company": 8600000,
- "Kaiser Permanente": 93100000000,
- "Kinder Morgan": 17700000000,
- "Kwik Shop": 595000000,
- "LUFKIN": 1500000000,
- "LeeWrangler Belgium Services BVBA": 371000,
+ "FactorView": 269000,
+ "Feryis": 2400000,
+ "Follow Up Boss": 7300000,
+ "Fortimize": 7000000,
+ "FueledBy": 236000,
+ "Ganib": 387000,
+ "Gannett Peak Technical Services": 6000000,
+ "Give Me Fish": 32500000,
+ "Gleecus": 1800000,
+ "GlockApps": 1400000,
+ "Greatis": 1400000,
+ "HARKEN DATA": 13800000,
+ "Handel Information Technologies": 4500000,
+ "Homepage Universe": 4100000,
+ "HydraNet": 2400000,
+ "IT Blueprint": 7000000,
+ "Images Of Wyoming": 18800000,
+ "Independent Software Solutions": 10500000,
+ "Infiniti Infosystems": 27800000,
+ "Intelligence Storm": 358000,
+ "Interyx": 28300000,
+ "JODOGO": 479000,
+ "K.I. Computing": 11200000,
+ "K2 Technologies": 5100000,
+ "KD Web Hosting Design": 3100000,
+ "KT Connections": 24900000,
+ "Knowlium": 246000,
+ "Krify": 2300000,
+ "Kuroit": 100000,
+ "LB Designs": 6100000,
+ "Lenoxica": 26700000,
"Level 3 Communications": 17500000000,
- "Lincare Holdings": 2000000000,
- "Little Caesars": 3800000000,
- "Long John Silver's": 404000000,
- "Los Angeles Athletic Club": 13500000,
- "Merit Energy": 9200000,
- "Mitchell Madison Group": 26300000,
- "Modere": 4900000,
- "Moyes Delta Gliders": 2100000,
- "NOAA Weather Radio": 36400000,
- "National Oilwell Varco": 7200000000,
- "OneMain Financial": 4100000000,
- "Oscar Schmidt Company": 17500000,
- "Outback Steakhouse": 2000000000,
- "Ovintiv": 7000000000,
- "Pace Analytical": 450000000,
- "Packers Plus": 240000000,
- "Pilgrim Radio": 15900000,
- "Pilot Flying J": 3000000000,
- "Pizza Ranch": 3400000,
- "Planned Parenthood": 1600000000,
- "Pretzelmaker": 125000000,
- "Principal Financial Group": 13900000000,
- "Progress Rail": 1500000000,
- "Quick Lane": 6000000,
- "Quiznos": 50000000,
- "RIBA Journal": 2000000,
- "Realtor": 118000000,
- "Red Wing Shoes": 700000000,
- "Rodgers Instruments Corporation": 6400000,
- "SGS S.A.": 28000000000,
- "SKECHERS USA Inc.": 6900000000,
- "Safelite": 2400000000,
- "Saint Louis Bread Company": 5900000000,
- "Sally Beauty Holdings": 2300000000,
- "Schlumberger Limited": 27800000000,
- "SemaConnect": 29000000,
- "ServiceMaster Clean": 48500000,
- "Shari's": 240000000,
- "Shoe Carnival": 1300000000,
- "Sigma Aldrich": 2800000000,
- "Simplot": 6000000000,
- "Sleep Number": 2100000000,
- "Stag Arms LLC.": 16000000,
- "Stanley Steemer": 9500000,
- "Stantec": 3100000000,
- "Stewart & Stevenson": 367000000,
- "Sulzer": 13800000000,
- "Sylvan Learning": 12600000,
- "TWO MEN AND A TRUCK": 41200000,
- "TacoTime": 14200000,
- "Tandy Leather Factory": 81600000,
- "Tata Chemicals": 1500000000,
- "Terex": 4400000000,
- "Terracon": 77100000,
- "Teton Gravity Research": 8000000,
- "The Dyrt": 4000000,
- "The Legal Aid": 18000000,
- "Tom Balding": 7000000,
- "Torrid": 1300000000,
- "Torrington WY": 5400000,
- "Trust for Public Land": 1200000,
- "U-Haul": 2100000000,
- "U. S. Department of Education": 11200000,
- "U.S Department of transportation": 1000000,
- "U.S. Courts": 1000000000,
- "U.S. Immigration and Customs Enforcement": 33000000,
- "UL Solutions": 2700000000,
- "USGS": 5000000,
- "United Country": 38000000,
- "United Hardware": 300000000,
- "United Rentals": 10700000000,
- "VCA Inc.": 1800000000,
- "Victoria's Secret": 5400000000,
- "Village inn": 10200000,
- "W. W. Grainger": 15200000000,
- "Western Sugar": 250000000,
- "Williams Companies": 11300000000,
+ "Lex Talus Corporation": 12500000,
+ "Lily Pad Creative": 5500000,
+ "Logicteca": 10000000,
+ "ME DeZign": 12900000,
+ "Manufactured Homes": 5000000,
+ "Marker": 25000000,
+ "Marr Software Professional Towing Software": 20300000,
+ "Metapointer": 6800000,
+ "Michael Knebel": 2700000,
+ "Mind's Eye Graphic Arts": 28400000,
+ "MindStream Analytics": 12000000,
+ "Miovision": 35000000,
+ "Mixio Labs": 1400000,
+ "Murhost": 142000,
+ "Myna Swap": 1000000,
+ "NXTKey": 4500000,
+ "Negocios IT Solutions": 4600000,
+ "Nenosystems": 6200000,
+ "Neos Alpha": 1200000,
+ "NetFu": 7000000,
+ "Newshopdesign": 50500000,
+ "Next Step Law Design": 1400000,
+ "OYZTA": 7000000,
+ "OrbitSoft": 7000000,
+ "Ostatic": 11900000,
+ "OutSprint": 2400000,
+ "Outperform Planning": 6000000,
+ "Pilgrim Hosting": 5000000,
+ "PlanMyLeave": 2300000,
+ "Portis Group": 31000000,
+ "Precise Testing Solution": 463000,
+ "Primetech LLC.": 1000000,
+ "Pro-Tow": 17000000,
+ "ProsperoWeb": 1800000,
+ "RJB Systems": 12400000,
+ "RSI Comany": 10700000,
+ "Red Baritone": 6000000,
+ "Rent Manager": 40900000,
+ "Ronningen Design": 3400000,
+ "STDev": 21500000,
+ "SURVIS": 315000,
+ "Secret Developers Inc.": 3200000,
+ "Security Innovation": 13500000,
+ "Shannon Watts Art & Design": 16600000,
+ "Silvertrac Software": 5200000,
+ "Simpleway": 3000000,
+ "SkillsTX": 6800000,
+ "Snowfly": 12100000,
+ "Soft Service": 310000,
+ "Solution Design Group": 50000000,
+ "Spearpoint Associates": 11600000,
+ "Sprintly": 6000000,
+ "Sql Power": 11700000,
+ "Stallion is": 1500000000,
+ "Starkode": 292000,
+ "Syndrome Technologies": 35000000,
+ "Systems Online": 34800000,
+ "Taction Software": 3000000,
+ "Team Networks": 14300000,
+ "Techesperto": 3600000,
+ "Teklysium": 542000,
+ "Teton Data": 4600000,
+ "The Design Burro": 15500000,
+ "The Pinnacle Group": 126000000,
+ "TimeZone LLC.": 4500000,
+ "Titan Electric Inc.": 31700000,
+ "Traveliana": 4400000,
+ "Tribal Software": 2400000,
+ "Truespire": 19300000,
+ "TurboFTP": 13300000,
+ "Variance Infotech": 33600000,
+ "Vartopia": 7000000,
+ "Veritek": 13700000,
+ "VirMedice": 28100000,
+ "Vitzo": 1400000,
+ "Water Drop Designs": 1400000,
+ "Wayfoundry": 28100000,
+ "We45": 5500000,
+ "Webninjaz": 4000000,
+ "Wengert": 19400000,
+ "Wesrom": 2400000,
+ "Western Sky Design": 27400000,
+ "Westwyoming": 20400000,
+ "Wind Hosting": 330000,
"Wolters Kluwer": 5400000000,
- "Wyoming Library": 32800000,
- "Wyoming State Bar": 20000000,
- "XPO Logistics": 7700000000,
- "Xylem": 5200000000,
- "Yellow Pages Directory": 15100000,
- "Zumiez": 1100000000
+ "WordSphere": 9200000,
+ "Worland": 28500000,
+ "Write Now Design": 2200000,
+ "ZAAX Consulting": 3400000,
+ "ZWOOKY": 1900000,
+ "Zachary Piper": 5000000,
+ "eWyndsong": 32900000,
+ "iBCSCORP Durban South Africa": 7000000,
+ "iQuest LLC.": 27000000
}
}
\ No newline at end of file