Banner: Web API: List certifications

Web API: List certifications

List certifications

The 'List Certifications' Web API allows users to search a database of occupational certification information by occupation, industry, or keyword. Results include certification name, certifying organization's contact information, requirement information and renewal information. It can be used in conjunction with a complementary service to get specific certification details.

About this data

This Web API gives information about occupational certifications and certifying organizations. The Certification Finder demonstrates how this data can be used. For more information on the data, please visit the Certification Finder help page.

Resource URL

https://api.careeronestop.org/v1/certificationfinder/{userId}/{keyword}/{directFlag}/{industry}/{certType}/{organization}/{occupation}/{agency}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}

Example Code

using System;

using System.Net.Http;

using System.Net.Http.Headers;

using System.Threading.Tasks;

namespace CareerOneStopAPISample

{

    class Program

    {

        static void Main(string[] args)

        {

            CreateRequest().Wait();

        }

        private static async Task CreateRequest()

        {

   

            var uri = new UriBuilder(Uri.UriSchemeHttps, "api.careeronestop.org")

            {

                Path = "/v1/certificationfinder/{userId}/{keyword}/{directFlag}/{industry}/{certType}/{organization}/{occupation}/{agency}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}"

            };

           

            using (var http = new HttpClient())

            {

                http.DefaultRequestHeaders.Accept.Clear();

                http.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "Your API Token");

                http.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                var response = await http.GetAsync(uri.Uri).ConfigureAwait(false);

                if (response.IsSuccessStatusCode)

                {

                    var result = await response.Content.ReadAsStringAsync().ConfigureAwait(false);

                }

            }

        }

    }

}
import java.io.IOException;

import java.net.URI;

import java.net.URISyntaxException;

import org.apache.http.HttpEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.utils.URIBuilder;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

public class CareerOneStopAPISample {

    public static void main(String[] args) throws IOException, URISyntaxException {

    URI uri = new URIBuilder()

        .setScheme("https")

        .setHost("api.careeronestop.org")

        .setPath("/v1/certificationfinder/{userId}/{keyword}/{directFlag}/{industry}/{certType}/{organization}/{occupation}/{agency}/{sortColumn}/{sortDirections}/{startRecord}/{limitRecord}")

        .build();

    CloseableHttpResponse response = null;

    HttpGet httpGet = null;

    try {

        CloseableHttpClient httpClient = HttpClients.createDefault();

        httpGet = new HttpGet(uri);

        httpGet.setHeader("Content-Type","application/json");

        httpGet.setHeader("Authorization", "Bearer Your API Token");

        response = httpClient.execute(httpGet);

        HttpEntity entity = response.getEntity();

        System.out.println(EntityUtils.toString(entity));

    } finally {

        if(httpGet != null) httpGet.releaseConnection();

        if(response != null) response.close();

    }

   }

}

Request Parameters

Refer to the following table for a list of the required and optional request parameters. All parameter names and values are case sensitive. Important: You must provide all required parameters. Submitting an empty request does not return all possible results, an empty request returns an error.

Parameter Name Value Required? Description
API Token
String
Yes
This value is the unique API Token provided during the CareerOneStop Web API registration process
userId
String
Yes This value is the unique UserID provided during the CareerOneStop Web API registration process
keyword
String
Yes This value accepts a search term or an ONET code
directFlag
String   
Yes This value is needs to be set to 'D' if the certifications results are direct mapping to the ONET code. Set this vlaue to 'I' if you want to include closely related certifications into the resultset. This value is used only when IsOnetCode is set to 'Y'. Default value is 0 for keyword search.
industry
String   
Yes This is a filter to limit the records based on the selected industry from the initial resultset. The required filter can be obtained from the filterlist values
certtype
String   
Yes This is a filter to limit the records based on the selected certification type from the initial resultset. The required filter can be obtained from the filterlist values
organization
String   
Yes This is a filter to limit the records based on the selected organization from the initial resultset. The required filter can be obtained from the filterlist values
occupation 
String    Yes This is a filter to limit the records based on the selected occupation from the initial resultset. The required filter can be obtained from the filterlist values
agency
String   
Yes This is a filter to limit the records based on the selected agency from the initial resultset. The required filter can be obtained from the filterset values
sortColumns
String   
Yes This value is for sorting the columns. Valid values are: Name, Organization or TypeOrder, and default value is 0 for relevance
sortDirections
String   
Yes Use this parameter to set the ordering of the results. Valid values are ASC or DESC, default value is 0 for relevance.
startRecord
Integer
Yes This value is to set the starting record. Default value 0 is for the first record.
limitRecord
Integer
Yes This value sets the limit of the maximum number of records to be returned. Default value is 10.

Response Structure

{

  "CertList": [

    {

      "Id": "5733-A",

      "Name": "Nurse Manager and Leader",

      "Url": "http://www.aone.org/resources/certification/about_certifications.shtml#cnml",

      "Organization": "American Association of Critical-Care Nurses ",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "NCCA",

          "Order": "2"

        }

      ],

      "OrganizationAddress": "101 Columbia, Aliso Viejo, CA 92656-1491",

      "OrganizationUrl": "http://www.aacn.org/",

      "Acronym": "CNML",

      "Description": "The Certified Nurse Manager and Leader (CNML) credential, a collaborative effort between the American Organization of Nurse Executives (AONE) Credentialing Center and the American Association of Critical-Care Nurses (AACN) Certification Corporation, is now available.\r\n\r\nCNML certification gives nurse managers a way to validate their knowledge as they strive to excel in their demanding roles, carrying out complex leadership responsibilities that directly affect the quality of care to patients and families.\r\n\r\n",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Either training or work experience required, but not both?",

          "Value": "No"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 3  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "No"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "3782-A",

      "Name": "Certified Patient Care Technician/Associate/Nurse Technician",

      "Url": "http://www.nhanow.com/certifications/patient-care-technician",

      "Organization": "National Healthcareer Association",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "In-Demand",

          "Order": "1"

        },

        {

          "Name": "MILITARY",

          "Order": "4"

        }

      ],

      "OrganizationAddress": "134 Evergreen Place, 9th Fl., East Orange, NJ, 07018",

      "OrganizationUrl": "http://www.nhanow.com/home",

      "Acronym": "CPCT/CPCA/CNT",

      "Description": "A Certified Patient Care Technician/Associate/Nurse Technician (CPCT/CPCA/CNT) works with doctors, nurses and other healthcare professionals to provide direct patient care in a variety of healthcare environments. A CPCT/CPCA/CNT may perform some or all of the following duties. However., they are not limited to just these responsibilities:

Basic patient care under the direction of nursing staff

Feeding, bathing, or moving patients and changing linens

Answer patients' call lights

Set up equipment

Escort patients to the operating and examining rooms

Gives injections or treatments and performs venipuncture laboratory test

Performs EKG's.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Either training or work experience required, but not both?",

          "Value": "No"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 2  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "No"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "No"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "No"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "7394-A",

      "Name": "Certified Nurse Assistant",

      "Url": "http://www.redcross.org/take-a-class/program-highlights/babysitting-caregiving",

      "Organization": "American Red Cross",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "JOB CORPS",

          "Order": "5"

        }

      ],

      "OrganizationAddress": "Public Inquiry Office, 432 18th Street, NW, Washington, DC 20006",

      "OrganizationUrl": "http://www.redcross.org",

      "Acronym": null,

      "Description": "Train to be a certified nurse assistant working with other health care professionals to provide quality care for elderly or sick individuals in nursing homes and hospitals and at home.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "No"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "No"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "2276-A",

      "Name": "Adult Nurse Practitioner",

      "Url": "http://www.aanpcert.org/certs/applications",

      "Organization": "American Academy of Nurse Practitioners Certification Program",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "NCCA",

          "Order": "2"

        },

        {

          "Name": "MILITARY",

          "Order": "4"

        }

      ],

      "OrganizationAddress": "Capital Station, LBJ Building, P.O. Box 12926,  Austin, TX 78711-2926",

      "OrganizationUrl": "http://www.aanpcert.org/index",

      "Acronym": "ANP",

      "Description": "The purpose of the American Academy of Nurse Practitioners National Certification Program is to provide a valid and reliable program for entry-level nurse practitioners to recognize their education, knowledge and professional expertise. The Academy Certification Program provides a process for validation of an advanced practice nurse's qualifications and knowledge for practice as a nurse practitioner.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Either training or work experience required, but not both?",

          "Value": "No"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 5  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "Yes"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "0661-A",

      "Name": "Certified Registered Nurse First Assistant",

      "Url": "http://www.cc-institute.org/crnfa",

      "Organization": "Competency and Credentialing Institute",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "NCCA",

          "Order": "2"

        },

        {

          "Name": "MILITARY",

          "Order": "4"

        }

      ],

      "OrganizationAddress": "2170 South Parker Road, Suite 295, Denver, CO 80231",

      "OrganizationUrl": "http://www.cc-institute.org/",

      "Acronym": "CRNFA",

      "Description": "CRNFA credentialing represents a level of professional achievement and a demonstrated knowledge of clinical competence and practice standards. Just as important, it demonstrates proficiency in support of quality patient care and sets a standard of commitment to the profession of operating room nursing.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 5  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "Yes"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "5694-A",

      "Name": "Acute Care Nurse Practitioner (Adult)",

      "Url": "http://www.aacn.org/wd/certifications/content/acnpclanding.pcms?menu=certification",

      "Organization": "American Association of Critical-Care Nurses ",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "NCCA",

          "Order": "2"

        }

      ],

      "OrganizationAddress": "101 Columbia, Aliso Viejo, CA 92656-1491",

      "OrganizationUrl": "http://www.aacn.org/",

      "Acronym": "ACNPC",

      "Description": "ACNPC is a registered service mark of AACN Certification Corporation and denotes certification as an acute care nurse practitioner as granted by AACN Certification Corporation. Adult acute care nurse practitioners who have not achieved ACNPC certification status or whose ACNPC status has lapsed are not authorized to use the ACNPC credential.\r\n\r\n",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 5  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "No"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "10743-A",

      "Name": "Critical Care Registered Nurse",

      "Url": "http://www.aacn.org/wd/certifications/content/ccrnlanding.pcms?menu=certification",

      "Organization": "American Association of Critical-Care Nurses ",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [

        {

          "Name": "In-Demand",

          "Order": "1"

        },

        {

          "Name": "NCCA",

          "Order": "2"

        }

      ],

      "OrganizationAddress": "101 Columbia, Aliso Viejo, CA 92656-1491",

      "OrganizationUrl": "http://www.aacn.org/",

      "Acronym": "CCRN",

      "Description": "CCRN certification is achieved by those acute and critical care nurses who pass a CCRN exam in neonatal, pediatric or adult acute/critical care nursing. CCRN certification denotes to the public those practitioners who possess a distinct and clearly defined body of knowledge called acute/critical care nursing.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 3  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Continuing Professional Development(CPD)?",

          "Value": "No"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "6089-A",

      "Name": "National Nurse Aide Assessment Program",

      "Url": "https://www.ncsbn.org/nnaap-exam.htm",

      "Organization": "National Council of State Boards of Nursing, Inc.",

      "Type": "Core",

      "TypeOrder": "A",

      "Related": null,

      "CertAccredAgencyList": [],

      "OrganizationAddress": "111 East Wacker Drive, Suite 2900 Chicago, IL 60601-4277",

      "OrganizationUrl": "https://www.ncsbn.org/index.htm",

      "Acronym": "NNAAP",

      "Description": "The National Nurse Aide Assessment Program (NNAAP) is the largest nurse aide certification examination program in the United States. The nurse aide exam consists of two components; a written or oral portion and a skills-demonstration portion. The oral portion is offered in English and Spanish. Each candidate must successfully complete both components of the exam before a state can add their name to the state nurse aide registry.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "No"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "No"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "2440-B",

      "Name": "Advanced Practice Nurse in Genetics",

      "Url": "http://www.isong.org/ISONG_genetic_nurse.php",

      "Organization": "International Society of Nurses in Genetics",

      "Type": "Advanced",

      "TypeOrder": "B",

      "Related": null,

      "CertAccredAgencyList": [],

      "OrganizationAddress": "2593 West 15th St. South, Newton, IA 50208-8500",

      "OrganizationUrl": "http://www.isong.org/",

      "Acronym": "APNG",

      "Description": null,

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 5  Year(s)"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "No"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    },

    {

      "Id": "10484-B",

      "Name": "Clinical Nurse Specialist Perioperative Certification",

      "Url": "http://www.cc-institute.org/cns-cp",

      "Organization": "Competency and Credentialing Institute",

      "Type": "Advanced",

      "TypeOrder": "B",

      "Related": null,

      "CertAccredAgencyList": [],

      "OrganizationAddress": "2170 South Parker Road, Suite 295, Denver, CO 80231",

      "OrganizationUrl": "http://www.cc-institute.org/",

      "Acronym": "CNS-CP",

      "Description": "CNS-CP certification validates the achievement of the masters-prepared CNS who has chosen to seek current proficiency as an advanced practice nurse practicing in the perioperative (pre-, intra-, and post-operative) setting. The purpose of the CNS-CP exam is to provide recognition for those CNSs serving in an advanced practice perioperative specialty. The exam does not confer initial licensure as an APRN. This specialty certification is in addition to, not in place of, primary population-focused certification.",

      "CertDetailList": [

        {

          "Name": "Education and Training Required?",

          "Value": "Yes"

        },

        {

          "Name": "Work Experience Required?",

          "Value": "Yes"

        },

        {

          "Name": "Oral or Written Exam Required?",

          "Value": "Yes"

        },

        {

          "Name": "Renewal Required?",

          "Value": "Every 5  Year(s)"

        },

        {

          "Name": "Renew through Continuing Educational Units(CEU)?",

          "Value": "Yes"

        },

        {

          "Name": "Renew through Re-Examination?",

          "Value": "Yes"

        },

        {

          "Name": "Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?",

          "Value": "Yes"

        }

      ],

      "CertTestOption": [],

      "ExamDetail": null

    }

  ],

  "CertAccredAgencyLegend": [

    {

      "Acronym": "In-Demand",

      "Description": "In-demand certification."

    },

    {

      "Acronym": "NCCA",

      "Description": "This certification is accredited by NCCA."

    },

    {

      "Acronym": "ANSI",

      "Description": "This certification is accredited by ANSI."

    },

    {

      "Acronym": "MILITARY",

      "Description": "This certification is related to military occupational specialties."

    },

    {

      "Acronym": "JOB CORPS",

      "Description": "This certification is related to Job Corps training programs."

    },

    {

      "Acronym": "NAM",

      "Description": "This certification is third-party industry-endorsed."

    },

    {

      "Acronym": "HPN",

      "Description": "Health Professionals Network."

    },

    {

      "Acronym": "CAREER CLUSTERS",

      "Description": "This certification is related to Career and Technical Education Career Clusters."

    }

  ],

  "RecordCount": 593,

  "DidYouMean": "",

  "AutoCorrection": "",

  "IsDirectMatch": "K",

  "OccupationCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Registered Nurses (171)",

        "Count": 171,

        "Value": "4294967261"

      },

      {

        "Item": "Nurse Practitioners (75)",

        "Count": 75,

        "Value": "4294967264"

      },

      {

        "Item": "Medical and Health Services Managers (61)",

        "Count": 61,

        "Value": "4294966806"

      },

      {

        "Item": "Critical Care Nurses (54)",

        "Count": 54,

        "Value": "4294967262"

      },

      {

        "Item": "Medical Records and Health Information Technicians (53)",

        "Count": 53,

        "Value": "4294966324"

      },

      {

        "Item": "Clinical Nurse Specialists (50)",

        "Count": 50,

        "Value": "4294966843"

      },

      {

        "Item": "Acute Care Nurses (48)",

        "Count": 48,

        "Value": "4294966841"

      },

      {

        "Item": "Medical Assistants (46)",

        "Count": 46,

        "Value": "4294966893"

      },

      {

        "Item": "Vocational Education Teachers, Postsecondary (43)",

        "Count": 43,

        "Value": "4294966983"

      },

      {

        "Item": "Internists, General (38)",

        "Count": 38,

        "Value": "4294967129"

      },

      {

        "Item": "Medical Secretaries (33)",

        "Count": 33,

        "Value": "4294966325"

      },

      {

        "Item": "Licensed Practical and Licensed Vocational Nurses (30)",

        "Count": 30,

        "Value": "4294966539"

      },

      {

        "Item": "Healthcare Social Workers (29)",

        "Count": 29,

        "Value": "4294966980"

      },

      {

        "Item": "Mental Health and Substance Abuse Social Workers (29)",

        "Count": 29,

        "Value": "4294966981"

      },

      {

        "Item": "Advanced Practice Psychiatric Nurses (27)",

        "Count": 27,

        "Value": "4294966842"

      },

      {

        "Item": "Nurse Anesthetists (26)",

        "Count": 26,

        "Value": "4294966155"

      },

      {

        "Item": "Billing, Cost, and Rate Clerks (25)",

        "Count": 25,

        "Value": "4294966199"

      },

      {

        "Item": "Psychiatrists (24)",

        "Count": 24,

        "Value": "4294967086"

      },

      {

        "Item": "Substance Abuse and Behavioral Disorder Counselors (24)",

        "Count": 24,

        "Value": "4294966975"

      },

      {

        "Item": "Nurse Midwives (21)",

        "Count": 21,

        "Value": "4294966538"

      },

      {

        "Item": "Family and General Practitioners (20)",

        "Count": 20,

        "Value": "4294967116"

      },

      {

        "Item": "Health Educators (20)",

        "Count": 20,

        "Value": "4294966607"

      },

      {

        "Item": "Veterinary Technologists and Technicians (19)",

        "Count": 19,

        "Value": "4294966103"

      },

      {

        "Item": "Nursing Assistants (18)",

        "Count": 18,

        "Value": "4294965875"

      },

      {

        "Item": "Home Health Aides (17)",

        "Count": 17,

        "Value": "4294965874"

      },

      {

        "Item": "Mental Health Counselors (17)",

        "Count": 17,

        "Value": "4294966974"

      },

      {

        "Item": "Pediatricians, General (17)",

        "Count": 17,

        "Value": "4294967224"

      },

      {

        "Item": "Child, Family, and School Social Workers (16)",

        "Count": 16,

        "Value": "4294966979"

      },

      {

        "Item": "Clinical Psychologists (15)",

        "Count": 15,

        "Value": "4294966396"

      },

      {

        "Item": "Rehabilitation Counselors (15)",

        "Count": 15,

        "Value": "4294966978"

      },

      {

        "Item": "Physical Therapists (14)",

        "Count": 14,

        "Value": "4294966935"

      },

      {

        "Item": "Physician Assistants (14)",

        "Count": 14,

        "Value": "4294967223"

      },

      {

        "Item": "Counseling Psychologists (13)",

        "Count": 13,

        "Value": "4294966397"

      },

      {

        "Item": "Dietitians and Nutritionists (13)",

        "Count": 13,

        "Value": "4294966610"

      },

      {

        "Item": "Neurologists (13)",

        "Count": 13,

        "Value": "4294967095"

      },

      {

        "Item": "Physical Medicine and Rehabilitation Physicians (13)",

        "Count": 13,

        "Value": "4294967092"

      },

      {

        "Item": "Medical and Clinical Laboratory Technicians (12)",

        "Count": 12,

        "Value": "4294966894"

      },

      {

        "Item": "Occupational Therapists (12)",

        "Count": 12,

        "Value": "4294967033"

      },

      {

        "Item": "Training and Development Specialists (12)",

        "Count": 12,

        "Value": "4294967199"

      },

      {

        "Item": "Clinical Research Coordinators (11)",

        "Count": 11,

        "Value": "4294965597"

      },

      {

        "Item": "Personal Care Aides (11)",

        "Count": 11,

        "Value": "4294966475"

      },

      {

        "Item": "Veterinary Assistants and Laboratory Animal Caretakers (10)",

        "Count": 10,

        "Value": "4294966104"

      },

      {

        "Item": "Medical and Clinical Laboratory Technologists (9)",

        "Count": 9,

        "Value": "4294966895"

      },

      {

        "Item": "Occupational Health and Safety Specialists (9)",

        "Count": 9,

        "Value": "4294967153"

      },

      {

        "Item": "Occupational Therapy Assistants (9)",

        "Count": 9,

        "Value": "4294967037"

      },

      {

        "Item": "Psychiatric Technicians (9)",

        "Count": 9,

        "Value": "4294966958"

      },

      {

        "Item": "Compliance Managers (8)",

        "Count": 8,

        "Value": "4294966331"

      },

      {

        "Item": "Construction Managers (8)",

        "Count": 8,

        "Value": "4294966723"

      },

      {

        "Item": "Hospitalists (8)",

        "Count": 8,

        "Value": "4294967263"

      },

      {

        "Item": "Marriage and Family Therapists (8)",

        "Count": 8,

        "Value": "4294966977"

      },

      {

        "Item": "Occupational Health and Safety Technicians (8)",

        "Count": 8,

        "Value": "4294967157"

      },

      {

        "Item": "Phlebotomists (8)",

        "Count": 8,

        "Value": "4294966595"

      },

      {

        "Item": "Recreational Therapists (8)",

        "Count": 8,

        "Value": "4294967066"

      },

      {

        "Item": "Clinical, Counseling, and School Psychologists (7)",

        "Count": 7,

        "Value": "4294966898"

      },

      {

        "Item": "First-Line Supervisors of Construction Trades and Extraction Workers (7)",

        "Count": 7,

        "Value": "4294966939"

      },

      {

        "Item": "Health Specialties Teachers, Postsecondary (7)",

        "Count": 7,

        "Value": "4294966596"

      },

      {

        "Item": "Interpreters and Translators (7)",

        "Count": 7,

        "Value": "4294966447"

      },

      {

        "Item": "Midwives (7)",

        "Count": 7,

        "Value": "4294966540"

      },

      {

        "Item": "Nursing Instructors and Teachers, Postsecondary (7)",

        "Count": 7,

        "Value": "4294966071"

      },

      {

        "Item": "Obstetricians and Gynecologists (7)",

        "Count": 7,

        "Value": "4294967105"

      },

      {

        "Item": "Psychiatric Aides (7)",

        "Count": 7,

        "Value": "4294966959"

      },

      {

        "Item": "Cardiovascular Technologists and Technicians (6)",

        "Count": 6,

        "Value": "4294967072"

      },

      {

        "Item": "Educational, Guidance, School, and Vocational Counselors (6)",

        "Count": 6,

        "Value": "4294966976"

      },

      {

        "Item": "Industrial Production Managers (6)",

        "Count": 6,

        "Value": "4294966985"

      },

      {

        "Item": "Informatics Nurse Specialists (6)",

        "Count": 6,

        "Value": "4294966300"

      },

      {

        "Item": "Nonfarm Animal Caretakers (6)",

        "Count": 6,

        "Value": "4294966534"

      },

      {

        "Item": "Occupational Therapy Aides (6)",

        "Count": 6,

        "Value": "4294967034"

      },

      {

        "Item": "Pharmacists (6)",

        "Count": 6,

        "Value": "4294966658"

      },

      {

        "Item": "Radiologists (6)",

        "Count": 6,

        "Value": "4294967084"

      },

      {

        "Item": "Sports Medicine Physicians (6)",

        "Count": 6,

        "Value": "4294967118"

      },

      {

        "Item": "Surgeons (6)",

        "Count": 6,

        "Value": "4294967123"

      },

      {

        "Item": "Anesthesiologists (5)",

        "Count": 5,

        "Value": "4294967126"

      },

      {

        "Item": "Education Administrators, Postsecondary (5)",

        "Count": 5,

        "Value": "4294965646"

      },

      {

        "Item": "Exercise Physiologists (5)",

        "Count": 5,

        "Value": "4294966670"

      },

      {

        "Item": "Financial Managers (5)",

        "Count": 5,

        "Value": "4294967271"

      },

      {

        "Item": "First-Line Supervisors of Production and Operating Workers (5)",

        "Count": 5,

        "Value": "4294967168"

      },

      {

        "Item": "Physical Therapist Assistants (5)",

        "Count": 5,

        "Value": "4294967035"

      },

      {

        "Item": "Preventive Medicine Physicians (5)",

        "Count": 5,

        "Value": "4294967089"

      },

      {

        "Item": "Quality Control Systems Managers (5)",

        "Count": 5,

        "Value": "4294966804"

      },

      {

        "Item": "Respiratory Therapists (5)",

        "Count": 5,

        "Value": "4294967073"

      },

      {

        "Item": "Architectural and Engineering Managers (4)",

        "Count": 4,

        "Value": "4294966694"

      },

      {

        "Item": "Career/Technical Education Teachers, Secondary School (4)",

        "Count": 4,

        "Value": "4294966460"

      },

      {

        "Item": "Clergy (4)",

        "Count": 4,

        "Value": "4294966228"

      },

      {

        "Item": "Construction Laborers (4)",

        "Count": 4,

        "Value": "4294966728"

      },

      {

        "Item": "Dermatologists (4)",

        "Count": 4,

        "Value": "4294967121"

      },

      {

        "Item": "Directors, Religious Activities and Education (4)",

        "Count": 4,

        "Value": "4294966229"

      },

      {

        "Item": "Electrical and Electronic Equipment Assemblers (4)",

        "Count": 4,

        "Value": "4294966019"

      },

      {

        "Item": "Electromechanical Equipment Assemblers (4)",

        "Count": 4,

        "Value": "4294965989"

      },

      {

        "Item": "Emergency Management Directors (4)",

        "Count": 4,

        "Value": "4294966799"

      },

      {

        "Item": "Emergency Medical Technicians and Paramedics (4)",

        "Count": 4,

        "Value": "4294967057"

      },

      {

        "Item": "Environmental Science and Protection Technicians, Including Health (4)",

        "Count": 4,

        "Value": "4294967156"

      },

      {

        "Item": "Environmental Scientists and Specialists, Including Health (4)",

        "Count": 4,

        "Value": "4294967155"

      },

      {

        "Item": "General and Operations Managers (4)",

        "Count": 4,

        "Value": "4294967208"

      },

      {

        "Item": "Inspectors, Testers, Sorters, Samplers, and Weighers (4)",

        "Count": 4,

        "Value": "4294967134"

      },

      {

        "Item": "Medical Scientists, Except Epidemiologists (4)",

        "Count": 4,

        "Value": "4294967102"

      },

      {

        "Item": "Nuclear Medicine Physicians (4)",

        "Count": 4,

        "Value": "4294966037"

      },

      {

        "Item": "Ophthalmologists (4)",

        "Count": 4,

        "Value": "4294965496"

      },

      {

        "Item": "Pathologists (4)",

        "Count": 4,

        "Value": "4294967109"

      },

      {

        "Item": "Physical Therapist Aides (4)",

        "Count": 4,

        "Value": "4294967036"

      },

      {

        "Item": "Physicians and Surgeons, All Other (4)",

        "Count": 4,

        "Value": "4294967119"

      },

      {

        "Item": "Police, Fire, and Ambulance Dispatchers (4)",

        "Count": 4,

        "Value": "4294966951"

      },

      {

        "Item": "Radiologic Technicians (4)",

        "Count": 4,

        "Value": "4294966274"

      },

      {

        "Item": "Self-Enrichment Education Teachers (4)",

        "Count": 4,

        "Value": "4294966644"

      },

      {

        "Item": "Social and Community Service Managers (4)",

        "Count": 4,

        "Value": "4294966928"

      },

      {

        "Item": "Social and Human Service Assistants (4)",

        "Count": 4,

        "Value": "4294966453"

      },

      {

        "Item": "Veterinarians (4)",

        "Count": 4,

        "Value": "4294966810"

      },

      {

        "Item": "Aerospace Engineering and Operations Technicians (3)",

        "Count": 3,

        "Value": "4294966735"

      },

      {

        "Item": "Allergists and Immunologists (3)",

        "Count": 3,

        "Value": "4294967128"

      },

      {

        "Item": "Art Therapists (3)",

        "Count": 3,

        "Value": "4294966265"

      },

      {

        "Item": "Chief Executives (3)",

        "Count": 3,

        "Value": "4294966642"

      },

      {

        "Item": "Clinical Data Managers (3)",

        "Count": 3,

        "Value": "4294965487"

      },

      {

        "Item": "Electro-Mechanical Technicians (3)",

        "Count": 3,

        "Value": "4294966736"

      },

      {

        "Item": "First-Line Supervisors of Mechanics, Installers, and Repairers (3)",

        "Count": 3,

        "Value": "4294967167"

      },

      {

        "Item": "Fitness and Wellness Coordinators (3)",

        "Count": 3,

        "Value": "4294966612"

      },

      {

        "Item": "Industrial Engineering Technicians (3)",

        "Count": 3,

        "Value": "4294966737"

      },

      {

        "Item": "Industrial Safety and Health Engineers (3)",

        "Count": 3,

        "Value": "4294966803"

      },

      {

        "Item": "Information Technology Project Managers (3)",

        "Count": 3,

        "Value": "4294966846"

      },

      {

        "Item": "Mechanical Engineering Technicians (3)",

        "Count": 3,

        "Value": "4294966738"

      },

      {

        "Item": "Medical Equipment Preparers (3)",

        "Count": 3,

        "Value": "4294966869"

      },

      {

        "Item": "Medical Transcriptionists (3)",

        "Count": 3,

        "Value": "4294966083"

      },

      {

        "Item": "Podiatrists (3)",

        "Count": 3,

        "Value": "4294967075"

      },

      {

        "Item": "Poets, Lyricists and Creative Writers (3)",

        "Count": 3,

        "Value": "4294966897"

      },

      {

        "Item": "Product Safety Engineers (3)",

        "Count": 3,

        "Value": "4294966801"

      },

      {

        "Item": "Recreation and Fitness Studies Teachers, Postsecondary (3)",

        "Count": 3,

        "Value": "4294966617"

      },

      {

        "Item": "Recreation Workers (3)",

        "Count": 3,

        "Value": "4294966927"

      },

      {

        "Item": "Regulatory Affairs Specialists (3)",

        "Count": 3,

        "Value": "4294965977"

      },

      {

        "Item": "School Psychologists (3)",

        "Count": 3,

        "Value": "4294966212"

      },

      {

        "Item": "Security Management Specialists (3)",

        "Count": 3,

        "Value": "4294966342"

      },

      {

        "Item": "Speech-Language Pathologists (3)",

        "Count": 3,

        "Value": "4294967070"

      },

      {

        "Item": "Urologists (3)",

        "Count": 3,

        "Value": "4294967077"

      },

      {

        "Item": "Administrative Services Managers (2)",

        "Count": 2,

        "Value": "4294967203"

      },

      {

        "Item": "Auditors (2)",

        "Count": 2,

        "Value": "4294967273"

      },

      {

        "Item": "Billing and Posting Clerks (2)",

        "Count": 2,

        "Value": "4294965873"

      },

      {

        "Item": "Biological Technicians (2)",

        "Count": 2,

        "Value": "4294967148"

      },

      {

        "Item": "Biomedical Engineers (2)",

        "Count": 2,

        "Value": "4294966868"

      },

      {

        "Item": "Carpenters (2)",

        "Count": 2,

        "Value": "4294965870"

      },

      {

        "Item": "Civil Engineering Technicians (2)",

        "Count": 2,

        "Value": "4294966725"

      },

      {

        "Item": "Community Health Workers (2)",

        "Count": 2,

        "Value": "4294965283"

      },

      {

        "Item": "Compliance Officers (2)",

        "Count": 2,

        "Value": "4294966645"

      },

      {

        "Item": "Computer and Information Systems Managers (2)",

        "Count": 2,

        "Value": "4294966961"

      },

      {

        "Item": "Computer Science Teachers, Postsecondary (2)",

        "Count": 2,

        "Value": "4294967245"

      },

      {

        "Item": "Computer User Support Specialists (2)",

        "Count": 2,

        "Value": "4294967283"

      },

      {

        "Item": "Dietetic Technicians (2)",

        "Count": 2,

        "Value": "4294966611"

      },

      {

        "Item": "Electrical and Electronic Engineering Technicians (2)",

        "Count": 2,

        "Value": "4294966943"

      },

      {

        "Item": "Electrical Engineering Technicians (2)",

        "Count": 2,

        "Value": "4294966945"

      },

      {

        "Item": "Electrical Engineers (2)",

        "Count": 2,

        "Value": "4294966744"

      },

      {

        "Item": "Electronics Engineering Technicians (2)",

        "Count": 2,

        "Value": "4294966944"

      },

      {

        "Item": "Electronics Engineers, Except Computer (2)",

        "Count": 2,

        "Value": "4294966938"

      },

      {

        "Item": "Environmental Engineering Technicians (2)",

        "Count": 2,

        "Value": "4294967149"

      },

      {

        "Item": "Epidemiologists (2)",

        "Count": 2,

        "Value": "4294966135"

      },

      {

        "Item": "Financial Managers, Branch or Department (2)",

        "Count": 2,

        "Value": "4294966667"

      },

      {

        "Item": "First-Line Supervisors of Animal Husbandry and Animal Care Workers (2)",

        "Count": 2,

        "Value": "4294966101"

      },

      {

        "Item": "Fitness Trainers and Aerobics Instructors (2)",

        "Count": 2,

        "Value": "4294966756"

      },

      {

        "Item": "Healthcare Practitioners and Technical Workers, All Other (2)",

        "Count": 2,

        "Value": "4294965139"

      },

      {

        "Item": "Healthcare Support Workers, All Other (2)",

        "Count": 2,

        "Value": "4294965140"

      },

      {

        "Item": "Home Economics Teachers, Postsecondary (2)",

        "Count": 2,

        "Value": "4294966451"

      },

      {

        "Item": "Instructional Coordinators (2)",

        "Count": 2,

        "Value": "4294965475"

      },

      {

        "Item": "Janitors and Cleaners, Except Maids and Housekeeping Cleaners (2)",

        "Count": 2,

        "Value": "4294966545"

      },

      {

        "Item": "Lodging Managers (2)",

        "Count": 2,

        "Value": "4294967204"

      },

      {

        "Item": "Maids and Housekeeping Cleaners (2)",

        "Count": 2,

        "Value": "4294966544"

      },

      {

        "Item": "Manufacturing Engineers (2)",

        "Count": 2,

        "Value": "4294966692"

      },

      {

        "Item": "Mechanical Engineers (2)",

        "Count": 2,

        "Value": "4294966746"

      },

      {

        "Item": "Psychology Teachers, Postsecondary (2)",

        "Count": 2,

        "Value": "4294965493"

      },

      {

        "Item": "Radiologic Technologists (2)",

        "Count": 2,

        "Value": "4294966272"

      },

      {

        "Item": "Regulatory Affairs Managers (2)",

        "Count": 2,

        "Value": "4294965555"

      },

      {

        "Item": "Respiratory Therapy Technicians (2)",

        "Count": 2,

        "Value": "4294965563"

      },

      {

        "Item": "Social Work Teachers, Postsecondary (2)",

        "Count": 2,

        "Value": "4294965964"

      },

      {

        "Item": "Social Workers, All Other (2)",

        "Count": 2,

        "Value": "4294965135"

      },

      {

        "Item": "Special Education Teachers, Secondary School (2)",

        "Count": 2,

        "Value": "4294966464"

      },

      {

        "Item": "Surgical Technologists (2)",

        "Count": 2,

        "Value": "4294966625"

      },

      {

        "Item": "Treasurers and Controllers (2)",

        "Count": 2,

        "Value": "4294967221"

      },

      {

        "Item": "Aerospace Engineers (1)",

        "Count": 1,

        "Value": "4294966741"

      },

      {

        "Item": "Bill and Account Collectors (1)",

        "Count": 1,

        "Value": "4294965579"

      },

      {

        "Item": "Bioinformatics Technicians (1)",

        "Count": 1,

        "Value": "4294965488"

      },

      {

        "Item": "Biostatisticians (1)",

        "Count": 1,

        "Value": "4294965574"

      },

      {

        "Item": "Business Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "4294967016"

      },

      {

        "Item": "Childcare Workers (1)",

        "Count": 1,

        "Value": "4294966686"

      },

      {

        "Item": "Chiropractors (1)",

        "Count": 1,

        "Value": "4294966614"

      },

      {

        "Item": "Communications Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "4294966454"

      },

      {

        "Item": "Computer Network Support Specialists (1)",

        "Count": 1,

        "Value": "4294967284"

      },

      {

        "Item": "Computer Systems Analysts (1)",

        "Count": 1,

        "Value": "4294967285"

      },

      {

        "Item": "Credit Analysts (1)",

        "Count": 1,

        "Value": "4294965869"

      },

      {

        "Item": "Credit Authorizers, Checkers, and Clerks (1)",

        "Count": 1,

        "Value": "4294965624"

      },

      {

        "Item": "Credit Counselors (1)",

        "Count": 1,

        "Value": "4294966399"

      },

      {

        "Item": "Database Administrators (1)",

        "Count": 1,

        "Value": "4294966968"

      },

      {

        "Item": "Database Architects (1)",

        "Count": 1,

        "Value": "4294966000"

      },

      {

        "Item": "Dental Assistants (1)",

        "Count": 1,

        "Value": "4294966892"

      },

      {

        "Item": "Dental Hygienists (1)",

        "Count": 1,

        "Value": "4294966118"

      },

      {

        "Item": "Dentists, General (1)",

        "Count": 1,

        "Value": "4294966711"

      },

      {

        "Item": "Document Management Specialists (1)",

        "Count": 1,

        "Value": "4294966964"

      },

      {

        "Item": "Electrical and Electronics Drafters (1)",

        "Count": 1,

        "Value": "4294965986"

      },

      {

        "Item": "Electrical and Electronics Repairers, Commercial and Industrial Equipment (1)",

        "Count": 1,

        "Value": "4294966839"

      },

      {

        "Item": "Electrical Drafters (1)",

        "Count": 1,

        "Value": "4294965988"

      },

      {

        "Item": "Electronic Drafters (1)",

        "Count": 1,

        "Value": "4294965987"

      },

      {

        "Item": "Engineering Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "4294966445"

      },

      {

        "Item": "English Language and Literature Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "4294966514"

      },

      {

        "Item": "Environmental Engineers (1)",

        "Count": 1,

        "Value": "4294966665"

      },

      {

        "Item": "Farm and Home Management Advisors (1)",

        "Count": 1,

        "Value": "4294966452"

      },

      {

        "Item": "Fire-Prevention and Protection Engineers (1)",

        "Count": 1,

        "Value": "4294966800"

      },

      {

        "Item": "First-Line Supervisors of Housekeeping and Janitorial Workers (1)",

        "Count": 1,

        "Value": "4294967173"

      },

      {

        "Item": "First-Line Supervisors of Office and Administrative Support Workers (1)",

        "Count": 1,

        "Value": "4294966436"

      },

      {

        "Item": "First-Line Supervisors of Personal Service Workers (1)",

        "Count": 1,

        "Value": "4294966687"

      },

      {

        "Item": "First-Line Supervisors of Transportation and Material-Moving Machine and Vehicle Operators (1)",

        "Count": 1,

        "Value": "4294966720"

      },

      {

        "Item": "Food Scientists and Technologists (1)",

        "Count": 1,

        "Value": "4294967000"

      },

      {

        "Item": "Food Service Managers (1)",

        "Count": 1,

        "Value": "4294967170"

      },

      {

        "Item": "Genetic Counselors (1)",

        "Count": 1,

        "Value": "4294966026"

      },

      {

        "Item": "Health and Safety Engineers, Except Mining Safety Engineers and Inspectors (1)",

        "Count": 1,

        "Value": "4294966802"

      },

      {

        "Item": "Health Diagnosing and Treating Practitioners, All Other (1)",

        "Count": 1,

        "Value": "4294966075"

      },

      {

        "Item": "Health Technologists and Technicians, All Other (1)",

        "Count": 1,

        "Value": "4294965138"

      },

      {

        "Item": "Highway Maintenance Workers (1)",

        "Count": 1,

        "Value": "4294966949"

      },

      {

        "Item": "Industrial Engineers (1)",

        "Count": 1,

        "Value": "4294966749"

      },

      {

        "Item": "Industrial-Organizational Psychologists (1)",

        "Count": 1,

        "Value": "4294966395"

      },

      {

        "Item": "Information Security Analysts (1)",

        "Count": 1,

        "Value": "4294967286"

      },

      {

        "Item": "Instructional Designers and Technologists (1)",

        "Count": 1,

        "Value": "4294966695"

      },

      {

        "Item": "Interior Designers (1)",

        "Count": 1,

        "Value": "4294967003"

      },

      {

        "Item": "Laundry and Dry-Cleaning Workers (1)",

        "Count": 1,

        "Value": "4294966174"

      },

      {

        "Item": "Lawyers (1)",

        "Count": 1,

        "Value": "4294966528"

      },

      {

        "Item": "Librarians (1)",

        "Count": 1,

        "Value": "4294966392"

      },

      {

        "Item": "Loss Prevention Managers (1)",

        "Count": 1,

        "Value": "4294966805"

      },

      {

        "Item": "Management Analysts (1)",

        "Count": 1,

        "Value": "4294967269"

      },

      {

        "Item": "Manufacturing Engineering Technologists (1)",

        "Count": 1,

        "Value": "4294966689"

      },

      {

        "Item": "Materials Engineers (1)",

        "Count": 1,

        "Value": "4294966745"

      },

      {

        "Item": "Mechanical Drafters (1)",

        "Count": 1,

        "Value": "4294966206"

      },

      {

        "Item": "Medical Appliance Technicians (1)",

        "Count": 1,

        "Value": "4294966168"

      },

      {

        "Item": "Middle School Teachers, Except Special and Career/Technical Education (1)",

        "Count": 1,

        "Value": "4294966477"

      },

      {

        "Item": "Orthotists and Prosthetists (1)",

        "Count": 1,

        "Value": "4294966170"

      },

      {

        "Item": "Personal Care and Service Workers, All Other (1)",

        "Count": 1,

        "Value": "4294965059"

      },

      {

        "Item": "Pharmacy Aides (1)",

        "Count": 1,

        "Value": "4294965353"

      },

      {

        "Item": "Pharmacy Technicians (1)",

        "Count": 1,

        "Value": "4294966321"

      },

      {

        "Item": "Physicists (1)",

        "Count": 1,

        "Value": "4294967083"

      },

      {

        "Item": "Pressers, Textile, Garment, and Related Materials (1)",

        "Count": 1,

        "Value": "4294966172"

      },

      {

        "Item": "Residential Advisors (1)",

        "Count": 1,

        "Value": "4294967008"

      },

      {

        "Item": "Risk Management Specialists (1)",

        "Count": 1,

        "Value": "4294967146"

      },

      {

        "Item": "Secondary School Teachers, Except Special and Career/Technical Education (1)",

        "Count": 1,

        "Value": "4294966473"

      },

      {

        "Item": "Software Developers, Systems Software (1)",

        "Count": 1,

        "Value": "4294966937"

      },

      {

        "Item": "Storage and Distribution Managers (1)",

        "Count": 1,

        "Value": "4294966370"

      },

      {

        "Item": "Therapists, All Other (1)",

        "Count": 1,

        "Value": "4294965261"

      },

      {

        "Item": "Training and Development Managers (1)",

        "Count": 1,

        "Value": "4294967194"

      },

      {

        "Item": "Validation Engineers (1)",

        "Count": 1,

        "Value": "4294966750"

      },

      {

        "Item": "Wholesale and Retail Buyers, Except Farm Products (1)",

        "Count": 1,

        "Value": "4294966365"

      }

    ]

  },

  "IndustryCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Ambulatory Health Care Services (369)",

        "Count": 369,

        "Value": "4294967254"

      },

      {

        "Item": "General Medical and Surgical Hospitals (358)",

        "Count": 358,

        "Value": "4294967257"

      },

      {

        "Item": "Hospitals (353)",

        "Count": 353,

        "Value": "4294967253"

      },

      {

        "Item": "Nursing and Residential Care Facilities (291)",

        "Count": 291,

        "Value": "4294967252"

      },

      {

        "Item": "Outpatient Care Centers (290)",

        "Count": 290,

        "Value": "4294967259"

      },

      {

        "Item": "Nursing Care Facilities (Skilled Nursing Facilities) (284)",

        "Count": 284,

        "Value": "4294967255"

      },

      {

        "Item": "Other Ambulatory Health Care Services (233)",

        "Count": 233,

        "Value": "4294967258"

      },

      {

        "Item": "Offices of Physicians (215)",

        "Count": 215,

        "Value": "4294967251"

      },

      {

        "Item": "Home Health Care Services (196)",

        "Count": 196,

        "Value": "4294967225"

      },

      {

        "Item": "Specialty (except Psychiatric and Substance Abuse) Hospitals (196)",

        "Count": 196,

        "Value": "4294967256"

      },

      {

        "Item": "Residential Intellectual and Developmental Disability, Mental Health, and Substance Abuse Facilities (188)",

        "Count": 188,

        "Value": "4294967112"

      },

      {

        "Item": "Offices of Other Health Practitioners (187)",

        "Count": 187,

        "Value": "4294967260"

      },

      {

        "Item": "Psychiatric and Substance Abuse Hospitals (182)",

        "Count": 182,

        "Value": "4294967113"

      },

      {

        "Item": "Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly (174)",

        "Count": 174,

        "Value": "4294967115"

      },

      {

        "Item": "Other Residential Care Facilities (170)",

        "Count": 170,

        "Value": "4294967111"

      },

      {

        "Item": "Medical and Diagnostic Laboratories (70)",

        "Count": 70,

        "Value": "4294967103"

      },

      {

        "Item": "Offices of Dentists (58)",

        "Count": 58,

        "Value": "4294967125"

      },

      {

        "Item": "Professional, Scientific, and Technical Services (57)",

        "Count": 57,

        "Value": "4294967244"

      },

      {

        "Item": "Educational Services (45)",

        "Count": 45,

        "Value": "4294967243"

      },

      {

        "Item": "Individual and Family Services (44)",

        "Count": 44,

        "Value": "4294966972"

      },

      {

        "Item": "Social Assistance (38)",

        "Count": 38,

        "Value": "4294966973"

      },

      {

        "Item": "Other Schools and Instruction (31)",

        "Count": 31,

        "Value": "4294966669"

      },

      {

        "Item": "Other Professional, Scientific, and Technical Services (30)",

        "Count": 30,

        "Value": "4294967143"

      },

      {

        "Item": "Technical and Trade Schools (17)",

        "Count": 17,

        "Value": "4294966589"

      },

      {

        "Item": "Scientific Research and Development Services (16)",

        "Count": 16,

        "Value": "4294967081"

      },

      {

        "Item": "Business, Professional, Labor, Political, and Similar Organizations (14)",

        "Count": 14,

        "Value": "4294966474"

      },

      {

        "Item": "Administrative and Support Services (13)",

        "Count": 13,

        "Value": "4294967268"

      },

      {

        "Item": "Community Food and Housing, and Emergency and Other Relief Services (12)",

        "Count": 12,

        "Value": "4294966950"

      },

      {

        "Item": "Management, Scientific, and Technical Consulting Services (12)",

        "Count": 12,

        "Value": "4294967207"

      },

      {

        "Item": "Civic and Social Organizations (11)",

        "Count": 11,

        "Value": "4294966755"

      },

      {

        "Item": "Religious, Grantmaking, Civic, Professional, and Similar Organizations (11)",

        "Count": 11,

        "Value": "4294967052"

      },

      {

        "Item": "Vocational Rehabilitation Services (11)",

        "Count": 11,

        "Value": "4294966971"

      },

      {

        "Item": "Business Support Services (10)",

        "Count": 10,

        "Value": "4294967190"

      },

      {

        "Item": "Colleges, Universities, and Professional Schools (9)",

        "Count": 9,

        "Value": "4294966605"

      },

      {

        "Item": "Elementary and Secondary Schools (7)",

        "Count": 7,

        "Value": "4294966970"

      },

      {

        "Item": "Junior Colleges (7)",

        "Count": 7,

        "Value": "4294966606"

      },

      {

        "Item": "Management of Companies and Enterprises (7)",

        "Count": 7,

        "Value": "4294967280"

      },

      {

        "Item": "Accommodation (6)",

        "Count": 6,

        "Value": "4294967172"

      },

      {

        "Item": "Administration of Housing Programs, Urban Planning, and Community Development (6)",

        "Count": 6,

        "Value": "4294966227"

      },

      {

        "Item": "Computer and Electronic Product Manufacturing (6)",

        "Count": 6,

        "Value": "4294967282"

      },

      {

        "Item": "Justice, Public Order, and Safety Activities (6)",

        "Count": 6,

        "Value": "4294966649"

      },

      {

        "Item": "Machinery Manufacturing (6)",

        "Count": 6,

        "Value": "4294967228"

      },

      {

        "Item": "Personal Care Services (6)",

        "Count": 6,

        "Value": "4294967010"

      },

      {

        "Item": "Support Activities for Agriculture and Forestry (6)",

        "Count": 6,

        "Value": "4294967159"

      },

      {

        "Item": "Support Activities for Animal Production (6)",

        "Count": 6,

        "Value": "4294966904"

      },

      {

        "Item": "Chemical Manufacturing (5)",

        "Count": 5,

        "Value": "4294967082"

      },

      {

        "Item": "Educational Support Services (5)",

        "Count": 5,

        "Value": "4294966604"

      },

      {

        "Item": "Transportation Equipment Manufacturing (5)",

        "Count": 5,

        "Value": "4294967235"

      },

      {

        "Item": "Administration of Human Resource Programs (4)",

        "Count": 4,

        "Value": "4294966458"

      },

      {

        "Item": "Amusement, Gambling, and Recreation Industries (4)",

        "Count": 4,

        "Value": "4294967186"

      },

      {

        "Item": "Other Personal Services (4)",

        "Count": 4,

        "Value": "4294966492"

      },

      {

        "Item": "Child Day Care Services (3)",

        "Count": 3,

        "Value": "4294966159"

      },

      {

        "Item": "Electrical Equipment, Appliance, and Component Manufacturing (3)",

        "Count": 3,

        "Value": "4294966581"

      },

      {

        "Item": "Investigation and Security Services (3)",

        "Count": 3,

        "Value": "4294966952"

      },

      {

        "Item": "Social Advocacy Organizations (3)",

        "Count": 3,

        "Value": "4294966226"

      },

      {

        "Item": "Accounting, Tax Preparation, Bookkeeping, and Payroll Services (2)",

        "Count": 2,

        "Value": "4294967144"

      },

      {

        "Item": "Architectural, Engineering, and Related Services (2)",

        "Count": 2,

        "Value": "4294967180"

      },

      {

        "Item": "Basic Chemical Manufacturing (2)",

        "Count": 2,

        "Value": "4294966798"

      },

      {

        "Item": "Employment Services (2)",

        "Count": 2,

        "Value": "4294967191"

      },

      {

        "Item": "Fabricated Metal Product Manufacturing (2)",

        "Count": 2,

        "Value": "4294966984"

      },

      {

        "Item": "Food Services and Drinking Places (2)",

        "Count": 2,

        "Value": "4294967169"

      },

      {

        "Item": "Insurance Carriers and Related Activities (2)",

        "Count": 2,

        "Value": "4294967218"

      },

      {

        "Item": "National Security and International Affairs (2)",

        "Count": 2,

        "Value": "4294966517"

      },

      {

        "Item": "Office Administrative Services (2)",

        "Count": 2,

        "Value": "4294967267"

      },

      {

        "Item": "Other Amusement and Recreation Industries (2)",

        "Count": 2,

        "Value": "4294967178"

      },

      {

        "Item": "Other Support Services (2)",

        "Count": 2,

        "Value": "4294967017"

      },

      {

        "Item": "Performing Arts, Spectator Sports, and Related Industries (2)",

        "Count": 2,

        "Value": "4294967045"

      },

      {

        "Item": "Personal and Laundry Services (2)",

        "Count": 2,

        "Value": "4294967011"

      },

      {

        "Item": "Private Households (2)",

        "Count": 2,

        "Value": "4294966685"

      },

      {

        "Item": "Support Activities for Road Transportation (2)",

        "Count": 2,

        "Value": "4294966940"

      },

      {

        "Item": "Support Activities for Transportation (2)",

        "Count": 2,

        "Value": "4294966941"

      },

      {

        "Item": "Agencies, Brokerages, and Other Insurance Related Activities (1)",

        "Count": 1,

        "Value": "4294967212"

      },

      {

        "Item": "Animal Food Manufacturing (1)",

        "Count": 1,

        "Value": "4294965915"

      },

      {

        "Item": "Animal Slaughtering and Processing (1)",

        "Count": 1,

        "Value": "4294965910"

      },

      {

        "Item": "Architectural and Structural Metals Manufacturing (1)",

        "Count": 1,

        "Value": "4294966777"

      },

      {

        "Item": "Bakeries and Tortilla Manufacturing (1)",

        "Count": 1,

        "Value": "4294965908"

      },

      {

        "Item": "Building Finishing Contractors (1)",

        "Count": 1,

        "Value": "4294966724"

      },

      {

        "Item": "Commercial and Service Industry Machinery Manufacturing (1)",

        "Count": 1,

        "Value": "4294966768"

      },

      {

        "Item": "Construction of Buildings (1)",

        "Count": 1,

        "Value": "4294966995"

      },

      {

        "Item": "Dairy Product Manufacturing (1)",

        "Count": 1,

        "Value": "4294965911"

      },

      {

        "Item": "Data Processing, Hosting, and Related Services (1)",

        "Count": 1,

        "Value": "4294967281"

      },

      {

        "Item": "Drinking Places (Alcoholic Beverages) (1)",

        "Count": 1,

        "Value": "4294966106"

      },

      {

        "Item": "Facilities Support Services (1)",

        "Count": 1,

        "Value": "4294967201"

      },

      {

        "Item": "Farm Product Raw Material Merchant Wholesalers (1)",

        "Count": 1,

        "Value": "4294966281"

      },

      {

        "Item": "Food Manufacturing (1)",

        "Count": 1,

        "Value": "4294966998"

      },

      {

        "Item": "Fruit and Vegetable Preserving and Specialty Food Manufacturing (1)",

        "Count": 1,

        "Value": "4294965912"

      },

      {

        "Item": "Grain and Oilseed Milling (1)",

        "Count": 1,

        "Value": "4294965914"

      },

      {

        "Item": "Grocery and Related Product Merchant Wholesalers (1)",

        "Count": 1,

        "Value": "4294965906"

      },

      {

        "Item": "Hardware Manufacturing (1)",

        "Count": 1,

        "Value": "4294966775"

      },

      {

        "Item": "Industrial Machinery Manufacturing (1)",

        "Count": 1,

        "Value": "4294966769"

      },

      {

        "Item": "Insurance Carriers (1)",

        "Count": 1,

        "Value": "4294967213"

      },

      {

        "Item": "Merchant Wholesalers, Durable Goods (1)",

        "Count": 1,

        "Value": "4294967030"

      },

      {

        "Item": "Merchant Wholesalers, Nondurable Goods (1)",

        "Count": 1,

        "Value": "4294966997"

      },

      {

        "Item": "Miscellaneous Durable Goods Merchant Wholesalers (1)",

        "Count": 1,

        "Value": "4294966413"

      },

      {

        "Item": "Miscellaneous Manufacturing (1)",

        "Count": 1,

        "Value": "4294966993"

      },

      {

        "Item": "Navigational, Measuring, Electromedical, and Control Instruments Manufacturing (1)",

        "Count": 1,

        "Value": "4294966580"

      },

      {

        "Item": "Other Chemical Product and Preparation Manufacturing (1)",

        "Count": 1,

        "Value": "4294966293"

      },

      {

        "Item": "Other Food Manufacturing (1)",

        "Count": 1,

        "Value": "4294965907"

      },

      {

        "Item": "Other General Purpose Machinery Manufacturing (1)",

        "Count": 1,

        "Value": "4294966765"

      },

      {

        "Item": "Other Support Activities for Transportation (1)",

        "Count": 1,

        "Value": "4294966416"

      },

      {

        "Item": "Primary Metal Manufacturing (1)",

        "Count": 1,

        "Value": "4294966787"

      },

      {

        "Item": "Promoters of Performing Arts, Sports, and Similar Events (1)",

        "Count": 1,

        "Value": "4294966163"

      },

      {

        "Item": "Real Estate (1)",

        "Count": 1,

        "Value": "4294967177"

      },

      {

        "Item": "Religious Organizations (1)",

        "Count": 1,

        "Value": "4294966241"

      },

      {

        "Item": "Remediation and Other Waste Management Services (1)",

        "Count": 1,

        "Value": "4294966797"

      },

      {

        "Item": "Residential Building Construction (1)",

        "Count": 1,

        "Value": "4294966992"

      },

      {

        "Item": "Seafood Product Preparation and Packaging (1)",

        "Count": 1,

        "Value": "4294965909"

      },

      {

        "Item": "Services to Buildings and Dwellings (1)",

        "Count": 1,

        "Value": "4294967179"

      },

      {

        "Item": "Space Research and Technology (1)",

        "Count": 1,

        "Value": "4294966260"

      },

      {

        "Item": "Specialty Trade Contractors (1)",

        "Count": 1,

        "Value": "4294967137"

      },

      {

        "Item": "Spring and Wire Product Manufacturing (1)",

        "Count": 1,

        "Value": "4294966774"

      },

      {

        "Item": "Steel Product Manufacturing from Purchased Steel (1)",

        "Count": 1,

        "Value": "4294966783"

      },

      {

        "Item": "Sugar and Confectionery Product Manufacturing (1)",

        "Count": 1,

        "Value": "4294965913"

      },

      {

        "Item": "Telecommunications (1)",

        "Count": 1,

        "Value": "4294967049"

      },

      {

        "Item": "Traveler Accommodation (1)",

        "Count": 1,

        "Value": "4294967171"

      },

      {

        "Item": "Waste Management and Remediation Services (1)",

        "Count": 1,

        "Value": "4294967152"

      }

    ]

  },

  "TypeCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Specialty (341)",

        "Count": 341,

        "Value": "4294967265"

      },

      {

        "Item": "Advanced (127)",

        "Count": 127,

        "Value": "4294967289"

      },

      {

        "Item": "Core (117)",

        "Count": 117,

        "Value": "4294967278"

      },

      {

        "Item": "Skill (3)",

        "Count": 3,

        "Value": "4294966328"

      },

      {

        "Item": "Unclassified (3)",

        "Count": 3,

        "Value": "4294967141"

      },

      {

        "Item": "Product/Equipment (2)",

        "Count": 2,

        "Value": "4294967246"

      }

    ]

  },

  "OrgCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "American Nurses Credentialing Center (30)",

        "Count": 30,

        "Value": "4294966844"

      },

      {

        "Item": "American Academy of Professional Coders (26)",

        "Count": 26,

        "Value": "4294966200"

      },

      {

        "Item": "American Association of Critical-Care Nurses  (15)",

        "Count": 15,

        "Value": "4294966156"

      },

      {

        "Item": "Wound Ostomy Continence Nursing Certification Board (15)",

        "Count": 15,

        "Value": "4294966078"

      },

      {

        "Item": "American Board of Internal Medicine (12)",

        "Count": 12,

        "Value": "4294967114"

      },

      {

        "Item": "National Association of Social Workers (12)",

        "Count": 12,

        "Value": "4294966558"

      },

      {

        "Item": "American Board of Physical Therapy Specialties (8)",

        "Count": 8,

        "Value": "4294966936"

      },

      {

        "Item": "American Board of Psychiatry and Neurology, Inc. (8)",

        "Count": 8,

        "Value": "4294967087"

      },

      {

        "Item": "National Center for Construction Education and Research (8)",

        "Count": 8,

        "Value": "4294965736"

      },

      {

        "Item": "Nephrology Nursing Certification Commission (8)",

        "Count": 8,

        "Value": "4294966085"

      },

      {

        "Item": "The National Certification Corporation (8)",

        "Count": 8,

        "Value": "4294967266"

      },

      {

        "Item": "American Health Information Management Association (7)",

        "Count": 7,

        "Value": "4294966326"

      },

      {

        "Item": "American Occupational Therapy Association, Inc. (7)",

        "Count": 7,

        "Value": "4294965510"

      },

      {

        "Item": "Biofeedback Certification International Alliance (7)",

        "Count": 7,

        "Value": "4294966119"

      },

      {

        "Item": "Hospice and Palliative Nurses Association (7)",

        "Count": 7,

        "Value": "4294965098"

      },

      {

        "Item": "Oncology Nursing Certification Corporation (7)",

        "Count": 7,

        "Value": "4294966124"

      },

      {

        "Item": "Academy of Internal Medicine for Veterinary Technicians (6)",

        "Count": 6,

        "Value": "4294965650"

      },

      {

        "Item": "American Association of Bioanalysts (6)",

        "Count": 6,

        "Value": "4294965362"

      },

      {

        "Item": "American Farrier's Association (6)",

        "Count": 6,

        "Value": "4294965113"

      },

      {

        "Item": "National Alliance for Direct Support Professionals (6)",

        "Count": 6,

        "Value": "4294965450"

      },

      {

        "Item": "National Healthcareer Association (6)",

        "Count": 6,

        "Value": "4294965876"

      },

      {

        "Item": "American Association of Healthcare Administrative Management (5)",

        "Count": 5,

        "Value": "4294965973"

      },

      {

        "Item": "American Board of Pediatrics (5)",

        "Count": 5,

        "Value": "4294967094"

      },

      {

        "Item": "American Hotel and Lodging Association Educational Institute (5)",

        "Count": 5,

        "Value": "4294967174"

      },

      {

        "Item": "Association of Clinical Research Professionals (5)",

        "Count": 5,

        "Value": "4294965598"

      },

      {

        "Item": "Commission on Dietetic Registration (5)",

        "Count": 5,

        "Value": "4294965590"

      },

      {

        "Item": "National Board of Diving and Hyperbaric Medical Technology (5)",

        "Count": 5,

        "Value": "4294965678"

      },

      {

        "Item": "National Certification Council for Activity Professionals (5)",

        "Count": 5,

        "Value": "4294966507"

      },

      {

        "Item": "Pediatric Nursing Certification Board (5)",

        "Count": 5,

        "Value": "4294966674"

      },

      {

        "Item": "The Breining Institute (5)",

        "Count": 5,

        "Value": "4294965444"

      },

      {

        "Item": "American Association of Psychiatric Technicians, Inc. (4)",

        "Count": 4,

        "Value": "4294966960"

      },

      {

        "Item": "American Association of Sexuality Educators, Counselors and Therapists (4)",

        "Count": 4,

        "Value": "4294966230"

      },

      {

        "Item": "American Board of Physical Medicine & Rehabilitation (4)",

        "Count": 4,

        "Value": "4294967093"

      },

      {

        "Item": "American Phlebotomy Association (4)",

        "Count": 4,

        "Value": "4294965294"

      },

      {

        "Item": "American Society for Clinical Pathology (4)",

        "Count": 4,

        "Value": "4294966302"

      },

      {

        "Item": "American Society of Phlebotomy Technicians (4)",

        "Count": 4,

        "Value": "4294966065"

      },

      {

        "Item": "Association Connecting Electronics Industries (4)",

        "Count": 4,

        "Value": "4294965990"

      },

      {

        "Item": "Board of Certification for Emergency Nursing (4)",

        "Count": 4,

        "Value": "4294966160"

      },

      {

        "Item": "Board of Medical Specialty Coding and Compliance (4)",

        "Count": 4,

        "Value": "4294965128"

      },

      {

        "Item": "International Academies of Emergency Dispatch (4)",

        "Count": 4,

        "Value": "4294965148"

      },

      {

        "Item": "International Association of Healthcare Security and Safety (4)",

        "Count": 4,

        "Value": "4294965517"

      },

      {

        "Item": "International Certification & Reciprocity Consortium (4)",

        "Count": 4,

        "Value": "4294966394"

      },

      {

        "Item": "National Association of Directors of Nursing Administration in Long Term Care (4)",

        "Count": 4,

        "Value": "4294965192"

      },

      {

        "Item": "National Board of Certification for Medical Interpreters (4)",

        "Count": 4,

        "Value": "4294965187"

      },

      {

        "Item": "National Council of State Boards of Nursing, Inc. (4)",

        "Count": 4,

        "Value": "4294965103"

      },

      {

        "Item": "American Academy of Nurse Practitioners Certification Program (3)",

        "Count": 3,

        "Value": "4294966141"

      },

      {

        "Item": "American Association for Laboratory Animal Science (3)",

        "Count": 3,

        "Value": "4294966105"

      },

      {

        "Item": "American Board for Occupational Health Nurses (3)",

        "Count": 3,

        "Value": "4294966624"

      },

      {

        "Item": "American Board of Bioanalysis (3)",

        "Count": 3,

        "Value": "4294966092"

      },

      {

        "Item": "American Board of Family Medicine (3)",

        "Count": 3,

        "Value": "4294967117"

      },

      {

        "Item": "American Board of Physician Specialties (3)",

        "Count": 3,

        "Value": "4294965497"

      },

      {

        "Item": "American Board of Wound Management (3)",

        "Count": 3,

        "Value": "4294965622"

      },

      {

        "Item": "American Council on Exercise (3)",

        "Count": 3,

        "Value": "4294966757"

      },

      {

        "Item": "Association of Christian Alcohol and Drug Counselors (3)",

        "Count": 3,

        "Value": "4294965436"

      },

      {

        "Item": "Board of Nephrology Examiners Technology Nursing (3)",

        "Count": 3,

        "Value": "4294965141"

      },

      {

        "Item": "Board of Pharmacy Specialties (3)",

        "Count": 3,

        "Value": "4294966651"

      },

      {

        "Item": "Certification Board for Urologic Nurses and Associates (3)",

        "Count": 3,

        "Value": "4294966098"

      },

      {

        "Item": "Competency and Credentialing Institute (3)",

        "Count": 3,

        "Value": "4294966808"

      },

      {

        "Item": "Health IT Certification (3)",

        "Count": 3,

        "Value": "4294965484"

      },

      {

        "Item": "Healthcare Financial Management Association (3)",

        "Count": 3,

        "Value": "4294966149"

      },

      {

        "Item": "International Board for Certification of Safety Managers (3)",

        "Count": 3,

        "Value": "4294966807"

      },

      {

        "Item": "International Federation for Biblio/Poetry Therapy (3)",

        "Count": 3,

        "Value": "4294965006"

      },

      {

        "Item": "National Association for Practical Nurse Education and Service, Inc. (3)",

        "Count": 3,

        "Value": "4294965708"

      },

      {

        "Item": "National Board for Certified Counselors (3)",

        "Count": 3,

        "Value": "4294966982"

      },

      {

        "Item": "National Federation of Licensed Practical Nurses, Inc. (3)",

        "Count": 3,

        "Value": "4294965707"

      },

      {

        "Item": "National Institute for Metalworking Skills  (3)",

        "Count": 3,

        "Value": "4294966796"

      },

      {

        "Item": "Orthopaedic Nurses Certification Board (3)",

        "Count": 3,

        "Value": "4294965558"

      },

      {

        "Item": "Academy of Lactation Policy and Practice (2)",

        "Count": 2,

        "Value": "4294965090"

      },

      {

        "Item": "American Association of Family and Consumer Sciences (2)",

        "Count": 2,

        "Value": "4294966455"

      },

      {

        "Item": "American Association of Neuroscience Nurses - American Board of Neuroscience Nursing (2)",

        "Count": 2,

        "Value": "4294966154"

      },

      {

        "Item": "American Board of Perianesthesia Nursing Certification, Inc. (2)",

        "Count": 2,

        "Value": "4294965531"

      },

      {

        "Item": "American Board of Professional Psychology (2)",

        "Count": 2,

        "Value": "4294966213"

      },

      {

        "Item": "American Board of Vascular Medicine (2)",

        "Count": 2,

        "Value": "4294965407"

      },

      {

        "Item": "American College of Chest Physicians (2)",

        "Count": 2,

        "Value": "4294965129"

      },

      {

        "Item": "American College of Veterinary Pathologists (2)",

        "Count": 2,

        "Value": "4294965304"

      },

      {

        "Item": "American Correctional Association (2)",

        "Count": 2,

        "Value": "4294965766"

      },

      {

        "Item": "American Hospital Association (2)",

        "Count": 2,

        "Value": "4294965890"

      },

      {

        "Item": "American Midwifery Certification Board (2)",

        "Count": 2,

        "Value": "4294965606"

      },

      {

        "Item": "American Osteopathic Board of Family Physicians (2)",

        "Count": 2,

        "Value": "4294966040"

      },

      {

        "Item": "American Osteopathic Board of Internal Medicine (2)",

        "Count": 2,

        "Value": "4294966039"

      },

      {

        "Item": "American Osteopathic Board of Neurologists and Psychiatrists (2)",

        "Count": 2,

        "Value": "4294966036"

      },

      {

        "Item": "American Osteopathic Board of Physical Medicine and Rehabilitation (2)",

        "Count": 2,

        "Value": "4294966029"

      },

      {

        "Item": "American Red Cross (2)",

        "Count": 2,

        "Value": "4294966292"

      },

      {

        "Item": "American Society of Clinical Hypnosis (2)",

        "Count": 2,

        "Value": "4294965164"

      },

      {

        "Item": "Art Therapy Credentials Board (2)",

        "Count": 2,

        "Value": "4294966536"

      },

      {

        "Item": "Association of Technology, Management, and Applied Engineering (2)",

        "Count": 2,

        "Value": "4294966696"

      },

      {

        "Item": "Board for Certification of Nutrition Specialists (2)",

        "Count": 2,

        "Value": "4294965086"

      },

      {

        "Item": "Brainbench (2)",

        "Count": 2,

        "Value": "4294966317"

      },

      {

        "Item": "Certification Commission for Healthcare Interpreters (2)",

        "Count": 2,

        "Value": "4294965394"

      },

      {

        "Item": "Computing Technology Industry Association (CompTIA) (2)",

        "Count": 2,

        "Value": "4294967250"

      },

      {

        "Item": "Dermatology Nurses' Association (2)",

        "Count": 2,

        "Value": "4294965501"

      },

      {

        "Item": "Forensic Nursing Certification Board (2)",

        "Count": 2,

        "Value": "4294965474"

      },

      {

        "Item": "Health Care Compliance Association (2)",

        "Count": 2,

        "Value": "4294965583"

      },

      {

        "Item": "HIV/AIDS Nursing Certification Board (2)",

        "Count": 2,

        "Value": "4294966082"

      },

      {

        "Item": "International Association of Eating Disorders Professionals (2)",

        "Count": 2,

        "Value": "4294966278"

      },

      {

        "Item": "International Nurses Society on Addictions (2)",

        "Count": 2,

        "Value": "4294966068"

      },

      {

        "Item": "Medical-Surgical Nursing Certification Board (2)",

        "Count": 2,

        "Value": "4294965039"

      },

      {

        "Item": "National Alliance of Wound Care (2)",

        "Count": 2,

        "Value": "4294965570"

      },

      {

        "Item": "National Association Medical Staff Services (2)",

        "Count": 2,

        "Value": "4294965810"

      },

      {

        "Item": "National Board for Certification in Occupational Therapy, Inc. (2)",

        "Count": 2,

        "Value": "4294967038"

      },

      {

        "Item": "National Center for Competency Testing (2)",

        "Count": 2,

        "Value": "4294965520"

      },

      {

        "Item": "National Certification Board for Alzheimer Care (2)",

        "Count": 2,

        "Value": "4294965277"

      },

      {

        "Item": "National Commission for Health Education Credentialing, Inc. (2)",

        "Count": 2,

        "Value": "4294966608"

      },

      {

        "Item": "Organization for Transplant Professionals (2)",

        "Count": 2,

        "Value": "4294965612"

      },

      {

        "Item": "Practice Management Institute (2)",

        "Count": 2,

        "Value": "4294965727"

      },

      {

        "Item": "Public Responsibility in Medicine and Research (2)",

        "Count": 2,

        "Value": "4294965468"

      },

      {

        "Item": "Rehabilitation Engineering and Assistive Technology Society of North America (2)",

        "Count": 2,

        "Value": "4294965476"

      },

      {

        "Item": "Research Administrators Certification Council (2)",

        "Count": 2,

        "Value": "4294965461"

      },

      {

        "Item": "United Council for Neurologic Subspecialties (2)",

        "Count": 2,

        "Value": "4294965282"

      },

      {

        "Item": "Academy of Cognitive Therapy (1)",

        "Count": 1,

        "Value": "4294965280"

      },

      {

        "Item": "American Academy of Health Care Providers in the Addictive Disorders (1)",

        "Count": 1,

        "Value": "4294966069"

      },

      {

        "Item": "American Academy of Health Physics (1)",

        "Count": 1,

        "Value": "4294966208"

      },

      {

        "Item": "American Academy of Health, Fitness, & Rehabilitation Professionals (1)",

        "Count": 1,

        "Value": "4294966615"

      },

      {

        "Item": "American Academy of Hospice and Palliative Medicine (1)",

        "Count": 1,

        "Value": "4294966224"

      },

      {

        "Item": "American Academy of Pain Management (1)",

        "Count": 1,

        "Value": "4294966064"

      },

      {

        "Item": "American Assisted Living Nurses Association (1)",

        "Count": 1,

        "Value": "4294965452"

      },

      {

        "Item": "American Association of Colleges of Nursing (1)",

        "Count": 1,

        "Value": "4294965621"

      },

      {

        "Item": "American Association of Legal Nurse Consultants (Certification Board) (1)",

        "Count": 1,

        "Value": "4294966530"

      },

      {

        "Item": "American Association of Medical Assistants (1)",

        "Count": 1,

        "Value": "4294966594"

      },

      {

        "Item": "American Association of Medical Audit Specialists (1)",

        "Count": 1,

        "Value": "4294965620"

      },

      {

        "Item": "American Association of Poison Control Centers (1)",

        "Count": 1,

        "Value": "4294965406"

      },

      {

        "Item": "American Board for Transplant Certification (1)",

        "Count": 1,

        "Value": "4294965424"

      },

      {

        "Item": "American Board of Anesthesiology (1)",

        "Count": 1,

        "Value": "4294967127"

      },

      {

        "Item": "American Board of Certification for Gastroenterology Nurses (1)",

        "Count": 1,

        "Value": "4294965922"

      },

      {

        "Item": "American Board of Comprehensive Care (1)",

        "Count": 1,

        "Value": "4294965088"

      },

      {

        "Item": "American Board of Dermatology (1)",

        "Count": 1,

        "Value": "4294967122"

      },

      {

        "Item": "American Board of Examiners in Clinical Social Work (1)",

        "Count": 1,

        "Value": "4294966256"

      },

      {

        "Item": "American Board of Imaging Informatics (1)",

        "Count": 1,

        "Value": "4294965123"

      },

      {

        "Item": "American Board of Managed Care Nursing (1)",

        "Count": 1,

        "Value": "4294965492"

      },

      {

        "Item": "American Board of Obstetrics and Gynecology (1)",

        "Count": 1,

        "Value": "4294967100"

      },

      {

        "Item": "American Case Management Association (1)",

        "Count": 1,

        "Value": "4294965445"

      },

      {

        "Item": "American Clinical Board of Nutrition (1)",

        "Count": 1,

        "Value": "4294965609"

      },

      {

        "Item": "American College of Healthcare Executives (1)",

        "Count": 1,

        "Value": "4294965543"

      },

      {

        "Item": "American College of Rheumatology (1)",

        "Count": 1,

        "Value": "4294965171"

      },

      {

        "Item": "American Culinary Federation, Inc. (1)",

        "Count": 1,

        "Value": "4294966591"

      },

      {

        "Item": "American Healthcare Radiology Administrators (1)",

        "Count": 1,

        "Value": "4294965892"

      },

      {

        "Item": "American Holistic Nurses' Certification Board (1)",

        "Count": 1,

        "Value": "4294966077"

      },

      {

        "Item": "American Medical Billing Association (1)",

        "Count": 1,

        "Value": "4294965485"

      },

      {

        "Item": "American Medical Technologists (1)",

        "Count": 1,

        "Value": "4294966896"

      },

      {

        "Item": "American Organization of Nurse Executives Credentialing Center (1)",

        "Count": 1,

        "Value": "4294965255"

      },

      {

        "Item": "American Osteopathic Board of Obstetricians and Gynecologists (1)",

        "Count": 1,

        "Value": "4294966035"

      },

      {

        "Item": "American Society for Metabolic and Bariatric Surgery (1)",

        "Count": 1,

        "Value": "4294965604"

      },

      {

        "Item": "American Society of Mechanical Engineers International (1)",

        "Count": 1,

        "Value": "4294966207"

      },

      {

        "Item": "American Society of Ophthalmic Administrators (1)",

        "Count": 1,

        "Value": "4294965276"

      },

      {

        "Item": "American Society of Orthopedic Physician Assistants (1)",

        "Count": 1,

        "Value": "4294965465"

      },

      {

        "Item": "American Society of Plastic Surgical Nurses (1)",

        "Count": 1,

        "Value": "4294966070"

      },

      {

        "Item": "American Speech-Language-Hearing Association (1)",

        "Count": 1,

        "Value": "4294967071"

      },

      {

        "Item": "American Traffic Safety Services Association (1)",

        "Count": 1,

        "Value": "4294965410"

      },

      {

        "Item": "American Welding Society (1)",

        "Count": 1,

        "Value": "4294966996"

      },

      {

        "Item": "Association for Linen Management (1)",

        "Count": 1,

        "Value": "4294966175"

      },

      {

        "Item": "Association for the Advancement of Medical Instrumentation (1)",

        "Count": 1,

        "Value": "4294965040"

      },

      {

        "Item": "Association of Credit and Collection Professionals (1)",

        "Count": 1,

        "Value": "4294965345"

      },

      {

        "Item": "Association of Nutrition and Food Service Professionals (1)",

        "Count": 1,

        "Value": "4294966335"

      },

      {

        "Item": "Association of Rehabilitation Nurses (1)",

        "Count": 1,

        "Value": "4294966158"

      },

      {

        "Item": "Board of Certification/Accreditation International (1)",

        "Count": 1,

        "Value": "4294965923"

      },

      {

        "Item": "Board of Certified Safety Professionals (1)",

        "Count": 1,

        "Value": "4294965363"

      },

      {

        "Item": "Board of Oncology Social Work Certification (1)",

        "Count": 1,

        "Value": "4294965136"

      },

      {

        "Item": "Cardiovascular Credentialing International (1)",

        "Count": 1,

        "Value": "4294966303"

      },

      {

        "Item": "Center for Credentialing & Education, Inc. (1)",

        "Count": 1,

        "Value": "4294966965"

      },

      {

        "Item": "Certification Board for Sterile Processing and Distribution (1)",

        "Count": 1,

        "Value": "4294965085"

      },

      {

        "Item": "Certification Board of Infection Control and Epidemiology, Inc. (1)",

        "Count": 1,

        "Value": "4294966136"

      },

      {

        "Item": "Certification Commission for Drug and Alcohol Program Professionals (1)",

        "Count": 1,

        "Value": "4294965009"

      },

      {

        "Item": "Certification of Disability Management Specialists Commission (1)",

        "Count": 1,

        "Value": "4294966225"

      },

      {

        "Item": "Certified Nurse Life Care Planner Certification Board (1)",

        "Count": 1,

        "Value": "4294965460"

      },

      {

        "Item": "Certifying Commission in Medical Management (1)",

        "Count": 1,

        "Value": "4294965134"

      },

      {

        "Item": "College of Healthcare Information Management Executives (1)",

        "Count": 1,

        "Value": "4294965133"

      },

      {

        "Item": "Commission for Case Manager Certification (1)",

        "Count": 1,

        "Value": "4294965921"

      },

      {

        "Item": "Commission for Certification of Healthcare CPD Professionals (1)",

        "Count": 1,

        "Value": "4294965105"

      },

      {

        "Item": "Commission on Graduates of Foreign Nursing Schools (1)",

        "Count": 1,

        "Value": "4294965589"

      },

      {

        "Item": "Commission on Rehabilitation Counselor Certification (1)",

        "Count": 1,

        "Value": "4294966231"

      },

      {

        "Item": "Council for Certification in Volunteer Administration (1)",

        "Count": 1,

        "Value": "4294966201"

      },

      {

        "Item": "Council for Professional Recognition (1)",

        "Count": 1,

        "Value": "4294966688"

      },

      {

        "Item": "Council on Professional Standards for Kinesiotherapy (1)",

        "Count": 1,

        "Value": "4294965491"

      },

      {

        "Item": "Developmental Disabilities Nurses Association (1)",

        "Count": 1,

        "Value": "4294966074"

      },

      {

        "Item": "Doulas of North America (1)",

        "Count": 1,

        "Value": "4294965948"

      },

      {

        "Item": "Drug & Alcohol Testing Industry Association (1)",

        "Count": 1,

        "Value": "4294965174"

      },

      {

        "Item": "ETA International (1)",

        "Count": 1,

        "Value": "4294966870"

      },

      {

        "Item": "Healthcare Billing & Management Association (1)",

        "Count": 1,

        "Value": "4294965132"

      },

      {

        "Item": "Healthcare Information and Management Systems Society (1)",

        "Count": 1,

        "Value": "4294965856"

      },

      {

        "Item": "HVAC Excellence  (1)",

        "Count": 1,

        "Value": "4294965715"

      },

      {

        "Item": "Infusion Nurses Certification Corporation (1)",

        "Count": 1,

        "Value": "4294965666"

      },

      {

        "Item": "International Academy of Orthopedic Medicine - US (1)",

        "Count": 1,

        "Value": "4294965131"

      },

      {

        "Item": "International Association of Equine Dentistry (1)",

        "Count": 1,

        "Value": "4294966061"

      },

      {

        "Item": "International Association of Healthcare Central Service Materiel Management (1)",

        "Count": 1,

        "Value": "4294966361"

      },

      {

        "Item": "International Board of Lactation Consultant Examiners (1)",

        "Count": 1,

        "Value": "4294966541"

      },

      {

        "Item": "International Childbirth Education Association (1)",

        "Count": 1,

        "Value": "4294966388"

      },

      {

        "Item": "International Fluid Power Society (1)",

        "Count": 1,

        "Value": "4294966683"

      },

      {

        "Item": "International Society of Nurses in Genetics (1)",

        "Count": 1,

        "Value": "4294966073"

      },

      {

        "Item": "Lamaze International (1)",

        "Count": 1,

        "Value": "4294965920"

      },

      {

        "Item": "Medical Group Management Association (MGMA) (1)",

        "Count": 1,

        "Value": "4294965387"

      },

      {

        "Item": "Medical Library Association (1)",

        "Count": 1,

        "Value": "4294966084"

      },

      {

        "Item": "Micro Focus (1)",

        "Count": 1,

        "Value": "4294965007"

      },

      {

        "Item": "National Association for Healthcare Quality (1)",

        "Count": 1,

        "Value": "4294965173"

      },

      {

        "Item": "National Association for Pupil Transportation (1)",

        "Count": 1,

        "Value": "4294966049"

      },

      {

        "Item": "National Association of Boards of Pharmacy (1)",

        "Count": 1,

        "Value": "4294965400"

      },

      {

        "Item": "National Association of Health Unit Coordinators, Inc. (1)",

        "Count": 1,

        "Value": "4294965417"

      },

      {

        "Item": "National Association of Orthopaedic Nurses (1)",

        "Count": 1,

        "Value": "4294966157"

      },

      {

        "Item": "National Asthma Education Certification Board (1)",

        "Count": 1,

        "Value": "4294965565"

      },

      {

        "Item": "National Board for Certification of Orthopaedic Technololgists (1)",

        "Count": 1,

        "Value": "4294965904"

      },

      {

        "Item": "National Board for Certification of School Nurses (1)",

        "Count": 1,

        "Value": "4294965503"

      },

      {

        "Item": "National Board for Professional Teaching Standards (1)",

        "Count": 1,

        "Value": "4294966481"

      },

      {

        "Item": "National Board for Respiratory Care (1)",

        "Count": 1,

        "Value": "4294967074"

      },

      {

        "Item": "National Board of Medical Examiners (1)",

        "Count": 1,

        "Value": "4294965260"

      },

      {

        "Item": "National Board of Nutrition Support Certification, Inc. (1)",

        "Count": 1,

        "Value": "4294966076"

      },

      {

        "Item": "National Board of Public Health Examiners (1)",

        "Count": 1,

        "Value": "4294965564"

      },

      {

        "Item": "National Board on Certification and Recertification for Nurse Anesthetists (1)",

        "Count": 1,

        "Value": "4294965443"

      },

      {

        "Item": "National Certification Board for Diabetes Educators (1)",

        "Count": 1,

        "Value": "4294966072"

      },

      {

        "Item": "National Certifying Board for Ophthalmic Registered Nurses (1)",

        "Count": 1,

        "Value": "4294965505"

      },

      {

        "Item": "National Commission on Certification of Physician Assistants (1)",

        "Count": 1,

        "Value": "4294967056"

      },

      {

        "Item": "National Kitchen & Bath Association (1)",

        "Count": 1,

        "Value": "4294966180"

      },

      {

        "Item": "National League for Nursing (1)",

        "Count": 1,

        "Value": "4294965559"

      },

      {

        "Item": "National Recreation and Park Association (1)",

        "Count": 1,

        "Value": "4294966929"

      },

      {

        "Item": "National Registry of Food Safety Professionals (1)",

        "Count": 1,

        "Value": "4294965916"

      },

      {

        "Item": "National Resource Center for Youth Services (1)",

        "Count": 1,

        "Value": "4294967009"

      },

      {

        "Item": "National Swimming Pool Foundation (1)",

        "Count": 1,

        "Value": "4294966414"

      },

      {

        "Item": "North American Registry of Midwives (1)",

        "Count": 1,

        "Value": "4294966237"

      },

      {

        "Item": "North American Transportation Management Institute (1)",

        "Count": 1,

        "Value": "4294965834"

      },

      {

        "Item": "Oracle Corporation (1)",

        "Count": 1,

        "Value": "4294966007"

      },

      {

        "Item": "Professional Association of Health Care Office Management (1)",

        "Count": 1,

        "Value": "4294965395"

      },

      {

        "Item": "Radiologic Nursing Certification Board (1)",

        "Count": 1,

        "Value": "4294965504"

      },

      {

        "Item": "Regulatory Affairs Professionals Society (1)",

        "Count": 1,

        "Value": "4294965556"

      },

      {

        "Item": "Society for Clinical Data Management (1)",

        "Count": 1,

        "Value": "4294965489"

      },

      {

        "Item": "Society for Manufacturing Engineers (1)",

        "Count": 1,

        "Value": "4294966693"

      },

      {

        "Item": "Society of Otorhinolaryngology and Head-Neck Nurses (1)",

        "Count": 1,

        "Value": "4294966062"

      },

      {

        "Item": "The Consortium of Multiple Sclerosis Centers (1)",

        "Count": 1,

        "Value": "4294965466"

      },

      {

        "Item": "The National Board of Certification for Medical Interpreters (1)",

        "Count": 1,

        "Value": "4294965578"

      },

      {

        "Item": "The Society of Clinical Research Associates (1)",

        "Count": 1,

        "Value": "4294965011"

      },

      {

        "Item": "Transcultural Nursing Certification Commission (1)",

        "Count": 1,

        "Value": "4294965506"

      },

      {

        "Item": "US Psychiatric Rehabilitation Association (1)",

        "Count": 1,

        "Value": "4294965552"

      },

      {

        "Item": "Vascular Access Certification Corporation (1)",

        "Count": 1,

        "Value": "4294965130"

      },

      {

        "Item": "Veterinary Hospital Managers Association, Inc. (1)",

        "Count": 1,

        "Value": "4294965566"

      },

      {

        "Item": "Vinyl Siding Institute (1)",

        "Count": 1,

        "Value": "4294965422"

      }

    ]

  },

  "RelatedCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "CertDetail": null,

  "CertAccredAgencyCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "NCCA (139)",

        "Count": 139,

        "Value": "4294965050"

      },

      {

        "Item": "MILITARY (124)",

        "Count": 124,

        "Value": "4294965051"

      },

      {

        "Item": "In-Demand (87)",

        "Count": 87,

        "Value": "4294965045"

      },

      {

        "Item": "CAREER CLUSTERS (40)",

        "Count": 40,

        "Value": "4294965052"

      },

      {

        "Item": "HPN (14)",

        "Count": 14,

        "Value": "4294965047"

      },

      {

        "Item": "NAM (14)",

        "Count": 14,

        "Value": "4294965046"

      },

      {

        "Item": "JOB CORPS (8)",

        "Count": 8,

        "Value": "4294965048"

      },

      {

        "Item": "ANSI (7)",

        "Count": 7,

        "Value": "4294965049"

      }

    ]

  }

}
<CertificationFinder
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"

xmlns="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels">

  <AutoCorrection/>

  <CertAccredAgencyCountList>

    <FilterList>

      <ItemCount>

        <Count>139</Count>

        <Item>NCCA (139)</Item>

        <Value>4294965050</Value>

      </ItemCount>

      <ItemCount>

        <Count>124</Count>

        <Item>MILITARY (124)</Item>

        <Value>4294965051</Value>

      </ItemCount>

      <ItemCount>

        <Count>87</Count>

        <Item>In-Demand (87)</Item>

        <Value>4294965045</Value>

      </ItemCount>

      <ItemCount>

        <Count>40</Count>

        <Item>CAREER CLUSTERS (40)</Item>

        <Value>4294965052</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>HPN (14)</Item>

        <Value>4294965047</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>NAM (14)</Item>

        <Value>4294965046</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>JOB CORPS (8)</Item>

        <Value>4294965048</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>ANSI (7)</Item>

        <Value>4294965049</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </CertAccredAgencyCountList>

  <CertAccredAgencyLegend>

    <CertificationAccredDetail>

      <Acronym>In-Demand</Acronym>

      <Description>In-demand certification.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>NCCA</Acronym>

      <Description>This certification is accredited by NCCA.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>ANSI</Acronym>

      <Description>This certification is accredited by ANSI.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>MILITARY</Acronym>

      <Description>This certification is related to military occupational specialties.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>JOB CORPS</Acronym>

      <Description>This certification is related to Job Corps training programs.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>NAM</Acronym>

      <Description>This certification is third-party industry-endorsed.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>HPN</Acronym>

      <Description>Health Professionals Network.</Description>

    </CertificationAccredDetail>

    <CertificationAccredDetail>

      <Acronym>CAREER CLUSTERS</Acronym>

      <Description>This certification is related to Career and Technical Education Career Clusters.</Description>

    </CertificationAccredDetail>

  </CertAccredAgencyLegend>

  <CertDetail i:nil="true"/>

  <CertList>

    <CertificationFinderDetail>

      <Acronym>CNML</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>NCCA</Name>

          <Order>2</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Either training or work experience required, but not both?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 3 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>

        The Certified Nurse Manager and Leader (CNML) credential, a collaborative effort between the American Organization of Nurse Executives (AONE) Credentialing Center and the American Association of Critical-Care Nurses (AACN) Certification Corporation, is now available.

        CNML certification gives nurse managers a way to validate their knowledge as they strive to excel in their demanding roles, carrying out complex leadership responsibilities that directly affect the quality of care to patients and families.

      </Description>

      <ExamDetail i:nil="true"/>

      <Id>5733-A</Id>

      <Name>Nurse Manager and Leader</Name>

      <Organization>American Association of Critical-Care Nurses </Organization>

      <OrganizationAddress>101 Columbia, Aliso Viejo, CA 92656-1491</OrganizationAddress>

      <OrganizationUrl>http://www.aacn.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.aone.org/resources/certification/about_certifications.shtml#cnml</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>CPCT/CPCA/CNT</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>In-Demand</Name>

          <Order>1</Order>

        </Credential>

        <Credential>

          <Name>MILITARY</Name>

          <Order>4</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Either training or work experience required, but not both?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 2 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>No</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>A Certified Patient Care Technician/Associate/Nurse Technician (CPCT/CPCA/CNT) works with doctors, nurses and other healthcare professionals to provide direct patient care in a variety of healthcare environments. A CPCT/CPCA/CNT may perform some or all of the following duties. However., they are not limited to just these responsibilities:&lt;br&gt;Basic patient care under the direction of nursing staff &lt;br&gt;Feeding, bathing, or moving patients and changing linens &lt;br&gt;Answer patients' call lights &lt;br&gt;Set up equipment &lt;br&gt;Escort patients to the operating and examining rooms &lt;br&gt;Gives injections or treatments and performs venipuncture laboratory test &lt;br&gt;Performs EKG's.</Description>

      <ExamDetail i:nil="true"/>

      <Id>3782-A</Id>

      <Name>Certified Patient Care Technician/Associate/Nurse Technician</Name>

      <Organization>National Healthcareer Association</Organization>

      <OrganizationAddress>134 Evergreen Place, 9th Fl., East Orange, NJ, 07018</OrganizationAddress>

      <OrganizationUrl>http://www.nhanow.com/home</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.nhanow.com/certifications/patient-care-technician</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym i:nil="true"/>

      <CertAccredAgencyList>

        <Credential>

          <Name>JOB CORPS</Name>

          <Order>5</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>Train to be a certified nurse assistant working with other health care professionals to provide quality care for elderly or sick individuals in nursing homes and hospitals and at home.</Description>

      <ExamDetail i:nil="true"/>

      <Id>7394-A</Id>

      <Name>Certified Nurse Assistant</Name>

      <Organization>American Red Cross</Organization>

      <OrganizationAddress>Public Inquiry Office, 432 18th Street, NW, Washington, DC 20006</OrganizationAddress>

      <OrganizationUrl>http://www.redcross.org</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.redcross.org/take-a-class/program-highlights/babysitting-caregiving</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>ANP</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>NCCA</Name>

          <Order>2</Order>

        </Credential>

        <Credential>

          <Name>MILITARY</Name>

          <Order>4</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Either training or work experience required, but not both?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 5 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>The purpose of the American Academy of Nurse Practitioners National Certification Program is to provide a valid and reliable program for entry-level nurse practitioners to recognize their education, knowledge and professional expertise. The Academy Certification Program provides a process for validation of an advanced practice nurse's qualifications and knowledge for practice as a nurse practitioner.</Description>

      <ExamDetail i:nil="true"/>

      <Id>2276-A</Id>

      <Name>Adult Nurse Practitioner</Name>

      <Organization>American Academy of Nurse Practitioners Certification Program</Organization>

      <OrganizationAddress>Capital Station, LBJ Building, P.O. Box 12926, Austin, TX 78711-2926</OrganizationAddress>

      <OrganizationUrl>http://www.aanpcert.org/index</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.aanpcert.org/certs/applications</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>CRNFA</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>NCCA</Name>

          <Order>2</Order>

        </Credential>

        <Credential>

          <Name>MILITARY</Name>

          <Order>4</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 5 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>CRNFA credentialing represents a level of professional achievement and a demonstrated knowledge of clinical competence and practice standards. Just as important, it demonstrates proficiency in support of quality patient care and sets a standard of commitment to the profession of operating room nursing.</Description>

      <ExamDetail i:nil="true"/>

      <Id>0661-A</Id>

      <Name>Certified Registered Nurse First Assistant</Name>

      <Organization>Competency and Credentialing Institute</Organization>

      <OrganizationAddress>2170 South Parker Road, Suite 295, Denver, CO 80231</OrganizationAddress>

      <OrganizationUrl>http://www.cc-institute.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.cc-institute.org/crnfa</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>ACNPC</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>NCCA</Name>

          <Order>2</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 5 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>

        ACNPC is a registered service mark of AACN Certification Corporation and denotes certification as an acute care nurse practitioner as granted by AACN Certification Corporation. Adult acute care nurse practitioners who have not achieved ACNPC certification status or whose ACNPC status has lapsed are not authorized to use the ACNPC credential.

      </Description>

      <ExamDetail i:nil="true"/>

      <Id>5694-A</Id>

      <Name>Acute Care Nurse Practitioner (Adult)</Name>

      <Organization>American Association of Critical-Care Nurses </Organization>

      <OrganizationAddress>101 Columbia, Aliso Viejo, CA 92656-1491</OrganizationAddress>

      <OrganizationUrl>http://www.aacn.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.aacn.org/wd/certifications/content/acnpclanding.pcms?menu=certification</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>CCRN</Acronym>

      <CertAccredAgencyList>

        <Credential>

          <Name>In-Demand</Name>

          <Order>1</Order>

        </Credential>

        <Credential>

          <Name>NCCA</Name>

          <Order>2</Order>

        </Credential>

      </CertAccredAgencyList>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 3 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Professional Development(CPD)?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>CCRN certification is achieved by those acute and critical care nurses who pass a CCRN exam in neonatal, pediatric or adult acute/critical care nursing. CCRN certification denotes to the public those practitioners who possess a distinct and clearly defined body of knowledge called acute/critical care nursing.</Description>

      <ExamDetail i:nil="true"/>

      <Id>10743-A</Id>

      <Name>Critical Care Registered Nurse</Name>

      <Organization>American Association of Critical-Care Nurses </Organization>

      <OrganizationAddress>101 Columbia, Aliso Viejo, CA 92656-1491</OrganizationAddress>

      <OrganizationUrl>http://www.aacn.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>http://www.aacn.org/wd/certifications/content/ccrnlanding.pcms?menu=certification</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>NNAAP</Acronym>

      <CertAccredAgencyList/>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>No</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>The National Nurse Aide Assessment Program (NNAAP) is the largest nurse aide certification examination program in the United States. The nurse aide exam consists of two components; a written or oral portion and a skills-demonstration portion. The oral portion is offered in English and Spanish. Each candidate must successfully complete both components of the exam before a state can add their name to the state nurse aide registry.</Description>

      <ExamDetail i:nil="true"/>

      <Id>6089-A</Id>

      <Name>National Nurse Aide Assessment Program</Name>

      <Organization>National Council of State Boards of Nursing, Inc.</Organization>

      <OrganizationAddress>111 East Wacker Drive, Suite 2900 Chicago, IL 60601-4277</OrganizationAddress>

      <OrganizationUrl>https://www.ncsbn.org/index.htm</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Core</Type>

      <TypeOrder>A</TypeOrder>

      <Url>https://www.ncsbn.org/nnaap-exam.htm</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>APNG</Acronym>

      <CertAccredAgencyList/>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 5 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>No</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description i:nil="true"/>

      <ExamDetail i:nil="true"/>

      <Id>2440-B</Id>

      <Name>Advanced Practice Nurse in Genetics</Name>

      <Organization>International Society of Nurses in Genetics</Organization>

      <OrganizationAddress>2593 West 15th St. South, Newton, IA 50208-8500</OrganizationAddress>

      <OrganizationUrl>http://www.isong.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Advanced</Type>

      <TypeOrder>B</TypeOrder>

      <Url>http://www.isong.org/ISONG_genetic_nurse.php</Url>

    </CertificationFinderDetail>

    <CertificationFinderDetail>

      <Acronym>CNS-CP</Acronym>

      <CertAccredAgencyList/>

      <CertDetailList>

        <NameValue>

          <Name>Education and Training Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Work Experience Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Oral or Written Exam Required?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renewal Required?</Name>

          <Value>Every 5 Year(s)</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Continuing Educational Units(CEU)?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Renew through Re-Examination?</Name>

          <Value>Yes</Value>

        </NameValue>

        <NameValue>

          <Name>Does applicant have choice of at least two options from above for renewal (CEU, CPD, or exam)?</Name>

          <Value>Yes</Value>

        </NameValue>

      </CertDetailList>

      <CertTestOption

      xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>

      <Description>CNS-CP certification validates the achievement of the masters-prepared CNS who has chosen to seek current proficiency as an advanced practice nurse practicing in the perioperative (pre-, intra-, and post-operative) setting. The purpose of the CNS-CP exam is to provide recognition for those CNSs serving in an advanced practice perioperative specialty. The exam does not confer initial licensure as an APRN. This specialty certification is in addition to, not in place of, primary population-focused certification.</Description>

      <ExamDetail i:nil="true"/>

      <Id>10484-B</Id>

      <Name>Clinical Nurse Specialist Perioperative Certification</Name>

      <Organization>Competency and Credentialing Institute</Organization>

      <OrganizationAddress>2170 South Parker Road, Suite 295, Denver, CO 80231</OrganizationAddress>

      <OrganizationUrl>http://www.cc-institute.org/</OrganizationUrl>

      <Related i:nil="true"/>

      <Type>Advanced</Type>

      <TypeOrder>B</TypeOrder>

      <Url>http://www.cc-institute.org/cns-cp</Url>

    </CertificationFinderDetail>

  </CertList>

  <DidYouMean/>

  <IndustryCountList>

    <FilterList>

      <ItemCount>

        <Count>369</Count>

        <Item>Ambulatory Health Care Services (369)</Item>

        <Value>4294967254</Value>

      </ItemCount>

      <ItemCount>

        <Count>358</Count>

        <Item>General Medical and Surgical Hospitals (358)</Item>

        <Value>4294967257</Value>

      </ItemCount>

      <ItemCount>

        <Count>353</Count>

        <Item>Hospitals (353)</Item>

        <Value>4294967253</Value>

      </ItemCount>

      <ItemCount>

        <Count>291</Count>

        <Item>Nursing and Residential Care Facilities (291)</Item>

        <Value>4294967252</Value>

      </ItemCount>

      <ItemCount>

        <Count>290</Count>

        <Item>Outpatient Care Centers (290)</Item>

        <Value>4294967259</Value>

      </ItemCount>

      <ItemCount>

        <Count>284</Count>

        <Item>Nursing Care Facilities (Skilled Nursing Facilities) (284)</Item>

        <Value>4294967255</Value>

      </ItemCount>

      <ItemCount>

        <Count>233</Count>

        <Item>Other Ambulatory Health Care Services (233)</Item>

        <Value>4294967258</Value>

      </ItemCount>

      <ItemCount>

        <Count>215</Count>

        <Item>Offices of Physicians (215)</Item>

        <Value>4294967251</Value>

      </ItemCount>

      <ItemCount>

        <Count>196</Count>

        <Item>Home Health Care Services (196)</Item>

        <Value>4294967225</Value>

      </ItemCount>

      <ItemCount>

        <Count>196</Count>

        <Item>Specialty (except Psychiatric and Substance Abuse) Hospitals (196)</Item>

        <Value>4294967256</Value>

      </ItemCount>

      <ItemCount>

        <Count>188</Count>

        <Item>Residential Intellectual and Developmental Disability, Mental Health, and Substance Abuse Facilities (188)</Item>

        <Value>4294967112</Value>

      </ItemCount>

      <ItemCount>

        <Count>187</Count>

        <Item>Offices of Other Health Practitioners (187)</Item>

        <Value>4294967260</Value>

      </ItemCount>

      <ItemCount>

        <Count>182</Count>

        <Item>Psychiatric and Substance Abuse Hospitals (182)</Item>

        <Value>4294967113</Value>

      </ItemCount>

      <ItemCount>

        <Count>174</Count>

        <Item>Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly (174)</Item>

        <Value>4294967115</Value>

      </ItemCount>

      <ItemCount>

        <Count>170</Count>

        <Item>Other Residential Care Facilities (170)</Item>

        <Value>4294967111</Value>

      </ItemCount>

      <ItemCount>

        <Count>70</Count>

        <Item>Medical and Diagnostic Laboratories (70)</Item>

        <Value>4294967103</Value>

      </ItemCount>

      <ItemCount>

        <Count>58</Count>

        <Item>Offices of Dentists (58)</Item>

        <Value>4294967125</Value>

      </ItemCount>

      <ItemCount>

        <Count>57</Count>

        <Item>Professional, Scientific, and Technical Services (57)</Item>

        <Value>4294967244</Value>

      </ItemCount>

      <ItemCount>

        <Count>45</Count>

        <Item>Educational Services (45)</Item>

        <Value>4294967243</Value>

      </ItemCount>

      <ItemCount>

        <Count>44</Count>

        <Item>Individual and Family Services (44)</Item>

        <Value>4294966972</Value>

      </ItemCount>

      <ItemCount>

        <Count>38</Count>

        <Item>Social Assistance (38)</Item>

        <Value>4294966973</Value>

      </ItemCount>

      <ItemCount>

        <Count>31</Count>

        <Item>Other Schools and Instruction (31)</Item>

        <Value>4294966669</Value>

      </ItemCount>

      <ItemCount>

        <Count>30</Count>

        <Item>Other Professional, Scientific, and Technical Services (30)</Item>

        <Value>4294967143</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Technical and Trade Schools (17)</Item>

        <Value>4294966589</Value>

      </ItemCount>

      <ItemCount>

        <Count>16</Count>

        <Item>Scientific Research and Development Services (16)</Item>

        <Value>4294967081</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>Business, Professional, Labor, Political, and Similar Organizations (14)</Item>

        <Value>4294966474</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Administrative and Support Services (13)</Item>

        <Value>4294967268</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Community Food and Housing, and Emergency and Other Relief Services (12)</Item>

        <Value>4294966950</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Management, Scientific, and Technical Consulting Services (12)</Item>

        <Value>4294967207</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Civic and Social Organizations (11)</Item>

        <Value>4294966755</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Religious, Grantmaking, Civic, Professional, and Similar Organizations (11)</Item>

        <Value>4294967052</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Vocational Rehabilitation Services (11)</Item>

        <Value>4294966971</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Business Support Services (10)</Item>

        <Value>4294967190</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Colleges, Universities, and Professional Schools (9)</Item>

        <Value>4294966605</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Elementary and Secondary Schools (7)</Item>

        <Value>4294966970</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Junior Colleges (7)</Item>

        <Value>4294966606</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Management of Companies and Enterprises (7)</Item>

        <Value>4294967280</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Accommodation (6)</Item>

        <Value>4294967172</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Administration of Housing Programs, Urban Planning, and Community Development (6)</Item>

        <Value>4294966227</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Computer and Electronic Product Manufacturing (6)</Item>

        <Value>4294967282</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Justice, Public Order, and Safety Activities (6)</Item>

        <Value>4294966649</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Machinery Manufacturing (6)</Item>

        <Value>4294967228</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Personal Care Services (6)</Item>

        <Value>4294967010</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Support Activities for Agriculture and Forestry (6)</Item>

        <Value>4294967159</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Support Activities for Animal Production (6)</Item>

        <Value>4294966904</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Chemical Manufacturing (5)</Item>

        <Value>4294967082</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Educational Support Services (5)</Item>

        <Value>4294966604</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Transportation Equipment Manufacturing (5)</Item>

        <Value>4294967235</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Administration of Human Resource Programs (4)</Item>

        <Value>4294966458</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Amusement, Gambling, and Recreation Industries (4)</Item>

        <Value>4294967186</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Other Personal Services (4)</Item>

        <Value>4294966492</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Child Day Care Services (3)</Item>

        <Value>4294966159</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Electrical Equipment, Appliance, and Component Manufacturing (3)</Item>

        <Value>4294966581</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Investigation and Security Services (3)</Item>

        <Value>4294966952</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Social Advocacy Organizations (3)</Item>

        <Value>4294966226</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Accounting, Tax Preparation, Bookkeeping, and Payroll Services (2)</Item>

        <Value>4294967144</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Architectural, Engineering, and Related Services (2)</Item>

        <Value>4294967180</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Basic Chemical Manufacturing (2)</Item>

        <Value>4294966798</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Employment Services (2)</Item>

        <Value>4294967191</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Fabricated Metal Product Manufacturing (2)</Item>

        <Value>4294966984</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Food Services and Drinking Places (2)</Item>

        <Value>4294967169</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Insurance Carriers and Related Activities (2)</Item>

        <Value>4294967218</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Security and International Affairs (2)</Item>

        <Value>4294966517</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Office Administrative Services (2)</Item>

        <Value>4294967267</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Other Amusement and Recreation Industries (2)</Item>

        <Value>4294967178</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Other Support Services (2)</Item>

        <Value>4294967017</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Performing Arts, Spectator Sports, and Related Industries (2)</Item>

        <Value>4294967045</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Personal and Laundry Services (2)</Item>

        <Value>4294967011</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Private Households (2)</Item>

        <Value>4294966685</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Support Activities for Road Transportation (2)</Item>

        <Value>4294966940</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Support Activities for Transportation (2)</Item>

        <Value>4294966941</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Agencies, Brokerages, and Other Insurance Related Activities (1)</Item>

        <Value>4294967212</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Animal Food Manufacturing (1)</Item>

        <Value>4294965915</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Animal Slaughtering and Processing (1)</Item>

        <Value>4294965910</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Architectural and Structural Metals Manufacturing (1)</Item>

        <Value>4294966777</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Bakeries and Tortilla Manufacturing (1)</Item>

        <Value>4294965908</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Building Finishing Contractors (1)</Item>

        <Value>4294966724</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Commercial and Service Industry Machinery Manufacturing (1)</Item>

        <Value>4294966768</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Construction of Buildings (1)</Item>

        <Value>4294966995</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Dairy Product Manufacturing (1)</Item>

        <Value>4294965911</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Data Processing, Hosting, and Related Services (1)</Item>

        <Value>4294967281</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Drinking Places (Alcoholic Beverages) (1)</Item>

        <Value>4294966106</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Facilities Support Services (1)</Item>

        <Value>4294967201</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Farm Product Raw Material Merchant Wholesalers (1)</Item>

        <Value>4294966281</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Food Manufacturing (1)</Item>

        <Value>4294966998</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Fruit and Vegetable Preserving and Specialty Food Manufacturing (1)</Item>

        <Value>4294965912</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Grain and Oilseed Milling (1)</Item>

        <Value>4294965914</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Grocery and Related Product Merchant Wholesalers (1)</Item>

        <Value>4294965906</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Hardware Manufacturing (1)</Item>

        <Value>4294966775</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Industrial Machinery Manufacturing (1)</Item>

        <Value>4294966769</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Insurance Carriers (1)</Item>

        <Value>4294967213</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Merchant Wholesalers, Durable Goods (1)</Item>

        <Value>4294967030</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Merchant Wholesalers, Nondurable Goods (1)</Item>

        <Value>4294966997</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Miscellaneous Durable Goods Merchant Wholesalers (1)</Item>

        <Value>4294966413</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Miscellaneous Manufacturing (1)</Item>

        <Value>4294966993</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Navigational, Measuring, Electromedical, and Control Instruments Manufacturing (1)</Item>

        <Value>4294966580</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Other Chemical Product and Preparation Manufacturing (1)</Item>

        <Value>4294966293</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Other Food Manufacturing (1)</Item>

        <Value>4294965907</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Other General Purpose Machinery Manufacturing (1)</Item>

        <Value>4294966765</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Other Support Activities for Transportation (1)</Item>

        <Value>4294966416</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Primary Metal Manufacturing (1)</Item>

        <Value>4294966787</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Promoters of Performing Arts, Sports, and Similar Events (1)</Item>

        <Value>4294966163</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Real Estate (1)</Item>

        <Value>4294967177</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Religious Organizations (1)</Item>

        <Value>4294966241</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Remediation and Other Waste Management Services (1)</Item>

        <Value>4294966797</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Residential Building Construction (1)</Item>

        <Value>4294966992</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Seafood Product Preparation and Packaging (1)</Item>

        <Value>4294965909</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Services to Buildings and Dwellings (1)</Item>

        <Value>4294967179</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Space Research and Technology (1)</Item>

        <Value>4294966260</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Specialty Trade Contractors (1)</Item>

        <Value>4294967137</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Spring and Wire Product Manufacturing (1)</Item>

        <Value>4294966774</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Steel Product Manufacturing from Purchased Steel (1)</Item>

        <Value>4294966783</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Sugar and Confectionery Product Manufacturing (1)</Item>

        <Value>4294965913</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Telecommunications (1)</Item>

        <Value>4294967049</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Traveler Accommodation (1)</Item>

        <Value>4294967171</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Waste Management and Remediation Services (1)</Item>

        <Value>4294967152</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </IndustryCountList>

  <IsDirectMatch>K</IsDirectMatch>

  <OccupationCountList>

    <FilterList>

      <ItemCount>

        <Count>171</Count>

        <Item>Registered Nurses (171)</Item>

        <Value>4294967261</Value>

      </ItemCount>

      <ItemCount>

        <Count>75</Count>

        <Item>Nurse Practitioners (75)</Item>

        <Value>4294967264</Value>

      </ItemCount>

      <ItemCount>

        <Count>61</Count>

        <Item>Medical and Health Services Managers (61)</Item>

        <Value>4294966806</Value>

      </ItemCount>

      <ItemCount>

        <Count>54</Count>

        <Item>Critical Care Nurses (54)</Item>

        <Value>4294967262</Value>

      </ItemCount>

      <ItemCount>

        <Count>53</Count>

        <Item>Medical Records and Health Information Technicians (53)</Item>

        <Value>4294966324</Value>

      </ItemCount>

      <ItemCount>

        <Count>50</Count>

        <Item>Clinical Nurse Specialists (50)</Item>

        <Value>4294966843</Value>

      </ItemCount>

      <ItemCount>

        <Count>48</Count>

        <Item>Acute Care Nurses (48)</Item>

        <Value>4294966841</Value>

      </ItemCount>

      <ItemCount>

        <Count>46</Count>

        <Item>Medical Assistants (46)</Item>

        <Value>4294966893</Value>

      </ItemCount>

      <ItemCount>

        <Count>43</Count>

        <Item>Vocational Education Teachers, Postsecondary (43)</Item>

        <Value>4294966983</Value>

      </ItemCount>

      <ItemCount>

        <Count>38</Count>

        <Item>Internists, General (38)</Item>

        <Value>4294967129</Value>

      </ItemCount>

      <ItemCount>

        <Count>33</Count>

        <Item>Medical Secretaries (33)</Item>

        <Value>4294966325</Value>

      </ItemCount>

      <ItemCount>

        <Count>30</Count>

        <Item>Licensed Practical and Licensed Vocational Nurses (30)</Item>

        <Value>4294966539</Value>

      </ItemCount>

      <ItemCount>

        <Count>29</Count>

        <Item>Healthcare Social Workers (29)</Item>

        <Value>4294966980</Value>

      </ItemCount>

      <ItemCount>

        <Count>29</Count>

        <Item>Mental Health and Substance Abuse Social Workers (29)</Item>

        <Value>4294966981</Value>

      </ItemCount>

      <ItemCount>

        <Count>27</Count>

        <Item>Advanced Practice Psychiatric Nurses (27)</Item>

        <Value>4294966842</Value>

      </ItemCount>

      <ItemCount>

        <Count>26</Count>

        <Item>Nurse Anesthetists (26)</Item>

        <Value>4294966155</Value>

      </ItemCount>

      <ItemCount>

        <Count>25</Count>

        <Item>Billing, Cost, and Rate Clerks (25)</Item>

        <Value>4294966199</Value>

      </ItemCount>

      <ItemCount>

        <Count>24</Count>

        <Item>Psychiatrists (24)</Item>

        <Value>4294967086</Value>

      </ItemCount>

      <ItemCount>

        <Count>24</Count>

        <Item>Substance Abuse and Behavioral Disorder Counselors (24)</Item>

        <Value>4294966975</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>Nurse Midwives (21)</Item>

        <Value>4294966538</Value>

      </ItemCount>

      <ItemCount>

        <Count>20</Count>

        <Item>Family and General Practitioners (20)</Item>

        <Value>4294967116</Value>

      </ItemCount>

      <ItemCount>

        <Count>20</Count>

        <Item>Health Educators (20)</Item>

        <Value>4294966607</Value>

      </ItemCount>

      <ItemCount>

        <Count>19</Count>

        <Item>Veterinary Technologists and Technicians (19)</Item>

        <Value>4294966103</Value>

      </ItemCount>

      <ItemCount>

        <Count>18</Count>

        <Item>Nursing Assistants (18)</Item>

        <Value>4294965875</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Home Health Aides (17)</Item>

        <Value>4294965874</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Mental Health Counselors (17)</Item>

        <Value>4294966974</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Pediatricians, General (17)</Item>

        <Value>4294967224</Value>

      </ItemCount>

      <ItemCount>

        <Count>16</Count>

        <Item>Child, Family, and School Social Workers (16)</Item>

        <Value>4294966979</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Clinical Psychologists (15)</Item>

        <Value>4294966396</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Rehabilitation Counselors (15)</Item>

        <Value>4294966978</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>Physical Therapists (14)</Item>

        <Value>4294966935</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>Physician Assistants (14)</Item>

        <Value>4294967223</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Counseling Psychologists (13)</Item>

        <Value>4294966397</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Dietitians and Nutritionists (13)</Item>

        <Value>4294966610</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Neurologists (13)</Item>

        <Value>4294967095</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Physical Medicine and Rehabilitation Physicians (13)</Item>

        <Value>4294967092</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Medical and Clinical Laboratory Technicians (12)</Item>

        <Value>4294966894</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Occupational Therapists (12)</Item>

        <Value>4294967033</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Training and Development Specialists (12)</Item>

        <Value>4294967199</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Clinical Research Coordinators (11)</Item>

        <Value>4294965597</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Personal Care Aides (11)</Item>

        <Value>4294966475</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Veterinary Assistants and Laboratory Animal Caretakers (10)</Item>

        <Value>4294966104</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Medical and Clinical Laboratory Technologists (9)</Item>

        <Value>4294966895</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Occupational Health and Safety Specialists (9)</Item>

        <Value>4294967153</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Occupational Therapy Assistants (9)</Item>

        <Value>4294967037</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Psychiatric Technicians (9)</Item>

        <Value>4294966958</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Compliance Managers (8)</Item>

        <Value>4294966331</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Construction Managers (8)</Item>

        <Value>4294966723</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Hospitalists (8)</Item>

        <Value>4294967263</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Marriage and Family Therapists (8)</Item>

        <Value>4294966977</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Occupational Health and Safety Technicians (8)</Item>

        <Value>4294967157</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Phlebotomists (8)</Item>

        <Value>4294966595</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Recreational Therapists (8)</Item>

        <Value>4294967066</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Clinical, Counseling, and School Psychologists (7)</Item>

        <Value>4294966898</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>First-Line Supervisors of Construction Trades and Extraction Workers (7)</Item>

        <Value>4294966939</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Health Specialties Teachers, Postsecondary (7)</Item>

        <Value>4294966596</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Interpreters and Translators (7)</Item>

        <Value>4294966447</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Midwives (7)</Item>

        <Value>4294966540</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Nursing Instructors and Teachers, Postsecondary (7)</Item>

        <Value>4294966071</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Obstetricians and Gynecologists (7)</Item>

        <Value>4294967105</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Psychiatric Aides (7)</Item>

        <Value>4294966959</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Cardiovascular Technologists and Technicians (6)</Item>

        <Value>4294967072</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Educational, Guidance, School, and Vocational Counselors (6)</Item>

        <Value>4294966976</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Industrial Production Managers (6)</Item>

        <Value>4294966985</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Informatics Nurse Specialists (6)</Item>

        <Value>4294966300</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Nonfarm Animal Caretakers (6)</Item>

        <Value>4294966534</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Occupational Therapy Aides (6)</Item>

        <Value>4294967034</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Pharmacists (6)</Item>

        <Value>4294966658</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Radiologists (6)</Item>

        <Value>4294967084</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Sports Medicine Physicians (6)</Item>

        <Value>4294967118</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Surgeons (6)</Item>

        <Value>4294967123</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Anesthesiologists (5)</Item>

        <Value>4294967126</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Education Administrators, Postsecondary (5)</Item>

        <Value>4294965646</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Exercise Physiologists (5)</Item>

        <Value>4294966670</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Financial Managers (5)</Item>

        <Value>4294967271</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>First-Line Supervisors of Production and Operating Workers (5)</Item>

        <Value>4294967168</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Physical Therapist Assistants (5)</Item>

        <Value>4294967035</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Preventive Medicine Physicians (5)</Item>

        <Value>4294967089</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Quality Control Systems Managers (5)</Item>

        <Value>4294966804</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Respiratory Therapists (5)</Item>

        <Value>4294967073</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Architectural and Engineering Managers (4)</Item>

        <Value>4294966694</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Career/Technical Education Teachers, Secondary School (4)</Item>

        <Value>4294966460</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Clergy (4)</Item>

        <Value>4294966228</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Construction Laborers (4)</Item>

        <Value>4294966728</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Dermatologists (4)</Item>

        <Value>4294967121</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Directors, Religious Activities and Education (4)</Item>

        <Value>4294966229</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Electrical and Electronic Equipment Assemblers (4)</Item>

        <Value>4294966019</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Electromechanical Equipment Assemblers (4)</Item>

        <Value>4294965989</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Emergency Management Directors (4)</Item>

        <Value>4294966799</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Emergency Medical Technicians and Paramedics (4)</Item>

        <Value>4294967057</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Environmental Science and Protection Technicians, Including Health (4)</Item>

        <Value>4294967156</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Environmental Scientists and Specialists, Including Health (4)</Item>

        <Value>4294967155</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>General and Operations Managers (4)</Item>

        <Value>4294967208</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Inspectors, Testers, Sorters, Samplers, and Weighers (4)</Item>

        <Value>4294967134</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Medical Scientists, Except Epidemiologists (4)</Item>

        <Value>4294967102</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Nuclear Medicine Physicians (4)</Item>

        <Value>4294966037</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Ophthalmologists (4)</Item>

        <Value>4294965496</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Pathologists (4)</Item>

        <Value>4294967109</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Physical Therapist Aides (4)</Item>

        <Value>4294967036</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Physicians and Surgeons, All Other (4)</Item>

        <Value>4294967119</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Police, Fire, and Ambulance Dispatchers (4)</Item>

        <Value>4294966951</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Radiologic Technicians (4)</Item>

        <Value>4294966274</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Self-Enrichment Education Teachers (4)</Item>

        <Value>4294966644</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Social and Community Service Managers (4)</Item>

        <Value>4294966928</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Social and Human Service Assistants (4)</Item>

        <Value>4294966453</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Veterinarians (4)</Item>

        <Value>4294966810</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Aerospace Engineering and Operations Technicians (3)</Item>

        <Value>4294966735</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Allergists and Immunologists (3)</Item>

        <Value>4294967128</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Art Therapists (3)</Item>

        <Value>4294966265</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Chief Executives (3)</Item>

        <Value>4294966642</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Clinical Data Managers (3)</Item>

        <Value>4294965487</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Electro-Mechanical Technicians (3)</Item>

        <Value>4294966736</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>First-Line Supervisors of Mechanics, Installers, and Repairers (3)</Item>

        <Value>4294967167</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Fitness and Wellness Coordinators (3)</Item>

        <Value>4294966612</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Industrial Engineering Technicians (3)</Item>

        <Value>4294966737</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Industrial Safety and Health Engineers (3)</Item>

        <Value>4294966803</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Information Technology Project Managers (3)</Item>

        <Value>4294966846</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Mechanical Engineering Technicians (3)</Item>

        <Value>4294966738</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Medical Equipment Preparers (3)</Item>

        <Value>4294966869</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Medical Transcriptionists (3)</Item>

        <Value>4294966083</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Podiatrists (3)</Item>

        <Value>4294967075</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Poets, Lyricists and Creative Writers (3)</Item>

        <Value>4294966897</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Product Safety Engineers (3)</Item>

        <Value>4294966801</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Recreation and Fitness Studies Teachers, Postsecondary (3)</Item>

        <Value>4294966617</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Recreation Workers (3)</Item>

        <Value>4294966927</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Regulatory Affairs Specialists (3)</Item>

        <Value>4294965977</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>School Psychologists (3)</Item>

        <Value>4294966212</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Security Management Specialists (3)</Item>

        <Value>4294966342</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Speech-Language Pathologists (3)</Item>

        <Value>4294967070</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Urologists (3)</Item>

        <Value>4294967077</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Administrative Services Managers (2)</Item>

        <Value>4294967203</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Auditors (2)</Item>

        <Value>4294967273</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Billing and Posting Clerks (2)</Item>

        <Value>4294965873</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Biological Technicians (2)</Item>

        <Value>4294967148</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Biomedical Engineers (2)</Item>

        <Value>4294966868</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Carpenters (2)</Item>

        <Value>4294965870</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Civil Engineering Technicians (2)</Item>

        <Value>4294966725</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Community Health Workers (2)</Item>

        <Value>4294965283</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Compliance Officers (2)</Item>

        <Value>4294966645</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computer and Information Systems Managers (2)</Item>

        <Value>4294966961</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computer Science Teachers, Postsecondary (2)</Item>

        <Value>4294967245</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computer User Support Specialists (2)</Item>

        <Value>4294967283</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Dietetic Technicians (2)</Item>

        <Value>4294966611</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electrical and Electronic Engineering Technicians (2)</Item>

        <Value>4294966943</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electrical Engineering Technicians (2)</Item>

        <Value>4294966945</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electrical Engineers (2)</Item>

        <Value>4294966744</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electronics Engineering Technicians (2)</Item>

        <Value>4294966944</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electronics Engineers, Except Computer (2)</Item>

        <Value>4294966938</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Environmental Engineering Technicians (2)</Item>

        <Value>4294967149</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Epidemiologists (2)</Item>

        <Value>4294966135</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Financial Managers, Branch or Department (2)</Item>

        <Value>4294966667</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>First-Line Supervisors of Animal Husbandry and Animal Care Workers (2)</Item>

        <Value>4294966101</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Fitness Trainers and Aerobics Instructors (2)</Item>

        <Value>4294966756</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Healthcare Practitioners and Technical Workers, All Other (2)</Item>

        <Value>4294965139</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Healthcare Support Workers, All Other (2)</Item>

        <Value>4294965140</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Home Economics Teachers, Postsecondary (2)</Item>

        <Value>4294966451</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Instructional Coordinators (2)</Item>

        <Value>4294965475</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Janitors and Cleaners, Except Maids and Housekeeping Cleaners (2)</Item>

        <Value>4294966545</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Lodging Managers (2)</Item>

        <Value>4294967204</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Maids and Housekeeping Cleaners (2)</Item>

        <Value>4294966544</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Manufacturing Engineers (2)</Item>

        <Value>4294966692</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Mechanical Engineers (2)</Item>

        <Value>4294966746</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Psychology Teachers, Postsecondary (2)</Item>

        <Value>4294965493</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Radiologic Technologists (2)</Item>

        <Value>4294966272</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Regulatory Affairs Managers (2)</Item>

        <Value>4294965555</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Respiratory Therapy Technicians (2)</Item>

        <Value>4294965563</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Social Work Teachers, Postsecondary (2)</Item>

        <Value>4294965964</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Social Workers, All Other (2)</Item>

        <Value>4294965135</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Special Education Teachers, Secondary School (2)</Item>

        <Value>4294966464</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Surgical Technologists (2)</Item>

        <Value>4294966625</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Treasurers and Controllers (2)</Item>

        <Value>4294967221</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Aerospace Engineers (1)</Item>

        <Value>4294966741</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Bill and Account Collectors (1)</Item>

        <Value>4294965579</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Bioinformatics Technicians (1)</Item>

        <Value>4294965488</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Biostatisticians (1)</Item>

        <Value>4294965574</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Business Teachers, Postsecondary (1)</Item>

        <Value>4294967016</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Childcare Workers (1)</Item>

        <Value>4294966686</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Chiropractors (1)</Item>

        <Value>4294966614</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Communications Teachers, Postsecondary (1)</Item>

        <Value>4294966454</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Computer Network Support Specialists (1)</Item>

        <Value>4294967284</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Computer Systems Analysts (1)</Item>

        <Value>4294967285</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Credit Analysts (1)</Item>

        <Value>4294965869</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Credit Authorizers, Checkers, and Clerks (1)</Item>

        <Value>4294965624</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Credit Counselors (1)</Item>

        <Value>4294966399</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Database Administrators (1)</Item>

        <Value>4294966968</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Database Architects (1)</Item>

        <Value>4294966000</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Dental Assistants (1)</Item>

        <Value>4294966892</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Dental Hygienists (1)</Item>

        <Value>4294966118</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Dentists, General (1)</Item>

        <Value>4294966711</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Document Management Specialists (1)</Item>

        <Value>4294966964</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electrical and Electronics Drafters (1)</Item>

        <Value>4294965986</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electrical and Electronics Repairers, Commercial and Industrial Equipment (1)</Item>

        <Value>4294966839</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electrical Drafters (1)</Item>

        <Value>4294965988</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electronic Drafters (1)</Item>

        <Value>4294965987</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Engineering Teachers, Postsecondary (1)</Item>

        <Value>4294966445</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>English Language and Literature Teachers, Postsecondary (1)</Item>

        <Value>4294966514</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Environmental Engineers (1)</Item>

        <Value>4294966665</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Farm and Home Management Advisors (1)</Item>

        <Value>4294966452</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Fire-Prevention and Protection Engineers (1)</Item>

        <Value>4294966800</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>First-Line Supervisors of Housekeeping and Janitorial Workers (1)</Item>

        <Value>4294967173</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>First-Line Supervisors of Office and Administrative Support Workers (1)</Item>

        <Value>4294966436</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>First-Line Supervisors of Personal Service Workers (1)</Item>

        <Value>4294966687</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>First-Line Supervisors of Transportation and Material-Moving Machine and Vehicle Operators (1)</Item>

        <Value>4294966720</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Food Scientists and Technologists (1)</Item>

        <Value>4294967000</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Food Service Managers (1)</Item>

        <Value>4294967170</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Genetic Counselors (1)</Item>

        <Value>4294966026</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Health and Safety Engineers, Except Mining Safety Engineers and Inspectors (1)</Item>

        <Value>4294966802</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Health Diagnosing and Treating Practitioners, All Other (1)</Item>

        <Value>4294966075</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Health Technologists and Technicians, All Other (1)</Item>

        <Value>4294965138</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Highway Maintenance Workers (1)</Item>

        <Value>4294966949</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Industrial Engineers (1)</Item>

        <Value>4294966749</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Industrial-Organizational Psychologists (1)</Item>

        <Value>4294966395</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Information Security Analysts (1)</Item>

        <Value>4294967286</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Instructional Designers and Technologists (1)</Item>

        <Value>4294966695</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Interior Designers (1)</Item>

        <Value>4294967003</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Laundry and Dry-Cleaning Workers (1)</Item>

        <Value>4294966174</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Lawyers (1)</Item>

        <Value>4294966528</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Librarians (1)</Item>

        <Value>4294966392</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Loss Prevention Managers (1)</Item>

        <Value>4294966805</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Management Analysts (1)</Item>

        <Value>4294967269</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Manufacturing Engineering Technologists (1)</Item>

        <Value>4294966689</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Materials Engineers (1)</Item>

        <Value>4294966745</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Mechanical Drafters (1)</Item>

        <Value>4294966206</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Medical Appliance Technicians (1)</Item>

        <Value>4294966168</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Middle School Teachers, Except Special and Career/Technical Education (1)</Item>

        <Value>4294966477</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Orthotists and Prosthetists (1)</Item>

        <Value>4294966170</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Personal Care and Service Workers, All Other (1)</Item>

        <Value>4294965059</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Pharmacy Aides (1)</Item>

        <Value>4294965353</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Pharmacy Technicians (1)</Item>

        <Value>4294966321</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Physicists (1)</Item>

        <Value>4294967083</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Pressers, Textile, Garment, and Related Materials (1)</Item>

        <Value>4294966172</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Residential Advisors (1)</Item>

        <Value>4294967008</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Risk Management Specialists (1)</Item>

        <Value>4294967146</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Secondary School Teachers, Except Special and Career/Technical Education (1)</Item>

        <Value>4294966473</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Software Developers, Systems Software (1)</Item>

        <Value>4294966937</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Storage and Distribution Managers (1)</Item>

        <Value>4294966370</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Therapists, All Other (1)</Item>

        <Value>4294965261</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Training and Development Managers (1)</Item>

        <Value>4294967194</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Validation Engineers (1)</Item>

        <Value>4294966750</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Wholesale and Retail Buyers, Except Farm Products (1)</Item>

        <Value>4294966365</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </OccupationCountList>

  <OrgCountList>

    <FilterList>

      <ItemCount>

        <Count>30</Count>

        <Item>American Nurses Credentialing Center (30)</Item>

        <Value>4294966844</Value>

      </ItemCount>

      <ItemCount>

        <Count>26</Count>

        <Item>American Academy of Professional Coders (26)</Item>

        <Value>4294966200</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>American Association of Critical-Care Nurses (15)</Item>

        <Value>4294966156</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Wound Ostomy Continence Nursing Certification Board (15)</Item>

        <Value>4294966078</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>American Board of Internal Medicine (12)</Item>

        <Value>4294967114</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>National Association of Social Workers (12)</Item>

        <Value>4294966558</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>American Board of Physical Therapy Specialties (8)</Item>

        <Value>4294966936</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>American Board of Psychiatry and Neurology, Inc. (8)</Item>

        <Value>4294967087</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>National Center for Construction Education and Research (8)</Item>

        <Value>4294965736</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Nephrology Nursing Certification Commission (8)</Item>

        <Value>4294966085</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>The National Certification Corporation (8)</Item>

        <Value>4294967266</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>American Health Information Management Association (7)</Item>

        <Value>4294966326</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>American Occupational Therapy Association, Inc. (7)</Item>

        <Value>4294965510</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Biofeedback Certification International Alliance (7)</Item>

        <Value>4294966119</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Hospice and Palliative Nurses Association (7)</Item>

        <Value>4294965098</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Oncology Nursing Certification Corporation (7)</Item>

        <Value>4294966124</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Academy of Internal Medicine for Veterinary Technicians (6)</Item>

        <Value>4294965650</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>American Association of Bioanalysts (6)</Item>

        <Value>4294965362</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>American Farrier's Association (6)</Item>

        <Value>4294965113</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>National Alliance for Direct Support Professionals (6)</Item>

        <Value>4294965450</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>National Healthcareer Association (6)</Item>

        <Value>4294965876</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>American Association of Healthcare Administrative Management (5)</Item>

        <Value>4294965973</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>American Board of Pediatrics (5)</Item>

        <Value>4294967094</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>American Hotel and Lodging Association Educational Institute (5)</Item>

        <Value>4294967174</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Association of Clinical Research Professionals (5)</Item>

        <Value>4294965598</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Commission on Dietetic Registration (5)</Item>

        <Value>4294965590</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>National Board of Diving and Hyperbaric Medical Technology (5)</Item>

        <Value>4294965678</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>National Certification Council for Activity Professionals (5)</Item>

        <Value>4294966507</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Pediatric Nursing Certification Board (5)</Item>

        <Value>4294966674</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>The Breining Institute (5)</Item>

        <Value>4294965444</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Association of Psychiatric Technicians, Inc. (4)</Item>

        <Value>4294966960</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Association of Sexuality Educators, Counselors and Therapists (4)</Item>

        <Value>4294966230</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Board of Physical Medicine &amp; Rehabilitation (4)</Item>

        <Value>4294967093</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Phlebotomy Association (4)</Item>

        <Value>4294965294</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Society for Clinical Pathology (4)</Item>

        <Value>4294966302</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>American Society of Phlebotomy Technicians (4)</Item>

        <Value>4294966065</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Association Connecting Electronics Industries (4)</Item>

        <Value>4294965990</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Board of Certification for Emergency Nursing (4)</Item>

        <Value>4294966160</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Board of Medical Specialty Coding and Compliance (4)</Item>

        <Value>4294965128</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>International Academies of Emergency Dispatch (4)</Item>

        <Value>4294965148</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>International Association of Healthcare Security and Safety (4)</Item>

        <Value>4294965517</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>International Certification &amp; Reciprocity Consortium (4)</Item>

        <Value>4294966394</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>National Association of Directors of Nursing Administration in Long Term Care (4)</Item>

        <Value>4294965192</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>National Board of Certification for Medical Interpreters (4)</Item>

        <Value>4294965187</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>National Council of State Boards of Nursing, Inc. (4)</Item>

        <Value>4294965103</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Academy of Nurse Practitioners Certification Program (3)</Item>

        <Value>4294966141</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Association for Laboratory Animal Science (3)</Item>

        <Value>4294966105</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Board for Occupational Health Nurses (3)</Item>

        <Value>4294966624</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Board of Bioanalysis (3)</Item>

        <Value>4294966092</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Board of Family Medicine (3)</Item>

        <Value>4294967117</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Board of Physician Specialties (3)</Item>

        <Value>4294965497</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Board of Wound Management (3)</Item>

        <Value>4294965622</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>American Council on Exercise (3)</Item>

        <Value>4294966757</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Association of Christian Alcohol and Drug Counselors (3)</Item>

        <Value>4294965436</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Board of Nephrology Examiners Technology Nursing (3)</Item>

        <Value>4294965141</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Board of Pharmacy Specialties (3)</Item>

        <Value>4294966651</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Certification Board for Urologic Nurses and Associates (3)</Item>

        <Value>4294966098</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Competency and Credentialing Institute (3)</Item>

        <Value>4294966808</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Health IT Certification (3)</Item>

        <Value>4294965484</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Healthcare Financial Management Association (3)</Item>

        <Value>4294966149</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>International Board for Certification of Safety Managers (3)</Item>

        <Value>4294966807</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>International Federation for Biblio/Poetry Therapy (3)</Item>

        <Value>4294965006</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>National Association for Practical Nurse Education and Service, Inc. (3)</Item>

        <Value>4294965708</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>National Board for Certified Counselors (3)</Item>

        <Value>4294966982</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>National Federation of Licensed Practical Nurses, Inc. (3)</Item>

        <Value>4294965707</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>National Institute for Metalworking Skills (3)</Item>

        <Value>4294966796</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Orthopaedic Nurses Certification Board (3)</Item>

        <Value>4294965558</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Academy of Lactation Policy and Practice (2)</Item>

        <Value>4294965090</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Association of Family and Consumer Sciences (2)</Item>

        <Value>4294966455</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Association of Neuroscience Nurses - American Board of Neuroscience Nursing (2)</Item>

        <Value>4294966154</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Board of Perianesthesia Nursing Certification, Inc. (2)</Item>

        <Value>4294965531</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Board of Professional Psychology (2)</Item>

        <Value>4294966213</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Board of Vascular Medicine (2)</Item>

        <Value>4294965407</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American College of Chest Physicians (2)</Item>

        <Value>4294965129</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American College of Veterinary Pathologists (2)</Item>

        <Value>4294965304</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Correctional Association (2)</Item>

        <Value>4294965766</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Hospital Association (2)</Item>

        <Value>4294965890</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Midwifery Certification Board (2)</Item>

        <Value>4294965606</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Osteopathic Board of Family Physicians (2)</Item>

        <Value>4294966040</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Osteopathic Board of Internal Medicine (2)</Item>

        <Value>4294966039</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Osteopathic Board of Neurologists and Psychiatrists (2)</Item>

        <Value>4294966036</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Osteopathic Board of Physical Medicine and Rehabilitation (2)</Item>

        <Value>4294966029</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Red Cross (2)</Item>

        <Value>4294966292</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>American Society of Clinical Hypnosis (2)</Item>

        <Value>4294965164</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Art Therapy Credentials Board (2)</Item>

        <Value>4294966536</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Association of Technology, Management, and Applied Engineering (2)</Item>

        <Value>4294966696</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Board for Certification of Nutrition Specialists (2)</Item>

        <Value>4294965086</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Brainbench (2)</Item>

        <Value>4294966317</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Certification Commission for Healthcare Interpreters (2)</Item>

        <Value>4294965394</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computing Technology Industry Association (CompTIA) (2)</Item>

        <Value>4294967250</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Dermatology Nurses' Association (2)</Item>

        <Value>4294965501</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Forensic Nursing Certification Board (2)</Item>

        <Value>4294965474</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Health Care Compliance Association (2)</Item>

        <Value>4294965583</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>HIV/AIDS Nursing Certification Board (2)</Item>

        <Value>4294966082</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>International Association of Eating Disorders Professionals (2)</Item>

        <Value>4294966278</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>International Nurses Society on Addictions (2)</Item>

        <Value>4294966068</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Medical-Surgical Nursing Certification Board (2)</Item>

        <Value>4294965039</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Alliance of Wound Care (2)</Item>

        <Value>4294965570</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Association Medical Staff Services (2)</Item>

        <Value>4294965810</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Board for Certification in Occupational Therapy, Inc. (2)</Item>

        <Value>4294967038</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Center for Competency Testing (2)</Item>

        <Value>4294965520</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Certification Board for Alzheimer Care (2)</Item>

        <Value>4294965277</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>National Commission for Health Education Credentialing, Inc. (2)</Item>

        <Value>4294966608</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Organization for Transplant Professionals (2)</Item>

        <Value>4294965612</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Practice Management Institute (2)</Item>

        <Value>4294965727</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Public Responsibility in Medicine and Research (2)</Item>

        <Value>4294965468</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Rehabilitation Engineering and Assistive Technology Society of North America (2)</Item>

        <Value>4294965476</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Research Administrators Certification Council (2)</Item>

        <Value>4294965461</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>United Council for Neurologic Subspecialties (2)</Item>

        <Value>4294965282</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Academy of Cognitive Therapy (1)</Item>

        <Value>4294965280</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Academy of Health Care Providers in the Addictive Disorders (1)</Item>

        <Value>4294966069</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Academy of Health Physics (1)</Item>

        <Value>4294966208</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Academy of Health, Fitness, &amp; Rehabilitation Professionals (1)</Item>

        <Value>4294966615</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Academy of Hospice and Palliative Medicine (1)</Item>

        <Value>4294966224</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Academy of Pain Management (1)</Item>

        <Value>4294966064</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Assisted Living Nurses Association (1)</Item>

        <Value>4294965452</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Association of Colleges of Nursing (1)</Item>

        <Value>4294965621</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Association of Legal Nurse Consultants (Certification Board) (1)</Item>

        <Value>4294966530</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Association of Medical Assistants (1)</Item>

        <Value>4294966594</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Association of Medical Audit Specialists (1)</Item>

        <Value>4294965620</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Association of Poison Control Centers (1)</Item>

        <Value>4294965406</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board for Transplant Certification (1)</Item>

        <Value>4294965424</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Anesthesiology (1)</Item>

        <Value>4294967127</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Certification for Gastroenterology Nurses (1)</Item>

        <Value>4294965922</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Comprehensive Care (1)</Item>

        <Value>4294965088</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Dermatology (1)</Item>

        <Value>4294967122</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Examiners in Clinical Social Work (1)</Item>

        <Value>4294966256</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Imaging Informatics (1)</Item>

        <Value>4294965123</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Managed Care Nursing (1)</Item>

        <Value>4294965492</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Board of Obstetrics and Gynecology (1)</Item>

        <Value>4294967100</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Case Management Association (1)</Item>

        <Value>4294965445</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Clinical Board of Nutrition (1)</Item>

        <Value>4294965609</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American College of Healthcare Executives (1)</Item>

        <Value>4294965543</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American College of Rheumatology (1)</Item>

        <Value>4294965171</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Culinary Federation, Inc. (1)</Item>

        <Value>4294966591</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Healthcare Radiology Administrators (1)</Item>

        <Value>4294965892</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Holistic Nurses' Certification Board (1)</Item>

        <Value>4294966077</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Medical Billing Association (1)</Item>

        <Value>4294965485</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Medical Technologists (1)</Item>

        <Value>4294966896</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Organization of Nurse Executives Credentialing Center (1)</Item>

        <Value>4294965255</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Osteopathic Board of Obstetricians and Gynecologists (1)</Item>

        <Value>4294966035</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Society for Metabolic and Bariatric Surgery (1)</Item>

        <Value>4294965604</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Society of Mechanical Engineers International (1)</Item>

        <Value>4294966207</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Society of Ophthalmic Administrators (1)</Item>

        <Value>4294965276</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Society of Orthopedic Physician Assistants (1)</Item>

        <Value>4294965465</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Society of Plastic Surgical Nurses (1)</Item>

        <Value>4294966070</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Speech-Language-Hearing Association (1)</Item>

        <Value>4294967071</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Traffic Safety Services Association (1)</Item>

        <Value>4294965410</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>American Welding Society (1)</Item>

        <Value>4294966996</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Association for Linen Management (1)</Item>

        <Value>4294966175</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Association for the Advancement of Medical Instrumentation (1)</Item>

        <Value>4294965040</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Association of Credit and Collection Professionals (1)</Item>

        <Value>4294965345</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Association of Nutrition and Food Service Professionals (1)</Item>

        <Value>4294966335</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Association of Rehabilitation Nurses (1)</Item>

        <Value>4294966158</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Board of Certification/Accreditation International (1)</Item>

        <Value>4294965923</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Board of Certified Safety Professionals (1)</Item>

        <Value>4294965363</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Board of Oncology Social Work Certification (1)</Item>

        <Value>4294965136</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Cardiovascular Credentialing International (1)</Item>

        <Value>4294966303</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Center for Credentialing &amp; Education, Inc. (1)</Item>

        <Value>4294966965</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certification Board for Sterile Processing and Distribution (1)</Item>

        <Value>4294965085</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certification Board of Infection Control and Epidemiology, Inc. (1)</Item>

        <Value>4294966136</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certification Commission for Drug and Alcohol Program Professionals (1)</Item>

        <Value>4294965009</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certification of Disability Management Specialists Commission (1)</Item>

        <Value>4294966225</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certified Nurse Life Care Planner Certification Board (1)</Item>

        <Value>4294965460</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Certifying Commission in Medical Management (1)</Item>

        <Value>4294965134</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>College of Healthcare Information Management Executives (1)</Item>

        <Value>4294965133</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Commission for Case Manager Certification (1)</Item>

        <Value>4294965921</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Commission for Certification of Healthcare CPD Professionals (1)</Item>

        <Value>4294965105</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Commission on Graduates of Foreign Nursing Schools (1)</Item>

        <Value>4294965589</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Commission on Rehabilitation Counselor Certification (1)</Item>

        <Value>4294966231</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Council for Certification in Volunteer Administration (1)</Item>

        <Value>4294966201</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Council for Professional Recognition (1)</Item>

        <Value>4294966688</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Council on Professional Standards for Kinesiotherapy (1)</Item>

        <Value>4294965491</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Developmental Disabilities Nurses Association (1)</Item>

        <Value>4294966074</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Doulas of North America (1)</Item>

        <Value>4294965948</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Drug &amp; Alcohol Testing Industry Association (1)</Item>

        <Value>4294965174</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>ETA International (1)</Item>

        <Value>4294966870</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Healthcare Billing &amp; Management Association (1)</Item>

        <Value>4294965132</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Healthcare Information and Management Systems Society (1)</Item>

        <Value>4294965856</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>HVAC Excellence (1)</Item>

        <Value>4294965715</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Infusion Nurses Certification Corporation (1)</Item>

        <Value>4294965666</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Academy of Orthopedic Medicine - US (1)</Item>

        <Value>4294965131</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Association of Equine Dentistry (1)</Item>

        <Value>4294966061</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Association of Healthcare Central Service Materiel Management (1)</Item>

        <Value>4294966361</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Board of Lactation Consultant Examiners (1)</Item>

        <Value>4294966541</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Childbirth Education Association (1)</Item>

        <Value>4294966388</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Fluid Power Society (1)</Item>

        <Value>4294966683</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>International Society of Nurses in Genetics (1)</Item>

        <Value>4294966073</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Lamaze International (1)</Item>

        <Value>4294965920</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Medical Group Management Association (MGMA) (1)</Item>

        <Value>4294965387</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Medical Library Association (1)</Item>

        <Value>4294966084</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Micro Focus (1)</Item>

        <Value>4294965007</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Association for Healthcare Quality (1)</Item>

        <Value>4294965173</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Association for Pupil Transportation (1)</Item>

        <Value>4294966049</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Association of Boards of Pharmacy (1)</Item>

        <Value>4294965400</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Association of Health Unit Coordinators, Inc. (1)</Item>

        <Value>4294965417</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Association of Orthopaedic Nurses (1)</Item>

        <Value>4294966157</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Asthma Education Certification Board (1)</Item>

        <Value>4294965565</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board for Certification of Orthopaedic Technololgists (1)</Item>

        <Value>4294965904</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board for Certification of School Nurses (1)</Item>

        <Value>4294965503</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board for Professional Teaching Standards (1)</Item>

        <Value>4294966481</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board for Respiratory Care (1)</Item>

        <Value>4294967074</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board of Medical Examiners (1)</Item>

        <Value>4294965260</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board of Nutrition Support Certification, Inc. (1)</Item>

        <Value>4294966076</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board of Public Health Examiners (1)</Item>

        <Value>4294965564</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Board on Certification and Recertification for Nurse Anesthetists (1)</Item>

        <Value>4294965443</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Certification Board for Diabetes Educators (1)</Item>

        <Value>4294966072</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Certifying Board for Ophthalmic Registered Nurses (1)</Item>

        <Value>4294965505</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Commission on Certification of Physician Assistants (1)</Item>

        <Value>4294967056</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Kitchen &amp; Bath Association (1)</Item>

        <Value>4294966180</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National League for Nursing (1)</Item>

        <Value>4294965559</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Recreation and Park Association (1)</Item>

        <Value>4294966929</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Registry of Food Safety Professionals (1)</Item>

        <Value>4294965916</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Resource Center for Youth Services (1)</Item>

        <Value>4294967009</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>National Swimming Pool Foundation (1)</Item>

        <Value>4294966414</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>North American Registry of Midwives (1)</Item>

        <Value>4294966237</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>North American Transportation Management Institute (1)</Item>

        <Value>4294965834</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Oracle Corporation (1)</Item>

        <Value>4294966007</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Professional Association of Health Care Office Management (1)</Item>

        <Value>4294965395</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Radiologic Nursing Certification Board (1)</Item>

        <Value>4294965504</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Regulatory Affairs Professionals Society (1)</Item>

        <Value>4294965556</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Society for Clinical Data Management (1)</Item>

        <Value>4294965489</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Society for Manufacturing Engineers (1)</Item>

        <Value>4294966693</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Society of Otorhinolaryngology and Head-Neck Nurses (1)</Item>

        <Value>4294966062</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>The Consortium of Multiple Sclerosis Centers (1)</Item>

        <Value>4294965466</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>The National Board of Certification for Medical Interpreters (1)</Item>

        <Value>4294965578</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>The Society of Clinical Research Associates (1)</Item>

        <Value>4294965011</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Transcultural Nursing Certification Commission (1)</Item>

        <Value>4294965506</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>US Psychiatric Rehabilitation Association (1)</Item>

        <Value>4294965552</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Vascular Access Certification Corporation (1)</Item>

        <Value>4294965130</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Veterinary Hospital Managers Association, Inc. (1)</Item>

        <Value>4294965566</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Vinyl Siding Institute (1)</Item>

        <Value>4294965422</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </OrgCountList>

  <RecordCount>593</RecordCount>

  <RelatedCountList>

    <FilterList/>

    <UndoList/>

  </RelatedCountList>

  <TypeCountList>

    <FilterList>

      <ItemCount>

        <Count>341</Count>

        <Item>Specialty (341)</Item>

        <Value>4294967265</Value>

      </ItemCount>

      <ItemCount>

        <Count>127</Count>

        <Item>Advanced (127)</Item>

        <Value>4294967289</Value>

      </ItemCount>

      <ItemCount>

        <Count>117</Count>

        <Item>Core (117)</Item>

        <Value>4294967278</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Skill (3)</Item>

        <Value>4294966328</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Unclassified (3)</Item>

        <Value>4294967141</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Product/Equipment (2)</Item>

        <Value>4294967246</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </TypeCountList>

</CertificationFinder>

Response Parameters

Name
Description
Type
Parent
CertList
Certification List
Object
Empty Cell
Id
ID
String
CertList
Name
Name
String
CertList
Url
URL
String
CertList
Organization
Organization
String
CertList
Type
Values for "type" include Core, Advanced, etc. These are described on the Certification Finder Help page. 
String
CertList
TypeOrder
Order that can be used to list all certifications of type "Core" first, then "Advanced", etc. It provides the order for types as they appear in CareerOneStop's Certification Finder.
String
CertList
Related
I (indirect) or D (direct). Populated only if search term is an ONET occupation.
String
CertList
CertAccredAgencyList
Certification Accreditation Agency List
Object
Empty Cell
Name
Name
String
CertAccredAgencyList
Order
Order
String
CertAccredAgencyList
OrganizationAddress
Organiztion Address
String
Empty Cell
OrganizationUrl
Organization URL
String
Empty Cell
Acronym
Acronym
String
Empty Cell
Description
Description
String
Empty Cell
CertDetailList
These objects contain a wide variety of details, including whether education and training are required, whether work experience is required, whether an oral or written exam is required, and others.
Object
Empty Cell
Name
Name
String
CertDetailList
Value
Value
String
CertDetailList
CertTestOption
Options through which a person might take the certifying exam. Values include Third Party Exam Center, Online Exam, On Site, National Conference, By Mail, and Other.
Object
Empty Cell
ExamDetail
Details concerning the exam, if any.
String
Empty Cell
CertAccredAgencyLegend
Certification Accreditation Agency Legend
Object
Empty Cell
Acronym
Acronym
String
CertAccredAgencyLegend
Description
Description
String
CertAccredAgencyLegend
RecordCount
Record Count
Number
Empty Cell
DidYouMean
Did You Mean
String
Empty Cell
AutoCorrection
Auto Correction
String
Empty Cell
IsDirectMatch
A certification is related to any one occupation either directly or indirectly.
String
Empty Cell
OccupationCountList
Use this object to filter results by related occupation
Object
Empty Cell
UndoList
Undo List
Object
OccupationCountList
Item
Item
String
UndoList
Count
Count
String
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
OccupationCountList
Item
Item
String
FilterList
Count
Count
String
FilterList
Value
Value
String
FilterList
IndustryCountList
Use this object to filter results by related industry
Object
Empty Cell
UndoList
Undo List
Object
IndustryCountList
Item
Item
String
UndoList
Count
Count
String
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
IndustryCountList
Item
Item
String
FilterList
Count
Count
Number
FilterList
Value
Value
String
FilterList
TypeCountList
Use this object to filter results by related certification type (e.g. Core, Advanced, etc).
Object
Empty Cell
UndoList
Undo List
Object
TypeCountList
Item
Item
String
UndoList
Count
Count
Number
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
TypeCountList
Item
Item
String
FilterList
Count
Count
Number
FilterList
Value
Value
String
FilterList
OrgCountList
Use this object to filter results by sponsoring organization.
Object
Empty Cell
UndoList
Undo List
Object
OrgCountList
Item
Item
String
UndoList
Count
Count
Number
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
OrgCountList
Item
Item
String
FilterList
Count
Count
Number
FilterList
Value
Value
String
FilterList
RelatedCountList
Use this object to filter results by whether the relationship is direct or indirect.
Object
Empty Cell
UndoList
Undo List
Object
RelatedCountList
Item
Item
String
UndoList
Count
Count
Number
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
RelatedCountList
Item
Item
String
FilterList
Count
Count
Number
FilterList
Value
Value
String
FilterList
CertAccredAgencyCountList
Can be used to filter results by accrediting agency
Object
Empty Cell
UndoList
Undo List
Object
CertAccredAgencyCountList
Item
Item
String
UndoList
Count
Count
Number
UndoList
Value
Value
String
UndoList
FilterList
Filter List
Object
CertAccredAgencyCountList
Item
Item
String
FilterList
Count
Count
Number
FilterList
Value
Value
String
FilterList

Errors

Error/Status Code Description
 200
OK / Success. The request went through successfully and there is a response body.
 400
Bad Request (Request was invalid or missing parameters)
 401    
Unauthorized. This error occurs specifically when authentication is required and has failed or has not yet been provided correctly. (ex: Invalid API Token)
 404
This error will be shown in two scenarios 1) Not found - (An error occurred) and 2) Not found - (No data available)
 500
Internal Server Error. This error will occur when there is something critically wrong in the API call.