diff --git a/cumulus_library/studies/core/builder_encounter_coding.sql b/cumulus_library/studies/core/builder_encounter_coding.sql index 7bd6232a..6cd007a1 100644 --- a/cumulus_library/studies/core/builder_encounter_coding.sql +++ b/cumulus_library/studies/core/builder_encounter_coding.sql @@ -15,12 +15,10 @@ CREATE TABLE core__encounter_dn_type AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.type) AS cc (cc_row), UNNEST(cc.cc_row.coding) AS u (codeable_concept) - WHERE - u.codeable_concept.system = 'http://hl7.org/fhir/ValueSet/encounter-type' + u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/encounter-type' ), --noqa: LT07 system_type_1 AS ( SELECT DISTINCT @@ -31,12 +29,10 @@ CREATE TABLE core__encounter_dn_type AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.type) AS cc (cc_row), UNNEST(cc.cc_row.coding) AS u (codeable_concept) - WHERE - u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/encounter-type' + u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/v2-0004' ), --noqa: LT07 system_type_2 AS ( SELECT DISTINCT @@ -47,12 +43,10 @@ CREATE TABLE core__encounter_dn_type AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.type) AS cc (cc_row), UNNEST(cc.cc_row.coding) AS u (codeable_concept) - WHERE - u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/v2-0004' + u.codeable_concept.system = 'urn:oid:2.16.840.1.113883.4.642.3.248' ), --noqa: LT07 system_type_3 AS ( SELECT DISTINCT @@ -63,26 +57,8 @@ CREATE TABLE core__encounter_dn_type AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - - UNNEST(s.type) AS cc (cc_row), - UNNEST(cc.cc_row.coding) AS u (codeable_concept) - - WHERE - u.codeable_concept.system = 'urn:oid:2.16.840.1.113883.4.642.3.248' - ), --noqa: LT07 - system_type_4 AS ( - SELECT DISTINCT - s.id AS id, - '4' AS priority, - u.codeable_concept.code AS code, - u.codeable_concept.display AS display, - u.codeable_concept.system AS code_system - FROM - encounter AS s, - UNNEST(s.type) AS cc (cc_row), UNNEST(cc.cc_row.coding) AS u (codeable_concept) - WHERE u.codeable_concept.system = 'http://snomed.info/sct' ), --noqa: LT07 @@ -119,14 +95,6 @@ CREATE TABLE core__encounter_dn_type AS ( code, display FROM system_type_3 - UNION - SELECT - id, - priority, - code_system, - code, - display - FROM system_type_4 ), partitioned_table AS ( @@ -165,10 +133,9 @@ CREATE TABLE core__encounter_dn_servicetype AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.servicetype.coding) AS u (codeable_concept) WHERE - u.codeable_concept.system = 'http://hl7.org/fhir/ValueSet/service-type' + u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/service-type' ), --noqa: LT07 system_servicetype_1 AS ( SELECT DISTINCT @@ -179,10 +146,9 @@ CREATE TABLE core__encounter_dn_servicetype AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.servicetype.coding) AS u (codeable_concept) WHERE - u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/service-type' + u.codeable_concept.system = 'urn:oid:2.16.840.1.113883.4.642.3.518' ), --noqa: LT07 system_servicetype_2 AS ( SELECT DISTINCT @@ -193,21 +159,6 @@ CREATE TABLE core__encounter_dn_servicetype AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - - UNNEST(s.servicetype.coding) AS u (codeable_concept) - WHERE - u.codeable_concept.system = 'urn:oid:2.16.840.1.113883.4.642.3.518' - ), --noqa: LT07 - system_servicetype_3 AS ( - SELECT DISTINCT - s.id AS id, - '3' AS priority, - u.codeable_concept.code AS code, - u.codeable_concept.display AS display, - u.codeable_concept.system AS code_system - FROM - encounter AS s, - UNNEST(s.servicetype.coding) AS u (codeable_concept) WHERE u.codeable_concept.system = 'http://snomed.info/sct' @@ -237,14 +188,6 @@ CREATE TABLE core__encounter_dn_servicetype AS ( code, display FROM system_servicetype_2 - UNION - SELECT - id, - priority, - code_system, - code, - display - FROM system_servicetype_3 ), partitioned_table AS ( @@ -283,10 +226,9 @@ CREATE TABLE core__encounter_dn_priority AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.priority.coding) AS u (codeable_concept) WHERE - u.codeable_concept.system = 'http://terminology.hl7.org/ValueSet/v3-ActPriority' + u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/v3-ActPriority' ), --noqa: LT07 system_priority_1 AS ( SELECT DISTINCT @@ -297,22 +239,81 @@ CREATE TABLE core__encounter_dn_priority AS ( u.codeable_concept.system AS code_system FROM encounter AS s, - UNNEST(s.priority.coding) AS u (codeable_concept) + WHERE + u.codeable_concept.system = 'http://snomed.info/sct' + ), --noqa: LT07 + + union_table AS ( + SELECT + id, + priority, + code_system, + code, + display + FROM system_priority_0 + UNION + SELECT + id, + priority, + code_system, + code, + display + FROM system_priority_1 + ), + + partitioned_table AS ( + SELECT + id, + code, + code_system, + display, + priority, + ROW_NUMBER() + OVER ( + PARTITION BY id + ) AS available_priority + FROM union_table + GROUP BY id, priority, code_system, code, display + ORDER BY priority ASC + ) + + SELECT + id, + code, + code_system, + display + FROM partitioned_table + WHERE available_priority = 1 +); + +CREATE TABLE core__encounter_dn_reasoncode AS ( + WITH + system_reasoncode_0 AS ( + SELECT DISTINCT + s.id AS id, + '0' AS priority, + u.codeable_concept.code AS code, + u.codeable_concept.display AS display, + u.codeable_concept.system AS code_system + FROM + encounter AS s, + UNNEST(s.reasoncode) AS cc (cc_row), + UNNEST(cc.cc_row.coding) AS u (codeable_concept) WHERE u.codeable_concept.system = 'http://terminology.hl7.org/CodeSystem/v3-ActPriority' ), --noqa: LT07 - system_priority_2 AS ( + system_reasoncode_1 AS ( SELECT DISTINCT s.id AS id, - '2' AS priority, + '1' AS priority, u.codeable_concept.code AS code, u.codeable_concept.display AS display, u.codeable_concept.system AS code_system FROM encounter AS s, - - UNNEST(s.priority.coding) AS u (codeable_concept) + UNNEST(s.reasoncode) AS cc (cc_row), + UNNEST(cc.cc_row.coding) AS u (codeable_concept) WHERE u.codeable_concept.system = 'http://snomed.info/sct' ), --noqa: LT07 @@ -324,15 +325,7 @@ CREATE TABLE core__encounter_dn_priority AS ( code_system, code, display - FROM system_priority_0 - UNION - SELECT - id, - priority, - code_system, - code, - display - FROM system_priority_1 + FROM system_reasoncode_0 UNION SELECT id, @@ -340,7 +333,7 @@ CREATE TABLE core__encounter_dn_priority AS ( code_system, code, display - FROM system_priority_2 + FROM system_reasoncode_1 ), partitioned_table AS ( @@ -367,3 +360,4 @@ CREATE TABLE core__encounter_dn_priority AS ( FROM partitioned_table WHERE available_priority = 1 ); + diff --git a/cumulus_library/studies/core/builder_patient_extension.py b/cumulus_library/studies/core/builder_patient_extension.py index 8baf771d..8a855ee6 100644 --- a/cumulus_library/studies/core/builder_patient_extension.py +++ b/cumulus_library/studies/core/builder_patient_extension.py @@ -34,5 +34,6 @@ def prepare_queries(self, cursor: object, schema: str): extension["name"], extension["fhirpath"], ["ombCategory", "detailed", "text"], + is_array=True, ) self.queries.append(get_extension_denormalize_query(config)) diff --git a/cumulus_library/studies/core/count_core.sql b/cumulus_library/studies/core/count_core.sql index 43c8f9f3..f7264534 100644 --- a/cumulus_library/studies/core/count_core.sql +++ b/cumulus_library/studies/core/count_core.sql @@ -1,14 +1,24 @@ -- noqa: disable=all CREATE TABLE core__count_patient AS ( - WITH powerset AS ( + WITH + filtered_table AS ( SELECT - count(DISTINCT subject_ref) AS cnt_subject, + subject_ref, "age", "gender", "race_display", "ethnicity_display" FROM core__patient + ), + powerset AS ( + SELECT + count(DISTINCT subject_ref) AS cnt_subject, + "age", + "gender", + "race_display", + "ethnicity_display" + FROM filtered_table GROUP BY cube( "age", @@ -32,7 +42,21 @@ CREATE TABLE core__count_patient AS ( -- ########################################################### CREATE TABLE core__count_encounter_month AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "start_month", + "enc_class_display", + "age_at_visit", + "gender", + "race_display", + "ethnicity_display" + FROM core__encounter + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, @@ -42,7 +66,7 @@ CREATE TABLE core__count_encounter_month AS ( "gender", "race_display", "ethnicity_display" - FROM core__encounter + FROM filtered_table GROUP BY cube( "start_month", @@ -70,7 +94,19 @@ CREATE TABLE core__count_encounter_month AS ( -- ########################################################### CREATE TABLE core__count_encounter_type AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "enc_class_display", + "enc_type_display", + "enc_service_display", + "enc_priority_display" + FROM core__encounter_type + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, @@ -78,7 +114,7 @@ CREATE TABLE core__count_encounter_type AS ( "enc_type_display", "enc_service_display", "enc_priority_display" - FROM core__encounter_type + FROM filtered_table GROUP BY cube( "enc_class_display", @@ -102,7 +138,20 @@ CREATE TABLE core__count_encounter_type AS ( -- ########################################################### CREATE TABLE core__count_encounter_type_month AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "enc_class_display", + "enc_type_display", + "enc_service_display", + "enc_priority_display", + "start_month" + FROM core__encounter_type + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, @@ -111,7 +160,7 @@ CREATE TABLE core__count_encounter_type_month AS ( "enc_service_display", "enc_priority_display", "start_month" - FROM core__encounter_type + FROM filtered_table GROUP BY cube( "enc_class_display", @@ -137,14 +186,25 @@ CREATE TABLE core__count_encounter_type_month AS ( -- ########################################################### CREATE TABLE core__count_encounter_enc_type_month AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "enc_class_display", + "enc_type_display", + "start_month" + FROM core__encounter_type + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, "enc_class_display", "enc_type_display", "start_month" - FROM core__encounter_type + FROM filtered_table GROUP BY cube( "enc_class_display", @@ -166,14 +226,25 @@ CREATE TABLE core__count_encounter_enc_type_month AS ( -- ########################################################### CREATE TABLE core__count_encounter_service_month AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "enc_class_display", + "enc_service_display", + "start_month" + FROM core__encounter_type + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, "enc_class_display", "enc_service_display", "start_month" - FROM core__encounter_type + FROM filtered_table GROUP BY cube( "enc_class_display", @@ -195,14 +266,25 @@ CREATE TABLE core__count_encounter_service_month AS ( -- ########################################################### CREATE TABLE core__count_encounter_priority_month AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "enc_class_display", + "enc_priority_display", + "start_month" + FROM core__encounter_type + WHERE status = 'finished' + ), + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, "enc_class_display", "enc_priority_display", "start_month" - FROM core__encounter_type + FROM filtered_table GROUP BY cube( "enc_class_display", diff --git a/cumulus_library/studies/core/documentreference.sql b/cumulus_library/studies/core/documentreference.sql index da0b84c6..9f77779e 100644 --- a/cumulus_library/studies/core/documentreference.sql +++ b/cumulus_library/studies/core/documentreference.sql @@ -23,6 +23,7 @@ WITH temp_documentreference AS ( SELECT DISTINCT dr.type, dr.status, + dr.docstatus, dr.context, dr.subject.reference AS subject_ref, dr.id AS doc_id, @@ -43,6 +44,7 @@ SELECT DISTINCT ELSE type_row.code END AS doc_type_display, tdr.status, + tdr.docstatus, context_encounter.encounter.reference AS encounter_ref, date_trunc('day', tdr.author_date) AS author_date, date_trunc('week', tdr.author_date) AS author_week, @@ -67,7 +69,10 @@ WITH powerset AS ( d.author_month, e.enc_class_display FROM core__documentreference AS d, core__encounter AS e - WHERE d.encounter_ref = e.encounter_ref + WHERE + d.encounter_ref = e.encounter_ref + AND d.status = 'current' + AND d.docstatus IN (null, 'final', 'amended') GROUP BY cube(d.doc_type_display, d.author_month, e.enc_class_display) ) diff --git a/cumulus_library/studies/core/encounter.sql b/cumulus_library/studies/core/encounter.sql index 35d8f859..532ce500 100644 --- a/cumulus_library/studies/core/encounter.sql +++ b/cumulus_library/studies/core/encounter.sql @@ -32,8 +32,9 @@ WITH temp_encounter AS ( SELECT DISTINCT e.class AS enc_class, - e.class.code AS enc_class_code, + ac.code AS enc_class_code, ac.display AS enc_class_display, + e.status, e.type_code, e.type_code_system, e.sevicetype_code, @@ -56,7 +57,9 @@ SELECT DISTINCT p.ethnicity_display, p.postalcode3 FROM temp_encounter AS e -LEFT JOIN core__act_encounter_code_v3 AS ac ON ac.code = e.class.code +LEFT JOIN core__fhir_mapping_expected_act_encounter_code_v3 AS eac + ON eac.found = e.class.code +LEFT JOIN core__fhir_act_encounter_code_v3 AS ac ON eac.expected = ac.code INNER JOIN core__patient AS p ON e.subject_ref = p.subject_ref WHERE start_date BETWEEN date('2016-06-01') AND current_date; diff --git a/cumulus_library/studies/core/encounter_type.sql b/cumulus_library/studies/core/encounter_type.sql index d961e314..21004264 100644 --- a/cumulus_library/studies/core/encounter_type.sql +++ b/cumulus_library/studies/core/encounter_type.sql @@ -19,6 +19,7 @@ SELECT DISTINCT coalesce(cep.display, 'None') AS enc_priority_display, coalesce(cer.code, 'None') AS enc_reasoncode_code, coalesce(cer.display, 'None') AS enc_reasoncode_display, + e.status, e.age_at_visit, e.start_date, e.end_date, diff --git a/cumulus_library/studies/core/fhir_lookup_tables.sql b/cumulus_library/studies/core/fhir_lookup_tables.sql new file mode 100644 index 00000000..d5b3624b --- /dev/null +++ b/cumulus_library/studies/core/fhir_lookup_tables.sql @@ -0,0 +1,54 @@ +-- http://hl7.org/fhir/r4/v3/ActEncounterCode/vs.html +CREATE TABLE core__fhir_act_encounter_code_v3 AS +SELECT + t.code, + t.display +FROM + ( + VALUES + ( + 'AMB', + 'ambulatory' + ), + ( + 'EMER', + 'emergency' + ), + ( + 'FLD', + 'field' + ), + ( + 'HH', + 'home health' + ), + ( + 'IMP', + 'inpatient encounter' + ), + ( + 'ACUTE', + 'inpatient acute' + ), + ( + 'NONAC', + 'inpatient non-acute' + ), + ( + 'OBSENC', + 'observation encounter' + ), + ( + 'PRENC', + 'pre-admission' + ), + ( + 'SS', + 'short stay' + ), + ( + 'VR', + 'virtual' + ) + ) + AS t (code, display) diff --git a/cumulus_library/studies/core/fhir_define.sql b/cumulus_library/studies/core/fhir_mapping_tables.sql similarity index 78% rename from cumulus_library/studies/core/fhir_define.sql rename to cumulus_library/studies/core/fhir_mapping_tables.sql index 387274ea..a9ae5a08 100644 --- a/cumulus_library/studies/core/fhir_define.sql +++ b/cumulus_library/studies/core/fhir_mapping_tables.sql @@ -1,7 +1,9 @@ -- ############################################################ --- FHIR Terminology +-- FHIR mapping of code systems to URIs +-- This includes both the expected URI, as well as several found URIs from +-- various source systems -CREATE TABLE core__fhir_vocab AS SELECT * FROM +CREATE TABLE core__fhir_mapping_code_system_uri AS SELECT * FROM ( VALUES ('ICD10', 'http://hl7.org/fhir/sid/icd-10-cm'), @@ -38,12 +40,12 @@ CREATE TABLE core__fhir_vocab AS SELECT * FROM ('CPT', 'http://www.ama-assn.org/go/cpt'), ('CPT', 'CPT') - ) AS t (alias, vocab); --noqa: AL05 + ) AS t (code_system, uri); --noqa: AL05 -- ############################################################ --- FHIR StructureDefinition +-- FHIR mapping of Resource names to expected URIs -CREATE TABLE core__fhir_define AS +CREATE TABLE core__fhir_mapping_resource_uri AS SELECT * FROM ( VALUES @@ -111,10 +113,28 @@ SELECT * FROM 'ObservationValue', 'http://hl7.org/fhir/observation-definitions.html#Observation.value_x_' ), - ('VitalSign', 'http://hl7.org/fhir/observation-vitalsigns.html'), - ('UMLS', 'http://www.nlm.nih.gov/research/umls/'), - ('ICD9', 'http://hl7.org/fhir/sid/icd-9-cm'), - ('ICD10', 'http://hl7.org/fhir/sid/icd-10-cm'), - ('LOINC', 'http://loinc.org'), - ('SNOMED', 'http://snomed.info/sct') - ) AS t (define, url); --noqa: AL05 + ('VitalSign', 'http://hl7.org/fhir/observation-vitalsigns.html') + ) AS t (resource, uri); --noqa: AL05 + +-- ############################################################ +-- FHIR mapping of as found Encounter codes to the expected encounter code from +-- http://hl7.org/fhir/STU3/v3/ActEncounterCode/vs.html + +CREATE TABLE core__fhir_mapping_expected_act_encounter_code_v3 AS +SELECT * FROM + ( + VALUES + ('AMB', 'AMB'), + ('AMB', 'R'), + ('AMB', 'O'), + ('EMER', 'EMER'), + ('EMER', 'E'), + ('FLD', 'FLD'), + ('HH', 'HH'), + ('IMP', 'IMP'), + ('ACUTE', 'ACUTE'), + ('NONAC', 'NONAC'), + ('PRENC', 'PRENC'), + ('SS', 'SS'), + ('VR', 'VR') + ) AS t (expected, found) diff --git a/cumulus_library/studies/core/manifest.toml b/cumulus_library/studies/core/manifest.toml index 5d8bdf05..b6014408 100644 --- a/cumulus_library/studies/core/manifest.toml +++ b/cumulus_library/studies/core/manifest.toml @@ -12,7 +12,8 @@ file_names = [ file_names = [ "version.sql", "setup.sql", - "fhir_define.sql", + "fhir_lookup_tables.sql", + "fhir_mapping_tables.sql", "patient.sql", "encounter.sql", "encounter_type.sql", diff --git a/cumulus_library/studies/core/observation_lab.sql b/cumulus_library/studies/core/observation_lab.sql index 2fa761e4..f696498a 100644 --- a/cumulus_library/studies/core/observation_lab.sql +++ b/cumulus_library/studies/core/observation_lab.sql @@ -42,6 +42,7 @@ SELECT date_trunc('week', date(tol.effectivedatetime)) AS lab_week, date_trunc('month', date(tol.effectivedatetime)) AS lab_month, date_trunc('year', date(tol.effectivedatetime)) AS lab_year, + tol.status, tol.subject_ref, tol.encounter_ref, tol.observation_id, @@ -65,7 +66,9 @@ WITH powerset AS ( o.lab_result, e.enc_class FROM core__observation_lab AS o, core__encounter AS e - WHERE o.encounter_ref = e.encounter_ref + WHERE + o.encounter_ref = e.encounter_ref + AND (o.status = 'final' OR o.status = 'amended') GROUP BY cube(o.lab_month, o.lab_code, o.lab_result, e.enc_class) ) diff --git a/cumulus_library/studies/core/patient.sql b/cumulus_library/studies/core/patient.sql index a4609cb5..d0542a19 100644 --- a/cumulus_library/studies/core/patient.sql +++ b/cumulus_library/studies/core/patient.sql @@ -30,8 +30,8 @@ SELECT DISTINCT END AS postalcode3, tp.subject_id, tp.subject_ref, - coalesce(tp.race_display, ARRAY['unknown']) AS race_display, - coalesce(tp.ethnicity_display, ARRAY['unknown']) AS ethnicity_display + coalesce(tp.race_display, 'unknown') AS race_display, + coalesce(tp.ethnicity_display, 'unknown') AS ethnicity_display FROM temp_patient AS tp, unnest(tp.address) AS t_address (addr_row) --noqa: AL05 diff --git a/cumulus_library/studies/core/setup.sql b/cumulus_library/studies/core/setup.sql index 52a9e051..b853901f 100644 --- a/cumulus_library/studies/core/setup.sql +++ b/cumulus_library/studies/core/setup.sql @@ -61,57 +61,3 @@ FROM ) ) AS t (from_system, from_code, analyte, code_system, code, display); - -CREATE TABLE core__act_encounter_code_v3 AS -SELECT - t.code, - t.display -FROM - ( - VALUES - ( - 'AMB', - 'ambulatory' - ), - ( - 'EMER', - 'emergency' - ), - ( - 'FLD', - 'field' - ), - ( - 'HH', - 'home health' - ), - ( - 'IMP', - 'inpatient encounter' - ), - ( - 'ACUTE', - 'inpatient acute' - ), - ( - 'NONAC', - 'inpatient non-acute' - ), - ( - 'OBSENC', - 'observation encounter' - ), - ( - 'PRENC', - 'pre-admission' - ), - ( - 'SS', - 'short stay' - ), - ( - 'VR', - 'virtual' - ) - ) - AS t (code, display) diff --git a/cumulus_library/template_sql/count.sql.jinja b/cumulus_library/template_sql/count.sql.jinja index 644746b4..ff18116c 100644 --- a/cumulus_library/template_sql/count.sql.jinja +++ b/cumulus_library/template_sql/count.sql.jinja @@ -4,7 +4,38 @@ it simultaneously asks for indentation of 4 and 8 spaces. TODO: revisit on sqlfluff upgrade #} CREATE TABLE {{ table_name }} AS ( - WITH powerset AS ( + WITH + {%- if filter_resource %} + filtered_table AS ( + SELECT + subject_ref, + {%- if fhir_resource=='condition' %} + condition_ref, + {%- elif fhir_resource=='document' %} + document_ref, + {%- elif fhir_resource=='encounter' %} + encounter_ref, + {%- elif fhir_resource=='observation' %} + observation_ref, + {%- endif -%} + {% for col in table_cols %} + "{{ col }}" + {%- if not loop.last -%} + , + {%- endif -%} + {%- endfor %} + FROM {{ source_table }} + {%- if fhir_resource=='document' and filter_resource %} + WHERE (status = 'current') + AND d.docStatus IN (null, 'final', 'amended') + {%- elif fhir_resource=='encounter' and filter_resource %} + WHERE status = 'finished' + {%- elif fhir_resource=='observation' and filter_resource %} + WHERE (status = 'final' OR status= 'amended') + {%- endif %} + ), + {% endif %} + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, {%- if fhir_resource=='condition' %} @@ -22,7 +53,11 @@ CREATE TABLE {{ table_name }} AS ( , {%- endif -%} {%- endfor %} + {%- if filter_resource %} + FROM filtered_table + {%- else %} FROM {{ source_table }} + {% endif %} GROUP BY cube( {%- for col in table_cols %} diff --git a/cumulus_library/template_sql/extension_denormalize.sql.jinja b/cumulus_library/template_sql/extension_denormalize.sql.jinja index f9ef20ef..77c4ee61 100644 --- a/cumulus_library/template_sql/extension_denormalize.sql.jinja +++ b/cumulus_library/template_sql/extension_denormalize.sql.jinja @@ -45,10 +45,32 @@ CREATE TABLE {{ target_table }} AS ( SELECT id, system, - ARRAY_AGG({{ target_col_prefix }}_code) AS {{ target_col_prefix }}_code, - ARRAY_AGG( + {%- if is_array %} + LOWER( + ARRAY_JOIN( + ARRAY_SORT( + ARRAY_AGG( + {{ target_col_prefix }}_code + ) + ), '; ' + ) + ) + AS {{ target_col_prefix }}_code, + LOWER( + ARRAY_JOIN( + ARRAY_SORT( + ARRAY_AGG( + {{ target_col_prefix }}_display + ) + ), '; ' + ) + ) AS {{ target_col_prefix }}_display, + {%- else %} + LOWER({{ target_col_prefix }}_code) AS {{ target_col_prefix }}_code, + LOWER( {{ target_col_prefix }}_display ) AS {{ target_col_prefix }}_display, + {%- endif %} ROW_NUMBER() OVER ( PARTITION BY id, system diff --git a/cumulus_library/template_sql/templates.py b/cumulus_library/template_sql/templates.py index 88014e99..010dc159 100644 --- a/cumulus_library/template_sql/templates.py +++ b/cumulus_library/template_sql/templates.py @@ -73,6 +73,7 @@ class ExtensionConfig(object): :param target_col_prefix: the string to prepend code/display column names with :param fhir_extension: the URL of the FHIR resource to select :param code_systems: a list of codes, in preference order, to use to select data + :param is_array: a boolean indicating if the targeted field is an array type """ def __init__( @@ -83,6 +84,7 @@ def __init__( target_col_prefix: str, fhir_extension: str, ext_systems: List[str], + is_array: bool = False, ): self.source_table = source_table self.source_id = source_id @@ -90,6 +92,7 @@ def __init__( self.target_col_prefix = target_col_prefix self.fhir_extension = fhir_extension self.ext_systems = ext_systems + self.is_array = is_array def get_codeable_concept_denormalize_query(config: CodeableConceptConfig) -> str: @@ -151,6 +154,7 @@ def get_count_query( min_subject: int = 10, where_clauses: Optional[list] = None, fhir_resource: Optional[str] = None, + filter_resource: Optional[bool] = True, ) -> str: """Generates count tables for generating study outputs""" path = Path(__file__).parent @@ -166,6 +170,7 @@ def get_count_query( min_subject=min_subject, where_clauses=where_clauses, fhir_resource=fhir_resource, + filter_resource=filter_resource, ) # workaround for conflicting sqlfluff enforcement return query.replace("-- noqa: disable=LT02\n", "") @@ -269,6 +274,7 @@ def get_extension_denormalize_query(config: ExtensionConfig) -> str: target_col_prefix=config.target_col_prefix, fhir_extension=config.fhir_extension, ext_systems=config.ext_systems, + is_array=config.is_array, ) diff --git a/docs/aws-setup.md b/docs/aws-setup.md index eec7b344..009029c8 100644 --- a/docs/aws-setup.md +++ b/docs/aws-setup.md @@ -25,7 +25,9 @@ the following permissions: - Athena CRUD query access and queing permissions - S3 CRUD access to your ETL bucket (along with any secrets/kms keys) -A [sample IAM policy](./sample-iam-policy.json) for this use case is available as +A +[sample IAM policy](https://github.com/smart-on-fhir/cumulus-library/blob/main/docs//sample-iam-policy.json) +for this use case is available as a starting point. ## Local AWS configuration diff --git a/docs/creating-sql-with-python.md b/docs/creating-sql-with-python.md index b01391a7..1e98a06a 100644 --- a/docs/creating-sql-with-python.md +++ b/docs/creating-sql-with-python.md @@ -45,9 +45,8 @@ The TableBuilder class, and the collection of template SQL. ### Working with TableBuilders We have a base -[TableBuilder class](../cumulus_library/base_table_builder.py) -that -all the above use cases leverage. At a high level, here's what it provides: +[TableBuilder class](https://github.com/smart-on-fhir/cumulus-library/blob/main/cumulus_library/base_table_builder.py) +that all the above use cases leverage. At a high level, here's what it provides: - A `prepare_queries` function, which is where you put your custom logic. It should create an array of queries in `self.queries`. The CLI will pass in a cursor @@ -98,10 +97,10 @@ against a filtered resource to get data about a certain kind of clinical populat Since this is so common we created a class just for this, and we're using it in all studies the Cumulus team is directly authoring. -The [CountsBuilder class](../cumulus_library/schema/counts.py) +The [CountsBuilder class](https://github.com/smart-on-fhir/cumulus-library/blob/main/cumulus_library/schema/counts.py) provides a number of convenience methods that are available for use (this covers mechanics of generation). You can see examples of usage in the -[Core counts builder](../cumulus_library/studies/core/count_core.py) +[Core counts builder](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/studies/core/count_core.py) (which is where the business logic of your study lives). - `get_table_name` will scan the study's `manifest.toml` and auto prepend a table @@ -120,7 +119,7 @@ As a convenience, if you include a `if __name__ == "__main__":` clause like you see in `count_core.py`, you can invoke the builder's output by invoking it with python, which is a nice way to get example SQL output for inclusion in github. This is where the -[count core sql output](../cumulus_library/studies/core/count_core.sql) +[count core sql output](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/studies/core/count_core.sql) originated from. Add your count generator file to the `counts_builder_config` section of your @@ -134,11 +133,11 @@ to develop a faster methodology for adding new datasets. Occasionally you will have a dataset from a third party that is useful for working with your dataset. In the vocab study (requiring a license to use), we -[add coding system data](../cumulus_library/studies/vocab/vocab_icd_builder.py) +[add coding system data](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/studies/vocab/vocab_icd_builder.py) from flat files to athena. If you need to do this, you should extend the base TableBuilder class, and your `prepare_queries` function should do the following, leveraging the -[template function library](../cumulus_library/template_sql/templates.py): +[template function library](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/template_sql/templates.py): - Use the `get_ctas_query` function to get a CREATE TABLE AS statement to instantiate your table in athena - Since athena SQL queries are limited in size to 262144 bytes, if you have @@ -165,9 +164,9 @@ This means you may have differing schemas in Athena from one site's data to anot may differ). In order to handle this, you need to create a standard output representation that accounts for all the different permutations you have, and conform data to match that. The -[encounter coding](../cumulus_library/studies/core/builder_encounter_coding.py) +[encounter coding](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/studies/core/builder_encounter_coding.py) and -[condition codeableConcept](../cumulus_library/studies/core/builder_condition_codeableconcept.py) +[condition codeableConcept](https://github.com/smart-on-fhir/cumulus-library/blob/main//cumulus_library/studies/core/builder_condition_codeableconcept.py) builders both jump through hoops to try and get this data into flat tables for downstream use. diff --git a/tests/regression/reference/core__count_documentreference_month.csv b/tests/regression/reference/core__count_documentreference_month.csv index b5d656bb..ff7522fd 100644 --- a/tests/regression/reference/core__count_documentreference_month.csv +++ b/tests/regression/reference/core__count_documentreference_month.csv @@ -1,891 +1 @@ cnt,author_month,enc_class_display,doc_type_display -31669,,, -31669,,,Evaluation + Plan note -29698,,ambulatory, -29698,,ambulatory,Evaluation + Plan note -23770,,,History and physical note -22310,,ambulatory,History and physical note -7899,,,Emergency department note -7388,,ambulatory,Emergency department note -1288,,emergency, -1288,,emergency,Evaluation + Plan note -942,,emergency,History and physical note -582,2021-04-01,, -582,2021-04-01,,Evaluation + Plan note -578,2021-05-01,, -578,2021-05-01,,Evaluation + Plan note -563,2021-04-01,ambulatory, -563,2021-04-01,ambulatory,Evaluation + Plan note -556,2021-05-01,ambulatory, -556,2021-05-01,ambulatory,Evaluation + Plan note -556,2021-03-01,, -556,2021-03-01,,Evaluation + Plan note -531,2021-03-01,ambulatory, -531,2021-03-01,ambulatory,Evaluation + Plan note -477,2021-06-01,, -477,2021-06-01,,Evaluation + Plan note -475,2021-08-01,, -475,2021-08-01,,Evaluation + Plan note -459,2021-06-01,ambulatory, -459,2021-06-01,ambulatory,Evaluation + Plan note -457,2021-10-01,, -457,2021-10-01,,Evaluation + Plan note -451,2021-08-01,ambulatory, -451,2021-08-01,ambulatory,Evaluation + Plan note -434,2021-07-01,, -434,2021-07-01,,Evaluation + Plan note -433,2021-10-01,ambulatory, -433,2021-10-01,ambulatory,Evaluation + Plan note -433,2021-01-01,, -433,2021-01-01,,Evaluation + Plan note -431,2021-12-01,, -431,2021-12-01,,Evaluation + Plan note -430,2021-11-01,, -430,2021-11-01,,Evaluation + Plan note -428,2021-09-01,, -428,2021-09-01,,Evaluation + Plan note -428,2021-04-01,,History and physical note -427,2021-05-01,,History and physical note -423,2022-05-01,, -423,2022-05-01,,Evaluation + Plan note -420,2022-07-01,, -420,2022-07-01,,Evaluation + Plan note -418,2018-08-01,, -418,2018-08-01,,Evaluation + Plan note -417,2021-03-01,,History and physical note -415,2018-05-01,, -415,2018-05-01,,Evaluation + Plan note -414,2022-10-01,, -414,2022-10-01,,Evaluation + Plan note -414,2021-04-01,ambulatory,History and physical note -413,2021-02-01,, -413,2021-02-01,,Evaluation + Plan note -411,2022-08-01,, -411,2022-08-01,,Evaluation + Plan note -411,2021-11-01,ambulatory, -411,2021-11-01,ambulatory,Evaluation + Plan note -411,2021-07-01,ambulatory, -411,2021-07-01,ambulatory,Evaluation + Plan note -411,2016-08-01,, -411,2016-08-01,,Evaluation + Plan note -409,2023-01-01,, -409,2023-01-01,,Evaluation + Plan note -408,2021-05-01,ambulatory,History and physical note -406,2018-06-01,, -406,2018-06-01,,Evaluation + Plan note -405,2021-01-01,ambulatory, -405,2021-01-01,ambulatory,Evaluation + Plan note -404,2017-03-01,, -404,2017-03-01,,Evaluation + Plan note -402,2021-09-01,ambulatory, -402,2021-09-01,ambulatory,Evaluation + Plan note -401,2018-03-01,, -401,2018-03-01,,Evaluation + Plan note -400,2018-09-01,, -400,2018-09-01,,Evaluation + Plan note -398,2021-03-01,ambulatory,History and physical note -398,2017-06-01,, -398,2017-06-01,,Evaluation + Plan note -396,2019-04-01,, -396,2019-04-01,,Evaluation + Plan note -395,2021-12-01,ambulatory, -395,2021-12-01,ambulatory,Evaluation + Plan note -395,2019-01-01,, -395,2019-01-01,,Evaluation + Plan note -395,2018-01-01,, -395,2018-01-01,,Evaluation + Plan note -394,2018-05-01,ambulatory, -394,2018-05-01,ambulatory,Evaluation + Plan note -393,2022-12-01,, -393,2022-12-01,,Evaluation + Plan note -393,2022-10-01,ambulatory, -393,2022-10-01,ambulatory,Evaluation + Plan note -393,2022-07-01,ambulatory, -393,2022-07-01,ambulatory,Evaluation + Plan note -392,2021-02-01,ambulatory, -392,2021-02-01,ambulatory,Evaluation + Plan note -392,2019-03-01,, -392,2019-03-01,,Evaluation + Plan note -392,2018-08-01,ambulatory, -392,2018-08-01,ambulatory,Evaluation + Plan note -391,,inpatient encounter, -391,,inpatient encounter,Evaluation + Plan note -391,2022-09-01,, -391,2022-09-01,,Evaluation + Plan note -389,2022-05-01,ambulatory, -389,2022-05-01,ambulatory,Evaluation + Plan note -389,2022-04-01,, -389,2022-04-01,,Evaluation + Plan note -388,2017-07-01,, -388,2017-07-01,,Evaluation + Plan note -386,2020-03-01,, -386,2020-03-01,,Evaluation + Plan note -385,2023-01-01,ambulatory, -385,2023-01-01,ambulatory,Evaluation + Plan note -385,2019-05-01,, -385,2019-05-01,,Evaluation + Plan note -385,2016-07-01,, -385,2016-07-01,,Evaluation + Plan note -384,2017-08-01,, -384,2017-08-01,,Evaluation + Plan note -383,2023-02-01,, -383,2023-02-01,,Evaluation + Plan note -382,2023-03-01,, -382,2023-03-01,,Evaluation + Plan note -382,2022-06-01,, -382,2022-06-01,,Evaluation + Plan note -380,2018-09-01,ambulatory, -380,2018-09-01,ambulatory,Evaluation + Plan note -379,2017-12-01,, -379,2017-12-01,,Evaluation + Plan note -379,2017-03-01,ambulatory, -379,2017-03-01,ambulatory,Evaluation + Plan note -379,2016-06-01,, -379,2016-06-01,,Evaluation + Plan note -378,2022-11-01,, -378,2022-11-01,,Evaluation + Plan note -377,2022-08-01,ambulatory, -377,2022-08-01,ambulatory,Evaluation + Plan note -376,2018-06-01,ambulatory, -376,2018-06-01,ambulatory,Evaluation + Plan note -376,2018-03-01,ambulatory, -376,2018-03-01,ambulatory,Evaluation + Plan note -375,2022-09-01,ambulatory, -375,2022-09-01,ambulatory,Evaluation + Plan note -374,2019-01-01,ambulatory, -374,2019-01-01,ambulatory,Evaluation + Plan note -373,2022-01-01,, -373,2022-01-01,,Evaluation + Plan note -373,2020-07-01,, -373,2020-07-01,,Evaluation + Plan note -373,2018-01-01,ambulatory, -373,2018-01-01,ambulatory,Evaluation + Plan note -373,2016-09-01,, -373,2016-09-01,,Evaluation + Plan note -372,2017-01-01,, -372,2017-01-01,,Evaluation + Plan note -371,2022-12-01,ambulatory, -371,2022-12-01,ambulatory,Evaluation + Plan note -371,2021-06-01,,History and physical note -370,2016-12-01,, -370,2016-12-01,,Evaluation + Plan note -369,2019-06-01,, -369,2019-06-01,,Evaluation + Plan note -369,2019-04-01,ambulatory, -369,2019-04-01,ambulatory,Evaluation + Plan note -368,2020-12-01,, -368,2020-12-01,,Evaluation + Plan note -368,2017-08-01,ambulatory, -368,2017-08-01,ambulatory,Evaluation + Plan note -367,2018-04-01,, -367,2018-04-01,,Evaluation + Plan note -367,2017-06-01,ambulatory, -367,2017-06-01,ambulatory,Evaluation + Plan note -367,2017-05-01,, -367,2017-05-01,,Evaluation + Plan note -367,2016-08-01,ambulatory, -367,2016-08-01,ambulatory,Evaluation + Plan note -366,2022-06-01,ambulatory, -366,2022-06-01,ambulatory,Evaluation + Plan note -365,2022-11-01,ambulatory, -365,2022-11-01,ambulatory,Evaluation + Plan note -364,2020-04-01,, -364,2020-04-01,,Evaluation + Plan note -364,2018-07-01,, -364,2018-07-01,,Evaluation + Plan note -364,2016-10-01,, -364,2016-10-01,,Evaluation + Plan note -363,2020-11-01,, -363,2020-11-01,,Evaluation + Plan note -363,2020-01-01,, -363,2020-01-01,,Evaluation + Plan note -363,2019-03-01,ambulatory, -363,2019-03-01,ambulatory,Evaluation + Plan note -363,2017-10-01,, -363,2017-10-01,,Evaluation + Plan note -361,2022-04-01,ambulatory, -361,2022-04-01,ambulatory,Evaluation + Plan note -359,2023-02-01,ambulatory, -359,2023-02-01,ambulatory,Evaluation + Plan note -359,2022-03-01,, -359,2022-03-01,,Evaluation + Plan note -359,2022-02-01,, -359,2022-02-01,,Evaluation + Plan note -359,2021-06-01,ambulatory,History and physical note -359,2020-06-01,, -359,2020-06-01,,Evaluation + Plan note -359,2018-10-01,, -359,2018-10-01,,Evaluation + Plan note -358,2020-08-01,, -358,2020-08-01,,Evaluation + Plan note -358,2020-03-01,ambulatory, -358,2020-03-01,ambulatory,Evaluation + Plan note -358,2017-07-01,ambulatory, -358,2017-07-01,ambulatory,Evaluation + Plan note -357,2023-03-01,ambulatory, -357,2023-03-01,ambulatory,Evaluation + Plan note -357,2019-05-01,ambulatory, -357,2019-05-01,ambulatory,Evaluation + Plan note -357,2016-09-01,ambulatory, -357,2016-09-01,ambulatory,Evaluation + Plan note -356,2018-12-01,, -356,2018-12-01,,Evaluation + Plan note -356,2017-09-01,, -356,2017-09-01,,Evaluation + Plan note -356,2016-12-01,ambulatory, -356,2016-12-01,ambulatory,Evaluation + Plan note -355,2016-06-01,ambulatory, -355,2016-06-01,ambulatory,Evaluation + Plan note -354,2019-12-01,, -354,2019-12-01,,Evaluation + Plan note -354,2017-12-01,ambulatory, -354,2017-12-01,ambulatory,Evaluation + Plan note -354,2016-07-01,ambulatory, -354,2016-07-01,ambulatory,Evaluation + Plan note -353,2019-07-01,, -353,2019-07-01,,Evaluation + Plan note -350,2022-01-01,ambulatory, -350,2022-01-01,ambulatory,Evaluation + Plan note -349,2021-10-01,,History and physical note -348,2021-08-01,,History and physical note -348,2018-04-01,ambulatory, -348,2018-04-01,ambulatory,Evaluation + Plan note -347,2020-05-01,, -347,2020-05-01,,Evaluation + Plan note -347,2018-07-01,ambulatory, -347,2018-07-01,ambulatory,Evaluation + Plan note -347,2017-05-01,ambulatory, -347,2017-05-01,ambulatory,Evaluation + Plan note -347,2017-04-01,, -347,2017-04-01,,Evaluation + Plan note -346,,emergency,Emergency department note -346,2020-11-01,ambulatory, -346,2020-11-01,ambulatory,Evaluation + Plan note -346,2019-06-01,ambulatory, -346,2019-06-01,ambulatory,Evaluation + Plan note -346,2018-11-01,, -346,2018-11-01,,Evaluation + Plan note -345,2020-12-01,ambulatory, -345,2020-12-01,ambulatory,Evaluation + Plan note -344,2020-07-01,ambulatory, -344,2020-07-01,ambulatory,Evaluation + Plan note -342,2022-02-01,ambulatory, -342,2022-02-01,ambulatory,Evaluation + Plan note -342,2020-10-01,, -342,2020-10-01,,Evaluation + Plan note -342,2016-10-01,ambulatory, -342,2016-10-01,ambulatory,Evaluation + Plan note -341,2019-02-01,, -341,2019-02-01,,Evaluation + Plan note -341,2017-10-01,ambulatory, -341,2017-10-01,ambulatory,Evaluation + Plan note -340,2022-03-01,ambulatory, -340,2022-03-01,ambulatory,Evaluation + Plan note -340,2017-01-01,ambulatory, -340,2017-01-01,ambulatory,Evaluation + Plan note -339,2017-11-01,, -339,2017-11-01,,Evaluation + Plan note -336,2020-06-01,ambulatory, -336,2020-06-01,ambulatory,Evaluation + Plan note -335,2020-09-01,, -335,2020-09-01,,Evaluation + Plan note -335,2018-02-01,, -335,2018-02-01,,Evaluation + Plan note -334,2021-01-01,,History and physical note -334,2020-08-01,ambulatory, -334,2020-08-01,ambulatory,Evaluation + Plan note -334,2018-10-01,ambulatory, -334,2018-10-01,ambulatory,Evaluation + Plan note -334,2017-02-01,, -334,2017-02-01,,Evaluation + Plan note -333,2018-12-01,ambulatory, -333,2018-12-01,ambulatory,Evaluation + Plan note -331,2017-09-01,ambulatory, -331,2017-09-01,ambulatory,Evaluation + Plan note -330,2019-12-01,ambulatory, -330,2019-12-01,ambulatory,Evaluation + Plan note -330,2019-10-01,, -330,2019-10-01,,Evaluation + Plan note -328,2021-10-01,ambulatory,History and physical note -328,2021-08-01,ambulatory,History and physical note -327,2022-07-01,,History and physical note -326,2019-08-01,, -326,2019-08-01,,Evaluation + Plan note -326,2016-11-01,, -326,2016-11-01,,Evaluation + Plan note -325,2020-01-01,ambulatory, -325,2020-01-01,ambulatory,Evaluation + Plan note -323,2020-04-01,ambulatory, -323,2020-04-01,ambulatory,Evaluation + Plan note -323,2017-04-01,ambulatory, -323,2017-04-01,ambulatory,Evaluation + Plan note -322,2018-11-01,ambulatory, -322,2018-11-01,ambulatory,Evaluation + Plan note -321,2021-07-01,,History and physical note -318,2021-02-01,,History and physical note -318,2020-10-01,ambulatory, -318,2020-10-01,ambulatory,Evaluation + Plan note -318,2020-05-01,ambulatory, -318,2020-05-01,ambulatory,Evaluation + Plan note -317,2022-05-01,,History and physical note -317,2021-12-01,,History and physical note -316,2023-01-01,,History and physical note -316,2017-03-01,,History and physical note -316,2016-11-01,ambulatory, -316,2016-11-01,ambulatory,Evaluation + Plan note -315,2021-09-01,,History and physical note -315,2017-02-01,ambulatory, -315,2017-02-01,ambulatory,Evaluation + Plan note -314,2018-05-01,,History and physical note -314,2018-02-01,ambulatory, -314,2018-02-01,ambulatory,Evaluation + Plan note -313,2021-11-01,,History and physical note -313,2019-07-01,ambulatory, -313,2019-07-01,ambulatory,Evaluation + Plan note -313,2017-11-01,ambulatory, -313,2017-11-01,ambulatory,Evaluation + Plan note -312,2023-03-01,,History and physical note -312,2018-08-01,,History and physical note -311,2022-10-01,,History and physical note -311,2021-01-01,ambulatory,History and physical note -311,2020-09-01,ambulatory, -311,2020-09-01,ambulatory,Evaluation + Plan note -310,2018-03-01,,History and physical note -309,2019-08-01,ambulatory, -309,2019-08-01,ambulatory,Evaluation + Plan note -308,,inpatient encounter,History and physical note -308,2019-02-01,ambulatory, -308,2019-02-01,ambulatory,Evaluation + Plan note -307,2020-02-01,, -307,2020-02-01,,Evaluation + Plan note -306,2018-06-01,,History and physical note -305,2022-08-01,,History and physical note -305,2016-08-01,,History and physical note -304,2021-07-01,ambulatory,History and physical note -304,2018-09-01,,History and physical note -303,2022-07-01,ambulatory,History and physical note -302,2022-12-01,,History and physical note -301,2021-02-01,ambulatory,History and physical note -300,2021-09-01,ambulatory,History and physical note -300,2020-03-01,,History and physical note -300,2019-10-01,ambulatory, -300,2019-10-01,ambulatory,Evaluation + Plan note -300,2018-05-01,ambulatory,History and physical note -299,2021-11-01,ambulatory,History and physical note -298,2019-03-01,,History and physical note -298,2017-03-01,ambulatory,History and physical note -297,2019-04-01,,History and physical note -297,2019-01-01,,History and physical note -296,2023-01-01,ambulatory,History and physical note -296,2022-09-01,,History and physical note -296,2020-02-01,ambulatory, -296,2020-02-01,ambulatory,Evaluation + Plan note -296,2019-11-01,, -296,2019-11-01,,Evaluation + Plan note -295,2017-06-01,,History and physical note -294,2022-10-01,ambulatory,History and physical note -293,2022-04-01,,History and physical note -293,2018-08-01,ambulatory,History and physical note -293,2018-01-01,,History and physical note -292,2023-03-01,ambulatory,History and physical note -292,2022-05-01,ambulatory,History and physical note -292,2018-09-01,ambulatory,History and physical note -292,2018-03-01,ambulatory,History and physical note -291,2019-09-01,, -291,2019-09-01,,Evaluation + Plan note -290,2017-07-01,,History and physical note -289,2021-12-01,ambulatory,History and physical note -289,2020-04-01,,History and physical note -288,2022-11-01,,History and physical note -288,2022-06-01,,History and physical note -287,2017-08-01,,History and physical note -286,2022-09-01,ambulatory,History and physical note -286,2018-06-01,ambulatory,History and physical note -285,2020-11-01,,History and physical note -285,2016-06-01,,History and physical note -284,2023-02-01,,History and physical note -284,2022-12-01,ambulatory,History and physical note -284,2019-11-01,ambulatory, -284,2019-11-01,ambulatory,Evaluation + Plan note -284,2016-07-01,,History and physical note -283,2022-08-01,ambulatory,History and physical note -282,2020-08-01,,History and physical note -282,2016-12-01,,History and physical note -281,2022-03-01,,History and physical note -280,2020-03-01,ambulatory,History and physical note -280,2019-01-01,ambulatory,History and physical note -279,2019-05-01,,History and physical note -279,2016-09-01,,History and physical note -278,2022-11-01,ambulatory,History and physical note -278,2022-01-01,,History and physical note -278,2018-01-01,ambulatory,History and physical note -276,2020-12-01,,History and physical note -275,2022-06-01,ambulatory,History and physical note -275,2020-01-01,,History and physical note -275,2017-07-01,ambulatory,History and physical note -274,2019-04-01,ambulatory,History and physical note -274,2019-03-01,ambulatory,History and physical note -274,2017-08-01,ambulatory,History and physical note -274,2017-01-01,,History and physical note -274,2016-08-01,ambulatory,History and physical note -273,2019-09-01,ambulatory, -273,2019-09-01,ambulatory,Evaluation + Plan note -273,2018-07-01,,History and physical note -273,2017-06-01,ambulatory,History and physical note -272,2022-04-01,ambulatory,History and physical note -272,2018-04-01,,History and physical note -271,2018-12-01,,History and physical note -271,2016-12-01,ambulatory,History and physical note -270,2020-11-01,ambulatory,History and physical note -270,2020-06-01,,History and physical note -270,2016-10-01,,History and physical note -268,2023-02-01,ambulatory,History and physical note -268,2020-07-01,,History and physical note -268,2017-12-01,,History and physical note -268,2016-09-01,ambulatory,History and physical note -267,2020-05-01,,History and physical note -267,2019-07-01,,History and physical note -266,2022-03-01,ambulatory,History and physical note -266,2016-06-01,ambulatory,History and physical note -265,2016-07-01,ambulatory,History and physical note -264,2022-01-01,ambulatory,History and physical note -263,2020-08-01,ambulatory,History and physical note -263,2019-06-01,,History and physical note -263,2019-02-01,,History and physical note -261,2018-07-01,ambulatory,History and physical note -261,2017-05-01,,History and physical note -260,2017-10-01,,History and physical note -259,2018-10-01,,History and physical note -259,2017-04-01,,History and physical note -258,2022-02-01,,History and physical note -258,2019-05-01,ambulatory,History and physical note -258,2018-12-01,ambulatory,History and physical note -257,2020-09-01,,History and physical note -257,2017-09-01,,History and physical note -256,2020-12-01,ambulatory,History and physical note -256,2018-04-01,ambulatory,History and physical note -255,2020-06-01,ambulatory,History and physical note -255,2020-04-01,ambulatory,History and physical note -254,2019-12-01,,History and physical note -254,2019-08-01,,History and physical note -254,2018-11-01,,History and physical note -252,2018-02-01,,History and physical note -251,2017-12-01,ambulatory,History and physical note -251,2016-10-01,ambulatory,History and physical note -250,2017-11-01,,History and physical note -250,2017-02-01,,History and physical note -249,2020-07-01,ambulatory,History and physical note -249,2019-06-01,ambulatory,History and physical note -248,2020-10-01,,History and physical note -248,2017-01-01,ambulatory,History and physical note -245,2020-05-01,ambulatory,History and physical note -245,2020-01-01,ambulatory,History and physical note -244,2022-02-01,ambulatory,History and physical note -244,2017-05-01,ambulatory,History and physical note -244,2016-11-01,,History and physical note -243,2019-08-01,ambulatory,History and physical note -243,2017-10-01,ambulatory,History and physical note -243,2017-09-01,ambulatory,History and physical note -241,2017-04-01,ambulatory,History and physical note -240,2019-02-01,ambulatory,History and physical note -239,2019-10-01,,History and physical note -239,2017-02-01,ambulatory,History and physical note -238,2020-09-01,ambulatory,History and physical note -238,2019-07-01,ambulatory,History and physical note -238,2018-11-01,ambulatory,History and physical note -237,2018-10-01,ambulatory,History and physical note -237,2016-11-01,ambulatory,History and physical note -235,2019-12-01,ambulatory,History and physical note -235,2018-02-01,ambulatory,History and physical note -234,2017-11-01,ambulatory,History and physical note -233,2020-02-01,,History and physical note -229,2020-10-01,ambulatory,History and physical note -225,2019-11-01,,History and physical note -223,2019-09-01,,History and physical note -222,2020-02-01,ambulatory,History and physical note -222,2019-10-01,ambulatory,History and physical note -215,2019-11-01,ambulatory,History and physical note -212,,home health, -212,,home health,Evaluation + Plan note -208,2019-09-01,ambulatory,History and physical note -154,2021-04-01,,Emergency department note -153,,home health,History and physical note -151,2021-05-01,,Emergency department note -149,2021-04-01,ambulatory,Emergency department note -148,2021-05-01,ambulatory,Emergency department note -139,2021-03-01,,Emergency department note -133,2021-03-01,ambulatory,Emergency department note -127,2021-08-01,,Emergency department note -123,2021-08-01,ambulatory,Emergency department note -117,2021-11-01,,Emergency department note -114,2021-12-01,,Emergency department note -113,2021-09-01,,Emergency department note -113,2021-07-01,,Emergency department note -112,2021-11-01,ambulatory,Emergency department note -111,2017-12-01,,Emergency department note -108,2021-10-01,,Emergency department note -107,2021-07-01,ambulatory,Emergency department note -106,2022-08-01,,Emergency department note -106,2022-05-01,,Emergency department note -106,2021-12-01,ambulatory,Emergency department note -106,2021-06-01,,Emergency department note -106,2019-06-01,,Emergency department note -106,2019-05-01,,Emergency department note -106,2018-08-01,,Emergency department note -106,2017-05-01,,Emergency department note -106,2016-08-01,,Emergency department note -105,2021-10-01,ambulatory,Emergency department note -105,2020-07-01,,Emergency department note -103,2022-10-01,,Emergency department note -103,2017-12-01,ambulatory,Emergency department note -103,2017-10-01,,Emergency department note -103,2017-06-01,,Emergency department note -103,2017-05-01,ambulatory,Emergency department note -102,2021-09-01,ambulatory,Emergency department note -102,2018-01-01,,Emergency department note -101,2022-02-01,,Emergency department note -101,2018-05-01,,Emergency department note -101,2016-07-01,,Emergency department note -100,2021-06-01,ambulatory,Emergency department note -100,2019-12-01,,Emergency department note -100,2018-10-01,,Emergency department note -100,2018-06-01,,Emergency department note -99,2023-02-01,,Emergency department note -99,2022-10-01,ambulatory,Emergency department note -99,2021-01-01,,Emergency department note -99,2019-05-01,ambulatory,Emergency department note -99,2019-04-01,,Emergency department note -99,2018-08-01,ambulatory,Emergency department note -99,2017-09-01,,Emergency department note -98,2022-02-01,ambulatory,Emergency department note -98,2019-01-01,,Emergency department note -98,2017-10-01,ambulatory,Emergency department note -98,2017-07-01,,Emergency department note -98,2017-01-01,,Emergency department note -97,2022-05-01,ambulatory,Emergency department note -97,2019-06-01,ambulatory,Emergency department note -97,2018-10-01,ambulatory,Emergency department note -97,2017-08-01,,Emergency department note -96,2022-04-01,,Emergency department note -96,2018-09-01,,Emergency department note -95,2022-09-01,,Emergency department note -95,2022-01-01,,Emergency department note -95,2021-02-01,,Emergency department note -95,2020-07-01,ambulatory,Emergency department note -95,2019-12-01,ambulatory,Emergency department note -95,2019-04-01,ambulatory,Emergency department note -95,2018-04-01,,Emergency department note -95,2018-01-01,ambulatory,Emergency department note -94,2022-08-01,ambulatory,Emergency department note -94,2022-06-01,,Emergency department note -94,2021-01-01,ambulatory,Emergency department note -94,2020-10-01,,Emergency department note -94,2019-03-01,,Emergency department note -94,2019-01-01,ambulatory,Emergency department note -94,2018-05-01,ambulatory,Emergency department note -94,2017-08-01,ambulatory,Emergency department note -94,2017-06-01,ambulatory,Emergency department note -94,2016-10-01,,Emergency department note -94,2016-09-01,,Emergency department note -94,2016-06-01,,Emergency department note -93,2023-01-01,,Emergency department note -93,2022-07-01,,Emergency department note -93,2016-08-01,ambulatory,Emergency department note -92,2020-12-01,,Emergency department note -92,2018-11-01,,Emergency department note -92,2018-04-01,ambulatory,Emergency department note -92,2017-01-01,ambulatory,Emergency department note -91,2023-02-01,ambulatory,Emergency department note -91,2022-12-01,,Emergency department note -91,2022-06-01,ambulatory,Emergency department note -91,2021-02-01,ambulatory,Emergency department note -91,2019-10-01,,Emergency department note -91,2018-07-01,,Emergency department note -91,2018-03-01,,Emergency department note -91,2016-10-01,ambulatory,Emergency department note -90,2022-11-01,,Emergency department note -90,2022-07-01,ambulatory,Emergency department note -90,2018-06-01,ambulatory,Emergency department note -89,2023-01-01,ambulatory,Emergency department note -89,2022-09-01,ambulatory,Emergency department note -89,2022-04-01,ambulatory,Emergency department note -89,2020-12-01,ambulatory,Emergency department note -89,2020-10-01,ambulatory,Emergency department note -89,2020-06-01,,Emergency department note -89,2019-03-01,ambulatory,Emergency department note -89,2017-11-01,,Emergency department note -89,2016-09-01,ambulatory,Emergency department note -89,2016-07-01,ambulatory,Emergency department note -89,2016-06-01,ambulatory,Emergency department note -88,2020-01-01,,Emergency department note -88,2018-09-01,ambulatory,Emergency department note -88,2017-09-01,ambulatory,Emergency department note -88,2017-04-01,,Emergency department note -88,2017-03-01,,Emergency department note -88,2016-12-01,,Emergency department note -87,2022-12-01,ambulatory,Emergency department note -87,2022-11-01,ambulatory,Emergency department note -86,2022-01-01,ambulatory,Emergency department note -86,2020-03-01,,Emergency department note -86,2019-07-01,,Emergency department note -86,2018-07-01,ambulatory,Emergency department note -85,2018-12-01,,Emergency department note -85,2016-12-01,ambulatory,Emergency department note -84,2018-11-01,ambulatory,Emergency department note -84,2018-03-01,ambulatory,Emergency department note -84,2017-02-01,,Emergency department note -83,,inpatient encounter,Emergency department note -83,2018-02-01,,Emergency department note -83,2017-07-01,ambulatory,Emergency department note -82,2017-04-01,ambulatory,Emergency department note -82,2016-11-01,,Emergency department note -81,2020-06-01,ambulatory,Emergency department note -81,2017-03-01,ambulatory,Emergency department note -80,,virtual, -80,,virtual,Evaluation + Plan note -80,2020-05-01,,Emergency department note -80,2020-01-01,ambulatory,Emergency department note -79,2018-02-01,ambulatory,Emergency department note -79,2017-11-01,ambulatory,Emergency department note -79,2016-11-01,ambulatory,Emergency department note -78,2022-03-01,,Emergency department note -78,2020-11-01,,Emergency department note -78,2020-09-01,,Emergency department note -78,2020-03-01,ambulatory,Emergency department note -78,2019-10-01,ambulatory,Emergency department note -78,2019-02-01,,Emergency department note -76,2020-11-01,ambulatory,Emergency department note -76,2020-08-01,,Emergency department note -76,2017-02-01,ambulatory,Emergency department note -75,2020-04-01,,Emergency department note -75,2019-07-01,ambulatory,Emergency department note -75,2018-12-01,ambulatory,Emergency department note -74,2022-03-01,ambulatory,Emergency department note -74,2020-02-01,,Emergency department note -74,2020-02-01,ambulatory,Emergency department note -73,2020-09-01,ambulatory,Emergency department note -73,2020-05-01,ambulatory,Emergency department note -72,2019-08-01,,Emergency department note -71,2020-08-01,ambulatory,Emergency department note -71,2019-11-01,,Emergency department note -70,2023-03-01,,Emergency department note -69,2019-11-01,ambulatory,Emergency department note -68,2020-04-01,ambulatory,Emergency department note -68,2019-09-01,,Emergency department note -68,2019-02-01,ambulatory,Emergency department note -66,2019-08-01,ambulatory,Emergency department note -65,2023-03-01,ambulatory,Emergency department note -65,2019-09-01,ambulatory,Emergency department note -59,,home health,Emergency department note -57,,virtual,History and physical note -26,2017-07-01,emergency, -26,2017-07-01,emergency,Evaluation + Plan note -25,2018-06-01,emergency, -25,2018-06-01,emergency,Evaluation + Plan note -25,2017-01-01,emergency, -25,2017-01-01,emergency,Evaluation + Plan note -23,2022-05-01,emergency, -23,2022-05-01,emergency,Evaluation + Plan note -23,2019-02-01,emergency, -23,2019-02-01,emergency,Evaluation + Plan note -21,2020-05-01,emergency, -21,2020-05-01,emergency,Evaluation + Plan note -20,2023-03-01,emergency, -20,2023-03-01,emergency,Evaluation + Plan note -20,2022-07-01,emergency, -20,2022-07-01,emergency,Evaluation + Plan note -20,2021-09-01,emergency, -20,2021-09-01,emergency,Evaluation + Plan note -20,2017-06-01,emergency, -20,2017-06-01,emergency,Evaluation + Plan note -20,2017-04-01,emergency, -20,2017-04-01,emergency,Evaluation + Plan note -20,2016-07-01,emergency, -20,2016-07-01,emergency,Evaluation + Plan note -19,2022-07-01,emergency,History and physical note -19,2021-08-01,emergency, -19,2021-08-01,emergency,Evaluation + Plan note -19,2021-05-01,emergency, -19,2021-05-01,emergency,Evaluation + Plan note -19,2020-04-01,emergency, -19,2020-04-01,emergency,Evaluation + Plan note -19,2019-03-01,emergency, -19,2019-03-01,emergency,Evaluation + Plan note -19,2017-09-01,emergency, -19,2017-09-01,emergency,Evaluation + Plan note -19,2017-01-01,emergency,History and physical note -19,2016-10-01,emergency, -19,2016-10-01,emergency,Evaluation + Plan note -19,2016-06-01,emergency, -19,2016-06-01,emergency,Evaluation + Plan note -18,2022-12-01,emergency, -18,2022-12-01,emergency,Evaluation + Plan note -18,2022-04-01,emergency, -18,2022-04-01,emergency,Evaluation + Plan note -18,2021-03-01,emergency, -18,2021-03-01,emergency,Evaluation + Plan note -18,2020-07-01,emergency, -18,2020-07-01,emergency,Evaluation + Plan note -18,2019-10-01,emergency, -18,2019-10-01,emergency,Evaluation + Plan note -18,2018-03-01,emergency, -18,2018-03-01,emergency,Evaluation + Plan note -18,2017-03-01,emergency, -18,2017-03-01,emergency,Evaluation + Plan note -18,2017-02-01,emergency, -18,2017-02-01,emergency,Evaluation + Plan note -17,2023-02-01,emergency, -17,2023-02-01,emergency,Evaluation + Plan note -17,2021-12-01,emergency, -17,2021-12-01,emergency,Evaluation + Plan note -17,2020-09-01,emergency, -17,2020-09-01,emergency,Evaluation + Plan note -17,2019-04-01,emergency, -17,2019-04-01,emergency,Evaluation + Plan note -17,2019-03-01,emergency,History and physical note -17,2019-02-01,emergency,History and physical note -17,2018-09-01,emergency, -17,2018-09-01,emergency,Evaluation + Plan note -17,2018-01-01,emergency, -17,2018-01-01,emergency,Evaluation + Plan note -17,2017-11-01,emergency, -17,2017-11-01,emergency,Evaluation + Plan note -17,2016-08-01,emergency, -17,2016-08-01,emergency,Evaluation + Plan note -16,2023-03-01,emergency,History and physical note -16,2022-08-01,emergency, -16,2022-08-01,emergency,Evaluation + Plan note -16,2022-05-01,emergency,History and physical note -16,2022-03-01,emergency, -16,2022-03-01,emergency,Evaluation + Plan note -16,2021-08-01,emergency,History and physical note -16,2021-05-01,emergency,History and physical note -16,2021-02-01,emergency, -16,2021-02-01,emergency,Evaluation + Plan note -16,2020-10-01,emergency, -16,2020-10-01,emergency,Evaluation + Plan note -16,2020-05-01,emergency,History and physical note -16,2018-11-01,emergency, -16,2018-11-01,emergency,Evaluation + Plan note -16,2018-02-01,emergency, -16,2018-02-01,emergency,Evaluation + Plan note -16,2016-10-01,emergency,History and physical note -16,2016-09-01,emergency, -16,2016-09-01,emergency,Evaluation + Plan note -15,2023-04-01,, -15,2023-04-01,,Evaluation + Plan note -15,2022-04-01,emergency,History and physical note -15,2020-04-01,emergency,History and physical note -15,2020-01-01,emergency, -15,2020-01-01,emergency,Evaluation + Plan note -15,2019-04-01,emergency,History and physical note -15,2018-12-01,emergency, -15,2018-12-01,emergency,Evaluation + Plan note -15,2018-10-01,emergency, -15,2018-10-01,emergency,Evaluation + Plan note -15,2018-08-01,emergency, -15,2018-08-01,emergency,Evaluation + Plan note -15,2018-06-01,emergency,History and physical note -15,2017-10-01,emergency, -15,2017-10-01,emergency,Evaluation + Plan note -15,2017-07-01,emergency,Emergency department note -15,2017-06-01,emergency,History and physical note -15,2017-04-01,emergency,History and physical note -14,2023-04-01,ambulatory, -14,2023-04-01,ambulatory,Evaluation + Plan note -14,2022-12-01,emergency,History and physical note -14,2022-01-01,emergency, -14,2022-01-01,emergency,Evaluation + Plan note -14,2021-10-01,emergency, -14,2021-10-01,emergency,Evaluation + Plan note -14,2021-06-01,emergency, -14,2021-06-01,emergency,Evaluation + Plan note -14,2021-03-01,emergency,History and physical note -14,2021-01-01,inpatient encounter, -14,2021-01-01,inpatient encounter,Evaluation + Plan note -14,2020-03-01,emergency, -14,2020-03-01,emergency,Evaluation + Plan note -14,2019-12-01,emergency, -14,2019-12-01,emergency,Evaluation + Plan note -14,2019-09-01,emergency, -14,2019-09-01,emergency,Evaluation + Plan note -14,2019-05-01,emergency, -14,2019-05-01,emergency,Evaluation + Plan note -14,2018-10-01,emergency,History and physical note -14,2018-04-01,emergency, -14,2018-04-01,emergency,Evaluation + Plan note -14,2018-03-01,emergency,History and physical note -14,2017-05-01,emergency, -14,2017-05-01,emergency,Evaluation + Plan note -14,2016-06-01,emergency,History and physical note -13,2023-02-01,emergency,History and physical note -13,2023-01-01,emergency, -13,2023-01-01,emergency,Evaluation + Plan note -13,2022-10-01,emergency, -13,2022-10-01,emergency,Evaluation + Plan note -13,2022-06-01,emergency, -13,2022-06-01,emergency,Evaluation + Plan note -13,2022-03-01,emergency,History and physical note -13,2021-10-01,emergency,History and physical note -13,2021-04-01,emergency, -13,2021-04-01,emergency,Evaluation + Plan note -13,2021-02-01,emergency,History and physical note -13,2021-01-01,inpatient encounter,History and physical note -13,2020-10-01,emergency,History and physical note -13,2020-09-01,emergency,History and physical note -13,2020-06-01,emergency, -13,2020-06-01,emergency,Evaluation + Plan note -13,2020-01-01,emergency,History and physical note -13,2019-07-01,emergency, -13,2019-07-01,emergency,Evaluation + Plan note -13,2019-01-01,emergency, -13,2019-01-01,emergency,Evaluation + Plan note -13,2018-07-01,emergency, -13,2018-07-01,emergency,Evaluation + Plan note -13,2018-05-01,emergency, -13,2018-05-01,emergency,Evaluation + Plan note -13,2017-12-01,emergency, -13,2017-12-01,emergency,Evaluation + Plan note -13,2017-03-01,emergency,History and physical note -13,2016-07-01,emergency,History and physical note -12,2022-09-01,emergency, -12,2022-09-01,emergency,Evaluation + Plan note -12,2022-08-01,emergency,History and physical note -12,2022-02-01,emergency, -12,2022-02-01,emergency,Evaluation + Plan note -12,2021-12-01,emergency,History and physical note -12,2021-07-01,emergency, -12,2021-07-01,emergency,Evaluation + Plan note -12,2020-08-01,emergency, -12,2020-08-01,emergency,Evaluation + Plan note -12,2020-07-01,emergency,History and physical note -12,2018-02-01,emergency,History and physical note -12,2018-01-01,emergency,History and physical note -12,2017-10-01,emergency,History and physical note -12,2017-05-01,emergency,History and physical note -11,2023-04-01,,History and physical note -11,2021-09-01,emergency,History and physical note -11,2021-01-01,emergency, -11,2021-01-01,emergency,Evaluation + Plan note -11,2020-12-01,emergency, -11,2020-12-01,emergency,Evaluation + Plan note -11,2019-12-01,emergency,History and physical note -11,2019-11-01,emergency, -11,2019-11-01,emergency,Evaluation + Plan note -11,2019-09-01,emergency,History and physical note -11,2019-08-01,emergency, -11,2019-08-01,emergency,Evaluation + Plan note -11,2019-05-01,inpatient encounter, -11,2019-05-01,inpatient encounter,Evaluation + Plan note -11,2018-04-01,emergency,History and physical note -11,2017-11-01,emergency,History and physical note -11,2017-09-01,emergency,History and physical note -11,2017-08-01,emergency, -11,2017-08-01,emergency,Evaluation + Plan note -11,2017-07-01,emergency,History and physical note -11,2016-12-01,emergency, -11,2016-12-01,emergency,Evaluation + Plan note -11,2016-09-01,emergency,History and physical note -10,2023-04-01,ambulatory,History and physical note -10,2019-05-01,inpatient encounter,History and physical note -10,2016-08-01,emergency,History and physical note diff --git a/tests/regression/reference/core__count_documentreference_month.parquet b/tests/regression/reference/core__count_documentreference_month.parquet index fb719184..9afd84fe 100644 Binary files a/tests/regression/reference/core__count_documentreference_month.parquet and b/tests/regression/reference/core__count_documentreference_month.parquet differ diff --git a/tests/regression/reference/core__count_encounter_month.csv b/tests/regression/reference/core__count_encounter_month.csv index 94aae023..303b619d 100644 --- a/tests/regression/reference/core__count_encounter_month.csv +++ b/tests/regression/reference/core__count_encounter_month.csv @@ -1,5695 +1,5695 @@ cnt,start_month,enc_class_display,age_at_visit,gender,race_display,ethnicity_display 31669,,,,,, 29698,,ambulatory,,,, -29668,,,,,,[Not Hispanic or Latino] -28717,,,,,[White], -27828,,ambulatory,,,,[Not Hispanic or Latino] -26938,,,,,[White],[Not Hispanic or Latino] -26929,,ambulatory,,,[White], -25267,,ambulatory,,,[White],[Not Hispanic or Latino] +29668,,,,,,not hispanic or latino +28717,,,,,white, +27828,,ambulatory,,,,not hispanic or latino +26938,,,,,white,not hispanic or latino +26929,,ambulatory,,,white, +25267,,ambulatory,,,white,not hispanic or latino 16973,,,,female,, 16086,,ambulatory,,female,, -15754,,,,female,,[Not Hispanic or Latino] -15458,,,,female,[White], -14952,,ambulatory,,female,,[Not Hispanic or Latino] +15754,,,,female,,not hispanic or latino +15458,,,,female,white, +14952,,ambulatory,,female,,not hispanic or latino 14696,,,,male,, -14647,,ambulatory,,female,[White], -14329,,,,female,[White],[Not Hispanic or Latino] -13914,,,,male,,[Not Hispanic or Latino] +14647,,ambulatory,,female,white, +14329,,,,female,white,not hispanic or latino +13914,,,,male,,not hispanic or latino 13612,,ambulatory,,male,, -13597,,ambulatory,,female,[White],[Not Hispanic or Latino] -13259,,,,male,[White], -12876,,ambulatory,,male,,[Not Hispanic or Latino] -12609,,,,male,[White],[Not Hispanic or Latino] -12282,,ambulatory,,male,[White], -11670,,ambulatory,,male,[White],[Not Hispanic or Latino] -2001,,,,,,[Hispanic or Latino] -1870,,ambulatory,,,,[Hispanic or Latino] -1779,,,,,[White],[Hispanic or Latino] -1750,,,,,[Black or African American], -1662,,ambulatory,,,[White],[Hispanic or Latino] -1656,,ambulatory,,,[Black or African American], -1560,,,,,[Black or African American],[Not Hispanic or Latino] -1479,,ambulatory,,,[Black or African American],[Not Hispanic or Latino] +13597,,ambulatory,,female,white,not hispanic or latino +13259,,,,male,white, +12876,,ambulatory,,male,,not hispanic or latino +12609,,,,male,white,not hispanic or latino +12282,,ambulatory,,male,white, +11670,,ambulatory,,male,white,not hispanic or latino +2001,,,,,,hispanic or latino +1870,,ambulatory,,,,hispanic or latino +1779,,,,,white,hispanic or latino +1750,,,,,black or african american, +1662,,ambulatory,,,white,hispanic or latino +1656,,ambulatory,,,black or african american, +1560,,,,,black or african american,not hispanic or latino +1479,,ambulatory,,,black or african american,not hispanic or latino 1288,,emergency,,,, -1219,,,,female,,[Hispanic or Latino] -1195,,emergency,,,,[Not Hispanic or Latino] -1184,,emergency,,,[White], -1134,,ambulatory,,female,,[Hispanic or Latino] -1129,,,,female,[White],[Hispanic or Latino] -1100,,emergency,,,[White],[Not Hispanic or Latino] -1050,,ambulatory,,female,[White],[Hispanic or Latino] -968,,,,male,[Black or African American], -913,,ambulatory,,male,[Black or African American], -836,,,,male,[Black or African American],[Not Hispanic or Latino] -789,,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] -782,,,,male,,[Hispanic or Latino] -782,,,,female,[Black or African American], -743,,ambulatory,,female,[Black or African American], -736,,ambulatory,,male,,[Hispanic or Latino] -724,,,,female,[Black or African American],[Not Hispanic or Latino] -690,,ambulatory,,female,[Black or African American],[Not Hispanic or Latino] +1219,,,,female,,hispanic or latino +1195,,emergency,,,,not hispanic or latino +1184,,emergency,,,white, +1134,,ambulatory,,female,,hispanic or latino +1129,,,,female,white,hispanic or latino +1100,,emergency,,,white,not hispanic or latino +1050,,ambulatory,,female,white,hispanic or latino +968,,,,male,black or african american, +913,,ambulatory,,male,black or african american, +836,,,,male,black or african american,not hispanic or latino +789,,ambulatory,,male,black or african american,not hispanic or latino +782,,,,male,,hispanic or latino +782,,,,female,black or african american, +743,,ambulatory,,female,black or african american, +736,,ambulatory,,male,,hispanic or latino +724,,,,female,black or african american,not hispanic or latino +690,,ambulatory,,female,black or african american,not hispanic or latino 665,,emergency,,male,, -650,,,,male,[White],[Hispanic or Latino] -633,,emergency,,male,,[Not Hispanic or Latino] +650,,,,male,white,hispanic or latino +633,,emergency,,male,,not hispanic or latino 623,,,61,,, 623,,emergency,,female,, 622,,,48,,, -619,,emergency,,male,[White], +619,,emergency,,male,white, 612,,,63,,, -612,,ambulatory,,male,[White],[Hispanic or Latino] -605,,,63,,,[Not Hispanic or Latino] +612,,ambulatory,,male,white,hispanic or latino +605,,,63,,,not hispanic or latino 604,,ambulatory,48,,, -599,,,63,,[White], +599,,,63,,white, 598,,,60,,, 596,,ambulatory,61,,, -595,,,61,,,[Not Hispanic or Latino] -593,,,61,,[White], -592,,,63,,[White],[Not Hispanic or Latino] -590,,emergency,,male,[White],[Not Hispanic or Latino] +595,,,61,,,not hispanic or latino +593,,,61,,white, +592,,,63,,white,not hispanic or latino +590,,emergency,,male,white,not hispanic or latino 588,,ambulatory,63,,, 587,,,49,,, -587,,,48,,,[Not Hispanic or Latino] -587,,,48,,[White], -586,,,60,,,[Not Hispanic or Latino] -582,,ambulatory,63,,,[Not Hispanic or Latino] +587,,,48,,,not hispanic or latino +587,,,48,,white, +586,,,60,,,not hispanic or latino +582,,ambulatory,63,,,not hispanic or latino 582,2021-04-01,,,,, -578,,,61,,[White],[Not Hispanic or Latino] +578,,,61,,white,not hispanic or latino 578,2021-05-01,,,,, 576,,ambulatory,49,,, -575,,ambulatory,63,,[White], +575,,ambulatory,63,,white, 575,,ambulatory,60,,, -574,,,60,,[White], -574,,ambulatory,48,,[White], -573,,ambulatory,48,,,[Not Hispanic or Latino] -572,,ambulatory,61,,,[Not Hispanic or Latino] -569,,ambulatory,63,,[White],[Not Hispanic or Latino] -569,,ambulatory,61,,[White], +574,,,60,,white, +574,,ambulatory,48,,white, +573,,ambulatory,48,,,not hispanic or latino +572,,ambulatory,61,,,not hispanic or latino +569,,ambulatory,63,,white,not hispanic or latino +569,,ambulatory,61,,white, 565,,,62,,, -565,,,60,,[White],[Not Hispanic or Latino] -565,,emergency,,female,[White], -563,,ambulatory,60,,,[Not Hispanic or Latino] +565,,,60,,white,not hispanic or latino +565,,emergency,,female,white, +563,,ambulatory,60,,,not hispanic or latino 563,2021-04-01,ambulatory,,,, -562,,emergency,,female,,[Not Hispanic or Latino] -556,,,49,,,[Not Hispanic or Latino] +562,,emergency,,female,,not hispanic or latino +556,,,49,,,not hispanic or latino 556,2021-05-01,ambulatory,,,, 556,2021-03-01,,,,, -555,,ambulatory,61,,[White],[Not Hispanic or Latino] +555,,ambulatory,61,,white,not hispanic or latino 553,,,50,,, -552,,,48,,[White],[Not Hispanic or Latino] -551,,,62,,,[Not Hispanic or Latino] -551,,ambulatory,60,,[White], -550,,,49,,[White], -550,2021-04-01,,,,,[Not Hispanic or Latino] +552,,,48,,white,not hispanic or latino +551,,,62,,,not hispanic or latino +551,,ambulatory,60,,white, +550,,,49,,white, +550,2021-04-01,,,,,not hispanic or latino 549,,ambulatory,62,,, 547,,ambulatory,50,,, -547,,ambulatory,49,,,[Not Hispanic or Latino] -546,,,62,,[White], -543,,ambulatory,48,,[White],[Not Hispanic or Latino] -542,,ambulatory,60,,[White],[Not Hispanic or Latino] -542,,ambulatory,49,,[White], -536,,,62,,[White],[Not Hispanic or Latino] -535,,ambulatory,62,,,[Not Hispanic or Latino] -535,2021-05-01,,,,,[Not Hispanic or Latino] -535,2021-04-01,ambulatory,,,,[Not Hispanic or Latino] +547,,ambulatory,49,,,not hispanic or latino +546,,,62,,white, +543,,ambulatory,48,,white,not hispanic or latino +542,,ambulatory,60,,white,not hispanic or latino +542,,ambulatory,49,,white, +536,,,62,,white,not hispanic or latino +535,,ambulatory,62,,,not hispanic or latino +535,2021-05-01,,,,,not hispanic or latino +535,2021-04-01,ambulatory,,,,not hispanic or latino 532,,,64,,, -532,,,50,,,[Not Hispanic or Latino] -531,,ambulatory,62,,[White], +532,,,50,,,not hispanic or latino +531,,ambulatory,62,,white, 531,2021-03-01,ambulatory,,,, -527,2021-05-01,,,,[White], +527,2021-05-01,,,,white, 526,,,15,,, -526,,ambulatory,50,,,[Not Hispanic or Latino] +526,,ambulatory,50,,,not hispanic or latino 524,,ambulatory,64,,, -523,,,64,,,[Not Hispanic or Latino] -521,,ambulatory,62,,[White],[Not Hispanic or Latino] -520,,,49,,[White],[Not Hispanic or Latino] -520,2021-03-01,,,,,[Not Hispanic or Latino] -516,2021-05-01,ambulatory,,,,[Not Hispanic or Latino] -515,,ambulatory,64,,,[Not Hispanic or Latino] -514,,ambulatory,49,,[White],[Not Hispanic or Latino] -514,2021-04-01,,,,[White], +523,,,64,,,not hispanic or latino +521,,ambulatory,62,,white,not hispanic or latino +520,,,49,,white,not hispanic or latino +520,2021-03-01,,,,,not hispanic or latino +516,2021-05-01,ambulatory,,,,not hispanic or latino +515,,ambulatory,64,,,not hispanic or latino +514,,ambulatory,49,,white,not hispanic or latino +514,2021-04-01,,,,white, 513,,,16,,, -512,,,50,,[White], +512,,,50,,white, 511,,,58,,, -510,,emergency,,female,[White],[Not Hispanic or Latino] +510,,emergency,,female,white,not hispanic or latino 510,,ambulatory,15,,, -508,2021-05-01,ambulatory,,,[White], -506,,ambulatory,50,,[White], -503,,,58,,,[Not Hispanic or Latino] -499,,,,,[Asian], -498,2021-03-01,ambulatory,,,,[Not Hispanic or Latino] -497,2021-04-01,ambulatory,,,[White], -495,2021-03-01,,,,[White], -493,,,50,,[White],[Not Hispanic or Latino] +508,2021-05-01,ambulatory,,,white, +506,,ambulatory,50,,white, +503,,,58,,,not hispanic or latino +499,,,,,asian, +498,2021-03-01,ambulatory,,,,not hispanic or latino +497,2021-04-01,ambulatory,,,white, +495,2021-03-01,,,,white, +493,,,50,,white,not hispanic or latino 493,,ambulatory,16,,, -490,2021-05-01,,,,[White],[Not Hispanic or Latino] -487,,ambulatory,50,,[White],[Not Hispanic or Latino] -486,,,,,[Asian],[Not Hispanic or Latino] +490,2021-05-01,,,,white,not hispanic or latino +487,,ambulatory,50,,white,not hispanic or latino +486,,,,,asian,not hispanic or latino 486,,ambulatory,58,,, -486,2021-04-01,,,,[White],[Not Hispanic or Latino] +486,2021-04-01,,,,white,not hispanic or latino 484,,,14,,, -483,,,15,,,[Not Hispanic or Latino] +483,,,15,,,not hispanic or latino 482,,,65,,, -478,,ambulatory,,,[Asian], -478,,ambulatory,58,,,[Not Hispanic or Latino] +478,,ambulatory,,,asian, +478,,ambulatory,58,,,not hispanic or latino 477,2021-06-01,,,,, -476,,,16,,,[Not Hispanic or Latino] +476,,,16,,,not hispanic or latino 475,,,1,,, 475,,ambulatory,14,,, 475,2021-08-01,,,,, -474,2021-03-01,ambulatory,,,[White], -472,2021-05-01,ambulatory,,,[White],[Not Hispanic or Latino] -472,2021-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -470,,,65,,,[Not Hispanic or Latino] +474,2021-03-01,ambulatory,,,white, +472,2021-05-01,ambulatory,,,white,not hispanic or latino +472,2021-04-01,ambulatory,,,white,not hispanic or latino +470,,,65,,,not hispanic or latino 470,,,57,,, -469,,ambulatory,15,,,[Not Hispanic or Latino] -467,,,58,,[White], -467,2021-03-01,,,,[White],[Not Hispanic or Latino] +469,,ambulatory,15,,,not hispanic or latino +467,,,58,,white, +467,2021-03-01,,,,white,not hispanic or latino 466,,,47,,, -465,,ambulatory,,,[Asian],[Not Hispanic or Latino] -460,,,58,,[White],[Not Hispanic or Latino] +465,,ambulatory,,,asian,not hispanic or latino +460,,,58,,white,not hispanic or latino 459,2021-06-01,ambulatory,,,, -457,,ambulatory,16,,,[Not Hispanic or Latino] +457,,ambulatory,16,,,not hispanic or latino 457,2021-10-01,,,,, -456,,,57,,,[Not Hispanic or Latino] +456,,,57,,,not hispanic or latino 456,,ambulatory,1,,, 453,,ambulatory,47,,, 452,,,63,female,, 451,,ambulatory,57,,, 451,2021-08-01,ambulatory,,,, 448,,,18,,, -448,2021-03-01,ambulatory,,,[White],[Not Hispanic or Latino] +448,2021-03-01,ambulatory,,,white,not hispanic or latino 447,,,72,,, -447,,,14,,,[Not Hispanic or Latino] -447,,ambulatory,58,,[White], -445,,,63,female,,[Not Hispanic or Latino] -445,,,63,female,[White], -444,,,47,,[White], +447,,,14,,,not hispanic or latino +447,,ambulatory,58,,white, +445,,,63,female,,not hispanic or latino +445,,,63,female,white, +444,,,47,,white, 442,,,59,,, -442,2021-08-01,,,,,[Not Hispanic or Latino] -441,,,64,,[White], +442,2021-08-01,,,,,not hispanic or latino +441,,,64,,white, 441,,,56,,, -441,,,16,,[White], -441,,,1,,,[Not Hispanic or Latino] -440,,,15,,[White], +441,,,16,,white, +441,,,1,,,not hispanic or latino +440,,,15,,white, 440,,ambulatory,63,female,, -440,,ambulatory,58,,[White],[Not Hispanic or Latino] -438,,,63,female,[White],[Not Hispanic or Latino] -438,,ambulatory,57,,,[Not Hispanic or Latino] -438,,ambulatory,14,,,[Not Hispanic or Latino] -436,,,72,,[White], -435,,,72,,,[Not Hispanic or Latino] -434,,,57,,[White], -434,,ambulatory,64,,[White], -434,,ambulatory,63,female,,[Not Hispanic or Latino] +440,,ambulatory,58,,white,not hispanic or latino +438,,,63,female,white,not hispanic or latino +438,,ambulatory,57,,,not hispanic or latino +438,,ambulatory,14,,,not hispanic or latino +436,,,72,,white, +435,,,72,,,not hispanic or latino +434,,,57,,white, +434,,ambulatory,64,,white, +434,,ambulatory,63,female,,not hispanic or latino 434,2021-07-01,,,,, -433,,ambulatory,63,female,[White], +433,,ambulatory,63,female,white, 433,2021-10-01,ambulatory,,,, -433,2021-06-01,,,,,[Not Hispanic or Latino] +433,2021-06-01,,,,,not hispanic or latino 433,2021-01-01,,,,, -432,,,64,,[White],[Not Hispanic or Latino] +432,,,64,,white,not hispanic or latino 432,,ambulatory,18,,, -431,,,47,,,[Not Hispanic or Latino] -431,,ambulatory,47,,[White], +431,,,47,,,not hispanic or latino +431,,ambulatory,47,,white, 431,2021-12-01,,,,, 430,,,84,,, -430,,,84,,[White], +430,,,84,,white, 430,,ambulatory,65,,, 430,2021-11-01,,,,, 429,,,55,,, 429,,ambulatory,72,,, -428,,,84,,,[Not Hispanic or Latino] -428,,,84,,[White],[Not Hispanic or Latino] +428,,,84,,,not hispanic or latino +428,,,84,,white,not hispanic or latino 428,2021-09-01,,,,, 427,,,73,,, -427,,ambulatory,63,female,[White],[Not Hispanic or Latino] -426,,,72,,[White],[Not Hispanic or Latino] -426,,,57,,[White],[Not Hispanic or Latino] -426,,,56,,,[Not Hispanic or Latino] -426,,,18,,,[Not Hispanic or Latino] -425,,,1,,[White], -425,,ambulatory,64,,[White],[Not Hispanic or Latino] -424,,ambulatory,16,,[White], -424,,ambulatory,15,,[White], -423,,ambulatory,65,,,[Not Hispanic or Latino] -423,,ambulatory,1,,,[Not Hispanic or Latino] +427,,ambulatory,63,female,white,not hispanic or latino +426,,,72,,white,not hispanic or latino +426,,,57,,white,not hispanic or latino +426,,,56,,,not hispanic or latino +426,,,18,,,not hispanic or latino +425,,,1,,white, +425,,ambulatory,64,,white,not hispanic or latino +424,,ambulatory,16,,white, +424,,ambulatory,15,,white, +423,,ambulatory,65,,,not hispanic or latino +423,,ambulatory,1,,,not hispanic or latino 423,2022-05-01,,,,, -423,2021-08-01,,,,[White], -423,2021-06-01,,,,[White], -422,2021-10-01,,,,,[Not Hispanic or Latino] -421,,,59,,,[Not Hispanic or Latino] -421,,ambulatory,47,,,[Not Hispanic or Latino] +423,2021-08-01,,,,white, +423,2021-06-01,,,,white, +422,2021-10-01,,,,,not hispanic or latino +421,,,59,,,not hispanic or latino +421,,ambulatory,47,,,not hispanic or latino 420,,ambulatory,59,,, 420,2022-07-01,,,,, -420,2021-08-01,ambulatory,,,,[Not Hispanic or Latino] -419,,ambulatory,72,,[White], +420,2021-08-01,ambulatory,,,,not hispanic or latino +419,,ambulatory,72,,white, 419,,ambulatory,56,,, -418,2021-06-01,ambulatory,,,,[Not Hispanic or Latino] +418,2021-06-01,ambulatory,,,,not hispanic or latino 418,2018-08-01,,,,, -417,,ambulatory,72,,,[Not Hispanic or Latino] -416,,ambulatory,57,,[White], -416,2021-01-01,,,,,[Not Hispanic or Latino] +417,,ambulatory,72,,,not hispanic or latino +416,,ambulatory,57,,white, +416,2021-01-01,,,,,not hispanic or latino 415,2018-05-01,,,,, 414,,,46,,, 414,,,0,,, 414,,ambulatory,84,,, -414,,ambulatory,84,,[White], +414,,ambulatory,84,,white, 414,2022-10-01,,,,, -413,,,55,,,[Not Hispanic or Latino] +413,,,55,,,not hispanic or latino 413,,ambulatory,55,,, 413,2021-02-01,,,,, -412,,,73,,,[Not Hispanic or Latino] -412,,ambulatory,84,,,[Not Hispanic or Latino] -412,,ambulatory,84,,[White],[Not Hispanic or Latino] -412,2021-10-01,,,,[White], -411,,ambulatory,18,,,[Not Hispanic or Latino] +412,,,73,,,not hispanic or latino +412,,ambulatory,84,,,not hispanic or latino +412,,ambulatory,84,,white,not hispanic or latino +412,2021-10-01,,,,white, +411,,ambulatory,18,,,not hispanic or latino 411,2022-08-01,,,,, 411,2021-11-01,ambulatory,,,, 411,2021-07-01,ambulatory,,,, 411,2016-08-01,,,,, 410,,ambulatory,0,,, -409,,,47,,[White],[Not Hispanic or Latino] -409,,ambulatory,72,,[White],[Not Hispanic or Latino] -409,,ambulatory,57,,[White],[Not Hispanic or Latino] -409,,ambulatory,1,,[White], +409,,,47,,white,not hispanic or latino +409,,ambulatory,72,,white,not hispanic or latino +409,,ambulatory,57,,white,not hispanic or latino +409,,ambulatory,1,,white, 409,2023-01-01,,,,, -409,2021-06-01,ambulatory,,,[White], +409,2021-06-01,ambulatory,,,white, 407,,,74,,, -407,,,73,,[White], -406,,,16,,[White],[Not Hispanic or Latino] +407,,,73,,white, +406,,,16,,white,not hispanic or latino 406,2018-06-01,,,,, -405,,,59,,[White], +405,,,59,,white, 405,2021-01-01,ambulatory,,,, -404,,ambulatory,56,,,[Not Hispanic or Latino] +404,,ambulatory,56,,,not hispanic or latino 404,2017-03-01,,,,, 403,,,33,,, -403,2021-12-01,,,,,[Not Hispanic or Latino] -403,2021-08-01,ambulatory,,,[White], +403,2021-12-01,,,,,not hispanic or latino +403,2021-08-01,ambulatory,,,white, 402,,,28,,, 402,2021-09-01,ambulatory,,,, -401,,,56,,[White], +401,,,56,,white, 401,,,17,,, 401,2018-03-01,,,,, -400,2021-11-01,,,,,[Not Hispanic or Latino] -400,2021-10-01,ambulatory,,,,[Not Hispanic or Latino] -400,2021-09-01,,,,,[Not Hispanic or Latino] +400,2021-11-01,,,,,not hispanic or latino +400,2021-10-01,ambulatory,,,,not hispanic or latino +400,2021-09-01,,,,,not hispanic or latino 400,2018-09-01,,,,, 399,,,48,male,, -399,,ambulatory,59,,,[Not Hispanic or Latino] -399,,ambulatory,47,,[White],[Not Hispanic or Latino] +399,,ambulatory,59,,,not hispanic or latino +399,,ambulatory,47,,white,not hispanic or latino 399,,ambulatory,46,,, -399,2021-07-01,,,,,[Not Hispanic or Latino] +399,2021-07-01,,,,,not hispanic or latino 398,,,42,,, 398,2017-06-01,,,,, -397,,,15,,[White],[Not Hispanic or Latino] -397,,ambulatory,55,,,[Not Hispanic or Latino] -397,2022-07-01,,,,,[Not Hispanic or Latino] -397,2018-08-01,,,,,[Not Hispanic or Latino] -396,,,73,,[White],[Not Hispanic or Latino] -396,2021-01-01,,,,[White], +397,,,15,,white,not hispanic or latino +397,,ambulatory,55,,,not hispanic or latino +397,2022-07-01,,,,,not hispanic or latino +397,2018-08-01,,,,,not hispanic or latino +396,,,73,,white,not hispanic or latino +396,2021-01-01,,,,white, 396,2019-04-01,,,,, 395,2021-12-01,ambulatory,,,, -395,2021-07-01,,,,[White], +395,2021-07-01,,,,white, 395,2019-01-01,,,,, 395,2018-01-01,,,,, -394,2022-05-01,,,,,[Not Hispanic or Latino] +394,2022-05-01,,,,,not hispanic or latino 394,2018-05-01,ambulatory,,,, -393,,,59,,[White],[Not Hispanic or Latino] -393,,,48,male,[White], -393,,,14,,[White], +393,,,59,,white,not hispanic or latino +393,,,48,male,white, +393,,,14,,white, 393,,ambulatory,48,male,, 393,2022-12-01,,,,, 393,2022-10-01,ambulatory,,,, 393,2022-07-01,ambulatory,,,, -393,2021-08-01,,,,[White],[Not Hispanic or Latino] +393,2021-08-01,,,,white,not hispanic or latino 392,2021-02-01,ambulatory,,,, 392,2019-03-01,,,,, 392,2018-08-01,ambulatory,,,, -391,,,1,,[White],[Not Hispanic or Latino] +391,,,1,,white,not hispanic or latino 391,,inpatient encounter,,,, -391,2022-10-01,,,,,[Not Hispanic or Latino] +391,2022-10-01,,,,,not hispanic or latino 391,2022-09-01,,,,, -391,2021-12-01,,,,[White], -391,2021-01-01,ambulatory,,,,[Not Hispanic or Latino] -391,2016-08-01,,,,,[Not Hispanic or Latino] +391,2021-12-01,,,,white, +391,2021-01-01,ambulatory,,,,not hispanic or latino +391,2016-08-01,,,,,not hispanic or latino 390,,,81,,, -390,,ambulatory,16,,[White],[Not Hispanic or Latino] -390,2021-10-01,ambulatory,,,[White], -390,2021-06-01,,,,[White],[Not Hispanic or Latino] -389,,,74,,,[Not Hispanic or Latino] -389,,,48,male,,[Not Hispanic or Latino] +390,,ambulatory,16,,white,not hispanic or latino +390,2021-10-01,ambulatory,,,white, +390,2021-06-01,,,,white,not hispanic or latino +389,,,74,,,not hispanic or latino +389,,,48,male,,not hispanic or latino 389,2022-05-01,ambulatory,,,, 389,2022-04-01,,,,, -388,,,56,,[White],[Not Hispanic or Latino] -388,2021-11-01,,,,[White], +388,,,56,,white,not hispanic or latino +388,2021-11-01,,,,white, 388,2017-07-01,,,,, -387,,,81,,[White], -387,,,74,,[White], +387,,,81,,white, +387,,,74,,white, 387,,,54,,, 387,,,32,,, -387,,ambulatory,48,male,[White], -387,2022-08-01,,,,,[Not Hispanic or Latino] +387,,ambulatory,48,male,white, +387,2022-08-01,,,,,not hispanic or latino 386,2020-03-01,,,,, 385,,,62,female,, -385,,,28,,[White], -385,,ambulatory,14,,[White], +385,,,28,,white, +385,,ambulatory,14,,white, 385,2023-01-01,ambulatory,,,, -385,2021-02-01,,,,,[Not Hispanic or Latino] +385,2021-02-01,,,,,not hispanic or latino 385,2019-05-01,,,,, 385,2016-07-01,,,,, -384,,ambulatory,59,,[White], -384,,ambulatory,48,male,,[Not Hispanic or Latino] -384,2018-03-01,,,,,[Not Hispanic or Latino] +384,,ambulatory,59,,white, +384,,ambulatory,48,male,,not hispanic or latino +384,2018-03-01,,,,,not hispanic or latino 384,2017-08-01,,,,, -383,,,48,male,[White],[Not Hispanic or Latino] +383,,,48,male,white,not hispanic or latino 383,,ambulatory,17,,, -383,,ambulatory,15,,[White],[Not Hispanic or Latino] +383,,ambulatory,15,,white,not hispanic or latino 383,2023-02-01,,,,, -383,2018-05-01,,,,,[Not Hispanic or Latino] -382,,,17,,,[Not Hispanic or Latino] +383,2018-05-01,,,,,not hispanic or latino +382,,,17,,,not hispanic or latino 382,,ambulatory,73,,, 382,2023-03-01,,,,, 382,2022-06-01,,,,, -382,2022-05-01,,,,[White], -381,2021-11-01,ambulatory,,,,[Not Hispanic or Latino] -381,2018-06-01,,,,,[Not Hispanic or Latino] -381,2018-05-01,,,,[White], -381,2017-03-01,,,,,[Not Hispanic or Latino] -380,,,46,,[White], +382,2022-05-01,,,,white, +381,2021-11-01,ambulatory,,,,not hispanic or latino +381,2018-06-01,,,,,not hispanic or latino +381,2018-05-01,,,,white, +381,2017-03-01,,,,,not hispanic or latino +380,,,46,,white, 380,,,44,,, -380,,ambulatory,56,,[White], -380,2021-01-01,,,,[White],[Not Hispanic or Latino] +380,,ambulatory,56,,white, +380,2021-01-01,,,,white,not hispanic or latino 380,2018-09-01,ambulatory,,,, 379,,,75,,, 379,,ambulatory,62,female,, 379,,ambulatory,33,,, -379,2023-01-01,,,,,[Not Hispanic or Latino] -379,2021-10-01,,,,[White],[Not Hispanic or Latino] +379,2023-01-01,,,,,not hispanic or latino +379,2021-10-01,,,,white,not hispanic or latino 379,2017-12-01,,,,, 379,2017-03-01,ambulatory,,,, 379,2016-06-01,,,,, -378,,ambulatory,48,male,[White],[Not Hispanic or Latino] +378,,ambulatory,48,male,white,not hispanic or latino 378,,ambulatory,42,,, 378,2022-11-01,,,,, -378,2021-07-01,ambulatory,,,,[Not Hispanic or Latino] -378,2018-08-01,,,,[White], +378,2021-07-01,ambulatory,,,,not hispanic or latino +378,2018-08-01,,,,white, 377,2022-08-01,ambulatory,,,, -376,,,55,,[White], -376,,ambulatory,1,,[White],[Not Hispanic or Latino] -376,2022-07-01,,,,[White], -376,2021-06-01,ambulatory,,,[White],[Not Hispanic or Latino] -376,2018-09-01,,,,,[Not Hispanic or Latino] +376,,,55,,white, +376,,ambulatory,1,,white,not hispanic or latino +376,2022-07-01,,,,white, +376,2021-06-01,ambulatory,,,white,not hispanic or latino +376,2018-09-01,,,,,not hispanic or latino 376,2018-06-01,ambulatory,,,, 376,2018-03-01,ambulatory,,,, 375,,,76,,, -375,,,33,,[White], -375,,,0,,,[Not Hispanic or Latino] +375,,,33,,white, +375,,,0,,,not hispanic or latino 375,2022-09-01,ambulatory,,,, -375,2021-09-01,,,,[White], -375,2021-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -374,,,81,,,[Not Hispanic or Latino] +375,2021-09-01,,,,white, +375,2021-08-01,ambulatory,,,white,not hispanic or latino +374,,,81,,,not hispanic or latino 374,,,49,male,, -374,2022-10-01,,,,[White], -374,2021-11-01,ambulatory,,,[White], -374,2021-09-01,ambulatory,,,,[Not Hispanic or Latino] -374,2021-07-01,ambulatory,,,[White], -374,2021-02-01,,,,[White], +374,2022-10-01,,,,white, +374,2021-11-01,ambulatory,,,white, +374,2021-09-01,ambulatory,,,,not hispanic or latino +374,2021-07-01,ambulatory,,,white, +374,2021-02-01,,,,white, 374,2019-01-01,ambulatory,,,, -374,2018-01-01,,,,,[Not Hispanic or Latino] -373,,ambulatory,73,,[White], +374,2018-01-01,,,,,not hispanic or latino +373,,ambulatory,73,,white, 373,2022-01-01,,,,, 373,2020-07-01,,,,, -373,2019-04-01,,,,,[Not Hispanic or Latino] +373,2019-04-01,,,,,not hispanic or latino 373,2018-01-01,ambulatory,,,, 373,2016-09-01,,,,, -372,,,18,,[White], -372,,ambulatory,59,,[White],[Not Hispanic or Latino] +372,,,18,,white, +372,,ambulatory,59,,white,not hispanic or latino 372,,ambulatory,28,,, -372,2021-12-01,ambulatory,,,,[Not Hispanic or Latino] -372,2018-08-01,ambulatory,,,,[Not Hispanic or Latino] +372,2021-12-01,ambulatory,,,,not hispanic or latino +372,2018-08-01,ambulatory,,,,not hispanic or latino 372,2017-01-01,,,,, -371,,,81,,[White],[Not Hispanic or Latino] -371,,,76,,[White], -371,,,74,,[White],[Not Hispanic or Latino] -371,,,62,female,,[Not Hispanic or Latino] -371,,,32,,[White], -371,,ambulatory,0,,,[Not Hispanic or Latino] +371,,,81,,white,not hispanic or latino +371,,,76,,white, +371,,,74,,white,not hispanic or latino +371,,,62,female,,not hispanic or latino +371,,,32,,white, +371,,ambulatory,0,,,not hispanic or latino 371,2022-12-01,ambulatory,,,, -371,2022-10-01,ambulatory,,,,[Not Hispanic or Latino] -371,2022-07-01,ambulatory,,,,[Not Hispanic or Latino] -371,2019-01-01,,,,,[Not Hispanic or Latino] -370,,,54,,,[Not Hispanic or Latino] -370,,,49,male,[White], +371,2022-10-01,ambulatory,,,,not hispanic or latino +371,2022-07-01,ambulatory,,,,not hispanic or latino +371,2019-01-01,,,,,not hispanic or latino +370,,,54,,,not hispanic or latino +370,,,49,male,white, 370,,ambulatory,49,male,, -370,2021-01-01,ambulatory,,,[White], +370,2021-01-01,ambulatory,,,white, 370,2016-12-01,,,,, -369,,ambulatory,46,,[White], -369,2023-01-01,,,,[White], -369,2020-03-01,,,,,[Not Hispanic or Latino] +369,,ambulatory,46,,white, +369,2023-01-01,,,,white, +369,2020-03-01,,,,,not hispanic or latino 369,2019-06-01,,,,, 369,2019-04-01,ambulatory,,,, -369,2019-01-01,,,,[White], +369,2019-01-01,,,,white, 368,,,69,,, 368,,,66,,, -368,,,62,female,[White], +368,,,62,female,white, 368,,,29,,, 368,2020-12-01,,,,, -368,2018-09-01,,,,[White], +368,2018-09-01,,,,white, 368,2017-08-01,ambulatory,,,, -367,,,75,,[White], -367,,ambulatory,73,,,[Not Hispanic or Latino] -367,,ambulatory,56,,[White],[Not Hispanic or Latino] -367,,ambulatory,49,male,[White], -367,2022-09-01,,,,,[Not Hispanic or Latino] -367,2022-08-01,,,,[White], -367,2021-12-01,,,,[White],[Not Hispanic or Latino] -367,2021-07-01,,,,[White],[Not Hispanic or Latino] -367,2021-02-01,ambulatory,,,,[Not Hispanic or Latino] -367,2019-04-01,,,,[White], +367,,,75,,white, +367,,ambulatory,73,,,not hispanic or latino +367,,ambulatory,56,,white,not hispanic or latino +367,,ambulatory,49,male,white, +367,2022-09-01,,,,,not hispanic or latino +367,2022-08-01,,,,white, +367,2021-12-01,,,,white,not hispanic or latino +367,2021-07-01,,,,white,not hispanic or latino +367,2021-02-01,ambulatory,,,,not hispanic or latino +367,2019-04-01,,,,white, 367,2018-04-01,,,,, 367,2017-06-01,ambulatory,,,, 367,2017-05-01,,,,, -367,2016-08-01,,,,[White], +367,2016-08-01,,,,white, 367,2016-08-01,ambulatory,,,, -366,,,76,,,[Not Hispanic or Latino] -366,,,49,male,,[Not Hispanic or Latino] -366,,,28,,,[Not Hispanic or Latino] +366,,,76,,,not hispanic or latino +366,,,49,male,,not hispanic or latino +366,,,28,,,not hispanic or latino 366,,ambulatory,76,,, 366,,ambulatory,74,,, 366,2022-06-01,ambulatory,,,, -366,2018-05-01,ambulatory,,,,[Not Hispanic or Latino] -366,2017-07-01,,,,,[Not Hispanic or Latino] -365,,,75,,,[Not Hispanic or Latino] +366,2018-05-01,ambulatory,,,,not hispanic or latino +366,2017-07-01,,,,,not hispanic or latino +365,,,75,,,not hispanic or latino 365,,,70,,, -365,,ambulatory,62,female,,[Not Hispanic or Latino] -365,,ambulatory,55,,[White], +365,,ambulatory,62,female,,not hispanic or latino +365,,ambulatory,55,,white, 365,,ambulatory,54,,, -365,,ambulatory,17,,,[Not Hispanic or Latino] +365,,ambulatory,17,,,not hispanic or latino 365,2022-11-01,ambulatory,,,, -365,2017-03-01,,,,[White], -364,,,69,,,[Not Hispanic or Latino] -364,,,55,,[White],[Not Hispanic or Latino] +365,2017-03-01,,,,white, +364,,,69,,,not hispanic or latino +364,,,55,,white,not hispanic or latino 364,2020-04-01,,,,, 364,2018-07-01,,,,, 364,2016-10-01,,,,, -364,2016-07-01,,,,,[Not Hispanic or Latino] -363,,,49,male,[White],[Not Hispanic or Latino] -363,,,46,,,[Not Hispanic or Latino] -363,,ambulatory,62,female,[White], -363,2021-11-01,,,,[White],[Not Hispanic or Latino] +364,2016-07-01,,,,,not hispanic or latino +363,,,49,male,white,not hispanic or latino +363,,,46,,,not hispanic or latino +363,,ambulatory,62,female,white, +363,2021-11-01,,,,white,not hispanic or latino 363,2020-11-01,,,,, 363,2020-01-01,,,,, -363,2019-03-01,,,,[White], +363,2019-03-01,,,,white, 363,2019-03-01,ambulatory,,,, 363,2017-10-01,,,,, -363,2017-06-01,,,,,[Not Hispanic or Latino] -362,,,76,,[White],[Not Hispanic or Latino] -362,,,66,,,[Not Hispanic or Latino] -362,,inpatient encounter,,,,[Not Hispanic or Latino] -362,,ambulatory,76,,[White], -362,,ambulatory,73,,[White],[Not Hispanic or Latino] -362,,ambulatory,49,male,,[Not Hispanic or Latino] -362,2022-06-01,,,,,[Not Hispanic or Latino] -361,,ambulatory,74,,[White], +363,2017-06-01,,,,,not hispanic or latino +362,,,76,,white,not hispanic or latino +362,,,66,,,not hispanic or latino +362,,inpatient encounter,,,,not hispanic or latino +362,,ambulatory,76,,white, +362,,ambulatory,73,,white,not hispanic or latino +362,,ambulatory,49,male,,not hispanic or latino +362,2022-06-01,,,,,not hispanic or latino +361,,ambulatory,74,,white, 361,,ambulatory,44,,, -361,2022-12-01,,,,,[Not Hispanic or Latino] -361,2022-05-01,ambulatory,,,,[Not Hispanic or Latino] +361,2022-12-01,,,,,not hispanic or latino +361,2022-05-01,ambulatory,,,,not hispanic or latino 361,2022-04-01,ambulatory,,,, -361,2019-05-01,,,,[White], -361,2018-08-01,,,,[White],[Not Hispanic or Latino] -361,2018-03-01,,,,[White], -361,2018-03-01,ambulatory,,,,[Not Hispanic or Latino] -361,2017-08-01,,,,,[Not Hispanic or Latino] -360,,,44,,,[Not Hispanic or Latino] -360,,,17,,[White], -360,,ambulatory,49,male,[White],[Not Hispanic or Latino] -360,2022-04-01,,,,,[Not Hispanic or Latino] -360,2019-03-01,,,,,[Not Hispanic or Latino] -360,2018-05-01,ambulatory,,,[White], -360,2018-01-01,,,,[White], -360,2017-06-01,,,,[White], -359,,,70,,,[Not Hispanic or Latino] -359,,,0,,[White], +361,2019-05-01,,,,white, +361,2018-08-01,,,,white,not hispanic or latino +361,2018-03-01,,,,white, +361,2018-03-01,ambulatory,,,,not hispanic or latino +361,2017-08-01,,,,,not hispanic or latino +360,,,44,,,not hispanic or latino +360,,,17,,white, +360,,ambulatory,49,male,white,not hispanic or latino +360,2022-04-01,,,,,not hispanic or latino +360,2019-03-01,,,,,not hispanic or latino +360,2018-05-01,ambulatory,,,white, +360,2018-01-01,,,,white, +360,2017-06-01,,,,white, +359,,,70,,,not hispanic or latino +359,,,0,,white, 359,2023-02-01,ambulatory,,,, 359,2022-03-01,,,,, 359,2022-02-01,,,,, -359,2021-10-01,ambulatory,,,[White],[Not Hispanic or Latino] +359,2021-10-01,ambulatory,,,white,not hispanic or latino 359,2020-06-01,,,,, 359,2018-10-01,,,,, -359,2018-06-01,,,,[White], +359,2018-06-01,,,,white, 358,,,68,,, -358,,,62,female,[White],[Not Hispanic or Latino] +358,,,62,female,white,not hispanic or latino 358,,,30,,, -358,,ambulatory,76,,,[Not Hispanic or Latino] -358,,ambulatory,18,,[White], -358,2022-12-01,,,,[White], +358,,ambulatory,76,,,not hispanic or latino +358,,ambulatory,18,,white, +358,2022-12-01,,,,white, 358,2020-08-01,,,,, 358,2020-03-01,ambulatory,,,, 358,2017-07-01,ambulatory,,,, -358,2017-03-01,ambulatory,,,,[Not Hispanic or Latino] -357,,,14,,[White],[Not Hispanic or Latino] -357,,inpatient encounter,,,[White], -357,,ambulatory,0,,[White], -357,2023-03-01,,,,,[Not Hispanic or Latino] +358,2017-03-01,ambulatory,,,,not hispanic or latino +357,,,14,,white,not hispanic or latino +357,,inpatient encounter,,,white, +357,,ambulatory,0,,white, +357,2023-03-01,,,,,not hispanic or latino 357,2023-03-01,ambulatory,,,, -357,2022-05-01,,,,[White],[Not Hispanic or Latino] -357,2021-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -357,2019-05-01,,,,,[Not Hispanic or Latino] +357,2022-05-01,,,,white,not hispanic or latino +357,2021-01-01,ambulatory,,,white,not hispanic or latino +357,2019-05-01,,,,,not hispanic or latino 357,2019-05-01,ambulatory,,,, -357,2018-09-01,ambulatory,,,,[Not Hispanic or Latino] -357,2017-12-01,,,,,[Not Hispanic or Latino] +357,2018-09-01,ambulatory,,,,not hispanic or latino +357,2017-12-01,,,,,not hispanic or latino 357,2016-09-01,ambulatory,,,, -356,2023-02-01,,,,,[Not Hispanic or Latino] -356,2023-01-01,ambulatory,,,,[Not Hispanic or Latino] -356,2022-10-01,ambulatory,,,[White], +356,2023-02-01,,,,,not hispanic or latino +356,2023-01-01,ambulatory,,,,not hispanic or latino +356,2022-10-01,ambulatory,,,white, 356,2018-12-01,,,,, 356,2017-09-01,,,,, 356,2016-12-01,ambulatory,,,, 355,,,82,,, -355,,,68,,,[Not Hispanic or Latino] -355,,ambulatory,28,,[White], -355,2021-12-01,ambulatory,,,[White], -355,2021-02-01,ambulatory,,,[White], -355,2018-01-01,ambulatory,,,,[Not Hispanic or Latino] -355,2017-07-01,,,,[White], +355,,,68,,,not hispanic or latino +355,,ambulatory,28,,white, +355,2021-12-01,ambulatory,,,white, +355,2021-02-01,ambulatory,,,white, +355,2018-01-01,ambulatory,,,,not hispanic or latino +355,2017-07-01,,,,white, 355,2016-06-01,ambulatory,,,, -354,,,42,,,[Not Hispanic or Latino] -354,,ambulatory,76,,[White],[Not Hispanic or Latino] -354,2022-10-01,,,,[White],[Not Hispanic or Latino] -354,2022-08-01,ambulatory,,,,[Not Hispanic or Latino] -354,2022-07-01,,,,[White],[Not Hispanic or Latino] -354,2022-01-01,,,,,[Not Hispanic or Latino] +354,,,42,,,not hispanic or latino +354,,ambulatory,76,,white,not hispanic or latino +354,2022-10-01,,,,white,not hispanic or latino +354,2022-08-01,ambulatory,,,,not hispanic or latino +354,2022-07-01,,,,white,not hispanic or latino +354,2022-01-01,,,,,not hispanic or latino 354,2019-12-01,,,,, -354,2018-08-01,ambulatory,,,[White], +354,2018-08-01,ambulatory,,,white, 354,2017-12-01,ambulatory,,,, 354,2016-07-01,ambulatory,,,, -353,,,75,,[White],[Not Hispanic or Latino] -353,,,33,,,[Not Hispanic or Latino] +353,,,75,,white,not hispanic or latino +353,,,33,,,not hispanic or latino 353,,,15,female,, 353,,ambulatory,81,,, -353,,ambulatory,62,female,[White],[Not Hispanic or Latino] -353,,ambulatory,55,,[White],[Not Hispanic or Latino] -353,,ambulatory,33,,[White], +353,,ambulatory,62,female,white,not hispanic or latino +353,,ambulatory,55,,white,not hispanic or latino +353,,ambulatory,33,,white, 353,,ambulatory,32,,, 353,2019-07-01,,,,, -352,,,69,,[White], -352,,,28,,[White],[Not Hispanic or Latino] -352,,ambulatory,46,,,[Not Hispanic or Latino] -352,2022-09-01,ambulatory,,,,[Not Hispanic or Latino] -352,2022-07-01,ambulatory,,,[White], -352,2018-06-01,ambulatory,,,,[Not Hispanic or Latino] -351,,,82,,[White], -351,,,18,,[White],[Not Hispanic or Latino] -351,2022-09-01,,,,[White], -351,2021-09-01,,,,[White],[Not Hispanic or Latino] -351,2020-07-01,,,,,[Not Hispanic or Latino] -351,2020-04-01,,,,,[Not Hispanic or Latino] -351,2017-08-01,,,,[White], -351,2016-09-01,,,,,[Not Hispanic or Latino] -351,2016-08-01,,,,[White],[Not Hispanic or Latino] -350,,,69,,[White],[Not Hispanic or Latino] -350,,ambulatory,81,,[White], -350,,ambulatory,54,,,[Not Hispanic or Latino] -350,2023-02-01,,,,[White], -350,2022-05-01,ambulatory,,,[White], +352,,,69,,white, +352,,,28,,white,not hispanic or latino +352,,ambulatory,46,,,not hispanic or latino +352,2022-09-01,ambulatory,,,,not hispanic or latino +352,2022-07-01,ambulatory,,,white, +352,2018-06-01,ambulatory,,,,not hispanic or latino +351,,,82,,white, +351,,,18,,white,not hispanic or latino +351,2022-09-01,,,,white, +351,2021-09-01,,,,white,not hispanic or latino +351,2020-07-01,,,,,not hispanic or latino +351,2020-04-01,,,,,not hispanic or latino +351,2017-08-01,,,,white, +351,2016-09-01,,,,,not hispanic or latino +351,2016-08-01,,,,white,not hispanic or latino +350,,,69,,white,not hispanic or latino +350,,ambulatory,81,,white, +350,,ambulatory,54,,,not hispanic or latino +350,2023-02-01,,,,white, +350,2022-05-01,ambulatory,,,white, 350,2022-01-01,ambulatory,,,, -350,2019-01-01,ambulatory,,,,[Not Hispanic or Latino] -350,2018-09-01,ambulatory,,,[White], -350,2016-08-01,ambulatory,,,,[Not Hispanic or Latino] -349,,,68,,[White], -349,,ambulatory,14,,[White],[Not Hispanic or Latino] -349,2023-03-01,,,,[White], -349,2021-11-01,ambulatory,,,[White],[Not Hispanic or Latino] -349,2021-09-01,ambulatory,,,[White], -349,2020-03-01,,,,[White], -349,2020-01-01,,,,,[Not Hispanic or Latino] -349,2019-04-01,ambulatory,,,,[Not Hispanic or Latino] -349,2018-05-01,,,,[White],[Not Hispanic or Latino] -349,2016-06-01,,,,,[Not Hispanic or Latino] +350,2019-01-01,ambulatory,,,,not hispanic or latino +350,2018-09-01,ambulatory,,,white, +350,2016-08-01,ambulatory,,,,not hispanic or latino +349,,,68,,white, +349,,ambulatory,14,,white,not hispanic or latino +349,2023-03-01,,,,white, +349,2021-11-01,ambulatory,,,white,not hispanic or latino +349,2021-09-01,ambulatory,,,white, +349,2020-03-01,,,,white, +349,2020-01-01,,,,,not hispanic or latino +349,2019-04-01,ambulatory,,,,not hispanic or latino +349,2018-05-01,,,,white,not hispanic or latino +349,2016-06-01,,,,,not hispanic or latino 348,,,77,,, -348,,,68,,[White],[Not Hispanic or Latino] +348,,,68,,white,not hispanic or latino 348,,,34,,, -348,,ambulatory,74,,,[Not Hispanic or Latino] -348,2022-06-01,ambulatory,,,,[Not Hispanic or Latino] -348,2021-02-01,,,,[White],[Not Hispanic or Latino] -348,2019-01-01,ambulatory,,,[White], +348,,ambulatory,74,,,not hispanic or latino +348,2022-06-01,ambulatory,,,,not hispanic or latino +348,2021-02-01,,,,white,not hispanic or latino +348,2019-01-01,ambulatory,,,white, 348,2018-04-01,ambulatory,,,, -347,2022-04-01,,,,[White], +347,2022-04-01,,,,white, 347,2020-05-01,,,,, 347,2018-07-01,ambulatory,,,, 347,2017-05-01,ambulatory,,,, 347,2017-04-01,,,,, -347,2016-12-01,,,,,[Not Hispanic or Latino] -347,2016-07-01,,,,[White], +347,2016-12-01,,,,,not hispanic or latino +347,2016-07-01,,,,white, 346,,ambulatory,70,,, -346,2022-08-01,,,,[White],[Not Hispanic or Latino] -346,2022-08-01,ambulatory,,,[White], -346,2021-07-01,ambulatory,,,[White],[Not Hispanic or Latino] +346,2022-08-01,,,,white,not hispanic or latino +346,2022-08-01,ambulatory,,,white, +346,2021-07-01,ambulatory,,,white,not hispanic or latino 346,2020-11-01,ambulatory,,,, 346,2019-06-01,ambulatory,,,, -346,2019-04-01,,,,[White],[Not Hispanic or Latino] +346,2019-04-01,,,,white,not hispanic or latino 346,2018-11-01,,,,, -346,2018-09-01,,,,[White],[Not Hispanic or Latino] -346,2017-08-01,ambulatory,,,,[Not Hispanic or Latino] -345,,,70,,[White], -345,,,65,,[White], -345,,,44,,[White], -345,,,15,female,,[Not Hispanic or Latino] -345,,ambulatory,74,,[White],[Not Hispanic or Latino] -345,2023-01-01,ambulatory,,,[White], -345,2022-11-01,,,,,[Not Hispanic or Latino] +346,2018-09-01,,,,white,not hispanic or latino +346,2017-08-01,ambulatory,,,,not hispanic or latino +345,,,70,,white, +345,,,65,,white, +345,,,44,,white, +345,,,15,female,,not hispanic or latino +345,,ambulatory,74,,white,not hispanic or latino +345,2023-01-01,ambulatory,,,white, +345,2022-11-01,,,,,not hispanic or latino 345,2020-12-01,ambulatory,,,, -345,2019-01-01,,,,[White],[Not Hispanic or Latino] -345,2018-03-01,,,,[White],[Not Hispanic or Latino] -344,,,82,,,[Not Hispanic or Latino] +345,2019-01-01,,,,white,not hispanic or latino +345,2018-03-01,,,,white,not hispanic or latino +344,,,82,,,not hispanic or latino 344,,ambulatory,68,,, 344,,ambulatory,66,,, -344,,ambulatory,17,,[White], -344,2022-06-01,,,,[White], +344,,ambulatory,17,,white, +344,2022-06-01,,,,white, 344,2020-07-01,ambulatory,,,, -344,2018-07-01,,,,,[Not Hispanic or Latino] -344,2017-01-01,,,,[White], -344,2016-10-01,,,,,[Not Hispanic or Latino] -343,,,17,,[White],[Not Hispanic or Latino] -343,2022-12-01,ambulatory,,,,[Not Hispanic or Latino] -343,2020-12-01,,,,,[Not Hispanic or Latino] -343,2019-04-01,ambulatory,,,[White], -343,2017-03-01,,,,[White],[Not Hispanic or Latino] -343,2016-09-01,,,,[White], -342,,,77,,,[Not Hispanic or Latino] -342,,,77,,[White], +344,2018-07-01,,,,,not hispanic or latino +344,2017-01-01,,,,white, +344,2016-10-01,,,,,not hispanic or latino +343,,,17,,white,not hispanic or latino +343,2022-12-01,ambulatory,,,,not hispanic or latino +343,2020-12-01,,,,,not hispanic or latino +343,2019-04-01,ambulatory,,,white, +343,2017-03-01,,,,white,not hispanic or latino +343,2016-09-01,,,,white, +342,,,77,,,not hispanic or latino +342,,,77,,white, 342,,,64,female,, 342,,,61,female,, -342,,ambulatory,44,,,[Not Hispanic or Latino] -342,2023-01-01,,,,[White],[Not Hispanic or Latino] +342,,ambulatory,44,,,not hispanic or latino +342,2023-01-01,,,,white,not hispanic or latino 342,2022-02-01,ambulatory,,,, -342,2020-12-01,,,,[White], +342,2020-12-01,,,,white, 342,2020-10-01,,,,, -342,2020-08-01,,,,,[Not Hispanic or Latino] -342,2018-04-01,,,,,[Not Hispanic or Latino] -342,2017-05-01,,,,,[Not Hispanic or Latino] -342,2017-03-01,ambulatory,,,[White], +342,2020-08-01,,,,,not hispanic or latino +342,2018-04-01,,,,,not hispanic or latino +342,2017-05-01,,,,,not hispanic or latino +342,2017-03-01,ambulatory,,,white, 342,2016-10-01,ambulatory,,,, -341,,,70,,[White],[Not Hispanic or Latino] +341,,,70,,white,not hispanic or latino 341,,ambulatory,75,,, -341,,ambulatory,68,,,[Not Hispanic or Latino] -341,2020-11-01,,,,,[Not Hispanic or Latino] -341,2020-03-01,ambulatory,,,,[Not Hispanic or Latino] +341,,ambulatory,68,,,not hispanic or latino +341,2020-11-01,,,,,not hispanic or latino +341,2020-03-01,ambulatory,,,,not hispanic or latino 341,2019-02-01,,,,, -341,2018-01-01,,,,[White],[Not Hispanic or Latino] -341,2017-12-01,,,,[White], +341,2018-01-01,,,,white,not hispanic or latino +341,2017-12-01,,,,white, 341,2017-10-01,ambulatory,,,, -340,,,82,,[White],[Not Hispanic or Latino] -340,,,29,,[White], -340,,ambulatory,70,,,[Not Hispanic or Latino] -340,,ambulatory,32,,[White], +340,,,82,,white,not hispanic or latino +340,,,29,,white, +340,,ambulatory,70,,,not hispanic or latino +340,,ambulatory,32,,white, 340,2022-03-01,ambulatory,,,, -340,2017-10-01,,,,,[Not Hispanic or Latino] -340,2017-01-01,,,,,[Not Hispanic or Latino] +340,2017-10-01,,,,,not hispanic or latino +340,2017-01-01,,,,,not hispanic or latino 340,2017-01-01,ambulatory,,,, 339,,,31,,, -339,2020-07-01,,,,[White], -339,2020-06-01,,,,,[Not Hispanic or Latino] -339,2019-06-01,,,,,[Not Hispanic or Latino] -339,2018-01-01,ambulatory,,,[White], +339,2020-07-01,,,,white, +339,2020-06-01,,,,,not hispanic or latino +339,2019-06-01,,,,,not hispanic or latino +339,2018-01-01,ambulatory,,,white, 339,2017-11-01,,,,, -338,,,32,,,[Not Hispanic or Latino] -338,,,30,,[White], -338,,ambulatory,81,,,[Not Hispanic or Latino] -338,,ambulatory,66,,,[Not Hispanic or Latino] +338,,,32,,,not hispanic or latino +338,,,30,,white, +338,,ambulatory,81,,,not hispanic or latino +338,,ambulatory,66,,,not hispanic or latino 338,,ambulatory,64,female,, -338,,ambulatory,42,,,[Not Hispanic or Latino] -338,,ambulatory,28,,,[Not Hispanic or Latino] -338,,ambulatory,18,,[White],[Not Hispanic or Latino] +338,,ambulatory,42,,,not hispanic or latino +338,,ambulatory,28,,,not hispanic or latino +338,,ambulatory,18,,white,not hispanic or latino 338,,ambulatory,15,female,, -338,2019-05-01,ambulatory,,,[White], -338,2018-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -338,2018-06-01,,,,[White],[Not Hispanic or Latino] -337,2022-11-01,,,,[White], -337,2022-09-01,ambulatory,,,[White], -337,2022-02-01,,,,,[Not Hispanic or Latino] -337,2018-07-01,,,,[White], -337,2018-03-01,ambulatory,,,[White], -337,2017-07-01,,,,[White],[Not Hispanic or Latino] -337,2017-07-01,ambulatory,,,,[Not Hispanic or Latino] -336,,,77,,[White],[Not Hispanic or Latino] -336,,,54,,[White], -336,,ambulatory,68,,[White], -336,2022-12-01,ambulatory,,,[White], -336,2022-10-01,ambulatory,,,[White],[Not Hispanic or Latino] -336,2022-04-01,ambulatory,,,,[Not Hispanic or Latino] -336,2022-01-01,,,,[White], -336,2021-12-01,ambulatory,,,[White],[Not Hispanic or Latino] +338,2019-05-01,ambulatory,,,white, +338,2018-08-01,ambulatory,,,white,not hispanic or latino +338,2018-06-01,,,,white,not hispanic or latino +337,2022-11-01,,,,white, +337,2022-09-01,ambulatory,,,white, +337,2022-02-01,,,,,not hispanic or latino +337,2018-07-01,,,,white, +337,2018-03-01,ambulatory,,,white, +337,2017-07-01,,,,white,not hispanic or latino +337,2017-07-01,ambulatory,,,,not hispanic or latino +336,,,77,,white,not hispanic or latino +336,,,54,,white, +336,,ambulatory,68,,white, +336,2022-12-01,ambulatory,,,white, +336,2022-10-01,ambulatory,,,white,not hispanic or latino +336,2022-04-01,ambulatory,,,,not hispanic or latino +336,2022-01-01,,,,white, +336,2021-12-01,ambulatory,,,white,not hispanic or latino 336,2020-06-01,ambulatory,,,, -336,2019-12-01,,,,,[Not Hispanic or Latino] -336,2019-06-01,,,,[White], -336,2019-03-01,,,,[White],[Not Hispanic or Latino] -336,2019-03-01,ambulatory,,,[White], -336,2017-09-01,,,,,[Not Hispanic or Latino] -336,2016-09-01,ambulatory,,,,[Not Hispanic or Latino] -336,2016-06-01,,,,[White], +336,2019-12-01,,,,,not hispanic or latino +336,2019-06-01,,,,white, +336,2019-03-01,,,,white,not hispanic or latino +336,2019-03-01,ambulatory,,,white, +336,2017-09-01,,,,,not hispanic or latino +336,2016-09-01,ambulatory,,,,not hispanic or latino +336,2016-06-01,,,,white, 335,,,41,,, -335,,ambulatory,81,,[White],[Not Hispanic or Latino] -335,,ambulatory,68,,[White],[Not Hispanic or Latino] -335,2022-11-01,ambulatory,,,,[Not Hispanic or Latino] +335,,ambulatory,81,,white,not hispanic or latino +335,,ambulatory,68,,white,not hispanic or latino +335,2022-11-01,ambulatory,,,,not hispanic or latino 335,2020-09-01,,,,, -335,2019-07-01,,,,,[Not Hispanic or Latino] -335,2019-05-01,,,,[White],[Not Hispanic or Latino] -335,2018-12-01,,,,,[Not Hispanic or Latino] -335,2018-12-01,,,,[White], +335,2019-07-01,,,,,not hispanic or latino +335,2019-05-01,,,,white,not hispanic or latino +335,2018-12-01,,,,,not hispanic or latino +335,2018-12-01,,,,white, 335,2018-02-01,,,,, -335,2017-08-01,ambulatory,,,[White], +335,2017-08-01,ambulatory,,,white, 334,,,50,male,, -334,,,33,,[White],[Not Hispanic or Latino] +334,,,33,,white,not hispanic or latino 334,,ambulatory,82,,, -334,2022-03-01,,,,,[Not Hispanic or Latino] +334,2022-03-01,,,,,not hispanic or latino 334,2020-08-01,ambulatory,,,, -334,2020-03-01,,,,[White],[Not Hispanic or Latino] +334,2020-03-01,,,,white,not hispanic or latino 334,2018-10-01,ambulatory,,,, -334,2017-12-01,ambulatory,,,,[Not Hispanic or Latino] +334,2017-12-01,ambulatory,,,,not hispanic or latino 334,2017-02-01,,,,, -334,2016-12-01,ambulatory,,,,[Not Hispanic or Latino] -334,2016-07-01,ambulatory,,,,[Not Hispanic or Latino] -333,,,65,,[White],[Not Hispanic or Latino] -333,,,64,female,,[Not Hispanic or Latino] -333,,inpatient encounter,,,[White],[Not Hispanic or Latino] +334,2016-12-01,ambulatory,,,,not hispanic or latino +334,2016-07-01,ambulatory,,,,not hispanic or latino +333,,,65,,white,not hispanic or latino +333,,,64,female,,not hispanic or latino +333,,inpatient encounter,,,white,not hispanic or latino 333,,ambulatory,77,,, -333,,ambulatory,33,,,[Not Hispanic or Latino] -333,2023-03-01,ambulatory,,,,[Not Hispanic or Latino] -333,2023-02-01,ambulatory,,,,[Not Hispanic or Latino] -333,2020-11-01,,,,[White], +333,,ambulatory,33,,,not hispanic or latino +333,2023-03-01,ambulatory,,,,not hispanic or latino +333,2023-02-01,ambulatory,,,,not hispanic or latino +333,2020-11-01,,,,white, 333,2018-12-01,ambulatory,,,, -333,2018-06-01,ambulatory,,,[White], -333,2017-06-01,ambulatory,,,,[Not Hispanic or Latino] -333,2016-10-01,,,,[White], -332,,ambulatory,75,,[White], +333,2018-06-01,ambulatory,,,white, +333,2017-06-01,ambulatory,,,,not hispanic or latino +333,2016-10-01,,,,white, +332,,ambulatory,75,,white, 332,,ambulatory,50,male,, -332,2021-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -332,2018-05-01,ambulatory,,,[White],[Not Hispanic or Latino] -331,,,32,,[White],[Not Hispanic or Latino] -331,,ambulatory,15,female,,[Not Hispanic or Latino] -331,2022-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -331,2022-01-01,ambulatory,,,,[Not Hispanic or Latino] -331,2019-05-01,ambulatory,,,,[Not Hispanic or Latino] -331,2019-03-01,ambulatory,,,,[Not Hispanic or Latino] -331,2018-10-01,,,,,[Not Hispanic or Latino] +332,2021-02-01,ambulatory,,,white,not hispanic or latino +332,2018-05-01,ambulatory,,,white,not hispanic or latino +331,,,32,,white,not hispanic or latino +331,,ambulatory,15,female,,not hispanic or latino +331,2022-07-01,ambulatory,,,white,not hispanic or latino +331,2022-01-01,ambulatory,,,,not hispanic or latino +331,2019-05-01,ambulatory,,,,not hispanic or latino +331,2019-03-01,ambulatory,,,,not hispanic or latino +331,2018-10-01,,,,,not hispanic or latino 331,2017-09-01,ambulatory,,,, -331,2017-08-01,,,,[White],[Not Hispanic or Latino] -331,2017-06-01,ambulatory,,,[White], -330,,,50,male,[White], -330,,ambulatory,82,,[White], -330,,ambulatory,75,,,[Not Hispanic or Latino] -330,2022-12-01,,,,[White],[Not Hispanic or Latino] -330,2022-09-01,,,,[White],[Not Hispanic or Latino] +331,2017-08-01,,,,white,not hispanic or latino +331,2017-06-01,ambulatory,,,white, +330,,,50,male,white, +330,,ambulatory,82,,white, +330,,ambulatory,75,,,not hispanic or latino +330,2022-12-01,,,,white,not hispanic or latino +330,2022-09-01,,,,white,not hispanic or latino 330,2019-12-01,ambulatory,,,, 330,2019-10-01,,,,, -330,2019-07-01,,,,[White], -330,2018-10-01,,,,[White], -330,2018-07-01,ambulatory,,,,[Not Hispanic or Latino] -329,,,46,,[White],[Not Hispanic or Latino] +330,2019-07-01,,,,white, +330,2018-10-01,,,,white, +330,2018-07-01,ambulatory,,,,not hispanic or latino +329,,,46,,white,not hispanic or latino 329,,,13,,, -329,,ambulatory,64,female,,[Not Hispanic or Latino] -329,,ambulatory,44,,[White], +329,,ambulatory,64,female,,not hispanic or latino +329,,ambulatory,44,,white, 329,,ambulatory,34,,, -329,2022-06-01,ambulatory,,,[White], -329,2018-09-01,ambulatory,,,[White],[Not Hispanic or Latino] -329,2017-10-01,,,,[White], -329,2017-06-01,,,,[White],[Not Hispanic or Latino] -329,2017-05-01,,,,[White], -329,2016-12-01,,,,[White], -328,,ambulatory,77,,[White], +329,2022-06-01,ambulatory,,,white, +329,2018-09-01,ambulatory,,,white,not hispanic or latino +329,2017-10-01,,,,white, +329,2017-06-01,,,,white,not hispanic or latino +329,2017-05-01,,,,white, +329,2016-12-01,,,,white, +328,,ambulatory,77,,white, 328,,ambulatory,61,female,, -328,,ambulatory,50,male,[White], -328,,ambulatory,17,,[White],[Not Hispanic or Latino] -328,2023-02-01,ambulatory,,,[White], -328,2018-11-01,,,,,[Not Hispanic or Latino] -328,2017-09-01,,,,[White], -328,2016-09-01,ambulatory,,,[White], +328,,ambulatory,50,male,white, +328,,ambulatory,17,,white,not hispanic or latino +328,2023-02-01,ambulatory,,,white, +328,2018-11-01,,,,,not hispanic or latino +328,2017-09-01,,,,white, +328,2016-09-01,ambulatory,,,white, 327,,,76,male,, -327,,,64,female,[White], -327,,ambulatory,77,,,[Not Hispanic or Latino] -327,2022-02-01,,,,[White], -327,2020-08-01,,,,[White], -327,2016-07-01,,,,[White],[Not Hispanic or Latino] -327,2016-06-01,ambulatory,,,,[Not Hispanic or Latino] -326,,,50,male,,[Not Hispanic or Latino] -326,,,29,,,[Not Hispanic or Latino] -326,,ambulatory,70,,[White], -326,2023-03-01,,,,[White],[Not Hispanic or Latino] -326,2023-03-01,ambulatory,,,[White], -326,2022-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -326,2022-05-01,ambulatory,,,[White],[Not Hispanic or Latino] -326,2020-11-01,ambulatory,,,,[Not Hispanic or Latino] +327,,,64,female,white, +327,,ambulatory,77,,,not hispanic or latino +327,2022-02-01,,,,white, +327,2020-08-01,,,,white, +327,2016-07-01,,,,white,not hispanic or latino +327,2016-06-01,ambulatory,,,,not hispanic or latino +326,,,50,male,,not hispanic or latino +326,,,29,,,not hispanic or latino +326,,ambulatory,70,,white, +326,2023-03-01,,,,white,not hispanic or latino +326,2023-03-01,ambulatory,,,white, +326,2022-08-01,ambulatory,,,white,not hispanic or latino +326,2022-05-01,ambulatory,,,white,not hispanic or latino +326,2020-11-01,ambulatory,,,,not hispanic or latino 326,2019-08-01,,,,, -326,2017-04-01,,,,,[Not Hispanic or Latino] +326,2017-04-01,,,,,not hispanic or latino 326,2016-11-01,,,,, -325,,,44,,[White],[Not Hispanic or Latino] +325,,,44,,white,not hispanic or latino 325,,,19,,, -325,,ambulatory,82,,,[Not Hispanic or Latino] -325,2022-06-01,,,,[White],[Not Hispanic or Latino] -325,2021-09-01,ambulatory,,,[White],[Not Hispanic or Latino] +325,,ambulatory,82,,,not hispanic or latino +325,2022-06-01,,,,white,not hispanic or latino +325,2021-09-01,ambulatory,,,white,not hispanic or latino 325,2020-01-01,ambulatory,,,, -325,2018-04-01,ambulatory,,,,[Not Hispanic or Latino] -325,2017-07-01,ambulatory,,,[White], -325,2016-08-01,ambulatory,,,[White], +325,2018-04-01,ambulatory,,,,not hispanic or latino +325,2017-07-01,ambulatory,,,white, +325,2016-08-01,ambulatory,,,white, 324,,,81,male,, -324,,,81,male,[White], -324,,,50,male,[White],[Not Hispanic or Latino] -324,,ambulatory,64,female,[White], -324,,ambulatory,50,male,,[Not Hispanic or Latino] -324,,ambulatory,28,,[White],[Not Hispanic or Latino] -324,2022-11-01,ambulatory,,,[White], -324,2022-04-01,,,,[White],[Not Hispanic or Latino] -324,2022-03-01,,,,[White], -324,2020-12-01,ambulatory,,,,[Not Hispanic or Latino] -324,2020-03-01,ambulatory,,,[White], -324,2019-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -324,2019-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -324,2018-04-01,,,,[White], -324,2017-05-01,ambulatory,,,,[Not Hispanic or Latino] -323,,,76,male,[White], -323,,,54,,[White],[Not Hispanic or Latino] -323,2023-02-01,,,,[White],[Not Hispanic or Latino] -323,2020-05-01,,,,[White], -323,2020-04-01,,,,[White], +324,,,81,male,white, +324,,,50,male,white,not hispanic or latino +324,,ambulatory,64,female,white, +324,,ambulatory,50,male,,not hispanic or latino +324,,ambulatory,28,,white,not hispanic or latino +324,2022-11-01,ambulatory,,,white, +324,2022-04-01,,,,white,not hispanic or latino +324,2022-03-01,,,,white, +324,2020-12-01,ambulatory,,,,not hispanic or latino +324,2020-03-01,ambulatory,,,white, +324,2019-04-01,ambulatory,,,white,not hispanic or latino +324,2019-01-01,ambulatory,,,white,not hispanic or latino +324,2018-04-01,,,,white, +324,2017-05-01,ambulatory,,,,not hispanic or latino +323,,,76,male,white, +323,,,54,,white,not hispanic or latino +323,2023-02-01,,,,white,not hispanic or latino +323,2020-05-01,,,,white, +323,2020-04-01,,,,white, 323,2020-04-01,ambulatory,,,, -323,2018-03-01,ambulatory,,,[White],[Not Hispanic or Latino] -323,2018-01-01,ambulatory,,,[White],[Not Hispanic or Latino] +323,2018-03-01,ambulatory,,,white,not hispanic or latino +323,2018-01-01,ambulatory,,,white,not hispanic or latino 323,2017-04-01,ambulatory,,,, -322,,ambulatory,77,,[White],[Not Hispanic or Latino] -322,,ambulatory,70,,[White],[Not Hispanic or Latino] -322,,ambulatory,50,male,[White],[Not Hispanic or Latino] -322,,ambulatory,46,,[White],[Not Hispanic or Latino] -322,2022-04-01,ambulatory,,,[White], -322,2020-07-01,ambulatory,,,,[Not Hispanic or Latino] -322,2020-05-01,,,,,[Not Hispanic or Latino] +322,,ambulatory,77,,white,not hispanic or latino +322,,ambulatory,70,,white,not hispanic or latino +322,,ambulatory,50,male,white,not hispanic or latino +322,,ambulatory,46,,white,not hispanic or latino +322,2022-04-01,ambulatory,,,white, +322,2020-07-01,ambulatory,,,,not hispanic or latino +322,2020-05-01,,,,,not hispanic or latino 322,2018-11-01,ambulatory,,,, -322,2017-12-01,,,,[White],[Not Hispanic or Latino] -322,2017-03-01,ambulatory,,,[White],[Not Hispanic or Latino] -322,2016-10-01,ambulatory,,,,[Not Hispanic or Latino] -321,,,76,male,,[Not Hispanic or Latino] +322,2017-12-01,,,,white,not hispanic or latino +322,2017-03-01,ambulatory,,,white,not hispanic or latino +322,2016-10-01,ambulatory,,,,not hispanic or latino +321,,,76,male,,not hispanic or latino 321,,,51,,, -321,,ambulatory,82,,[White],[Not Hispanic or Latino] -321,,ambulatory,75,,[White],[Not Hispanic or Latino] -321,2022-02-01,ambulatory,,,,[Not Hispanic or Latino] -321,2022-01-01,,,,[White],[Not Hispanic or Latino] -321,2020-12-01,ambulatory,,,[White], -321,2020-09-01,,,,,[Not Hispanic or Latino] -321,2020-06-01,,,,[White], -321,2016-09-01,,,,[White],[Not Hispanic or Latino] -320,,,0,,[White],[Not Hispanic or Latino] -320,2020-08-01,ambulatory,,,,[Not Hispanic or Latino] -320,2018-07-01,ambulatory,,,[White], -320,2016-07-01,ambulatory,,,[White], +321,,ambulatory,82,,white,not hispanic or latino +321,,ambulatory,75,,white,not hispanic or latino +321,2022-02-01,ambulatory,,,,not hispanic or latino +321,2022-01-01,,,,white,not hispanic or latino +321,2020-12-01,ambulatory,,,white, +321,2020-09-01,,,,,not hispanic or latino +321,2020-06-01,,,,white, +321,2016-09-01,,,,white,not hispanic or latino +320,,,0,,white,not hispanic or latino +320,2020-08-01,ambulatory,,,,not hispanic or latino +320,2018-07-01,ambulatory,,,white, +320,2016-07-01,ambulatory,,,white, 319,,,60,female,, 319,,,16,female,, 319,,ambulatory,76,male,, -319,2023-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -319,2020-12-01,,,,[White],[Not Hispanic or Latino] -319,2019-12-01,,,,[White], -319,2019-06-01,ambulatory,,,,[Not Hispanic or Latino] -318,,,64,female,[White],[Not Hispanic or Latino] -318,,ambulatory,54,,[White], -318,,ambulatory,0,,[White],[Not Hispanic or Latino] +319,2023-01-01,ambulatory,,,white,not hispanic or latino +319,2020-12-01,,,,white,not hispanic or latino +319,2019-12-01,,,,white, +319,2019-06-01,ambulatory,,,,not hispanic or latino +318,,,64,female,white,not hispanic or latino +318,,ambulatory,54,,white, +318,,ambulatory,0,,white,not hispanic or latino 318,2020-10-01,ambulatory,,,, -318,2020-07-01,,,,[White],[Not Hispanic or Latino] +318,2020-07-01,,,,white,not hispanic or latino 318,2020-05-01,ambulatory,,,, -318,2020-01-01,,,,[White], -318,2017-10-01,ambulatory,,,,[Not Hispanic or Latino] -317,,,76,male,[White],[Not Hispanic or Latino] -317,2022-09-01,ambulatory,,,[White],[Not Hispanic or Latino] -317,2020-10-01,,,,,[Not Hispanic or Latino] -317,2019-02-01,,,,,[Not Hispanic or Latino] -317,2018-11-01,,,,[White], -317,2018-07-01,,,,[White],[Not Hispanic or Latino] -317,2017-01-01,ambulatory,,,[White], +318,2020-01-01,,,,white, +318,2017-10-01,ambulatory,,,,not hispanic or latino +317,,,76,male,white,not hispanic or latino +317,2022-09-01,ambulatory,,,white,not hispanic or latino +317,2020-10-01,,,,,not hispanic or latino +317,2019-02-01,,,,,not hispanic or latino +317,2018-11-01,,,,white, +317,2018-07-01,,,,white,not hispanic or latino +317,2017-01-01,ambulatory,,,white, 316,,,71,,, -316,,,61,female,[White], +316,,,61,female,white, 316,,,40,,, 316,,,2,,, 316,,ambulatory,69,,, -316,2020-11-01,ambulatory,,,[White], -316,2020-06-01,ambulatory,,,,[Not Hispanic or Latino] -316,2018-12-01,,,,[White],[Not Hispanic or Latino] -316,2018-02-01,,,,,[Not Hispanic or Latino] -316,2017-12-01,ambulatory,,,[White], -316,2017-11-01,,,,,[Not Hispanic or Latino] -316,2017-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -316,2016-12-01,ambulatory,,,[White], +316,2020-11-01,ambulatory,,,white, +316,2020-06-01,ambulatory,,,,not hispanic or latino +316,2018-12-01,,,,white,not hispanic or latino +316,2018-02-01,,,,,not hispanic or latino +316,2017-12-01,ambulatory,,,white, +316,2017-11-01,,,,,not hispanic or latino +316,2017-08-01,ambulatory,,,white,not hispanic or latino +316,2016-12-01,ambulatory,,,white, 316,2016-11-01,ambulatory,,,, -316,2016-10-01,,,,[White],[Not Hispanic or Latino] +316,2016-10-01,,,,white,not hispanic or latino 315,,,80,,, -315,,ambulatory,76,male,[White], -315,,ambulatory,64,female,[White],[Not Hispanic or Latino] -315,,ambulatory,33,,[White],[Not Hispanic or Latino] -315,2022-03-01,ambulatory,,,,[Not Hispanic or Latino] +315,,ambulatory,76,male,white, +315,,ambulatory,64,female,white,not hispanic or latino +315,,ambulatory,33,,white,not hispanic or latino +315,2022-03-01,ambulatory,,,,not hispanic or latino 315,2017-02-01,ambulatory,,,, -315,2016-10-01,ambulatory,,,[White], -314,,,61,female,,[Not Hispanic or Latino] +315,2016-10-01,ambulatory,,,white, +314,,,61,female,,not hispanic or latino 314,,ambulatory,41,,, 314,,ambulatory,29,,, -314,2020-11-01,,,,[White],[Not Hispanic or Latino] -314,2019-10-01,,,,[White], -314,2019-05-01,ambulatory,,,[White],[Not Hispanic or Latino] +314,2020-11-01,,,,white,not hispanic or latino +314,2019-10-01,,,,white, +314,2019-05-01,ambulatory,,,white,not hispanic or latino 314,2018-02-01,ambulatory,,,, -314,2017-04-01,,,,[White], -314,2017-01-01,,,,[White],[Not Hispanic or Latino] -314,2016-06-01,ambulatory,,,[White], -313,,,80,,,[Not Hispanic or Latino] +314,2017-04-01,,,,white, +314,2017-01-01,,,,white,not hispanic or latino +314,2016-06-01,ambulatory,,,white, +313,,,80,,,not hispanic or latino 313,,,43,,, 313,,,35,,, -313,,ambulatory,76,male,,[Not Hispanic or Latino] +313,,ambulatory,76,male,,not hispanic or latino 313,,ambulatory,30,,, -313,2022-01-01,ambulatory,,,[White], -313,2020-08-01,,,,[White],[Not Hispanic or Latino] -313,2019-10-01,,,,,[Not Hispanic or Latino] +313,2022-01-01,ambulatory,,,white, +313,2020-08-01,,,,white,not hispanic or latino +313,2019-10-01,,,,,not hispanic or latino 313,2019-07-01,ambulatory,,,, -313,2019-06-01,ambulatory,,,[White], -313,2018-12-01,ambulatory,,,,[Not Hispanic or Latino] -313,2018-12-01,ambulatory,,,[White], -313,2018-06-01,ambulatory,,,[White],[Not Hispanic or Latino] +313,2019-06-01,ambulatory,,,white, +313,2018-12-01,ambulatory,,,,not hispanic or latino +313,2018-12-01,ambulatory,,,white, +313,2018-06-01,ambulatory,,,white,not hispanic or latino 313,2017-11-01,ambulatory,,,, -313,2017-10-01,,,,[White],[Not Hispanic or Latino] -312,,,29,,[White],[Not Hispanic or Latino] -312,,ambulatory,69,,,[Not Hispanic or Latino] -312,2022-12-01,ambulatory,,,[White],[Not Hispanic or Latino] -312,2022-06-01,ambulatory,,,[White],[Not Hispanic or Latino] -312,2020-01-01,ambulatory,,,,[Not Hispanic or Latino] -312,2019-12-01,ambulatory,,,,[Not Hispanic or Latino] -312,2019-07-01,,,,[White],[Not Hispanic or Latino] -312,2017-09-01,ambulatory,,,,[Not Hispanic or Latino] -312,2017-05-01,ambulatory,,,[White], -312,2016-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -311,,,80,,[White], -311,,,31,,[White], -311,,,16,female,,[Not Hispanic or Latino] +313,2017-10-01,,,,white,not hispanic or latino +312,,,29,,white,not hispanic or latino +312,,ambulatory,69,,,not hispanic or latino +312,2022-12-01,ambulatory,,,white,not hispanic or latino +312,2022-06-01,ambulatory,,,white,not hispanic or latino +312,2020-01-01,ambulatory,,,,not hispanic or latino +312,2019-12-01,ambulatory,,,,not hispanic or latino +312,2019-07-01,,,,white,not hispanic or latino +312,2017-09-01,ambulatory,,,,not hispanic or latino +312,2017-05-01,ambulatory,,,white, +312,2016-08-01,ambulatory,,,white,not hispanic or latino +311,,,80,,white, +311,,,31,,white, +311,,,16,female,,not hispanic or latino 311,,ambulatory,60,female,, 311,2020-09-01,ambulatory,,,, -311,2020-04-01,,,,[White],[Not Hispanic or Latino] -311,2020-04-01,ambulatory,,,,[Not Hispanic or Latino] -311,2017-01-01,ambulatory,,,,[Not Hispanic or Latino] -310,,,60,female,,[Not Hispanic or Latino] -310,,ambulatory,44,,[White],[Not Hispanic or Latino] -310,2022-02-01,ambulatory,,,[White], -310,2020-07-01,ambulatory,,,[White], -310,2017-09-01,,,,[White],[Not Hispanic or Latino] -309,,,,female,[Asian], -309,,,80,,[White],[Not Hispanic or Latino] +311,2020-04-01,,,,white,not hispanic or latino +311,2020-04-01,ambulatory,,,,not hispanic or latino +311,2017-01-01,ambulatory,,,,not hispanic or latino +310,,,60,female,,not hispanic or latino +310,,ambulatory,44,,white,not hispanic or latino +310,2022-02-01,ambulatory,,,white, +310,2020-07-01,ambulatory,,,white, +310,2017-09-01,,,,white,not hispanic or latino +309,,,,female,asian, +309,,,80,,white,not hispanic or latino 309,,,67,,, -309,,ambulatory,76,male,[White],[Not Hispanic or Latino] +309,,ambulatory,76,male,white,not hispanic or latino 309,,ambulatory,16,female,, -309,2022-11-01,,,,[White],[Not Hispanic or Latino] -309,2020-03-01,ambulatory,,,[White],[Not Hispanic or Latino] +309,2022-11-01,,,,white,not hispanic or latino +309,2020-03-01,ambulatory,,,white,not hispanic or latino 309,2019-08-01,ambulatory,,,, -309,2019-06-01,,,,[White],[Not Hispanic or Latino] -309,2019-03-01,ambulatory,,,[White],[Not Hispanic or Latino] -309,2019-02-01,,,,[White], -309,2018-10-01,ambulatory,,,,[Not Hispanic or Latino] -309,2017-10-01,ambulatory,,,[White], -308,,,81,male,,[Not Hispanic or Latino] -308,,,81,male,[White],[Not Hispanic or Latino] -308,,ambulatory,32,,,[Not Hispanic or Latino] +309,2019-06-01,,,,white,not hispanic or latino +309,2019-03-01,ambulatory,,,white,not hispanic or latino +309,2019-02-01,,,,white, +309,2018-10-01,ambulatory,,,,not hispanic or latino +309,2017-10-01,ambulatory,,,white, +308,,,81,male,,not hispanic or latino +308,,,81,male,white,not hispanic or latino +308,,ambulatory,32,,,not hispanic or latino 308,,ambulatory,13,,, -308,2020-09-01,,,,[White], +308,2020-09-01,,,,white, 308,2019-02-01,ambulatory,,,, -308,2017-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -308,2016-12-01,,,,[White],[Not Hispanic or Latino] -308,2016-06-01,,,,[White],[Not Hispanic or Latino] -307,,,67,,,[Not Hispanic or Latino] -307,,,34,,[White], -307,,ambulatory,54,,[White],[Not Hispanic or Latino] -307,2022-02-01,,,,[White],[Not Hispanic or Latino] +308,2017-07-01,ambulatory,,,white,not hispanic or latino +308,2016-12-01,,,,white,not hispanic or latino +308,2016-06-01,,,,white,not hispanic or latino +307,,,67,,,not hispanic or latino +307,,,34,,white, +307,,ambulatory,54,,white,not hispanic or latino +307,2022-02-01,,,,white,not hispanic or latino 307,2020-02-01,,,,, -307,2019-08-01,,,,,[Not Hispanic or Latino] -307,2018-10-01,ambulatory,,,[White], -307,2017-05-01,,,,[White],[Not Hispanic or Latino] -307,2017-02-01,,,,,[Not Hispanic or Latino] -307,2016-09-01,ambulatory,,,[White],[Not Hispanic or Latino] -306,,,71,,[White], -306,,,60,female,[White], -306,,,15,female,[White], -306,,,13,,,[Not Hispanic or Latino] +307,2019-08-01,,,,,not hispanic or latino +307,2018-10-01,ambulatory,,,white, +307,2017-05-01,,,,white,not hispanic or latino +307,2017-02-01,,,,,not hispanic or latino +307,2016-09-01,ambulatory,,,white,not hispanic or latino +306,,,71,,white, +306,,,60,female,white, +306,,,15,female,white, +306,,,13,,,not hispanic or latino 306,,ambulatory,19,,, -306,2020-10-01,,,,[White], -306,2017-11-01,,,,[White], -306,2016-11-01,,,,,[Not Hispanic or Latino] -305,,ambulatory,61,female,[White], +306,2020-10-01,,,,white, +306,2017-11-01,,,,white, +306,2016-11-01,,,,,not hispanic or latino +305,,ambulatory,61,female,white, 305,,ambulatory,51,,, 305,,ambulatory,31,,, -305,2022-03-01,ambulatory,,,[White], -305,2020-06-01,,,,[White],[Not Hispanic or Latino] -305,2019-12-01,ambulatory,,,[White], -305,2018-11-01,ambulatory,,,,[Not Hispanic or Latino] -305,2018-10-01,,,,[White],[Not Hispanic or Latino] -305,2018-04-01,ambulatory,,,[White], +305,2022-03-01,ambulatory,,,white, +305,2020-06-01,,,,white,not hispanic or latino +305,2019-12-01,ambulatory,,,white, +305,2018-11-01,ambulatory,,,,not hispanic or latino +305,2018-10-01,,,,white,not hispanic or latino +305,2018-04-01,ambulatory,,,white, 304,,,78,,, -304,,,19,,,[Not Hispanic or Latino] +304,,,19,,,not hispanic or latino 304,,,14,female,, -304,,ambulatory,61,female,,[Not Hispanic or Latino] -304,2023-03-01,ambulatory,,,[White],[Not Hispanic or Latino] -304,2020-08-01,ambulatory,,,[White], -304,2020-01-01,,,,[White],[Not Hispanic or Latino] -304,2017-09-01,ambulatory,,,[White], -303,,ambulatory,32,,[White],[Not Hispanic or Latino] -303,2018-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -303,2018-02-01,,,,[White], -303,2017-04-01,ambulatory,,,,[Not Hispanic or Latino] -302,,,14,female,,[Not Hispanic or Latino] -302,,ambulatory,60,female,,[Not Hispanic or Latino] -302,2023-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -302,2022-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -302,2020-12-01,ambulatory,,,[White],[Not Hispanic or Latino] -302,2019-12-01,,,,[White],[Not Hispanic or Latino] -301,,,61,female,[White],[Not Hispanic or Latino] -301,,ambulatory,69,,[White], -301,,ambulatory,16,female,,[Not Hispanic or Latino] +304,,ambulatory,61,female,,not hispanic or latino +304,2023-03-01,ambulatory,,,white,not hispanic or latino +304,2020-08-01,ambulatory,,,white, +304,2020-01-01,,,,white,not hispanic or latino +304,2017-09-01,ambulatory,,,white, +303,,ambulatory,32,,white,not hispanic or latino +303,2018-07-01,ambulatory,,,white,not hispanic or latino +303,2018-02-01,,,,white, +303,2017-04-01,ambulatory,,,,not hispanic or latino +302,,,14,female,,not hispanic or latino +302,,ambulatory,60,female,,not hispanic or latino +302,2023-02-01,ambulatory,,,white,not hispanic or latino +302,2022-04-01,ambulatory,,,white,not hispanic or latino +302,2020-12-01,ambulatory,,,white,not hispanic or latino +302,2019-12-01,,,,white,not hispanic or latino +301,,,61,female,white,not hispanic or latino +301,,ambulatory,69,,white, +301,,ambulatory,16,female,,not hispanic or latino 301,,ambulatory,2,,, -301,2022-03-01,,,,[White],[Not Hispanic or Latino] -301,2020-05-01,,,,[White],[Not Hispanic or Latino] -301,2018-11-01,,,,[White],[Not Hispanic or Latino] -301,2017-06-01,ambulatory,,,[White],[Not Hispanic or Latino] -301,2016-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -300,,,60,female,[White],[Not Hispanic or Latino] +301,2022-03-01,,,,white,not hispanic or latino +301,2020-05-01,,,,white,not hispanic or latino +301,2018-11-01,,,,white,not hispanic or latino +301,2017-06-01,ambulatory,,,white,not hispanic or latino +301,2016-07-01,ambulatory,,,white,not hispanic or latino +300,,,60,female,white,not hispanic or latino 300,,ambulatory,81,male,, -300,,ambulatory,81,male,[White], -300,2020-06-01,ambulatory,,,[White], -300,2019-10-01,,,,[White],[Not Hispanic or Latino] +300,,ambulatory,81,male,white, +300,2020-06-01,ambulatory,,,white, +300,2019-10-01,,,,white,not hispanic or latino 300,2019-10-01,ambulatory,,,, -300,2019-08-01,,,,[White], -300,2017-02-01,,,,[White], -299,,,67,,[White], -299,,ambulatory,69,,[White],[Not Hispanic or Latino] -299,2022-11-01,ambulatory,,,[White],[Not Hispanic or Latino] +300,2019-08-01,,,,white, +300,2017-02-01,,,,white, +299,,,67,,white, +299,,ambulatory,69,,white,not hispanic or latino +299,2022-11-01,ambulatory,,,white,not hispanic or latino 299,2021-05-01,,,female,, -299,2020-11-01,ambulatory,,,[White],[Not Hispanic or Latino] -299,2018-04-01,,,,[White],[Not Hispanic or Latino] -299,2017-12-01,ambulatory,,,[White],[Not Hispanic or Latino] -298,,,78,,,[Not Hispanic or Latino] -298,,,78,,[White], -298,,,15,female,[White],[Not Hispanic or Latino] -298,,ambulatory,60,female,[White], +299,2020-11-01,ambulatory,,,white,not hispanic or latino +299,2018-04-01,,,,white,not hispanic or latino +299,2017-12-01,ambulatory,,,white,not hispanic or latino +298,,,78,,,not hispanic or latino +298,,,78,,white, +298,,,15,female,white,not hispanic or latino +298,,ambulatory,60,female,white, 298,,ambulatory,40,,, 298,,ambulatory,14,female,, -298,2022-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -298,2020-09-01,ambulatory,,,,[Not Hispanic or Latino] -298,2020-01-01,ambulatory,,,[White], -298,2016-10-01,ambulatory,,,[White],[Not Hispanic or Latino] -297,,,71,,,[Not Hispanic or Latino] -297,,,67,,[White],[Not Hispanic or Latino] -297,,,30,,,[Not Hispanic or Latino] +298,2022-01-01,ambulatory,,,white,not hispanic or latino +298,2020-09-01,ambulatory,,,,not hispanic or latino +298,2020-01-01,ambulatory,,,white, +298,2016-10-01,ambulatory,,,white,not hispanic or latino +297,,,71,,,not hispanic or latino +297,,,67,,white,not hispanic or latino +297,,,30,,,not hispanic or latino 297,,,25,,, 297,2021-04-01,,,female,, -297,2020-05-01,ambulatory,,,[White], -297,2016-11-01,ambulatory,,,,[Not Hispanic or Latino] -296,,,,female,[Asian],[Not Hispanic or Latino] -296,,ambulatory,65,,[White], -296,,ambulatory,14,female,,[Not Hispanic or Latino] +297,2020-05-01,ambulatory,,,white, +297,2016-11-01,ambulatory,,,,not hispanic or latino +296,,,,female,asian,not hispanic or latino +296,,ambulatory,65,,white, +296,,ambulatory,14,female,,not hispanic or latino 296,2020-02-01,ambulatory,,,, 296,2019-11-01,,,,, -296,2018-02-01,ambulatory,,,,[Not Hispanic or Latino] -296,2017-04-01,ambulatory,,,[White], -296,2016-12-01,ambulatory,,,[White],[Not Hispanic or Latino] +296,2018-02-01,ambulatory,,,,not hispanic or latino +296,2017-04-01,ambulatory,,,white, +296,2016-12-01,ambulatory,,,white,not hispanic or latino 295,,,53,,, -295,,,41,,,[Not Hispanic or Latino] -295,,ambulatory,,female,[Asian], +295,,,41,,,not hispanic or latino +295,,ambulatory,,female,asian, 295,,ambulatory,43,,, -295,2020-10-01,ambulatory,,,,[Not Hispanic or Latino] -295,2020-09-01,,,,[White],[Not Hispanic or Latino] -295,2020-05-01,ambulatory,,,,[Not Hispanic or Latino] -295,2019-07-01,ambulatory,,,,[Not Hispanic or Latino] -295,2018-12-01,ambulatory,,,[White],[Not Hispanic or Latino] -294,,,43,,,[Not Hispanic or Latino] -294,,ambulatory,30,,[White], -294,2018-11-01,ambulatory,,,[White], -294,2017-04-01,,,,[White],[Not Hispanic or Latino] -293,,,51,,,[Not Hispanic or Latino] -293,,ambulatory,34,,[White], -293,2017-11-01,ambulatory,,,,[Not Hispanic or Latino] -293,2017-10-01,ambulatory,,,[White],[Not Hispanic or Latino] -292,,,78,,[White],[Not Hispanic or Latino] -292,,,2,,,[Not Hispanic or Latino] -292,,ambulatory,60,female,[White],[Not Hispanic or Latino] -292,2020-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -292,2017-05-01,ambulatory,,,[White],[Not Hispanic or Latino] -292,2016-11-01,,,,[White], -291,,ambulatory,61,female,[White],[Not Hispanic or Latino] -291,,ambulatory,15,female,[White], -291,2022-02-01,ambulatory,,,[White],[Not Hispanic or Latino] +295,2020-10-01,ambulatory,,,,not hispanic or latino +295,2020-09-01,,,,white,not hispanic or latino +295,2020-05-01,ambulatory,,,,not hispanic or latino +295,2019-07-01,ambulatory,,,,not hispanic or latino +295,2018-12-01,ambulatory,,,white,not hispanic or latino +294,,,43,,,not hispanic or latino +294,,ambulatory,30,,white, +294,2018-11-01,ambulatory,,,white, +294,2017-04-01,,,,white,not hispanic or latino +293,,,51,,,not hispanic or latino +293,,ambulatory,34,,white, +293,2017-11-01,ambulatory,,,,not hispanic or latino +293,2017-10-01,ambulatory,,,white,not hispanic or latino +292,,,78,,white,not hispanic or latino +292,,,2,,,not hispanic or latino +292,,ambulatory,60,female,white,not hispanic or latino +292,2020-08-01,ambulatory,,,white,not hispanic or latino +292,2017-05-01,ambulatory,,,white,not hispanic or latino +292,2016-11-01,,,,white, +291,,ambulatory,61,female,white,not hispanic or latino +291,,ambulatory,15,female,white, +291,2022-02-01,ambulatory,,,white,not hispanic or latino 291,2019-09-01,,,,, -291,2019-08-01,ambulatory,,,,[Not Hispanic or Latino] -291,2019-07-01,ambulatory,,,[White], +291,2019-08-01,ambulatory,,,,not hispanic or latino +291,2019-07-01,ambulatory,,,white, 290,,,20,,, -290,2019-02-01,,,,[White],[Not Hispanic or Latino] -290,2017-02-01,ambulatory,,,,[Not Hispanic or Latino] -290,2017-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -289,,,71,,[White],[Not Hispanic or Latino] -289,,,51,,[White], -289,,,2,,[White], -289,,ambulatory,65,,[White],[Not Hispanic or Latino] -289,2020-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -289,2020-02-01,,,,,[Not Hispanic or Latino] -289,2019-06-01,ambulatory,,,[White],[Not Hispanic or Latino] -288,,ambulatory,13,,,[Not Hispanic or Latino] -288,2019-12-01,ambulatory,,,[White],[Not Hispanic or Latino] -288,2016-06-01,ambulatory,,,[White],[Not Hispanic or Latino] -287,,,30,,[White],[Not Hispanic or Latino] -287,,ambulatory,29,,[White], +290,2019-02-01,,,,white,not hispanic or latino +290,2017-02-01,ambulatory,,,,not hispanic or latino +290,2017-01-01,ambulatory,,,white,not hispanic or latino +289,,,71,,white,not hispanic or latino +289,,,51,,white, +289,,,2,,white, +289,,ambulatory,65,,white,not hispanic or latino +289,2020-07-01,ambulatory,,,white,not hispanic or latino +289,2020-02-01,,,,,not hispanic or latino +289,2019-06-01,ambulatory,,,white,not hispanic or latino +288,,ambulatory,13,,,not hispanic or latino +288,2019-12-01,ambulatory,,,white,not hispanic or latino +288,2016-06-01,ambulatory,,,white,not hispanic or latino +287,,,30,,white,not hispanic or latino +287,,ambulatory,29,,white, 287,2021-05-01,ambulatory,,female,, 287,2021-04-01,ambulatory,,female,, -287,2017-09-01,ambulatory,,,[White],[Not Hispanic or Latino] +287,2017-09-01,ambulatory,,,white,not hispanic or latino 286,,ambulatory,35,,, -286,2020-10-01,,,,[White],[Not Hispanic or Latino] -286,2020-10-01,ambulatory,,,[White], -286,2018-02-01,,,,[White],[Not Hispanic or Latino] -286,2017-11-01,,,,[White],[Not Hispanic or Latino] -285,,,,,[Native Hawaiian or Other Pacific Islander], -285,,ambulatory,81,male,,[Not Hispanic or Latino] -285,,ambulatory,81,male,[White],[Not Hispanic or Latino] -285,,ambulatory,19,,,[Not Hispanic or Latino] +286,2020-10-01,,,,white,not hispanic or latino +286,2020-10-01,ambulatory,,,white, +286,2018-02-01,,,,white,not hispanic or latino +286,2017-11-01,,,,white,not hispanic or latino +285,,,,,native hawaiian or other pacific islander, +285,,ambulatory,81,male,,not hispanic or latino +285,,ambulatory,81,male,white,not hispanic or latino +285,,ambulatory,19,,,not hispanic or latino 285,2021-04-01,,,male,, -285,2020-09-01,ambulatory,,,[White], -285,2020-04-01,ambulatory,,,[White], -285,2020-01-01,ambulatory,,,[White],[Not Hispanic or Latino] -285,2019-08-01,,,,[White],[Not Hispanic or Latino] -285,2019-02-01,ambulatory,,,,[Not Hispanic or Latino] -285,2018-10-01,ambulatory,,,[White],[Not Hispanic or Latino] +285,2020-09-01,ambulatory,,,white, +285,2020-04-01,ambulatory,,,white, +285,2020-01-01,ambulatory,,,white,not hispanic or latino +285,2019-08-01,,,,white,not hispanic or latino +285,2019-02-01,ambulatory,,,,not hispanic or latino +285,2018-10-01,ambulatory,,,white,not hispanic or latino 284,,,77,male,, 284,,ambulatory,80,,, -284,,ambulatory,15,female,[White],[Not Hispanic or Latino] +284,,ambulatory,15,female,white,not hispanic or latino 284,2021-03-01,,,female,, -284,2020-06-01,ambulatory,,,[White],[Not Hispanic or Latino] +284,2020-06-01,ambulatory,,,white,not hispanic or latino 284,2019-11-01,ambulatory,,,, -284,2019-10-01,ambulatory,,,,[Not Hispanic or Latino] -284,2019-10-01,ambulatory,,,[White], +284,2019-10-01,ambulatory,,,,not hispanic or latino +284,2019-10-01,ambulatory,,,white, 283,,,36,,, -283,,,16,female,[White], -283,2019-08-01,ambulatory,,,[White], -283,2019-02-01,ambulatory,,,[White], -283,2018-02-01,ambulatory,,,[White], -283,2017-02-01,ambulatory,,,[White], -282,,ambulatory,,female,[Asian],[Not Hispanic or Latino] -282,,ambulatory,80,,,[Not Hispanic or Latino] -282,2022-03-01,ambulatory,,,[White],[Not Hispanic or Latino] -282,2018-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -282,2017-11-01,ambulatory,,,[White], -282,2016-11-01,ambulatory,,,[White], +283,,,16,female,white, +283,2019-08-01,ambulatory,,,white, +283,2019-02-01,ambulatory,,,white, +283,2018-02-01,ambulatory,,,white, +283,2017-02-01,ambulatory,,,white, +282,,ambulatory,,female,asian,not hispanic or latino +282,,ambulatory,80,,,not hispanic or latino +282,2022-03-01,ambulatory,,,white,not hispanic or latino +282,2018-04-01,ambulatory,,,white,not hispanic or latino +282,2017-11-01,ambulatory,,,white, +282,2016-11-01,ambulatory,,,white, 281,,,82,male,, -281,,,82,male,[White], +281,,,82,male,white, 281,,,61,male,, -281,,,61,male,,[Not Hispanic or Latino] -281,,,40,,,[Not Hispanic or Latino] -281,,ambulatory,31,,[White], -280,,,77,male,[White], -280,,ambulatory,80,,[White], -280,2019-11-01,,,,[White], -279,,,77,male,,[Not Hispanic or Latino] +281,,,61,male,,not hispanic or latino +281,,,40,,,not hispanic or latino +281,,ambulatory,31,,white, +280,,,77,male,white, +280,,ambulatory,80,,white, +280,2019-11-01,,,,white, +279,,,77,male,,not hispanic or latino 279,,,60,male,, 279,,,42,female,, -279,,,25,,[White], +279,,,25,,white, 279,,ambulatory,67,,, 279,,ambulatory,53,,, -279,,ambulatory,43,,,[Not Hispanic or Latino] +279,,ambulatory,43,,,not hispanic or latino 279,2021-05-01,,,male,, -279,2021-04-01,,,female,,[Not Hispanic or Latino] -279,2018-11-01,ambulatory,,,[White],[Not Hispanic or Latino] +279,2021-04-01,,,female,,not hispanic or latino +279,2018-11-01,ambulatory,,,white,not hispanic or latino 278,,,56,female,, -278,,,53,,,[Not Hispanic or Latino] -278,,ambulatory,80,,[White],[Not Hispanic or Latino] -278,,ambulatory,51,,,[Not Hispanic or Latino] -278,,ambulatory,2,,,[Not Hispanic or Latino] -278,2021-05-01,,,female,,[Not Hispanic or Latino] -278,2020-02-01,ambulatory,,,,[Not Hispanic or Latino] -277,,,61,male,[White], -277,,,61,male,[White],[Not Hispanic or Latino] -277,,,25,,,[Not Hispanic or Latino] -277,,,16,female,[White],[Not Hispanic or Latino] -277,,ambulatory,67,,,[Not Hispanic or Latino] -277,,ambulatory,2,,[White], -277,2017-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -276,,,60,male,,[Not Hispanic or Latino] -276,,,34,,,[Not Hispanic or Latino] -276,,,31,,,[Not Hispanic or Latino] +278,,,53,,,not hispanic or latino +278,,ambulatory,80,,white,not hispanic or latino +278,,ambulatory,51,,,not hispanic or latino +278,,ambulatory,2,,,not hispanic or latino +278,2021-05-01,,,female,,not hispanic or latino +278,2020-02-01,ambulatory,,,,not hispanic or latino +277,,,61,male,white, +277,,,61,male,white,not hispanic or latino +277,,,25,,,not hispanic or latino +277,,,16,female,white,not hispanic or latino +277,,ambulatory,67,,,not hispanic or latino +277,,ambulatory,2,,white, +277,2017-04-01,ambulatory,,,white,not hispanic or latino +276,,,60,male,,not hispanic or latino +276,,,34,,,not hispanic or latino +276,,,31,,,not hispanic or latino 276,,,3,,, -276,,ambulatory,29,,,[Not Hispanic or Latino] +276,,ambulatory,29,,,not hispanic or latino 276,2021-04-01,ambulatory,,male,, 276,2021-03-01,ambulatory,,female,, -276,2020-05-01,ambulatory,,,[White],[Not Hispanic or Latino] -275,,,77,male,[White],[Not Hispanic or Latino] -275,,,56,female,,[Not Hispanic or Latino] -275,,,13,,[White], +276,2020-05-01,ambulatory,,,white,not hispanic or latino +275,,,77,male,white,not hispanic or latino +275,,,56,female,,not hispanic or latino +275,,,13,,white, 275,,ambulatory,77,male,, -275,,ambulatory,41,,,[Not Hispanic or Latino] -275,2020-02-01,,,,[White], -275,2019-11-01,,,,,[Not Hispanic or Latino] -275,2017-02-01,,,,[White],[Not Hispanic or Latino] +275,,ambulatory,41,,,not hispanic or latino +275,2020-02-01,,,,white, +275,2019-11-01,,,,,not hispanic or latino +275,2017-02-01,,,,white,not hispanic or latino 274,,,83,,, 274,,,66,male,, -274,,,66,male,,[Not Hispanic or Latino] -274,,ambulatory,51,,[White], +274,,,66,male,,not hispanic or latino +274,,ambulatory,51,,white, 274,,ambulatory,25,,, -274,2020-04-01,ambulatory,,,[White],[Not Hispanic or Latino] +274,2020-04-01,ambulatory,,,white,not hispanic or latino 273,,,75,male,, 273,,,65,male,, -273,,,65,male,,[Not Hispanic or Latino] +273,,,65,male,,not hispanic or latino 273,,,18,female,, 273,,ambulatory,20,,, -273,,ambulatory,16,female,[White], -273,2020-09-01,ambulatory,,,[White],[Not Hispanic or Latino] -273,2019-09-01,,,,,[Not Hispanic or Latino] +273,,ambulatory,16,female,white, +273,2020-09-01,ambulatory,,,white,not hispanic or latino +273,2019-09-01,,,,,not hispanic or latino 273,2019-09-01,ambulatory,,,, -273,2019-07-01,ambulatory,,,[White],[Not Hispanic or Latino] -273,2016-11-01,,,,[White],[Not Hispanic or Latino] -272,,,83,,[White], +273,2019-07-01,ambulatory,,,white,not hispanic or latino +273,2016-11-01,,,,white,not hispanic or latino +272,,,83,,white, 272,,,39,,, -272,,ambulatory,77,male,[White], -272,2021-05-01,,,female,[White], +272,,ambulatory,77,male,white, +272,2021-05-01,,,female,white, 272,2021-03-01,,,male,, 271,,,58,male,, -271,,,35,,[White], -271,2021-04-01,,,male,,[Not Hispanic or Latino] -271,2021-04-01,ambulatory,,female,,[Not Hispanic or Latino] -271,2019-10-01,ambulatory,,,[White],[Not Hispanic or Latino] -270,,,40,,[White], -270,,ambulatory,77,male,,[Not Hispanic or Latino] +271,,,35,,white, +271,2021-04-01,,,male,,not hispanic or latino +271,2021-04-01,ambulatory,,female,,not hispanic or latino +271,2019-10-01,ambulatory,,,white,not hispanic or latino +270,,,40,,white, +270,,ambulatory,77,male,,not hispanic or latino 270,,ambulatory,56,female,, 270,2021-10-01,,,female,, 269,,,26,,, -269,,ambulatory,67,,[White], +269,,ambulatory,67,,white, 269,2021-05-01,ambulatory,,male,, -269,2021-05-01,ambulatory,,female,,[Not Hispanic or Latino] -269,2019-11-01,ambulatory,,,[White], -269,2019-08-01,ambulatory,,,[White],[Not Hispanic or Latino] -268,,,60,male,[White], +269,2021-05-01,ambulatory,,female,,not hispanic or latino +269,2019-11-01,ambulatory,,,white, +269,2019-08-01,ambulatory,,,white,not hispanic or latino +268,,,60,male,white, 268,,,55,female,, 268,,,27,,, -268,,,18,female,,[Not Hispanic or Latino] +268,,,18,female,,not hispanic or latino 268,,ambulatory,61,male,, -268,,ambulatory,61,male,,[Not Hispanic or Latino] +268,,ambulatory,61,male,,not hispanic or latino 268,,ambulatory,42,female,, -268,2021-04-01,,,female,[White], -268,2020-10-01,ambulatory,,,[White],[Not Hispanic or Latino] +268,2021-04-01,,,female,white, +268,2020-10-01,ambulatory,,,white,not hispanic or latino 267,,,37,,, 267,,ambulatory,82,male,, -267,,ambulatory,82,male,[White], -267,,ambulatory,77,male,[White],[Not Hispanic or Latino] -267,,ambulatory,67,,[White],[Not Hispanic or Latino] -267,,ambulatory,56,female,,[Not Hispanic or Latino] -267,,ambulatory,16,female,[White],[Not Hispanic or Latino] -267,2019-09-01,,,,[White], -267,2018-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -266,,,,,[Native Hawaiian or Other Pacific Islander],[Not Hispanic or Latino] -266,,,58,male,,[Not Hispanic or Latino] +267,,ambulatory,82,male,white, +267,,ambulatory,77,male,white,not hispanic or latino +267,,ambulatory,67,,white,not hispanic or latino +267,,ambulatory,56,female,,not hispanic or latino +267,,ambulatory,16,female,white,not hispanic or latino +267,2019-09-01,,,,white, +267,2018-02-01,ambulatory,,,white,not hispanic or latino +266,,,,,native hawaiian or other pacific islander,not hispanic or latino +266,,,58,male,,not hispanic or latino 266,,,45,,, -266,,,43,,[White], +266,,,43,,white, 266,,ambulatory,71,,, -265,,,75,male,,[Not Hispanic or Latino] -265,,,60,male,[White],[Not Hispanic or Latino] -265,,,56,female,[White], -265,,,55,female,,[Not Hispanic or Latino] -265,,,19,,[White], -265,,,2,,[White],[Not Hispanic or Latino] -265,2020-02-01,ambulatory,,,[White], -265,2017-11-01,ambulatory,,,[White],[Not Hispanic or Latino] -264,,,83,,,[Not Hispanic or Latino] -264,,,20,,,[Not Hispanic or Latino] -264,,ambulatory,61,male,[White], -264,,ambulatory,61,male,[White],[Not Hispanic or Latino] +265,,,75,male,,not hispanic or latino +265,,,60,male,white,not hispanic or latino +265,,,56,female,white, +265,,,55,female,,not hispanic or latino +265,,,19,,white, +265,,,2,,white,not hispanic or latino +265,2020-02-01,ambulatory,,,white, +265,2017-11-01,ambulatory,,,white,not hispanic or latino +264,,,83,,,not hispanic or latino +264,,,20,,,not hispanic or latino +264,,ambulatory,61,male,white, +264,,ambulatory,61,male,white,not hispanic or latino 264,,ambulatory,60,male,, -264,,ambulatory,40,,,[Not Hispanic or Latino] -264,2021-04-01,ambulatory,,male,,[Not Hispanic or Latino] -264,2019-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -264,2016-11-01,ambulatory,,,[White],[Not Hispanic or Latino] -263,,,14,female,[White], -263,,ambulatory,29,,[White],[Not Hispanic or Latino] +264,,ambulatory,40,,,not hispanic or latino +264,2021-04-01,ambulatory,,male,,not hispanic or latino +264,2019-02-01,ambulatory,,,white,not hispanic or latino +264,2016-11-01,ambulatory,,,white,not hispanic or latino +263,,,14,female,white, +263,,ambulatory,29,,white,not hispanic or latino 263,,ambulatory,18,female,, 263,,ambulatory,3,,, -263,2019-11-01,ambulatory,,,,[Not Hispanic or Latino] -262,,,83,,[White],[Not Hispanic or Latino] -262,,,56,female,[White],[Not Hispanic or Latino] +263,2019-11-01,ambulatory,,,,not hispanic or latino +262,,,83,,white,not hispanic or latino +262,,,56,female,white,not hispanic or latino 262,,,54,female,, -262,,,51,,[White],[Not Hispanic or Latino] +262,,,51,,white,not hispanic or latino 262,,,47,female,, 262,,,28,female,, -262,,ambulatory,53,,,[Not Hispanic or Latino] -262,2021-05-01,ambulatory,,female,[White], -261,,,75,male,[White], -261,,,25,,[White],[Not Hispanic or Latino] -261,,,14,female,[White],[Not Hispanic or Latino] -261,,,3,,,[Not Hispanic or Latino] -261,,ambulatory,60,male,,[Not Hispanic or Latino] +262,,ambulatory,53,,,not hispanic or latino +262,2021-05-01,ambulatory,,female,white, +261,,,75,male,white, +261,,,25,,white,not hispanic or latino +261,,,14,female,white,not hispanic or latino +261,,,3,,,not hispanic or latino +261,,ambulatory,60,male,,not hispanic or latino 261,,ambulatory,55,female,, -261,,ambulatory,34,,,[Not Hispanic or Latino] +261,,ambulatory,34,,,not hispanic or latino 261,2021-08-01,,,female,, -261,2021-03-01,,,female,,[Not Hispanic or Latino] +261,2021-03-01,,,female,,not hispanic or latino 260,,,80,male,, 260,,,22,,, -260,2019-11-01,,,,[White],[Not Hispanic or Latino] -260,2017-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -259,,,80,male,,[Not Hispanic or Latino] -259,,,80,male,[White], -259,,,35,,,[Not Hispanic or Latino] +260,2019-11-01,,,,white,not hispanic or latino +260,2017-02-01,ambulatory,,,white,not hispanic or latino +259,,,80,male,,not hispanic or latino +259,,,80,male,white, +259,,,35,,,not hispanic or latino 259,2022-10-01,,,female,, -259,2021-04-01,ambulatory,,female,[White], -259,2021-03-01,,,male,,[Not Hispanic or Latino] -259,2020-02-01,,,,[White],[Not Hispanic or Latino] -258,,,80,male,[White],[Not Hispanic or Latino] +259,2021-04-01,ambulatory,,female,white, +259,2021-03-01,,,male,,not hispanic or latino +259,2020-02-01,,,,white,not hispanic or latino +258,,,80,male,white,not hispanic or latino 258,,,79,,, -258,,,27,,,[Not Hispanic or Latino] +258,,,27,,,not hispanic or latino 258,,,21,,, -258,,,13,,[White],[Not Hispanic or Latino] +258,,,13,,white,not hispanic or latino 258,,,1,male,, -258,,ambulatory,55,female,,[Not Hispanic or Latino] +258,,ambulatory,55,female,,not hispanic or latino 258,,ambulatory,36,,, -258,,ambulatory,18,female,,[Not Hispanic or Latino] -258,,ambulatory,14,female,[White], -257,,,79,,,[Not Hispanic or Latino] -257,,,31,,[White],[Not Hispanic or Latino] -257,,ambulatory,56,female,[White], -257,,ambulatory,25,,,[Not Hispanic or Latino] -257,,ambulatory,25,,[White], -257,,ambulatory,13,,[White], +258,,ambulatory,18,female,,not hispanic or latino +258,,ambulatory,14,female,white, +257,,,79,,,not hispanic or latino +257,,,31,,white,not hispanic or latino +257,,ambulatory,56,female,white, +257,,ambulatory,25,,,not hispanic or latino +257,,ambulatory,25,,white, +257,,ambulatory,13,,white, 257,2021-10-01,ambulatory,,female,, -257,2021-05-01,,,male,,[Not Hispanic or Latino] -257,2021-05-01,,,female,[White],[Not Hispanic or Latino] -257,2019-09-01,ambulatory,,,,[Not Hispanic or Latino] -256,,,27,,[White], +257,2021-05-01,,,male,,not hispanic or latino +257,2021-05-01,,,female,white,not hispanic or latino +257,2019-09-01,ambulatory,,,,not hispanic or latino +256,,,27,,white, 256,,ambulatory,78,,, -256,,ambulatory,71,,[White], +256,,ambulatory,71,,white, 256,,ambulatory,58,male,, -256,,ambulatory,14,female,[White],[Not Hispanic or Latino] -256,2021-03-01,,,female,[White], -255,,,54,female,,[Not Hispanic or Latino] +256,,ambulatory,14,female,white,not hispanic or latino +256,2021-03-01,,,female,white, +255,,,54,female,,not hispanic or latino 255,,,46,female,, -255,,,39,,,[Not Hispanic or Latino] +255,,,39,,,not hispanic or latino 255,,ambulatory,83,,, -255,,ambulatory,30,,,[Not Hispanic or Latino] -255,2021-05-01,,,male,[White], +255,,ambulatory,30,,,not hispanic or latino +255,2021-05-01,,,male,white, 255,2021-03-01,ambulatory,,male,, -255,2021-03-01,ambulatory,,female,,[Not Hispanic or Latino] -254,,,79,,[White], +255,2021-03-01,ambulatory,,female,,not hispanic or latino +254,,,79,,white, 254,,,17,female,, -254,,ambulatory,56,female,[White],[Not Hispanic or Latino] +254,,ambulatory,56,female,white,not hispanic or latino 254,,ambulatory,47,female,, -254,,ambulatory,2,,[White],[Not Hispanic or Latino] -253,,,79,,[White],[Not Hispanic or Latino] -253,,,75,male,[White],[Not Hispanic or Latino] -253,,,47,female,[White], -253,,,42,,[White], -253,,,28,female,[White], -253,,,3,,[White], -253,,ambulatory,83,,[White], -253,,ambulatory,78,,,[Not Hispanic or Latino] -253,,ambulatory,60,male,[White], -252,,,22,,,[Not Hispanic or Latino] +254,,ambulatory,2,,white,not hispanic or latino +253,,,79,,white,not hispanic or latino +253,,,75,male,white,not hispanic or latino +253,,,47,female,white, +253,,,42,,white, +253,,,28,female,white, +253,,,3,,white, +253,,ambulatory,83,,white, +253,,ambulatory,78,,,not hispanic or latino +253,,ambulatory,60,male,white, +252,,,22,,,not hispanic or latino 252,,ambulatory,66,male,, -252,,ambulatory,66,male,,[Not Hispanic or Latino] +252,,ambulatory,66,male,,not hispanic or latino 252,,ambulatory,54,female,, 252,,ambulatory,45,,, -252,,ambulatory,40,,[White], +252,,ambulatory,40,,white, 252,2021-08-01,ambulatory,,female,, -251,,,66,,[White], -251,,,34,,[White],[Not Hispanic or Latino] +251,,,66,,white, +251,,,34,,white,not hispanic or latino 251,,,23,,, -251,,ambulatory,58,male,,[Not Hispanic or Latino] -251,2021-04-01,,,female,[White],[Not Hispanic or Latino] -250,,,53,,[White], -250,,,1,male,,[Not Hispanic or Latino] -250,,ambulatory,78,,[White], +251,,ambulatory,58,male,,not hispanic or latino +251,2021-04-01,,,female,white,not hispanic or latino +250,,,53,,white, +250,,,1,male,,not hispanic or latino +250,,ambulatory,78,,white, 250,,ambulatory,75,male,, -250,,ambulatory,60,male,[White],[Not Hispanic or Latino] -250,,ambulatory,43,,[White], +250,,ambulatory,60,male,white,not hispanic or latino +250,,ambulatory,43,,white, 250,,ambulatory,27,,, -250,2021-03-01,ambulatory,,female,[White], -250,2019-09-01,ambulatory,,,[White], +250,2021-03-01,ambulatory,,female,white, +250,2019-09-01,ambulatory,,,white, 249,,,41,female,, 249,,ambulatory,46,female,, 249,,ambulatory,37,,, -249,,ambulatory,35,,[White], -249,,ambulatory,31,,,[Not Hispanic or Latino] -249,2020-02-01,ambulatory,,,[White],[Not Hispanic or Latino] -249,2019-11-01,ambulatory,,,[White],[Not Hispanic or Latino] -249,2019-09-01,,,,[White],[Not Hispanic or Latino] -248,,ambulatory,71,,,[Not Hispanic or Latino] -248,,ambulatory,51,,[White],[Not Hispanic or Latino] -248,,ambulatory,20,,,[Not Hispanic or Latino] -248,,ambulatory,19,,[White], -248,,ambulatory,3,,,[Not Hispanic or Latino] -248,2021-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -247,,,43,,[White],[Not Hispanic or Latino] -247,,,27,,[White],[Not Hispanic or Latino] -247,,,20,,[White], -247,,ambulatory,78,,[White],[Not Hispanic or Latino] -247,,ambulatory,54,female,,[Not Hispanic or Latino] +249,,ambulatory,35,,white, +249,,ambulatory,31,,,not hispanic or latino +249,2020-02-01,ambulatory,,,white,not hispanic or latino +249,2019-11-01,ambulatory,,,white,not hispanic or latino +249,2019-09-01,,,,white,not hispanic or latino +248,,ambulatory,71,,,not hispanic or latino +248,,ambulatory,51,,white,not hispanic or latino +248,,ambulatory,20,,,not hispanic or latino +248,,ambulatory,19,,white, +248,,ambulatory,3,,,not hispanic or latino +248,2021-05-01,ambulatory,,female,white,not hispanic or latino +247,,,43,,white,not hispanic or latino +247,,,27,,white,not hispanic or latino +247,,,20,,white, +247,,ambulatory,78,,white,not hispanic or latino +247,,ambulatory,54,female,,not hispanic or latino 247,,ambulatory,39,,, 247,,ambulatory,28,female,, -247,2021-05-01,ambulatory,,male,,[Not Hispanic or Latino] -246,,,55,female,[White], -246,,,26,,,[Not Hispanic or Latino] -246,,,17,female,,[Not Hispanic or Latino] +247,2021-05-01,ambulatory,,male,,not hispanic or latino +246,,,55,female,white, +246,,,26,,,not hispanic or latino +246,,,17,female,,not hispanic or latino 246,,ambulatory,65,male,, -246,,ambulatory,65,male,,[Not Hispanic or Latino] -246,,ambulatory,30,,[White],[Not Hispanic or Latino] +246,,ambulatory,65,male,,not hispanic or latino +246,,ambulatory,30,,white,not hispanic or latino 246,,ambulatory,22,,, 246,2022-10-01,ambulatory,,female,, 246,2022-07-01,,,female,, -246,2021-05-01,ambulatory,,male,[White], -246,2021-04-01,,,male,[White], -245,,,66,,[White],[Not Hispanic or Latino] +246,2021-05-01,ambulatory,,male,white, +246,2021-04-01,,,male,white, +245,,,66,,white,not hispanic or latino 245,,,57,female,, -245,,,46,female,[White], -245,,,26,,[White], -245,,,19,,[White],[Not Hispanic or Latino] -245,,ambulatory,83,,,[Not Hispanic or Latino] -245,,ambulatory,47,female,[White], +245,,,46,female,white, +245,,,26,,white, +245,,,19,,white,not hispanic or latino +245,,ambulatory,83,,,not hispanic or latino +245,,ambulatory,47,female,white, 245,,ambulatory,17,female,, 244,,,31,female,, -244,,ambulatory,75,male,,[Not Hispanic or Latino] -244,2022-10-01,,,female,,[Not Hispanic or Latino] +244,,ambulatory,75,male,,not hispanic or latino +244,2022-10-01,,,female,,not hispanic or latino 244,2022-08-01,,,female,, -244,2021-10-01,,,female,,[Not Hispanic or Latino] +244,2021-10-01,,,female,,not hispanic or latino 244,2021-06-01,,,female,, -244,2021-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] -243,,,55,female,[White],[Not Hispanic or Latino] -243,,,36,,[White], -243,,ambulatory,83,,[White],[Not Hispanic or Latino] +244,2021-04-01,ambulatory,,female,white,not hispanic or latino +243,,,55,female,white,not hispanic or latino +243,,,36,,white, +243,,ambulatory,83,,white,not hispanic or latino 243,,ambulatory,1,male,, -243,2021-03-01,ambulatory,,male,,[Not Hispanic or Latino] +243,2021-03-01,ambulatory,,male,,not hispanic or latino 243,2018-09-01,,,female,, 242,,,69,male,, -242,,,45,,,[Not Hispanic or Latino] -242,,,42,female,,[Not Hispanic or Latino] -242,,,23,,,[Not Hispanic or Latino] -242,,ambulatory,,,[Native Hawaiian or Other Pacific Islander], -242,,ambulatory,55,female,[White], +242,,,45,,,not hispanic or latino +242,,,42,female,,not hispanic or latino +242,,,23,,,not hispanic or latino +242,,ambulatory,,,native hawaiian or other pacific islander, +242,,ambulatory,55,female,white, 242,,ambulatory,26,,, -242,,ambulatory,25,,[White],[Not Hispanic or Latino] +242,,ambulatory,25,,white,not hispanic or latino 242,2021-07-01,,,female,, -241,,ambulatory,75,male,[White], -241,,ambulatory,66,,[White], -241,,ambulatory,27,,,[Not Hispanic or Latino] -241,,ambulatory,3,,[White], -241,2021-10-01,,,female,[White], -240,,,69,male,,[Not Hispanic or Latino] +241,,ambulatory,75,male,white, +241,,ambulatory,66,,white, +241,,ambulatory,27,,,not hispanic or latino +241,,ambulatory,3,,white, +241,2021-10-01,,,female,white, +240,,,69,male,,not hispanic or latino 240,,,58,female,, -240,,,45,,[White], -240,,,28,female,,[Not Hispanic or Latino] -240,,,22,,[White], -240,,ambulatory,71,,[White],[Not Hispanic or Latino] -240,,ambulatory,34,,[White],[Not Hispanic or Latino] -240,,ambulatory,13,,[White],[Not Hispanic or Latino] +240,,,45,,white, +240,,,28,female,,not hispanic or latino +240,,,22,,white, +240,,ambulatory,71,,white,not hispanic or latino +240,,ambulatory,34,,white,not hispanic or latino +240,,ambulatory,13,,white,not hispanic or latino 240,2022-05-01,,,female,, -239,,,23,,[White], -239,,,21,,,[Not Hispanic or Latino] +239,,,23,,white, +239,,,21,,,not hispanic or latino 239,,ambulatory,57,female,, -239,,ambulatory,55,female,[White],[Not Hispanic or Latino] -239,,ambulatory,46,female,[White], -239,,ambulatory,22,,,[Not Hispanic or Latino] -239,2021-08-01,,,female,,[Not Hispanic or Latino] -239,2021-03-01,,,male,[White], -238,,,3,,[White],[Not Hispanic or Latino] -238,,ambulatory,28,female,[White], -238,,ambulatory,27,,[White], +239,,ambulatory,55,female,white,not hispanic or latino +239,,ambulatory,46,female,white, +239,,ambulatory,22,,,not hispanic or latino +239,2021-08-01,,,female,,not hispanic or latino +239,2021-03-01,,,male,white, +238,,,3,,white,not hispanic or latino +238,,ambulatory,28,female,white, +238,,ambulatory,27,,white, 238,,ambulatory,21,,, -238,,ambulatory,17,female,,[Not Hispanic or Latino] -238,2021-04-01,ambulatory,,male,[White], +238,,ambulatory,17,female,,not hispanic or latino +238,2021-04-01,ambulatory,,male,white, 237,,,72,female,, -237,,,72,female,[White], -237,,,58,female,,[Not Hispanic or Latino] -237,2021-03-01,,,female,[White],[Not Hispanic or Latino] -236,,,58,male,[White], -236,,,57,female,,[Not Hispanic or Latino] -236,,,54,female,[White], -236,,,53,,[White],[Not Hispanic or Latino] -236,,,41,,[White], -236,,,40,,[White],[Not Hispanic or Latino] -236,,ambulatory,42,,[White], +237,,,72,female,white, +237,,,58,female,,not hispanic or latino +237,2021-03-01,,,female,white,not hispanic or latino +236,,,58,male,white, +236,,,57,female,,not hispanic or latino +236,,,54,female,white, +236,,,53,,white,not hispanic or latino +236,,,41,,white, +236,,,40,,white,not hispanic or latino +236,,ambulatory,42,,white, 236,,ambulatory,41,female,, -236,,ambulatory,35,,,[Not Hispanic or Latino] +236,,ambulatory,35,,,not hispanic or latino 236,2022-08-01,ambulatory,,female,, 236,2021-06-01,ambulatory,,female,, 236,2021-01-01,,,female,, 236,2016-08-01,,,male,, 235,,,59,female,, -235,,,36,,,[Not Hispanic or Latino] -235,,ambulatory,75,male,[White],[Not Hispanic or Latino] -235,,ambulatory,66,,[White],[Not Hispanic or Latino] -235,,ambulatory,53,,[White], -235,,ambulatory,1,male,,[Not Hispanic or Latino] -235,2022-10-01,,,female,[White], +235,,,36,,,not hispanic or latino +235,,ambulatory,75,male,white,not hispanic or latino +235,,ambulatory,66,,white,not hispanic or latino +235,,ambulatory,53,,white, +235,,ambulatory,1,male,,not hispanic or latino +235,2022-10-01,,,female,white, 235,2021-12-01,,,female,, -235,2021-04-01,,,male,[White],[Not Hispanic or Latino] +235,2021-04-01,,,male,white,not hispanic or latino 235,2018-09-01,ambulatory,,female,, -234,,,57,female,[White], -234,,,47,female,,[Not Hispanic or Latino] +234,,,57,female,white, +234,,,47,female,,not hispanic or latino 234,,,35,female,, -234,,ambulatory,43,,[White],[Not Hispanic or Latino] +234,,ambulatory,43,,white,not hispanic or latino 234,2022-12-01,,,female,, 234,2022-07-01,ambulatory,,female,, -234,2019-09-01,ambulatory,,,[White],[Not Hispanic or Latino] -233,,,22,,[White],[Not Hispanic or Latino] -233,,ambulatory,42,female,,[Not Hispanic or Latino] +234,2019-09-01,ambulatory,,,white,not hispanic or latino +233,,,22,,white,not hispanic or latino +233,,ambulatory,42,female,,not hispanic or latino 233,,ambulatory,23,,, 233,2023-01-01,,,female,, 233,2021-09-01,,,female,, 233,2021-06-01,,,male,, -233,2021-05-01,,,male,[White],[Not Hispanic or Latino] +233,2021-05-01,,,male,white,not hispanic or latino 232,,ambulatory,79,,, -232,,ambulatory,31,,[White],[Not Hispanic or Latino] -232,2022-10-01,ambulatory,,female,,[Not Hispanic or Latino] +232,,ambulatory,31,,white,not hispanic or latino +232,2022-10-01,ambulatory,,female,,not hispanic or latino 232,2022-09-01,,,female,, -232,2021-10-01,ambulatory,,female,,[Not Hispanic or Latino] -232,2021-08-01,ambulatory,,female,,[Not Hispanic or Latino] -232,2021-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -231,,,58,male,[White],[Not Hispanic or Latino] -231,,,58,female,[White], -231,,,37,,,[Not Hispanic or Latino] -231,,,28,female,[White],[Not Hispanic or Latino] +232,2021-10-01,ambulatory,,female,,not hispanic or latino +232,2021-08-01,ambulatory,,female,,not hispanic or latino +232,2021-03-01,ambulatory,,female,white,not hispanic or latino +231,,,58,male,white,not hispanic or latino +231,,,58,female,white, +231,,,37,,,not hispanic or latino +231,,,28,female,white,not hispanic or latino 231,,,20,female,, -231,,,17,female,[White], -231,,ambulatory,79,,,[Not Hispanic or Latino] +231,,,17,female,white, +231,,ambulatory,79,,,not hispanic or latino 231,,ambulatory,72,female,, -231,,ambulatory,72,female,[White], -231,,ambulatory,57,female,,[Not Hispanic or Latino] -231,,ambulatory,20,,[White], -231,2022-07-01,,,female,,[Not Hispanic or Latino] +231,,ambulatory,72,female,white, +231,,ambulatory,57,female,,not hispanic or latino +231,,ambulatory,20,,white, +231,2022-07-01,,,female,,not hispanic or latino 231,2021-11-01,,,female,, 231,2018-08-01,,,female,, -230,,,23,,[White],[Not Hispanic or Latino] +230,,,23,,white,not hispanic or latino 230,,ambulatory,80,male,, 230,,ambulatory,59,female,, 230,,ambulatory,58,female,, -230,,ambulatory,45,,,[Not Hispanic or Latino] -230,,ambulatory,39,,,[Not Hispanic or Latino] -230,,ambulatory,27,,[White],[Not Hispanic or Latino] -230,2021-10-01,ambulatory,,female,[White], +230,,ambulatory,45,,,not hispanic or latino +230,,ambulatory,39,,,not hispanic or latino +230,,ambulatory,27,,white,not hispanic or latino +230,2021-10-01,ambulatory,,female,white, 230,2021-07-01,ambulatory,,female,, -230,2021-03-01,,,male,[White],[Not Hispanic or Latino] -229,,,72,female,,[Not Hispanic or Latino] -229,,,72,female,[White],[Not Hispanic or Latino] -229,,,58,female,[White],[Not Hispanic or Latino] -229,,,54,female,[White],[Not Hispanic or Latino] -229,,,21,,[White], -229,,ambulatory,80,male,,[Not Hispanic or Latino] -229,,ambulatory,80,male,[White], -229,,ambulatory,79,,[White], +230,2021-03-01,,,male,white,not hispanic or latino +229,,,72,female,,not hispanic or latino +229,,,72,female,white,not hispanic or latino +229,,,58,female,white,not hispanic or latino +229,,,54,female,white,not hispanic or latino +229,,,21,,white, +229,,ambulatory,80,male,,not hispanic or latino +229,,ambulatory,80,male,white, +229,,ambulatory,79,,white, 229,,ambulatory,31,female,, -229,2021-08-01,,,female,[White], -229,2016-08-01,,,male,,[Not Hispanic or Latino] +229,2021-08-01,,,female,white, +229,2016-08-01,,,male,,not hispanic or latino 228,,,68,male,, -228,,,57,female,[White],[Not Hispanic or Latino] -228,,,1,male,[White], -228,,ambulatory,80,male,[White],[Not Hispanic or Latino] -228,,ambulatory,79,,[White],[Not Hispanic or Latino] -228,,ambulatory,57,female,[White], -228,,ambulatory,47,female,,[Not Hispanic or Latino] -228,,ambulatory,45,,[White], -228,,ambulatory,19,,[White],[Not Hispanic or Latino] -228,2022-08-01,,,female,,[Not Hispanic or Latino] -228,2021-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] -227,,,31,female,[White], -227,,,26,,[White],[Not Hispanic or Latino] -227,,,20,,[White],[Not Hispanic or Latino] -227,,ambulatory,58,female,,[Not Hispanic or Latino] -227,,ambulatory,54,female,[White], -227,,ambulatory,28,female,,[Not Hispanic or Latino] +228,,,57,female,white,not hispanic or latino +228,,,1,male,white, +228,,ambulatory,80,male,white,not hispanic or latino +228,,ambulatory,79,,white,not hispanic or latino +228,,ambulatory,57,female,white, +228,,ambulatory,47,female,,not hispanic or latino +228,,ambulatory,45,,white, +228,,ambulatory,19,,white,not hispanic or latino +228,2022-08-01,,,female,,not hispanic or latino +228,2021-04-01,ambulatory,,male,white,not hispanic or latino +227,,,31,female,white, +227,,,26,,white,not hispanic or latino +227,,,20,,white,not hispanic or latino +227,,ambulatory,58,female,,not hispanic or latino +227,,ambulatory,54,female,white, +227,,ambulatory,28,female,,not hispanic or latino 226,,,78,male,, -226,,,69,male,[White], -226,,,69,male,[White],[Not Hispanic or Latino] -226,,,68,male,,[Not Hispanic or Latino] +226,,,69,male,white, +226,,,69,male,white,not hispanic or latino +226,,,68,male,,not hispanic or latino 226,,,9,,, -226,,ambulatory,58,male,[White], -226,,ambulatory,23,,,[Not Hispanic or Latino] -226,,ambulatory,22,,[White], -226,,ambulatory,3,,[White],[Not Hispanic or Latino] +226,,ambulatory,58,male,white, +226,,ambulatory,23,,,not hispanic or latino +226,,ambulatory,22,,white, +226,,ambulatory,3,,white,not hispanic or latino 226,2023-02-01,,,female,, -226,2021-01-01,,,female,,[Not Hispanic or Latino] -226,2018-09-01,,,female,,[Not Hispanic or Latino] -226,2018-09-01,,,female,[White], -225,,,78,male,,[Not Hispanic or Latino] +226,2021-01-01,,,female,,not hispanic or latino +226,2018-09-01,,,female,,not hispanic or latino +226,2018-09-01,,,female,white, +225,,,78,male,,not hispanic or latino 225,,,57,male,, -225,,,47,female,[White],[Not Hispanic or Latino] -225,,,17,female,[White],[Not Hispanic or Latino] +225,,,47,female,white,not hispanic or latino +225,,,17,female,white,not hispanic or latino 225,2022-12-01,ambulatory,,female,, 225,2021-09-01,ambulatory,,female,, 224,,,29,female,, -224,,ambulatory,,,[Native Hawaiian or Other Pacific Islander],[Not Hispanic or Latino] -224,,ambulatory,36,,[White], -224,2022-05-01,,,female,,[Not Hispanic or Latino] -224,2021-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -224,2021-03-01,ambulatory,,male,[White], +224,,ambulatory,,,native hawaiian or other pacific islander,not hispanic or latino +224,,ambulatory,36,,white, +224,2022-05-01,,,female,,not hispanic or latino +224,2021-05-01,ambulatory,,male,white,not hispanic or latino +224,2021-03-01,ambulatory,,male,white, 224,2019-04-01,,,female,, -223,,,78,male,[White], +223,,,78,male,white, 223,,,73,female,, -223,,,73,female,[White], +223,,,73,female,white, 223,,,48,female,, 223,,,38,,, 223,,,36,female,, 223,,,32,female,, 223,,,12,,, -223,,ambulatory,72,female,,[Not Hispanic or Latino] -223,,ambulatory,72,female,[White],[Not Hispanic or Latino] -223,,ambulatory,57,female,[White],[Not Hispanic or Latino] +223,,ambulatory,72,female,,not hispanic or latino +223,,ambulatory,72,female,white,not hispanic or latino +223,,ambulatory,57,female,white,not hispanic or latino 223,2023-01-01,ambulatory,,female,, -223,2022-10-01,ambulatory,,female,[White], -223,2022-08-01,,,female,[White], +223,2022-10-01,ambulatory,,female,white, +223,2022-08-01,,,female,white, 223,2021-06-01,ambulatory,,male,, -222,,,78,male,[White],[Not Hispanic or Latino] -222,,,46,female,,[Not Hispanic or Latino] -222,,ambulatory,54,female,[White],[Not Hispanic or Latino] -222,,ambulatory,23,,[White], -222,,ambulatory,17,female,[White], +222,,,78,male,white,not hispanic or latino +222,,,46,female,,not hispanic or latino +222,,ambulatory,54,female,white,not hispanic or latino +222,,ambulatory,23,,white, +222,,ambulatory,17,female,white, 222,2022-09-01,ambulatory,,female,, -222,2021-08-01,ambulatory,,female,[White], -222,2021-07-01,,,female,[White], +222,2021-08-01,ambulatory,,female,white, +222,2021-07-01,,,female,white, 221,,,52,,, 221,,ambulatory,68,male,, -221,,ambulatory,58,male,[White],[Not Hispanic or Latino] -221,,ambulatory,58,female,[White], -221,,ambulatory,53,,[White],[Not Hispanic or Latino] -221,,ambulatory,26,,,[Not Hispanic or Latino] -221,,ambulatory,26,,[White], -221,2022-10-01,,,female,[White],[Not Hispanic or Latino] +221,,ambulatory,58,male,white,not hispanic or latino +221,,ambulatory,58,female,white, +221,,ambulatory,53,,white,not hispanic or latino +221,,ambulatory,26,,,not hispanic or latino +221,,ambulatory,26,,white, +221,2022-10-01,,,female,white,not hispanic or latino 221,2022-05-01,ambulatory,,female,, 221,2021-11-01,ambulatory,,female,, -221,2018-08-01,,,female,,[Not Hispanic or Latino] -220,,,57,male,,[Not Hispanic or Latino] -220,,,18,female,[White], -220,,,1,male,[White],[Not Hispanic or Latino] -220,,ambulatory,22,,[White],[Not Hispanic or Latino] -220,2022-08-01,ambulatory,,female,,[Not Hispanic or Latino] -220,2022-07-01,ambulatory,,female,,[Not Hispanic or Latino] -220,2021-06-01,,,male,,[Not Hispanic or Latino] -219,,,68,male,[White], -219,,,68,male,[White],[Not Hispanic or Latino] +221,2018-08-01,,,female,,not hispanic or latino +220,,,57,male,,not hispanic or latino +220,,,18,female,white, +220,,,1,male,white,not hispanic or latino +220,,ambulatory,22,,white,not hispanic or latino +220,2022-08-01,ambulatory,,female,,not hispanic or latino +220,2022-07-01,ambulatory,,female,,not hispanic or latino +220,2021-06-01,,,male,,not hispanic or latino +219,,,68,male,white, +219,,,68,male,white,not hispanic or latino 219,,,50,female,, -219,,,41,female,,[Not Hispanic or Latino] -219,,ambulatory,68,male,,[Not Hispanic or Latino] -219,,ambulatory,58,female,[White],[Not Hispanic or Latino] -219,,ambulatory,47,female,[White],[Not Hispanic or Latino] -219,,ambulatory,46,female,,[Not Hispanic or Latino] -219,,ambulatory,40,,[White],[Not Hispanic or Latino] -219,,ambulatory,21,,,[Not Hispanic or Latino] +219,,,41,female,,not hispanic or latino +219,,ambulatory,68,male,,not hispanic or latino +219,,ambulatory,58,female,white,not hispanic or latino +219,,ambulatory,47,female,white,not hispanic or latino +219,,ambulatory,46,female,,not hispanic or latino +219,,ambulatory,40,,white,not hispanic or latino +219,,ambulatory,21,,,not hispanic or latino 219,,ambulatory,20,female,, -219,2022-09-01,,,female,,[Not Hispanic or Latino] -219,2022-07-01,,,female,[White], -219,2018-09-01,ambulatory,,female,,[Not Hispanic or Latino] -219,2018-09-01,ambulatory,,female,[White], +219,2022-09-01,,,female,,not hispanic or latino +219,2022-07-01,,,female,white, +219,2018-09-01,ambulatory,,female,,not hispanic or latino +219,2018-09-01,ambulatory,,female,white, 219,2018-08-01,ambulatory,,female,, -218,,,37,,[White], -218,,,35,,[White],[Not Hispanic or Latino] -218,,ambulatory,28,female,[White],[Not Hispanic or Latino] +218,,,37,,white, +218,,,35,,white,not hispanic or latino +218,,ambulatory,28,female,white,not hispanic or latino 218,2021-01-01,ambulatory,,female,, 217,,,33,male,, -217,,,32,female,[White], +217,,,32,female,white, 217,,,1,female,, -217,,ambulatory,41,,[White], -217,,ambulatory,17,female,[White],[Not Hispanic or Latino] -217,2023-01-01,,,female,,[Not Hispanic or Latino] -217,2022-05-01,,,female,[White], -217,2021-09-01,,,female,,[Not Hispanic or Latino] -217,2021-07-01,,,female,,[Not Hispanic or Latino] -217,2021-01-01,,,female,[White], +217,,ambulatory,41,,white, +217,,ambulatory,17,female,white,not hispanic or latino +217,2023-01-01,,,female,,not hispanic or latino +217,2022-05-01,,,female,white, +217,2021-09-01,,,female,,not hispanic or latino +217,2021-07-01,,,female,,not hispanic or latino +217,2021-01-01,,,female,white, 217,2019-01-01,,,female,, -216,,,59,female,,[Not Hispanic or Latino] -216,,,45,,[White],[Not Hispanic or Latino] -216,,,29,female,[White], -216,,,18,female,[White],[Not Hispanic or Latino] +216,,,59,female,,not hispanic or latino +216,,,45,,white,not hispanic or latino +216,,,29,female,white, +216,,,18,female,white,not hispanic or latino 216,2023-03-01,,,female,, 216,2022-11-01,,,female,, -216,2022-08-01,ambulatory,,female,[White], -216,2021-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] -215,,,73,female,,[Not Hispanic or Latino] -215,,,73,female,[White],[Not Hispanic or Latino] +216,2022-08-01,ambulatory,,female,white, +216,2021-03-01,ambulatory,,male,white,not hispanic or latino +215,,,73,female,,not hispanic or latino +215,,,73,female,white,not hispanic or latino 215,,,24,,, 215,,,19,female,, 215,,ambulatory,50,female,, -215,,ambulatory,37,,,[Not Hispanic or Latino] -215,,ambulatory,23,,[White],[Not Hispanic or Latino] +215,,ambulatory,37,,,not hispanic or latino +215,,ambulatory,23,,white,not hispanic or latino 215,,ambulatory,12,,, -215,,ambulatory,1,male,[White], -215,2022-12-01,,,female,,[Not Hispanic or Latino] -215,2021-10-01,,,female,[White],[Not Hispanic or Latino] -214,,,20,female,,[Not Hispanic or Latino] -214,,ambulatory,31,female,[White], +215,,ambulatory,1,male,white, +215,2022-12-01,,,female,,not hispanic or latino +215,2021-10-01,,,female,white,not hispanic or latino +214,,,20,female,,not hispanic or latino +214,,ambulatory,31,female,white, 214,2023-02-01,ambulatory,,female,, 214,2022-02-01,,,female,, 214,2022-01-01,,,female,, -214,2021-12-01,,,female,,[Not Hispanic or Latino] +214,2021-12-01,,,female,,not hispanic or latino 214,2021-08-01,,,male,, 213,,,70,female,, -213,,,70,female,[White], +213,,,70,female,white, 213,,,49,female,, -213,,,42,,[White],[Not Hispanic or Latino] -213,,ambulatory,68,male,[White], -213,,ambulatory,68,male,[White],[Not Hispanic or Latino] -213,,ambulatory,36,,,[Not Hispanic or Latino] +213,,,42,,white,not hispanic or latino +213,,ambulatory,68,male,white, +213,,ambulatory,68,male,white,not hispanic or latino +213,,ambulatory,36,,,not hispanic or latino 213,,ambulatory,35,female,, 213,,ambulatory,1,female,, 213,2022-11-01,ambulatory,,female,, 213,2022-06-01,,,female,, -213,2021-11-01,,,female,,[Not Hispanic or Latino] -213,2021-06-01,,,female,,[Not Hispanic or Latino] -213,2021-06-01,,,female,[White], +213,2021-11-01,,,female,,not hispanic or latino +213,2021-06-01,,,female,,not hispanic or latino +213,2021-06-01,,,female,white, 213,2019-05-01,,,female,, -213,2018-08-01,,,female,[White], +213,2018-08-01,,,female,white, 212,,,67,male,, -212,,,67,male,,[Not Hispanic or Latino] -212,,,46,female,[White],[Not Hispanic or Latino] +212,,,67,male,,not hispanic or latino +212,,,46,female,white,not hispanic or latino 212,,,27,female,, -212,,,21,,[White],[Not Hispanic or Latino] +212,,,21,,white,not hispanic or latino 212,,home health,,,, 212,,ambulatory,57,male,, -212,,ambulatory,21,,[White], -212,,ambulatory,18,female,[White], -212,2023-01-01,,,female,[White], +212,,ambulatory,21,,white, +212,,ambulatory,18,female,white, +212,2023-01-01,,,female,white, 212,2022-04-01,,,female,, 212,2019-01-01,ambulatory,,female,, -211,,,70,female,,[Not Hispanic or Latino] -211,,,70,female,[White],[Not Hispanic or Latino] -211,,,52,,,[Not Hispanic or Latino] +211,,,70,female,,not hispanic or latino +211,,,70,female,white,not hispanic or latino +211,,,52,,,not hispanic or latino 211,,,25,female,, 211,,ambulatory,73,female,, -211,,ambulatory,73,female,[White], -211,,ambulatory,59,female,,[Not Hispanic or Latino] +211,,ambulatory,73,female,white, +211,,ambulatory,59,female,,not hispanic or latino 211,,ambulatory,48,female,, -211,,ambulatory,20,,[White],[Not Hispanic or Latino] -211,2021-06-01,ambulatory,,male,,[Not Hispanic or Latino] -211,2021-01-01,ambulatory,,female,,[Not Hispanic or Latino] +211,,ambulatory,20,,white,not hispanic or latino +211,2021-06-01,ambulatory,,male,,not hispanic or latino +211,2021-01-01,ambulatory,,female,,not hispanic or latino 210,,,72,male,, 210,,,53,female,, -210,2022-12-01,,,female,[White], -210,2022-09-01,ambulatory,,female,,[Not Hispanic or Latino] -210,2021-12-01,,,female,[White], -210,2021-11-01,,,female,[White], -210,2021-07-01,ambulatory,,female,[White], -210,2021-06-01,,,male,[White], +210,2022-12-01,,,female,white, +210,2022-09-01,ambulatory,,female,,not hispanic or latino +210,2021-12-01,,,female,white, +210,2021-11-01,,,female,white, +210,2021-07-01,ambulatory,,female,white, +210,2021-06-01,,,male,white, 210,2020-03-01,,,female,, 209,,,65,female,, -209,,,59,female,[White], +209,,,59,female,white, 209,,,34,female,, -209,,ambulatory,46,female,[White],[Not Hispanic or Latino] +209,,ambulatory,46,female,white,not hispanic or latino 209,,ambulatory,38,,, -209,2022-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -209,2022-09-01,,,female,[White], -209,2022-08-01,,,female,[White],[Not Hispanic or Latino] +209,2022-10-01,ambulatory,,female,white,not hispanic or latino +209,2022-09-01,,,female,white, +209,2022-08-01,,,female,white,not hispanic or latino 209,2021-12-01,ambulatory,,female,, -209,2021-09-01,ambulatory,,female,,[Not Hispanic or Latino] -209,2019-04-01,,,female,,[Not Hispanic or Latino] +209,2021-09-01,ambulatory,,female,,not hispanic or latino +209,2019-04-01,,,female,,not hispanic or latino 209,2019-03-01,,,female,, -209,2018-09-01,,,female,[White],[Not Hispanic or Latino] -209,2018-08-01,ambulatory,,female,,[Not Hispanic or Latino] +209,2018-09-01,,,female,white,not hispanic or latino +209,2018-08-01,ambulatory,,female,,not hispanic or latino 209,2018-05-01,,,female,, -209,2016-08-01,,,male,[White], +209,2016-08-01,,,male,white, 208,,,26,female,, -208,,,24,,[White], +208,,,24,,white, 208,,,21,female,, -208,,ambulatory,18,female,[White],[Not Hispanic or Latino] -208,2023-02-01,,,female,,[Not Hispanic or Latino] -208,2023-01-01,ambulatory,,female,,[Not Hispanic or Latino] -208,2022-07-01,ambulatory,,female,[White], -208,2021-08-01,,,female,[White],[Not Hispanic or Latino] -208,2021-06-01,ambulatory,,female,[White], +208,,ambulatory,18,female,white,not hispanic or latino +208,2023-02-01,,,female,,not hispanic or latino +208,2023-01-01,ambulatory,,female,,not hispanic or latino +208,2022-07-01,ambulatory,,female,white, +208,2021-08-01,,,female,white,not hispanic or latino +208,2021-06-01,ambulatory,,female,white, 208,2021-02-01,,,male,, 208,2019-12-01,,,female,, 208,2019-04-01,ambulatory,,female,, -208,2019-01-01,,,female,,[Not Hispanic or Latino] +208,2019-01-01,,,female,,not hispanic or latino 208,2017-03-01,,,male,, 207,,,79,male,, -207,,,79,male,,[Not Hispanic or Latino] +207,,,79,male,,not hispanic or latino 207,,,74,male,, 207,,,59,male,, -207,,,9,,[White], +207,,,9,,white, 207,,,0,male,, 207,,,0,female,, -207,,ambulatory,57,male,,[Not Hispanic or Latino] +207,,ambulatory,57,male,,not hispanic or latino 207,,ambulatory,29,female,, -207,,ambulatory,1,male,[White],[Not Hispanic or Latino] -207,2022-12-01,ambulatory,,female,,[Not Hispanic or Latino] -207,2021-06-01,ambulatory,,female,,[Not Hispanic or Latino] -207,2021-01-01,,,female,[White],[Not Hispanic or Latino] -206,,,72,male,,[Not Hispanic or Latino] -206,,,50,female,,[Not Hispanic or Latino] +207,,ambulatory,1,male,white,not hispanic or latino +207,2022-12-01,ambulatory,,female,,not hispanic or latino +207,2021-06-01,ambulatory,,female,,not hispanic or latino +207,2021-01-01,,,female,white,not hispanic or latino +206,,,72,male,,not hispanic or latino +206,,,50,female,,not hispanic or latino 206,,,40,female,, -206,,,19,female,,[Not Hispanic or Latino] +206,,,19,female,,not hispanic or latino 206,,ambulatory,49,female,, -206,,ambulatory,45,,[White],[Not Hispanic or Latino] -206,,ambulatory,41,female,,[Not Hispanic or Latino] +206,,ambulatory,45,,white,not hispanic or latino +206,,ambulatory,41,female,,not hispanic or latino 206,,ambulatory,9,,, 206,,ambulatory,0,female,, -206,2022-05-01,ambulatory,,female,,[Not Hispanic or Latino] +206,2022-05-01,ambulatory,,female,,not hispanic or latino 206,2020-07-01,,,female,, -206,2019-04-01,,,female,[White], +206,2019-04-01,,,female,white, 206,2018-05-01,,,male,, 206,2017-06-01,,,female,, -205,,,79,male,[White], -205,,,79,male,[White],[Not Hispanic or Latino] -205,,,59,male,,[Not Hispanic or Latino] -205,,,39,,[White], -205,,,35,female,[White], -205,,,33,male,,[Not Hispanic or Latino] -205,,,33,male,[White], +205,,,79,male,white, +205,,,79,male,white,not hispanic or latino +205,,,59,male,,not hispanic or latino +205,,,39,,white, +205,,,35,female,white, +205,,,33,male,,not hispanic or latino +205,,,33,male,white, 205,,inpatient encounter,,male,, 205,,ambulatory,70,female,, -205,,ambulatory,70,female,[White], -205,,ambulatory,59,female,[White], +205,,ambulatory,70,female,white, +205,,ambulatory,59,female,white, 205,,ambulatory,52,,, -205,,ambulatory,26,,[White],[Not Hispanic or Latino] +205,,ambulatory,26,,white,not hispanic or latino 205,,ambulatory,19,female,, 205,2022-06-01,ambulatory,,female,, -205,2021-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -205,2021-07-01,ambulatory,,female,,[Not Hispanic or Latino] +205,2021-10-01,ambulatory,,female,white,not hispanic or latino +205,2021-07-01,ambulatory,,female,,not hispanic or latino 205,2021-02-01,,,female,, -205,2018-08-01,,,female,[White],[Not Hispanic or Latino] +205,2018-08-01,,,female,white,not hispanic or latino 205,2018-06-01,,,female,, 204,,,73,male,, -204,,,67,male,[White], -204,,,67,male,[White],[Not Hispanic or Latino] -204,,,65,female,[White], +204,,,67,male,white, +204,,,67,male,white,not hispanic or latino +204,,,65,female,white, 204,,,47,male,, -204,,,38,,,[Not Hispanic or Latino] -204,,,27,female,,[Not Hispanic or Latino] -204,,home health,,,,[Not Hispanic or Latino] +204,,,38,,,not hispanic or latino +204,,,27,female,,not hispanic or latino +204,,home health,,,,not hispanic or latino 204,,ambulatory,0,male,, -204,2023-02-01,,,female,[White], -204,2022-07-01,,,female,[White],[Not Hispanic or Latino] +204,2023-02-01,,,female,white, +204,2022-07-01,,,female,white,not hispanic or latino 204,2020-03-01,ambulatory,,female,, 204,2019-06-01,,,female,, 204,2018-05-01,ambulatory,,female,, 204,2018-03-01,,,male,, -204,2016-08-01,,,male,[White],[Not Hispanic or Latino] +204,2016-08-01,,,male,white,not hispanic or latino 204,2016-08-01,ambulatory,,male,, 203,,,30,female,, -203,,ambulatory,73,female,,[Not Hispanic or Latino] -203,,ambulatory,73,female,[White],[Not Hispanic or Latino] -203,,ambulatory,70,female,,[Not Hispanic or Latino] -203,,ambulatory,70,female,[White],[Not Hispanic or Latino] -203,,ambulatory,37,,[White], +203,,ambulatory,73,female,,not hispanic or latino +203,,ambulatory,73,female,white,not hispanic or latino +203,,ambulatory,70,female,,not hispanic or latino +203,,ambulatory,70,female,white,not hispanic or latino +203,,ambulatory,37,,white, 203,,ambulatory,32,female,, -203,,ambulatory,20,female,,[Not Hispanic or Latino] +203,,ambulatory,20,female,,not hispanic or latino 203,2023-03-01,ambulatory,,female,, 203,2022-02-01,ambulatory,,female,, -203,2021-11-01,ambulatory,,female,,[Not Hispanic or Latino] -203,2021-09-01,,,female,[White], -203,2021-08-01,,,male,,[Not Hispanic or Latino] -203,2021-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -203,2019-01-01,,,female,[White], -203,2019-01-01,ambulatory,,female,,[Not Hispanic or Latino] -203,2018-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] +203,2021-11-01,ambulatory,,female,,not hispanic or latino +203,2021-09-01,,,female,white, +203,2021-08-01,,,male,,not hispanic or latino +203,2021-08-01,ambulatory,,female,white,not hispanic or latino +203,2019-01-01,,,female,white, +203,2019-01-01,ambulatory,,female,,not hispanic or latino +203,2018-09-01,ambulatory,,female,white,not hispanic or latino 203,2018-01-01,,,male,, -202,,,33,male,[White],[Not Hispanic or Latino] -202,,,27,female,[White], -202,,,12,,,[Not Hispanic or Latino] +202,,,33,male,white,not hispanic or latino +202,,,27,female,white, +202,,,12,,,not hispanic or latino 202,,ambulatory,69,male,, 202,,ambulatory,67,male,, -202,,ambulatory,67,male,,[Not Hispanic or Latino] -202,,ambulatory,50,female,,[Not Hispanic or Latino] +202,,ambulatory,67,male,,not hispanic or latino +202,,ambulatory,50,female,,not hispanic or latino 202,,ambulatory,33,male,, -202,2023-01-01,ambulatory,,female,[White], -202,2022-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -202,2022-06-01,,,female,,[Not Hispanic or Latino] -202,2022-05-01,,,female,[White],[Not Hispanic or Latino] +202,2023-01-01,ambulatory,,female,white, +202,2022-08-01,ambulatory,,female,white,not hispanic or latino +202,2022-06-01,,,female,,not hispanic or latino +202,2022-05-01,,,female,white,not hispanic or latino 202,2022-01-01,ambulatory,,female,, -202,2021-11-01,ambulatory,,female,[White], -202,2018-08-01,ambulatory,,female,[White], -201,,,53,female,,[Not Hispanic or Latino] -201,,,25,female,[White], -201,,,0,male,,[Not Hispanic or Latino] +202,2021-11-01,ambulatory,,female,white, +202,2018-08-01,ambulatory,,female,white, +201,,,53,female,,not hispanic or latino +201,,,25,female,white, +201,,,0,male,,not hispanic or latino 201,,ambulatory,36,female,, 201,,ambulatory,27,female,, -201,2022-12-01,ambulatory,,female,[White], -201,2022-09-01,ambulatory,,female,[White], -201,2021-06-01,ambulatory,,male,[White], -201,2021-01-01,ambulatory,,female,[White], +201,2022-12-01,ambulatory,,female,white, +201,2022-09-01,ambulatory,,female,white, +201,2021-06-01,ambulatory,,male,white, +201,2021-01-01,ambulatory,,female,white, 201,2020-05-01,,,female,, 201,2019-05-01,ambulatory,,female,, 201,2018-06-01,,,male,, 201,2017-12-01,,,female,, 200,,,74,female,, -200,,,74,female,[White], -200,,,57,male,[White], -200,,,41,,[White],[Not Hispanic or Latino] -200,,,29,female,,[Not Hispanic or Latino] -200,,ambulatory,69,male,,[Not Hispanic or Latino] -200,,ambulatory,42,,[White],[Not Hispanic or Latino] -200,,ambulatory,35,,[White],[Not Hispanic or Latino] -200,2022-05-01,ambulatory,,female,[White], +200,,,74,female,white, +200,,,57,male,white, +200,,,41,,white,not hispanic or latino +200,,,29,female,,not hispanic or latino +200,,ambulatory,69,male,,not hispanic or latino +200,,ambulatory,42,,white,not hispanic or latino +200,,ambulatory,35,,white,not hispanic or latino +200,2022-05-01,ambulatory,,female,white, 200,2022-04-01,ambulatory,,female,, -200,2022-01-01,,,female,,[Not Hispanic or Latino] +200,2022-01-01,,,female,,not hispanic or latino 200,2020-06-01,,,female,, 200,2019-12-01,ambulatory,,female,, -199,,,72,male,[White], -199,,,21,female,,[Not Hispanic or Latino] +199,,,72,male,white, +199,,,21,female,,not hispanic or latino 199,,,10,,, 199,,,4,,, 199,,ambulatory,47,male,, -199,,ambulatory,32,female,[White], -199,,ambulatory,29,female,[White], +199,,ambulatory,32,female,white, +199,,ambulatory,29,female,white, 199,2021-11-01,,,male,, 199,2021-08-01,ambulatory,,male,, -199,2021-07-01,,,female,[White],[Not Hispanic or Latino] -199,2021-06-01,,,male,[White],[Not Hispanic or Latino] +199,2021-07-01,,,female,white,not hispanic or latino +199,2021-06-01,,,male,white,not hispanic or latino 199,2021-02-01,ambulatory,,female,, 199,2020-01-01,,,female,, 199,2019-07-01,,,female,, 199,2017-03-01,ambulatory,,male,, -198,,,59,female,[White],[Not Hispanic or Latino] -198,,,57,male,[White],[Not Hispanic or Latino] -198,,,48,female,,[Not Hispanic or Latino] +198,,,59,female,white,not hispanic or latino +198,,,57,male,white,not hispanic or latino +198,,,48,female,,not hispanic or latino 198,,,44,male,, 198,,,39,female,, -198,,,36,female,[White], +198,,,36,female,white, 198,,,13,female,, -198,,,13,female,,[Not Hispanic or Latino] +198,,,13,female,,not hispanic or latino 198,,ambulatory,72,male,, 198,,ambulatory,24,,, -198,,ambulatory,0,male,,[Not Hispanic or Latino] -198,2023-03-01,,,female,,[Not Hispanic or Latino] -198,2022-11-01,,,female,,[Not Hispanic or Latino] -198,2019-05-01,,,female,[White], -198,2019-01-01,ambulatory,,female,[White], +198,,ambulatory,0,male,,not hispanic or latino +198,2023-03-01,,,female,,not hispanic or latino +198,2022-11-01,,,female,,not hispanic or latino +198,2019-05-01,,,female,white, +198,2019-01-01,ambulatory,,female,white, 198,2017-07-01,,,female,, 198,2017-05-01,,,male,, 198,2016-06-01,,,male,, -197,,,74,male,,[Not Hispanic or Latino] -197,,,73,male,,[Not Hispanic or Latino] -197,,,72,male,[White],[Not Hispanic or Latino] -197,,,65,female,,[Not Hispanic or Latino] -197,,,47,male,,[Not Hispanic or Latino] -197,,,1,female,[White], +197,,,74,male,,not hispanic or latino +197,,,73,male,,not hispanic or latino +197,,,72,male,white,not hispanic or latino +197,,,65,female,,not hispanic or latino +197,,,47,male,,not hispanic or latino +197,,,1,female,white, 197,,ambulatory,53,female,, -197,2023-02-01,ambulatory,,female,,[Not Hispanic or Latino] -197,2023-01-01,,,female,[White],[Not Hispanic or Latino] -197,2022-09-01,,,female,[White],[Not Hispanic or Latino] -197,2022-02-01,,,female,,[Not Hispanic or Latino] +197,2023-02-01,ambulatory,,female,,not hispanic or latino +197,2023-01-01,,,female,white,not hispanic or latino +197,2022-09-01,,,female,white,not hispanic or latino +197,2022-02-01,,,female,,not hispanic or latino 197,2021-01-01,,,male,, 197,2020-08-01,,,female,, -197,2019-05-01,,,female,,[Not Hispanic or Latino] -197,2018-03-01,,,male,,[Not Hispanic or Latino] +197,2019-05-01,,,female,,not hispanic or latino +197,2018-03-01,,,male,,not hispanic or latino 197,2018-03-01,,,female,, -197,2017-03-01,,,male,,[Not Hispanic or Latino] -197,2016-08-01,ambulatory,,male,,[Not Hispanic or Latino] +197,2017-03-01,,,male,,not hispanic or latino +197,2016-08-01,ambulatory,,male,,not hispanic or latino 197,2016-07-01,,,male,, -196,,,59,male,[White], -196,,,36,,[White],[Not Hispanic or Latino] -196,,,30,female,[White], -196,,,25,female,,[Not Hispanic or Latino] +196,,,59,male,white, +196,,,36,,white,not hispanic or latino +196,,,30,female,white, +196,,,25,female,,not hispanic or latino 196,,ambulatory,34,female,, 196,,ambulatory,25,female,, -196,,ambulatory,19,female,,[Not Hispanic or Latino] -196,2022-06-01,ambulatory,,female,,[Not Hispanic or Latino] +196,,ambulatory,19,female,,not hispanic or latino +196,2022-06-01,ambulatory,,female,,not hispanic or latino 196,2021-12-01,,,male,, 196,2020-11-01,,,female,, 196,2020-04-01,,,female,, -196,2020-03-01,,,female,,[Not Hispanic or Latino] +196,2020-03-01,,,female,,not hispanic or latino 196,2019-06-01,ambulatory,,female,, 196,2018-07-01,,,female,, 196,2018-06-01,ambulatory,,female,, -196,2018-05-01,,,female,,[Not Hispanic or Latino] +196,2018-05-01,,,female,,not hispanic or latino 196,2017-03-01,,,female,, -195,,,59,male,[White],[Not Hispanic or Latino] -195,,,34,female,[White], -195,,,31,female,,[Not Hispanic or Latino] -195,,,24,,,[Not Hispanic or Latino] -195,,ambulatory,52,,,[Not Hispanic or Latino] -195,,ambulatory,21,,[White],[Not Hispanic or Latino] -195,2022-11-01,ambulatory,,female,,[Not Hispanic or Latino] -195,2022-04-01,,,female,,[Not Hispanic or Latino] +195,,,59,male,white,not hispanic or latino +195,,,34,female,white, +195,,,31,female,,not hispanic or latino +195,,,24,,,not hispanic or latino +195,,ambulatory,52,,,not hispanic or latino +195,,ambulatory,21,,white,not hispanic or latino +195,2022-11-01,ambulatory,,female,,not hispanic or latino +195,2022-04-01,,,female,,not hispanic or latino 195,2021-09-01,,,male,, -195,2021-09-01,ambulatory,,female,[White], +195,2021-09-01,ambulatory,,female,white, 195,2019-03-01,ambulatory,,female,, -195,2018-01-01,,,male,,[Not Hispanic or Latino] +195,2018-01-01,,,male,,not hispanic or latino 195,2017-08-01,,,male,, -194,,,48,female,[White], -194,,,27,female,[White],[Not Hispanic or Latino] -194,,,26,female,,[Not Hispanic or Latino] -194,,,20,female,[White], +194,,,48,female,white, +194,,,27,female,white,not hispanic or latino +194,,,26,female,,not hispanic or latino +194,,,20,female,white, 194,,,16,male,, 194,,,7,,, -194,,inpatient encounter,,male,,[Not Hispanic or Latino] -194,,ambulatory,72,male,,[Not Hispanic or Latino] -194,,ambulatory,67,male,[White], -194,,ambulatory,67,male,[White],[Not Hispanic or Latino] -194,,ambulatory,59,female,[White],[Not Hispanic or Latino] -194,,ambulatory,12,,,[Not Hispanic or Latino] -194,,ambulatory,1,female,[White], -194,2023-03-01,,,female,[White], -194,2022-12-01,,,female,[White],[Not Hispanic or Latino] -194,2022-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] +194,,inpatient encounter,,male,,not hispanic or latino +194,,ambulatory,72,male,,not hispanic or latino +194,,ambulatory,67,male,white, +194,,ambulatory,67,male,white,not hispanic or latino +194,,ambulatory,59,female,white,not hispanic or latino +194,,ambulatory,12,,,not hispanic or latino +194,,ambulatory,1,female,white, +194,2023-03-01,,,female,white, +194,2022-12-01,,,female,white,not hispanic or latino +194,2022-07-01,ambulatory,,female,white,not hispanic or latino 194,2022-03-01,,,female,, -194,2022-02-01,,,female,[White], -194,2021-08-01,,,male,[White], -194,2021-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] -194,2020-07-01,,,female,,[Not Hispanic or Latino] +194,2022-02-01,,,female,white, +194,2021-08-01,,,male,white, +194,2021-01-01,ambulatory,,female,white,not hispanic or latino +194,2020-07-01,,,female,,not hispanic or latino 194,2020-07-01,ambulatory,,female,, -194,2019-04-01,ambulatory,,female,,[Not Hispanic or Latino] +194,2019-04-01,ambulatory,,female,,not hispanic or latino 194,2019-02-01,,,female,, -194,2019-01-01,,,female,[White],[Not Hispanic or Latino] +194,2019-01-01,,,female,white,not hispanic or latino 194,2018-12-01,,,female,, -194,2018-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -193,,ambulatory,47,male,,[Not Hispanic or Latino] -193,,ambulatory,27,female,,[Not Hispanic or Latino] +194,2018-08-01,ambulatory,,female,white,not hispanic or latino +193,,ambulatory,47,male,,not hispanic or latino +193,,ambulatory,27,female,,not hispanic or latino 193,,ambulatory,21,female,, -193,2022-06-01,,,female,[White], -193,2021-12-01,ambulatory,,female,,[Not Hispanic or Latino] -193,2021-02-01,,,male,,[Not Hispanic or Latino] +193,2022-06-01,,,female,white, +193,2021-12-01,ambulatory,,female,,not hispanic or latino +193,2021-02-01,,,male,,not hispanic or latino 193,2021-02-01,ambulatory,,male,, -193,2019-12-01,,,female,,[Not Hispanic or Latino] -193,2019-12-01,,,female,[White], -193,2018-05-01,,,female,[White], -192,,,74,female,,[Not Hispanic or Latino] -192,,,74,female,[White],[Not Hispanic or Latino] -192,,,65,female,[White],[Not Hispanic or Latino] -192,,,29,female,[White],[Not Hispanic or Latino] -192,2023-02-01,ambulatory,,female,[White], -192,2022-01-01,,,female,[White], -192,2021-11-01,,,female,[White],[Not Hispanic or Latino] +193,2019-12-01,,,female,,not hispanic or latino +193,2019-12-01,,,female,white, +193,2018-05-01,,,female,white, +192,,,74,female,,not hispanic or latino +192,,,74,female,white,not hispanic or latino +192,,,65,female,white,not hispanic or latino +192,,,29,female,white,not hispanic or latino +192,2023-02-01,ambulatory,,female,white, +192,2022-01-01,,,female,white, +192,2021-11-01,,,female,white,not hispanic or latino 192,2021-07-01,,,male,, -192,2021-02-01,,,female,,[Not Hispanic or Latino] -192,2019-04-01,,,female,[White],[Not Hispanic or Latino] -192,2019-04-01,ambulatory,,female,[White], -192,2019-03-01,,,female,[White], -192,2018-06-01,,,female,,[Not Hispanic or Latino] -192,2018-05-01,ambulatory,,female,,[Not Hispanic or Latino] +192,2021-02-01,,,female,,not hispanic or latino +192,2019-04-01,,,female,white,not hispanic or latino +192,2019-04-01,ambulatory,,female,white, +192,2019-03-01,,,female,white, +192,2018-06-01,,,female,,not hispanic or latino +192,2018-05-01,ambulatory,,female,,not hispanic or latino 192,2018-03-01,ambulatory,,female,, 192,2018-01-01,,,female,, 192,2017-10-01,,,male,, 192,2017-06-01,,,male,, -191,,,47,male,[White], -191,,,12,,[White], -191,,,9,,,[Not Hispanic or Latino] -191,,,1,female,,[Not Hispanic or Latino] +191,,,47,male,white, +191,,,12,,white, +191,,,9,,,not hispanic or latino +191,,,1,female,,not hispanic or latino 191,,ambulatory,40,female,, -191,,ambulatory,33,male,,[Not Hispanic or Latino] -191,,ambulatory,33,male,[White], -191,,ambulatory,27,female,[White], -191,,ambulatory,24,,[White], -191,2022-04-01,,,female,[White], -191,2021-12-01,,,female,[White],[Not Hispanic or Latino] -191,2021-06-01,,,female,[White],[Not Hispanic or Latino] -191,2020-03-01,,,female,[White], -191,2016-07-01,,,male,,[Not Hispanic or Latino] +191,,ambulatory,33,male,,not hispanic or latino +191,,ambulatory,33,male,white, +191,,ambulatory,27,female,white, +191,,ambulatory,24,,white, +191,2022-04-01,,,female,white, +191,2021-12-01,,,female,white,not hispanic or latino +191,2021-06-01,,,female,white,not hispanic or latino +191,2020-03-01,,,female,white, +191,2016-07-01,,,male,,not hispanic or latino 190,,,64,male,, -190,,,64,male,,[Not Hispanic or Latino] -190,,,49,female,,[Not Hispanic or Latino] -190,,,26,female,[White], +190,,,64,male,,not hispanic or latino +190,,,49,female,,not hispanic or latino +190,,,26,female,white, 190,,ambulatory,59,male,, -190,,ambulatory,38,,,[Not Hispanic or Latino] +190,,ambulatory,38,,,not hispanic or latino 190,,ambulatory,30,female,, 190,,ambulatory,26,female,, 190,,ambulatory,10,,, 190,,ambulatory,4,,, -190,2022-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] +190,2022-09-01,ambulatory,,female,white,not hispanic or latino 190,2021-11-01,ambulatory,,male,, -190,2021-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -190,2021-02-01,,,male,[White], -190,2021-01-01,,,male,,[Not Hispanic or Latino] -190,2020-03-01,ambulatory,,female,,[Not Hispanic or Latino] +190,2021-06-01,ambulatory,,male,white,not hispanic or latino +190,2021-02-01,,,male,white, +190,2021-01-01,,,male,,not hispanic or latino +190,2020-03-01,ambulatory,,female,,not hispanic or latino 190,2020-01-01,ambulatory,,female,, 190,2018-11-01,,,female,, 190,2018-05-01,ambulatory,,male,, 190,2017-07-01,,,male,, 190,2016-09-01,,,male,, -189,,,44,male,,[Not Hispanic or Latino] -189,,,39,,[White],[Not Hispanic or Latino] -189,,ambulatory,48,female,,[Not Hispanic or Latino] -189,2021-12-01,,,male,,[Not Hispanic or Latino] -189,2020-05-01,,,female,,[Not Hispanic or Latino] -189,2020-04-01,,,female,,[Not Hispanic or Latino] -189,2020-01-01,,,female,,[Not Hispanic or Latino] -189,2019-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] +189,,,44,male,,not hispanic or latino +189,,,39,,white,not hispanic or latino +189,,ambulatory,48,female,,not hispanic or latino +189,2021-12-01,,,male,,not hispanic or latino +189,2020-05-01,,,female,,not hispanic or latino +189,2020-04-01,,,female,,not hispanic or latino +189,2020-01-01,,,female,,not hispanic or latino +189,2019-01-01,ambulatory,,female,white,not hispanic or latino 189,2018-07-01,ambulatory,,female,, -189,2018-06-01,,,male,,[Not Hispanic or Latino] +189,2018-06-01,,,male,,not hispanic or latino 189,2017-08-01,,,female,, 189,2017-01-01,,,female,, -188,,,24,,[White],[Not Hispanic or Latino] -188,,ambulatory,72,male,[White], -188,,ambulatory,59,male,,[Not Hispanic or Latino] -188,,ambulatory,57,male,[White], -188,,ambulatory,53,female,,[Not Hispanic or Latino] +188,,,24,,white,not hispanic or latino +188,,ambulatory,72,male,white, +188,,ambulatory,59,male,,not hispanic or latino +188,,ambulatory,57,male,white, +188,,ambulatory,53,female,,not hispanic or latino 188,,ambulatory,44,male,, -188,,ambulatory,39,,[White], -188,,ambulatory,33,male,[White],[Not Hispanic or Latino] -188,,ambulatory,1,female,,[Not Hispanic or Latino] -188,2023-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] -188,2022-11-01,,,female,[White], -188,2022-01-01,ambulatory,,female,,[Not Hispanic or Latino] -188,2021-09-01,,,female,[White],[Not Hispanic or Latino] -188,2021-08-01,ambulatory,,male,,[Not Hispanic or Latino] +188,,ambulatory,39,,white, +188,,ambulatory,33,male,white,not hispanic or latino +188,,ambulatory,1,female,,not hispanic or latino +188,2023-01-01,ambulatory,,female,white,not hispanic or latino +188,2022-11-01,,,female,white, +188,2022-01-01,ambulatory,,female,,not hispanic or latino +188,2021-09-01,,,female,white,not hispanic or latino +188,2021-08-01,ambulatory,,male,,not hispanic or latino 188,2020-11-01,ambulatory,,female,, 188,2019-08-01,,,female,, -188,2019-06-01,,,female,[White], -188,2019-05-01,ambulatory,,female,[White], +188,2019-06-01,,,female,white, +188,2019-05-01,ambulatory,,female,white, 188,2018-10-01,,,female,, -188,2018-05-01,,,male,[White], -188,2018-05-01,ambulatory,,female,[White], +188,2018-05-01,,,male,white, +188,2018-05-01,ambulatory,,female,white, 188,2017-07-01,ambulatory,,female,, -188,2017-05-01,,,male,,[Not Hispanic or Latino] -188,2017-03-01,ambulatory,,male,,[Not Hispanic or Latino] +188,2017-05-01,,,male,,not hispanic or latino +188,2017-03-01,ambulatory,,male,,not hispanic or latino 188,2016-07-01,,,female,, -188,2016-06-01,,,male,,[Not Hispanic or Latino] -187,,,74,male,[White], +188,2016-06-01,,,male,,not hispanic or latino +187,,,74,male,white, 187,,ambulatory,78,male,, -187,,ambulatory,69,male,[White], -187,,ambulatory,69,male,[White],[Not Hispanic or Latino] -187,,ambulatory,48,female,[White], -187,,ambulatory,35,female,[White], -187,,ambulatory,25,female,[White], +187,,ambulatory,69,male,white, +187,,ambulatory,69,male,white,not hispanic or latino +187,,ambulatory,48,female,white, +187,,ambulatory,35,female,white, +187,,ambulatory,25,female,white, 187,,ambulatory,13,female,, -187,,ambulatory,13,female,,[Not Hispanic or Latino] -187,,ambulatory,9,,[White], -187,2022-02-01,ambulatory,,female,,[Not Hispanic or Latino] -187,2021-11-01,,,male,,[Not Hispanic or Latino] +187,,ambulatory,13,female,,not hispanic or latino +187,,ambulatory,9,,white, +187,2022-02-01,ambulatory,,female,,not hispanic or latino +187,2021-11-01,,,male,,not hispanic or latino 187,2021-10-01,,,male,, -187,2021-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -187,2021-02-01,ambulatory,,female,,[Not Hispanic or Latino] +187,2021-07-01,ambulatory,,female,white,not hispanic or latino +187,2021-02-01,ambulatory,,female,,not hispanic or latino 187,2021-01-01,ambulatory,,male,, -187,2020-08-01,,,female,,[Not Hispanic or Latino] -187,2020-08-01,,,female,[White], -187,2020-05-01,,,female,[White], +187,2020-08-01,,,female,,not hispanic or latino +187,2020-08-01,,,female,white, +187,2020-05-01,,,female,white, 187,2020-04-01,ambulatory,,female,, -187,2019-03-01,,,female,,[Not Hispanic or Latino] +187,2019-03-01,,,female,,not hispanic or latino 187,2018-08-01,,,male,, -187,2018-05-01,,,male,,[Not Hispanic or Latino] +187,2018-05-01,,,male,,not hispanic or latino 187,2018-04-01,,,female,, -187,2018-03-01,,,female,,[Not Hispanic or Latino] +187,2018-03-01,,,female,,not hispanic or latino 187,2018-01-01,ambulatory,,male,, -187,2017-12-01,,,female,,[Not Hispanic or Latino] -187,2017-07-01,,,female,,[Not Hispanic or Latino] -187,2017-06-01,,,female,[White], +187,2017-12-01,,,female,,not hispanic or latino +187,2017-07-01,,,female,,not hispanic or latino +187,2017-06-01,,,female,white, 187,2016-12-01,,,female,, -186,,,52,,[White], +186,,,52,,white, 186,,,33,female,, -186,,,25,female,[White],[Not Hispanic or Latino] +186,,,25,female,white,not hispanic or latino 186,,inpatient encounter,,female,, 186,,ambulatory,79,male,, -186,,ambulatory,79,male,,[Not Hispanic or Latino] -186,,ambulatory,78,male,,[Not Hispanic or Latino] +186,,ambulatory,79,male,,not hispanic or latino +186,,ambulatory,78,male,,not hispanic or latino 186,,ambulatory,74,female,, -186,,ambulatory,74,female,[White], -186,,ambulatory,72,male,[White],[Not Hispanic or Latino] +186,,ambulatory,74,female,white, +186,,ambulatory,72,male,white,not hispanic or latino 186,,ambulatory,64,male,, -186,,ambulatory,64,male,,[Not Hispanic or Latino] -186,,ambulatory,57,male,[White],[Not Hispanic or Latino] -186,,ambulatory,47,male,[White], -186,2023-02-01,,,female,[White],[Not Hispanic or Latino] -186,2022-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -186,2022-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -186,2022-04-01,ambulatory,,female,,[Not Hispanic or Latino] +186,,ambulatory,64,male,,not hispanic or latino +186,,ambulatory,57,male,white,not hispanic or latino +186,,ambulatory,47,male,white, +186,2023-02-01,,,female,white,not hispanic or latino +186,2022-12-01,ambulatory,,female,white,not hispanic or latino +186,2022-05-01,ambulatory,,female,white,not hispanic or latino +186,2022-04-01,ambulatory,,female,,not hispanic or latino 186,2021-12-01,ambulatory,,male,, -186,2021-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] +186,2021-06-01,ambulatory,,female,white,not hispanic or latino 186,2020-12-01,,,male,, -186,2020-06-01,,,female,,[Not Hispanic or Latino] +186,2020-06-01,,,female,,not hispanic or latino 186,2020-06-01,ambulatory,,female,, -186,2019-07-01,,,female,,[Not Hispanic or Latino] +186,2019-07-01,,,female,,not hispanic or latino 186,2019-07-01,ambulatory,,female,, -186,2019-05-01,ambulatory,,female,,[Not Hispanic or Latino] +186,2019-05-01,ambulatory,,female,,not hispanic or latino 186,2018-12-01,ambulatory,,female,, -186,2018-07-01,,,female,,[Not Hispanic or Latino] +186,2018-07-01,,,female,,not hispanic or latino 186,2018-01-01,ambulatory,,female,, 186,2017-12-01,ambulatory,,female,, 186,2017-08-01,ambulatory,,male,, 186,2017-06-01,ambulatory,,female,, 186,2016-06-01,ambulatory,,male,, -185,,,35,female,,[Not Hispanic or Latino] -185,,,32,female,,[Not Hispanic or Latino] -185,,,0,female,[White], -185,,inpatient encounter,,male,[White], -185,,ambulatory,79,male,[White], -185,,ambulatory,79,male,[White],[Not Hispanic or Latino] -185,,ambulatory,49,female,,[Not Hispanic or Latino] -185,,ambulatory,31,female,,[Not Hispanic or Latino] -185,,ambulatory,29,female,,[Not Hispanic or Latino] -185,,ambulatory,0,female,[White], -185,2023-03-01,ambulatory,,female,,[Not Hispanic or Latino] -185,2022-11-01,ambulatory,,female,[White], -185,2022-06-01,ambulatory,,female,[White], -185,2021-08-01,,,male,[White],[Not Hispanic or Latino] -185,2020-11-01,,,female,,[Not Hispanic or Latino] +185,,,35,female,,not hispanic or latino +185,,,32,female,,not hispanic or latino +185,,,0,female,white, +185,,inpatient encounter,,male,white, +185,,ambulatory,79,male,white, +185,,ambulatory,79,male,white,not hispanic or latino +185,,ambulatory,49,female,,not hispanic or latino +185,,ambulatory,31,female,,not hispanic or latino +185,,ambulatory,29,female,,not hispanic or latino +185,,ambulatory,0,female,white, +185,2023-03-01,ambulatory,,female,,not hispanic or latino +185,2022-11-01,ambulatory,,female,white, +185,2022-06-01,ambulatory,,female,white, +185,2021-08-01,,,male,white,not hispanic or latino +185,2020-11-01,,,female,,not hispanic or latino 185,2020-09-01,,,female,, -185,2020-03-01,ambulatory,,female,[White], -185,2019-12-01,ambulatory,,female,,[Not Hispanic or Latino] -185,2019-12-01,ambulatory,,female,[White], -185,2018-12-01,,,female,,[Not Hispanic or Latino] -185,2017-08-01,,,male,,[Not Hispanic or Latino] -185,2017-06-01,,,female,,[Not Hispanic or Latino] +185,2020-03-01,ambulatory,,female,white, +185,2019-12-01,ambulatory,,female,,not hispanic or latino +185,2019-12-01,ambulatory,,female,white, +185,2018-12-01,,,female,,not hispanic or latino +185,2017-08-01,,,male,,not hispanic or latino +185,2017-06-01,,,female,,not hispanic or latino 185,2016-07-01,ambulatory,,male,, -184,,,73,male,[White], -184,,,47,male,[White],[Not Hispanic or Latino] +184,,,73,male,white, +184,,,47,male,white,not hispanic or latino 184,,,23,female,, -184,,,4,,[White], -184,,ambulatory,78,male,[White], +184,,,4,,white, +184,,ambulatory,78,male,white, 184,,ambulatory,65,female,, -184,,ambulatory,34,female,[White], -184,,ambulatory,30,female,[White], -184,,ambulatory,25,female,,[Not Hispanic or Latino] -184,,ambulatory,21,female,,[Not Hispanic or Latino] +184,,ambulatory,34,female,white, +184,,ambulatory,30,female,white, +184,,ambulatory,25,female,,not hispanic or latino +184,,ambulatory,21,female,,not hispanic or latino 184,,ambulatory,16,male,, -184,2021-12-01,ambulatory,,female,[White], -184,2021-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -184,2021-02-01,,,female,[White], -184,2020-07-01,,,female,[White], +184,2021-12-01,ambulatory,,female,white, +184,2021-11-01,ambulatory,,female,white,not hispanic or latino +184,2021-02-01,,,female,white, +184,2020-07-01,,,female,white, 184,2020-05-01,ambulatory,,female,, -184,2019-07-01,,,female,[White], -184,2018-06-01,,,female,[White], +184,2019-07-01,,,female,white, +184,2018-06-01,,,female,white, 184,2018-03-01,ambulatory,,male,, -184,2017-12-01,,,female,[White], +184,2017-12-01,,,female,white, 184,2017-05-01,ambulatory,,male,, -184,2017-03-01,,,female,,[Not Hispanic or Latino] -183,,,39,female,,[Not Hispanic or Latino] -183,,,37,,[White],[Not Hispanic or Latino] -183,,,20,female,[White],[Not Hispanic or Latino] -183,,ambulatory,78,male,[White],[Not Hispanic or Latino] -183,,ambulatory,27,female,[White],[Not Hispanic or Latino] -183,,ambulatory,20,female,[White], -183,,ambulatory,12,,[White], -183,2022-06-01,,,female,[White],[Not Hispanic or Latino] +184,2017-03-01,,,female,,not hispanic or latino +183,,,39,female,,not hispanic or latino +183,,,37,,white,not hispanic or latino +183,,,20,female,white,not hispanic or latino +183,,ambulatory,78,male,white,not hispanic or latino +183,,ambulatory,27,female,white,not hispanic or latino +183,,ambulatory,20,female,white, +183,,ambulatory,12,,white, +183,2022-06-01,,,female,white,not hispanic or latino 183,2022-05-01,,,male,, -183,2022-02-01,ambulatory,,female,[White], -183,2021-09-01,,,male,,[Not Hispanic or Latino] +183,2022-02-01,ambulatory,,female,white, +183,2021-09-01,,,male,,not hispanic or latino 183,2019-08-01,ambulatory,,female,, -183,2019-05-01,,,female,[White],[Not Hispanic or Latino] +183,2019-05-01,,,female,white,not hispanic or latino 183,2019-03-01,,,male,, -183,2018-06-01,ambulatory,,female,,[Not Hispanic or Latino] -183,2018-03-01,ambulatory,,female,,[Not Hispanic or Latino] -183,2017-07-01,,,female,[White], -183,2017-03-01,,,male,[White], +183,2018-06-01,ambulatory,,female,,not hispanic or latino +183,2018-03-01,ambulatory,,female,,not hispanic or latino +183,2017-07-01,,,female,white, +183,2017-03-01,,,male,white, 183,2017-01-01,,,male,, 183,2016-12-01,,,male,, 183,2016-10-01,,,female,, 183,2016-09-01,,,female,, 182,,,51,female,, -182,,,50,female,[White], +182,,,50,female,white, 182,,,44,female,, -182,,,21,female,[White], +182,,,21,female,white, 182,,,11,,, -182,,ambulatory,41,,[White],[Not Hispanic or Latino] -182,,ambulatory,36,female,[White], -182,,ambulatory,24,,,[Not Hispanic or Latino] -182,2021-07-01,,,male,,[Not Hispanic or Latino] +182,,ambulatory,41,,white,not hispanic or latino +182,,ambulatory,36,female,white, +182,,ambulatory,24,,,not hispanic or latino +182,2021-07-01,,,male,,not hispanic or latino 182,2020-12-01,,,female,, 182,2020-08-01,ambulatory,,female,, -182,2020-07-01,ambulatory,,female,,[Not Hispanic or Latino] -182,2018-03-01,,,male,[White], -182,2017-10-01,,,male,,[Not Hispanic or Latino] +182,2020-07-01,ambulatory,,female,,not hispanic or latino +182,2018-03-01,,,male,white, +182,2017-10-01,,,male,,not hispanic or latino 182,2017-10-01,ambulatory,,male,, 182,2017-08-01,ambulatory,,female,, -182,2017-03-01,,,female,[White], -182,2016-09-01,,,male,,[Not Hispanic or Latino] +182,2017-03-01,,,female,white, +182,2016-09-01,,,male,,not hispanic or latino 182,2016-09-01,ambulatory,,male,, -181,,,73,male,[White],[Not Hispanic or Latino] -181,,,44,male,[White], -181,,,23,female,,[Not Hispanic or Latino] -181,,,4,,,[Not Hispanic or Latino] -181,2023-03-01,ambulatory,,female,[White], +181,,,73,male,white,not hispanic or latino +181,,,44,male,white, +181,,,23,female,,not hispanic or latino +181,,,4,,,not hispanic or latino +181,2023-03-01,ambulatory,,female,white, 181,2022-03-01,ambulatory,,female,, -181,2021-12-01,,,male,[White], -181,2021-08-01,ambulatory,,male,[White], +181,2021-12-01,,,male,white, +181,2021-08-01,ambulatory,,male,white, 181,2021-07-01,ambulatory,,male,, -181,2020-01-01,,,female,[White], -181,2020-01-01,ambulatory,,female,,[Not Hispanic or Latino] -181,2018-07-01,,,female,[White], -181,2018-07-01,ambulatory,,female,,[Not Hispanic or Latino] -181,2018-01-01,,,male,[White], +181,2020-01-01,,,female,white, +181,2020-01-01,ambulatory,,female,,not hispanic or latino +181,2018-07-01,,,female,white, +181,2018-07-01,ambulatory,,female,,not hispanic or latino +181,2018-01-01,,,male,white, 181,2017-06-01,ambulatory,,male,, 181,2016-10-01,,,male,, 181,2016-06-01,,,female,, 180,,,62,male,, -180,,,62,male,,[Not Hispanic or Latino] -180,,,53,female,[White], -180,,,49,female,[White], -180,,,36,female,,[Not Hispanic or Latino] +180,,,62,male,,not hispanic or latino +180,,,53,female,white, +180,,,49,female,white, +180,,,36,female,,not hispanic or latino 180,,,14,male,, 180,,ambulatory,74,male,, -180,,ambulatory,47,male,[White],[Not Hispanic or Latino] -180,,ambulatory,36,,[White],[Not Hispanic or Latino] -180,2022-01-01,,,female,[White],[Not Hispanic or Latino] -180,2022-01-01,ambulatory,,female,[White], -180,2021-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] -180,2021-02-01,ambulatory,,male,,[Not Hispanic or Latino] -180,2021-01-01,ambulatory,,male,,[Not Hispanic or Latino] -180,2020-04-01,ambulatory,,female,,[Not Hispanic or Latino] -180,2019-06-01,,,female,,[Not Hispanic or Latino] -180,2019-06-01,ambulatory,,female,[White], -180,2019-03-01,ambulatory,,female,[White], -180,2018-12-01,,,female,[White], +180,,ambulatory,47,male,white,not hispanic or latino +180,,ambulatory,36,,white,not hispanic or latino +180,2022-01-01,,,female,white,not hispanic or latino +180,2022-01-01,ambulatory,,female,white, +180,2021-09-01,ambulatory,,female,white,not hispanic or latino +180,2021-02-01,ambulatory,,male,,not hispanic or latino +180,2021-01-01,ambulatory,,male,,not hispanic or latino +180,2020-04-01,ambulatory,,female,,not hispanic or latino +180,2019-06-01,,,female,,not hispanic or latino +180,2019-06-01,ambulatory,,female,white, +180,2019-03-01,ambulatory,,female,white, +180,2018-12-01,,,female,white, 180,2018-06-01,ambulatory,,male,, -180,2018-05-01,,,female,[White],[Not Hispanic or Latino] +180,2018-05-01,,,female,white,not hispanic or latino 180,2018-04-01,,,male,, 180,2017-03-01,ambulatory,,female,, 180,2016-12-01,ambulatory,,female,, -180,2016-07-01,,,male,[White], -179,,,74,male,[White],[Not Hispanic or Latino] -179,,,32,female,[White],[Not Hispanic or Latino] +180,2016-07-01,,,male,white, +179,,,74,male,white,not hispanic or latino +179,,,32,female,white,not hispanic or latino 179,,,22,female,, -179,,inpatient encounter,,male,[White],[Not Hispanic or Latino] -179,,ambulatory,65,female,[White], -179,,ambulatory,59,male,[White], -179,,ambulatory,44,male,,[Not Hispanic or Latino] -179,2022-04-01,ambulatory,,female,[White], -179,2021-12-01,ambulatory,,male,,[Not Hispanic or Latino] -179,2021-01-01,,,male,[White], -179,2020-06-01,,,female,[White], -179,2020-03-01,,,female,[White],[Not Hispanic or Latino] +179,,inpatient encounter,,male,white,not hispanic or latino +179,,ambulatory,65,female,white, +179,,ambulatory,59,male,white, +179,,ambulatory,44,male,,not hispanic or latino +179,2022-04-01,ambulatory,,female,white, +179,2021-12-01,ambulatory,,male,,not hispanic or latino +179,2021-01-01,,,male,white, +179,2020-06-01,,,female,white, +179,2020-03-01,,,female,white,not hispanic or latino 179,2019-10-01,,,female,, -179,2019-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] -179,2018-11-01,,,female,,[Not Hispanic or Latino] -179,2018-03-01,,,female,[White], -179,2018-01-01,,,female,,[Not Hispanic or Latino] -179,2018-01-01,,,female,[White], -179,2018-01-01,ambulatory,,male,,[Not Hispanic or Latino] -179,2017-07-01,,,male,,[Not Hispanic or Latino] -179,2016-07-01,ambulatory,,male,,[Not Hispanic or Latino] -178,,,62,male,[White], -178,,,62,male,[White],[Not Hispanic or Latino] -178,,,52,,[White],[Not Hispanic or Latino] +179,2019-04-01,ambulatory,,female,white,not hispanic or latino +179,2018-11-01,,,female,,not hispanic or latino +179,2018-03-01,,,female,white, +179,2018-01-01,,,female,,not hispanic or latino +179,2018-01-01,,,female,white, +179,2018-01-01,ambulatory,,male,,not hispanic or latino +179,2017-07-01,,,male,,not hispanic or latino +179,2016-07-01,ambulatory,,male,,not hispanic or latino +178,,,62,male,white, +178,,,62,male,white,not hispanic or latino +178,,,52,,white,not hispanic or latino 178,,,45,female,, -178,,,31,female,[White],[Not Hispanic or Latino] -178,,ambulatory,74,female,,[Not Hispanic or Latino] -178,,ambulatory,74,female,[White],[Not Hispanic or Latino] -178,,ambulatory,59,male,[White],[Not Hispanic or Latino] -178,,ambulatory,50,female,[White], -178,,ambulatory,26,female,,[Not Hispanic or Latino] -178,2023-03-01,,,female,[White],[Not Hispanic or Latino] -178,2021-11-01,,,male,[White], -178,2021-11-01,ambulatory,,male,,[Not Hispanic or Latino] -178,2021-10-01,,,male,,[Not Hispanic or Latino] -178,2021-02-01,ambulatory,,female,[White], -178,2020-11-01,ambulatory,,female,,[Not Hispanic or Latino] -178,2020-08-01,,,female,[White],[Not Hispanic or Latino] -178,2019-12-01,,,female,[White],[Not Hispanic or Latino] +178,,,31,female,white,not hispanic or latino +178,,ambulatory,74,female,,not hispanic or latino +178,,ambulatory,74,female,white,not hispanic or latino +178,,ambulatory,59,male,white,not hispanic or latino +178,,ambulatory,50,female,white, +178,,ambulatory,26,female,,not hispanic or latino +178,2023-03-01,,,female,white,not hispanic or latino +178,2021-11-01,,,male,white, +178,2021-11-01,ambulatory,,male,,not hispanic or latino +178,2021-10-01,,,male,,not hispanic or latino +178,2021-02-01,ambulatory,,female,white, +178,2020-11-01,ambulatory,,female,,not hispanic or latino +178,2020-08-01,,,female,white,not hispanic or latino +178,2019-12-01,,,female,white,not hispanic or latino 178,2019-01-01,,,male,, 178,2018-11-01,ambulatory,,female,, -178,2018-03-01,ambulatory,,male,,[Not Hispanic or Latino] +178,2018-03-01,ambulatory,,male,,not hispanic or latino 178,2017-12-01,,,male,, 178,2017-11-01,,,male,, 178,2017-09-01,,,male,, 178,2017-09-01,,,female,, -178,2017-08-01,,,female,[White], -178,2017-07-01,ambulatory,,female,,[Not Hispanic or Latino] -178,2017-06-01,,,male,,[Not Hispanic or Latino] -178,2016-08-01,ambulatory,,male,[White], +178,2017-08-01,,,female,white, +178,2017-07-01,ambulatory,,female,,not hispanic or latino +178,2017-06-01,,,male,,not hispanic or latino +178,2016-08-01,ambulatory,,male,white, 177,,,71,female,, -177,,,71,female,[White], -177,,,7,,[White], -177,,ambulatory,65,female,,[Not Hispanic or Latino] +177,,,71,female,white, +177,,,7,,white, +177,,ambulatory,65,female,,not hispanic or latino 177,,ambulatory,39,female,, 177,,ambulatory,33,female,, -177,,ambulatory,29,female,[White],[Not Hispanic or Latino] +177,,ambulatory,29,female,white,not hispanic or latino 177,,ambulatory,14,male,, -177,2022-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] +177,2022-06-01,ambulatory,,female,white,not hispanic or latino 177,2022-04-01,,,male,, -177,2022-02-01,,,female,[White],[Not Hispanic or Latino] +177,2022-02-01,,,female,white,not hispanic or latino 177,2021-09-01,ambulatory,,male,, -177,2021-02-01,ambulatory,,male,[White], -177,2020-04-01,,,female,[White], -177,2019-08-01,,,female,,[Not Hispanic or Latino] -177,2019-02-01,,,female,,[Not Hispanic or Latino] -177,2018-12-01,ambulatory,,female,,[Not Hispanic or Latino] -177,2018-06-01,ambulatory,,female,[White], +177,2021-02-01,ambulatory,,male,white, +177,2020-04-01,,,female,white, +177,2019-08-01,,,female,,not hispanic or latino +177,2019-02-01,,,female,,not hispanic or latino +177,2018-12-01,ambulatory,,female,,not hispanic or latino +177,2018-06-01,ambulatory,,female,white, 177,2018-04-01,ambulatory,,female,, 177,2017-04-01,,,male,, -176,,,40,female,,[Not Hispanic or Latino] -176,,,40,female,[White], -176,,,26,female,[White],[Not Hispanic or Latino] -176,,,22,female,,[Not Hispanic or Latino] -176,,,13,female,[White], -176,,,13,female,[White],[Not Hispanic or Latino] -176,,,9,,[White],[Not Hispanic or Latino] +176,,,40,female,,not hispanic or latino +176,,,40,female,white, +176,,,26,female,white,not hispanic or latino +176,,,22,female,,not hispanic or latino +176,,,13,female,white, +176,,,13,female,white,not hispanic or latino +176,,,9,,white,not hispanic or latino 176,,,8,,, 176,,ambulatory,7,,, 176,2023-01-01,,,male,, -176,2021-12-01,,,male,[White],[Not Hispanic or Latino] +176,2021-12-01,,,male,white,not hispanic or latino 176,2021-10-01,ambulatory,,male,, -176,2021-02-01,,,male,[White],[Not Hispanic or Latino] -176,2020-12-01,,,male,,[Not Hispanic or Latino] -176,2020-11-01,,,female,[White], -176,2020-09-01,,,female,,[Not Hispanic or Latino] +176,2021-02-01,,,male,white,not hispanic or latino +176,2020-12-01,,,male,,not hispanic or latino +176,2020-11-01,,,female,white, +176,2020-09-01,,,female,,not hispanic or latino 176,2020-03-01,,,male,, 176,2019-09-01,,,female,, -176,2018-10-01,,,female,,[Not Hispanic or Latino] -176,2018-08-01,,,male,,[Not Hispanic or Latino] -176,2018-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -176,2018-03-01,,,male,[White],[Not Hispanic or Latino] -176,2018-01-01,ambulatory,,female,,[Not Hispanic or Latino] -176,2017-08-01,,,female,,[Not Hispanic or Latino] -176,2017-08-01,ambulatory,,male,,[Not Hispanic or Latino] -176,2017-03-01,ambulatory,,male,[White], +176,2018-10-01,,,female,,not hispanic or latino +176,2018-08-01,,,male,,not hispanic or latino +176,2018-05-01,ambulatory,,female,white,not hispanic or latino +176,2018-03-01,,,male,white,not hispanic or latino +176,2018-01-01,ambulatory,,female,,not hispanic or latino +176,2017-08-01,,,female,,not hispanic or latino +176,2017-08-01,ambulatory,,male,,not hispanic or latino +176,2017-03-01,ambulatory,,male,white, 176,2017-01-01,ambulatory,,female,, 176,2016-12-01,ambulatory,,male,, -176,2016-06-01,ambulatory,,male,,[Not Hispanic or Latino] +176,2016-06-01,ambulatory,,male,,not hispanic or latino 175,,,37,female,, -175,,,21,female,[White],[Not Hispanic or Latino] +175,,,21,female,white,not hispanic or latino 175,,,18,male,, -175,,ambulatory,74,male,[White], -175,,ambulatory,49,female,[White], -175,,ambulatory,26,female,[White], -175,,ambulatory,25,female,[White],[Not Hispanic or Latino] -175,,ambulatory,24,,[White],[Not Hispanic or Latino] -175,,ambulatory,4,,[White], -175,2023-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -175,2022-03-01,,,female,,[Not Hispanic or Latino] +175,,ambulatory,74,male,white, +175,,ambulatory,49,female,white, +175,,ambulatory,26,female,white, +175,,ambulatory,25,female,white,not hispanic or latino +175,,ambulatory,24,,white,not hispanic or latino +175,,ambulatory,4,,white, +175,2023-02-01,ambulatory,,female,white,not hispanic or latino +175,2022-03-01,,,female,,not hispanic or latino 175,2020-09-01,ambulatory,,female,, -175,2020-05-01,,,female,[White],[Not Hispanic or Latino] -175,2019-06-01,ambulatory,,female,,[Not Hispanic or Latino] -175,2018-06-01,,,male,[White], -175,2017-05-01,,,male,[White], -175,2017-05-01,ambulatory,,male,,[Not Hispanic or Latino] +175,2020-05-01,,,female,white,not hispanic or latino +175,2019-06-01,ambulatory,,female,,not hispanic or latino +175,2018-06-01,,,male,white, +175,2017-05-01,,,male,white, +175,2017-05-01,ambulatory,,male,,not hispanic or latino 175,2016-09-01,ambulatory,,female,, 175,2016-08-01,,,female,, -174,,,,,[Unknown], -174,,,,,[Unknown],[Not Hispanic or Latino] -174,,,23,female,[White], -174,,,12,,[White],[Not Hispanic or Latino] +174,,,,,unknown, +174,,,,,unknown,not hispanic or latino +174,,,23,female,white, +174,,,12,,white,not hispanic or latino 174,,,2,male,, -174,,,0,male,[White], -174,,,0,female,,[Not Hispanic or Latino] -174,,ambulatory,44,male,[White], +174,,,0,male,white, +174,,,0,female,,not hispanic or latino +174,,ambulatory,44,male,white, 174,,ambulatory,22,female,, -174,,ambulatory,9,,,[Not Hispanic or Latino] +174,,ambulatory,9,,,not hispanic or latino 174,2022-07-01,,,male,, -174,2022-04-01,,,female,[White],[Not Hispanic or Latino] -174,2019-08-01,,,female,[White], -174,2019-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -174,2018-07-01,ambulatory,,female,[White], -174,2018-05-01,ambulatory,,male,,[Not Hispanic or Latino] -174,2018-03-01,ambulatory,,female,[White], -174,2018-01-01,,,male,[White],[Not Hispanic or Latino] -174,2017-12-01,ambulatory,,female,,[Not Hispanic or Latino] -174,2017-07-01,,,female,[White],[Not Hispanic or Latino] -174,2016-12-01,,,female,,[Not Hispanic or Latino] +174,2022-04-01,,,female,white,not hispanic or latino +174,2019-08-01,,,female,white, +174,2019-05-01,ambulatory,,female,white,not hispanic or latino +174,2018-07-01,ambulatory,,female,white, +174,2018-05-01,ambulatory,,male,,not hispanic or latino +174,2018-03-01,ambulatory,,female,white, +174,2018-01-01,,,male,white,not hispanic or latino +174,2017-12-01,ambulatory,,female,,not hispanic or latino +174,2017-07-01,,,female,white,not hispanic or latino +174,2016-12-01,,,female,,not hispanic or latino 174,2016-10-01,ambulatory,,female,, -174,2016-09-01,ambulatory,,male,,[Not Hispanic or Latino] -174,2016-07-01,,,male,[White],[Not Hispanic or Latino] +174,2016-09-01,ambulatory,,male,,not hispanic or latino +174,2016-07-01,,,male,white,not hispanic or latino 173,,,15,male,, -173,,,7,,,[Not Hispanic or Latino] +173,,,7,,,not hispanic or latino 173,,,6,,, 173,,ambulatory,44,female,, 173,,ambulatory,23,female,, -173,,ambulatory,0,female,,[Not Hispanic or Latino] -173,2022-03-01,,,female,[White], -173,2021-07-01,,,male,[White], -173,2021-07-01,ambulatory,,male,,[Not Hispanic or Latino] -173,2021-01-01,,,male,[White],[Not Hispanic or Latino] +173,,ambulatory,0,female,,not hispanic or latino +173,2022-03-01,,,female,white, +173,2021-07-01,,,male,white, +173,2021-07-01,ambulatory,,male,,not hispanic or latino +173,2021-01-01,,,male,white,not hispanic or latino 173,2020-12-01,ambulatory,,male,, 173,2020-10-01,,,male,, -173,2020-09-01,,,female,[White], -173,2020-08-01,ambulatory,,female,,[Not Hispanic or Latino] -173,2020-08-01,ambulatory,,female,[White], -173,2020-03-01,,,male,,[Not Hispanic or Latino] -173,2020-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -173,2020-01-01,ambulatory,,female,[White], -173,2019-08-01,ambulatory,,female,,[Not Hispanic or Latino] -173,2019-07-01,ambulatory,,female,,[Not Hispanic or Latino] -173,2019-03-01,,,male,,[Not Hispanic or Latino] -173,2019-03-01,,,female,[White],[Not Hispanic or Latino] -173,2019-03-01,ambulatory,,female,,[Not Hispanic or Latino] -173,2018-12-01,ambulatory,,female,[White], +173,2020-09-01,,,female,white, +173,2020-08-01,ambulatory,,female,,not hispanic or latino +173,2020-08-01,ambulatory,,female,white, +173,2020-03-01,,,male,,not hispanic or latino +173,2020-03-01,ambulatory,,female,white,not hispanic or latino +173,2020-01-01,ambulatory,,female,white, +173,2019-08-01,ambulatory,,female,,not hispanic or latino +173,2019-07-01,ambulatory,,female,,not hispanic or latino +173,2019-03-01,,,male,,not hispanic or latino +173,2019-03-01,,,female,white,not hispanic or latino +173,2019-03-01,ambulatory,,female,,not hispanic or latino +173,2018-12-01,ambulatory,,female,white, 173,2018-08-01,ambulatory,,male,, -173,2018-04-01,,,female,,[Not Hispanic or Latino] -173,2018-01-01,ambulatory,,female,[White], -173,2017-08-01,,,male,[White], -173,2017-07-01,ambulatory,,female,[White], -173,2017-06-01,,,male,[White], -173,2017-01-01,,,male,[White], -173,2016-12-01,,,male,,[Not Hispanic or Latino] -173,2016-10-01,,,male,,[Not Hispanic or Latino] -173,2016-09-01,,,female,[White], -173,2016-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] -173,2016-07-01,,,female,,[Not Hispanic or Latino] -173,2016-06-01,,,male,[White], -172,,,44,male,[White],[Not Hispanic or Latino] -172,,inpatient encounter,,female,[White], -172,,ambulatory,65,female,[White],[Not Hispanic or Latino] -172,,ambulatory,52,,[White], -172,,ambulatory,39,,[White],[Not Hispanic or Latino] -172,,ambulatory,20,female,[White],[Not Hispanic or Latino] +173,2018-04-01,,,female,,not hispanic or latino +173,2018-01-01,ambulatory,,female,white, +173,2017-08-01,,,male,white, +173,2017-07-01,ambulatory,,female,white, +173,2017-06-01,,,male,white, +173,2017-01-01,,,male,white, +173,2016-12-01,,,male,,not hispanic or latino +173,2016-10-01,,,male,,not hispanic or latino +173,2016-09-01,,,female,white, +173,2016-08-01,ambulatory,,male,white,not hispanic or latino +173,2016-07-01,,,female,,not hispanic or latino +173,2016-06-01,,,male,white, +172,,,44,male,white,not hispanic or latino +172,,inpatient encounter,,female,white, +172,,ambulatory,65,female,white,not hispanic or latino +172,,ambulatory,52,,white, +172,,ambulatory,39,,white,not hispanic or latino +172,,ambulatory,20,female,white,not hispanic or latino 172,,ambulatory,15,male,, -172,,ambulatory,4,,,[Not Hispanic or Latino] -172,,ambulatory,0,male,[White], -172,2022-11-01,,,female,[White],[Not Hispanic or Latino] -172,2021-11-01,ambulatory,,male,[White], -172,2021-09-01,,,male,[White], -172,2021-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] -172,2021-02-01,,,female,[White],[Not Hispanic or Latino] +172,,ambulatory,4,,,not hispanic or latino +172,,ambulatory,0,male,white, +172,2022-11-01,,,female,white,not hispanic or latino +172,2021-11-01,ambulatory,,male,white, +172,2021-09-01,,,male,white, +172,2021-08-01,ambulatory,,male,white,not hispanic or latino +172,2021-02-01,,,female,white,not hispanic or latino 172,2020-12-01,ambulatory,,female,, -172,2020-07-01,,,female,[White],[Not Hispanic or Latino] -172,2020-07-01,ambulatory,,female,[White], -172,2020-06-01,ambulatory,,female,,[Not Hispanic or Latino] -172,2020-05-01,ambulatory,,female,,[Not Hispanic or Latino] -172,2020-05-01,ambulatory,,female,[White], -172,2019-07-01,ambulatory,,female,[White], +172,2020-07-01,,,female,white,not hispanic or latino +172,2020-07-01,ambulatory,,female,white, +172,2020-06-01,ambulatory,,female,,not hispanic or latino +172,2020-05-01,ambulatory,,female,,not hispanic or latino +172,2020-05-01,ambulatory,,female,white, +172,2019-07-01,ambulatory,,female,white, 172,2019-05-01,,,male,, 172,2019-04-01,,,male,, -172,2019-02-01,,,female,[White], -172,2018-11-01,,,female,[White], -172,2018-10-01,,,female,[White], -172,2018-06-01,,,female,[White],[Not Hispanic or Latino] -172,2018-05-01,ambulatory,,male,[White], -172,2017-10-01,ambulatory,,male,,[Not Hispanic or Latino] -172,2017-07-01,,,male,[White], -172,2017-03-01,,,male,[White],[Not Hispanic or Latino] -171,,,53,female,[White],[Not Hispanic or Latino] -171,,,44,female,,[Not Hispanic or Latino] -171,,,23,female,[White],[Not Hispanic or Latino] -171,,,19,female,[White], +172,2019-02-01,,,female,white, +172,2018-11-01,,,female,white, +172,2018-10-01,,,female,white, +172,2018-06-01,,,female,white,not hispanic or latino +172,2018-05-01,ambulatory,,male,white, +172,2017-10-01,ambulatory,,male,,not hispanic or latino +172,2017-07-01,,,male,white, +172,2017-03-01,,,male,white,not hispanic or latino +171,,,53,female,white,not hispanic or latino +171,,,44,female,,not hispanic or latino +171,,,23,female,white,not hispanic or latino +171,,,19,female,white, 171,,,5,,, -171,,,1,female,[White],[Not Hispanic or Latino] -171,,home health,,,[White], +171,,,1,female,white,not hispanic or latino +171,,home health,,,white, 171,,ambulatory,73,male,, -171,,ambulatory,23,female,,[Not Hispanic or Latino] -171,,ambulatory,22,female,,[Not Hispanic or Latino] -171,2021-12-01,ambulatory,,male,[White], -171,2021-11-01,,,male,[White],[Not Hispanic or Latino] -171,2021-10-01,,,male,[White], -171,2020-12-01,,,male,[White], -171,2020-12-01,,,female,[White], -171,2020-01-01,,,female,[White],[Not Hispanic or Latino] -171,2019-10-01,,,female,,[Not Hispanic or Latino] -171,2019-07-01,,,female,[White],[Not Hispanic or Latino] -171,2019-03-01,,,male,[White], +171,,ambulatory,23,female,,not hispanic or latino +171,,ambulatory,22,female,,not hispanic or latino +171,2021-12-01,ambulatory,,male,white, +171,2021-11-01,,,male,white,not hispanic or latino +171,2021-10-01,,,male,white, +171,2020-12-01,,,male,white, +171,2020-12-01,,,female,white, +171,2020-01-01,,,female,white,not hispanic or latino +171,2019-10-01,,,female,,not hispanic or latino +171,2019-07-01,,,female,white,not hispanic or latino +171,2019-03-01,,,male,white, 171,2019-02-01,ambulatory,,female,, -171,2018-12-01,,,female,[White],[Not Hispanic or Latino] +171,2018-12-01,,,female,white,not hispanic or latino 171,2018-10-01,,,male,, -171,2018-07-01,,,female,[White],[Not Hispanic or Latino] +171,2018-07-01,,,female,white,not hispanic or latino 171,2018-04-01,ambulatory,,male,, 171,2018-02-01,,,male,, -171,2017-12-01,,,female,[White],[Not Hispanic or Latino] +171,2017-12-01,,,female,white,not hispanic or latino 171,2017-10-01,,,female,, -171,2017-08-01,ambulatory,,female,[White], -171,2017-03-01,,,female,[White],[Not Hispanic or Latino] -171,2017-01-01,,,male,,[Not Hispanic or Latino] -171,2017-01-01,,,female,[White], -171,2016-10-01,,,female,,[Not Hispanic or Latino] -171,2016-10-01,,,female,[White], -170,,,33,female,[White], -170,,,4,,[White],[Not Hispanic or Latino] -170,,ambulatory,74,male,,[Not Hispanic or Latino] +171,2017-08-01,ambulatory,,female,white, +171,2017-03-01,,,female,white,not hispanic or latino +171,2017-01-01,,,male,,not hispanic or latino +171,2017-01-01,,,female,white, +171,2016-10-01,,,female,,not hispanic or latino +171,2016-10-01,,,female,white, +170,,,33,female,white, +170,,,4,,white,not hispanic or latino +170,,ambulatory,74,male,,not hispanic or latino 170,,ambulatory,62,male,, -170,,ambulatory,62,male,,[Not Hispanic or Latino] -170,,ambulatory,37,,[White],[Not Hispanic or Latino] -170,,ambulatory,31,female,[White],[Not Hispanic or Latino] -170,,ambulatory,21,female,[White], -170,2022-05-01,,,male,,[Not Hispanic or Latino] -170,2021-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -170,2020-04-01,,,female,[White],[Not Hispanic or Latino] +170,,ambulatory,62,male,,not hispanic or latino +170,,ambulatory,37,,white,not hispanic or latino +170,,ambulatory,31,female,white,not hispanic or latino +170,,ambulatory,21,female,white, +170,2022-05-01,,,male,,not hispanic or latino +170,2021-12-01,ambulatory,,female,white,not hispanic or latino +170,2020-04-01,,,female,white,not hispanic or latino 170,2020-02-01,,,female,, -170,2019-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -170,2019-10-01,,,female,[White], +170,2019-12-01,ambulatory,,female,white,not hispanic or latino +170,2019-10-01,,,female,white, 170,2018-10-01,ambulatory,,female,, -170,2017-12-01,,,male,,[Not Hispanic or Latino] -170,2017-10-01,,,male,[White], -170,2017-09-01,,,male,,[Not Hispanic or Latino] -170,2017-08-01,ambulatory,,female,,[Not Hispanic or Latino] +170,2017-12-01,,,male,,not hispanic or latino +170,2017-10-01,,,male,white, +170,2017-09-01,,,male,,not hispanic or latino +170,2017-08-01,ambulatory,,female,,not hispanic or latino 170,2017-07-01,ambulatory,,male,, 170,2017-04-01,,,female,, -170,2017-03-01,ambulatory,,female,,[Not Hispanic or Latino] -170,2016-09-01,,,male,[White], -169,,,50,female,[White],[Not Hispanic or Latino] -169,,,48,female,[White],[Not Hispanic or Latino] -169,,,10,,[White], -169,,,2,male,,[Not Hispanic or Latino] +170,2017-03-01,ambulatory,,female,,not hispanic or latino +170,2016-09-01,,,male,white, +169,,,50,female,white,not hispanic or latino +169,,,48,female,white,not hispanic or latino +169,,,10,,white, +169,,,2,male,,not hispanic or latino 169,,ambulatory,51,female,, 169,,ambulatory,45,female,, 169,,ambulatory,18,male,, -169,,ambulatory,1,female,[White],[Not Hispanic or Latino] -169,2022-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] +169,,ambulatory,1,female,white,not hispanic or latino +169,2022-11-01,ambulatory,,female,white,not hispanic or latino 169,2022-06-01,,,male,, -169,2021-01-01,ambulatory,,male,[White], +169,2021-01-01,ambulatory,,male,white, 169,2020-10-01,,,female,, -169,2020-04-01,ambulatory,,female,[White], -169,2019-08-01,ambulatory,,female,[White], -169,2018-06-01,ambulatory,,male,,[Not Hispanic or Latino] -169,2018-05-01,,,male,[White],[Not Hispanic or Latino] -169,2018-04-01,,,male,,[Not Hispanic or Latino] -169,2018-04-01,,,female,[White], -169,2018-03-01,,,female,[White],[Not Hispanic or Latino] -169,2017-12-01,ambulatory,,female,[White], -169,2017-09-01,,,female,[White], -169,2017-06-01,ambulatory,,female,[White], +169,2020-04-01,ambulatory,,female,white, +169,2019-08-01,ambulatory,,female,white, +169,2018-06-01,ambulatory,,male,,not hispanic or latino +169,2018-05-01,,,male,white,not hispanic or latino +169,2018-04-01,,,male,,not hispanic or latino +169,2018-04-01,,,female,white, +169,2018-03-01,,,female,white,not hispanic or latino +169,2017-12-01,ambulatory,,female,white, +169,2017-09-01,,,female,white, +169,2017-06-01,ambulatory,,female,white, 169,2017-05-01,,,female,, -169,2017-01-01,,,female,,[Not Hispanic or Latino] +169,2017-01-01,,,female,,not hispanic or latino 169,2016-11-01,,,male,, -169,2016-09-01,,,female,,[Not Hispanic or Latino] +169,2016-09-01,,,female,,not hispanic or latino 169,2016-07-01,ambulatory,,female,, 169,2016-06-01,ambulatory,,female,, -168,,,38,,[White], -168,,,0,male,[White],[Not Hispanic or Latino] -168,,inpatient encounter,,female,,[Not Hispanic or Latino] -168,,ambulatory,62,male,[White], -168,,ambulatory,62,male,[White],[Not Hispanic or Latino] -168,,ambulatory,35,female,,[Not Hispanic or Latino] -168,,ambulatory,32,female,,[Not Hispanic or Latino] +168,,,38,,white, +168,,,0,male,white,not hispanic or latino +168,,inpatient encounter,,female,,not hispanic or latino +168,,ambulatory,62,male,white, +168,,ambulatory,62,male,white,not hispanic or latino +168,,ambulatory,35,female,,not hispanic or latino +168,,ambulatory,32,female,,not hispanic or latino 168,,ambulatory,2,male,, 168,2022-05-01,ambulatory,,male,, -168,2022-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] -168,2021-10-01,ambulatory,,male,,[Not Hispanic or Latino] -168,2021-07-01,,,male,[White],[Not Hispanic or Latino] -168,2020-11-01,ambulatory,,female,[White], +168,2022-01-01,ambulatory,,female,white,not hispanic or latino +168,2021-10-01,ambulatory,,male,,not hispanic or latino +168,2021-07-01,,,male,white,not hispanic or latino +168,2020-11-01,ambulatory,,female,white, 168,2020-04-01,,,male,, 168,2019-11-01,,,female,, 168,2019-03-01,ambulatory,,male,, -168,2018-11-01,ambulatory,,female,,[Not Hispanic or Latino] +168,2018-11-01,ambulatory,,female,,not hispanic or latino 168,2018-07-01,,,male,, 168,2017-12-01,ambulatory,,male,, -168,2017-06-01,,,female,[White],[Not Hispanic or Latino] -168,2017-06-01,ambulatory,,male,,[Not Hispanic or Latino] -168,2017-04-01,,,male,,[Not Hispanic or Latino] +168,2017-06-01,,,female,white,not hispanic or latino +168,2017-06-01,ambulatory,,male,,not hispanic or latino +168,2017-04-01,,,male,,not hispanic or latino 168,2017-02-01,,,female,, -168,2016-12-01,ambulatory,,female,,[Not Hispanic or Latino] +168,2016-12-01,ambulatory,,female,,not hispanic or latino 168,2016-10-01,ambulatory,,male,, -168,2016-07-01,ambulatory,,male,[White], -167,,,45,female,,[Not Hispanic or Latino] +168,2016-07-01,ambulatory,,male,white, +167,,,45,female,,not hispanic or latino 167,,,24,female,, -167,,ambulatory,74,male,[White],[Not Hispanic or Latino] -167,,ambulatory,53,female,[White], +167,,ambulatory,74,male,white,not hispanic or latino +167,,ambulatory,53,female,white, 167,2022-08-01,,,male,, -167,2022-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -167,2021-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -167,2020-12-01,,,female,,[Not Hispanic or Latino] +167,2022-02-01,ambulatory,,female,white,not hispanic or latino +167,2021-02-01,ambulatory,,female,white,not hispanic or latino +167,2020-12-01,,,female,,not hispanic or latino 167,2020-11-01,,,male,, 167,2020-07-01,,,male,, 167,2020-02-01,ambulatory,,female,, -167,2018-01-01,,,female,[White],[Not Hispanic or Latino] -167,2016-12-01,,,female,[White], -167,2016-07-01,,,female,[White], -166,,ambulatory,12,,[White],[Not Hispanic or Latino] +167,2018-01-01,,,female,white,not hispanic or latino +167,2016-12-01,,,female,white, +167,2016-07-01,,,female,white, +166,,ambulatory,12,,white,not hispanic or latino 166,,ambulatory,11,,, -166,,ambulatory,0,male,[White],[Not Hispanic or Latino] +166,,ambulatory,0,male,white,not hispanic or latino 166,2023-03-01,,,male,, -166,2022-07-01,,,male,,[Not Hispanic or Latino] -166,2021-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -166,2020-09-01,ambulatory,,female,,[Not Hispanic or Latino] -166,2020-06-01,,,female,[White],[Not Hispanic or Latino] -166,2020-06-01,ambulatory,,female,[White], -166,2019-01-01,,,male,[White], -166,2018-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -166,2018-06-01,,,male,[White],[Not Hispanic or Latino] -166,2018-02-01,,,male,,[Not Hispanic or Latino] -166,2018-01-01,ambulatory,,male,[White], -166,2017-11-01,,,male,,[Not Hispanic or Latino] -166,2017-10-01,,,male,[White],[Not Hispanic or Latino] -166,2017-09-01,,,female,,[Not Hispanic or Latino] +166,2022-07-01,,,male,,not hispanic or latino +166,2021-12-01,ambulatory,,male,white,not hispanic or latino +166,2020-09-01,ambulatory,,female,,not hispanic or latino +166,2020-06-01,,,female,white,not hispanic or latino +166,2020-06-01,ambulatory,,female,white, +166,2019-01-01,,,male,white, +166,2018-07-01,ambulatory,,female,white,not hispanic or latino +166,2018-06-01,,,male,white,not hispanic or latino +166,2018-02-01,,,male,,not hispanic or latino +166,2018-01-01,ambulatory,,male,white, +166,2017-11-01,,,male,,not hispanic or latino +166,2017-10-01,,,male,white,not hispanic or latino +166,2017-09-01,,,female,,not hispanic or latino 166,2017-09-01,ambulatory,,female,, -166,2017-08-01,,,female,[White],[Not Hispanic or Latino] -166,2017-05-01,,,male,[White],[Not Hispanic or Latino] -166,2017-03-01,ambulatory,,female,[White], +166,2017-08-01,,,female,white,not hispanic or latino +166,2017-05-01,,,male,white,not hispanic or latino +166,2017-03-01,ambulatory,,female,white, 166,2017-02-01,,,male,, -166,2016-12-01,ambulatory,,male,,[Not Hispanic or Latino] -165,,,16,male,,[Not Hispanic or Latino] -165,,ambulatory,50,female,[White],[Not Hispanic or Latino] -165,,ambulatory,48,female,[White],[Not Hispanic or Latino] -165,,ambulatory,44,male,[White],[Not Hispanic or Latino] -165,,ambulatory,13,female,[White], -165,,ambulatory,13,female,[White],[Not Hispanic or Latino] -165,2023-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -165,2022-05-01,,,male,[White], -165,2022-04-01,,,male,,[Not Hispanic or Latino] -165,2022-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] +166,2016-12-01,ambulatory,,male,,not hispanic or latino +165,,,16,male,,not hispanic or latino +165,,ambulatory,50,female,white,not hispanic or latino +165,,ambulatory,48,female,white,not hispanic or latino +165,,ambulatory,44,male,white,not hispanic or latino +165,,ambulatory,13,female,white, +165,,ambulatory,13,female,white,not hispanic or latino +165,2023-03-01,ambulatory,,female,white,not hispanic or latino +165,2022-05-01,,,male,white, +165,2022-04-01,,,male,,not hispanic or latino +165,2022-04-01,ambulatory,,female,white,not hispanic or latino 165,2022-03-01,,,male,, -165,2021-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -165,2021-09-01,ambulatory,,male,,[Not Hispanic or Latino] -165,2021-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -165,2020-11-01,,,female,[White],[Not Hispanic or Latino] -165,2020-09-01,,,female,[White],[Not Hispanic or Latino] -165,2020-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -165,2019-09-01,,,female,,[Not Hispanic or Latino] +165,2021-11-01,ambulatory,,male,white,not hispanic or latino +165,2021-09-01,ambulatory,,male,,not hispanic or latino +165,2021-02-01,ambulatory,,male,white,not hispanic or latino +165,2020-11-01,,,female,white,not hispanic or latino +165,2020-09-01,,,female,white,not hispanic or latino +165,2020-08-01,ambulatory,,female,white,not hispanic or latino +165,2019-09-01,,,female,,not hispanic or latino 165,2019-09-01,ambulatory,,female,, -165,2019-08-01,,,female,[White],[Not Hispanic or Latino] +165,2019-08-01,,,female,white,not hispanic or latino 165,2019-06-01,,,male,, -165,2019-06-01,,,female,[White],[Not Hispanic or Latino] -165,2018-08-01,,,male,[White], -165,2018-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] -165,2018-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] +165,2019-06-01,,,female,white,not hispanic or latino +165,2018-08-01,,,male,white, +165,2018-06-01,ambulatory,,female,white,not hispanic or latino +165,2018-03-01,ambulatory,,female,white,not hispanic or latino 165,2017-09-01,ambulatory,,male,, -165,2017-08-01,,,male,[White],[Not Hispanic or Latino] -165,2017-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -165,2017-06-01,ambulatory,,female,,[Not Hispanic or Latino] -165,2017-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] -165,2016-09-01,ambulatory,,female,[White], -164,,,44,female,[White], +165,2017-08-01,,,male,white,not hispanic or latino +165,2017-07-01,ambulatory,,female,white,not hispanic or latino +165,2017-06-01,ambulatory,,female,,not hispanic or latino +165,2017-03-01,ambulatory,,male,white,not hispanic or latino +165,2016-09-01,ambulatory,,female,white, +164,,,44,female,white, 164,,,43,female,, 164,,,32,male,, -164,,,11,,[White], -164,,ambulatory,73,male,,[Not Hispanic or Latino] -164,,ambulatory,52,,[White],[Not Hispanic or Latino] -164,,ambulatory,32,female,[White],[Not Hispanic or Latino] -164,2021-10-01,,,male,[White],[Not Hispanic or Latino] -164,2021-07-01,ambulatory,,male,[White], -164,2020-09-01,ambulatory,,female,[White], +164,,,11,,white, +164,,ambulatory,73,male,,not hispanic or latino +164,,ambulatory,52,,white,not hispanic or latino +164,,ambulatory,32,female,white,not hispanic or latino +164,2021-10-01,,,male,white,not hispanic or latino +164,2021-07-01,ambulatory,,male,white, +164,2020-09-01,ambulatory,,female,white, 164,2020-01-01,,,male,, -164,2020-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] +164,2020-01-01,ambulatory,,female,white,not hispanic or latino 164,2019-10-01,ambulatory,,female,, -164,2019-04-01,,,male,,[Not Hispanic or Latino] -164,2018-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] +164,2019-04-01,,,male,,not hispanic or latino +164,2018-12-01,ambulatory,,female,white,not hispanic or latino 164,2018-10-01,ambulatory,,male,, 164,2018-02-01,,,female,, -164,2018-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] +164,2018-01-01,ambulatory,,female,white,not hispanic or latino 164,2017-11-01,ambulatory,,male,, -164,2017-08-01,ambulatory,,male,[White], +164,2017-08-01,ambulatory,,male,white, 164,2017-04-01,ambulatory,,male,, 164,2017-01-01,ambulatory,,male,, 164,2016-11-01,ambulatory,,male,, -164,2016-10-01,ambulatory,,female,[White], -164,2016-06-01,,,male,[White],[Not Hispanic or Latino] -163,,,71,female,,[Not Hispanic or Latino] -163,,,71,female,[White],[Not Hispanic or Latino] +164,2016-10-01,ambulatory,,female,white, +164,2016-06-01,,,male,white,not hispanic or latino +163,,,71,female,,not hispanic or latino +163,,,71,female,white,not hispanic or latino 163,,,56,male,, -163,,,45,female,[White], -163,,,19,female,[White],[Not Hispanic or Latino] -163,,home health,,,[White],[Not Hispanic or Latino] -163,,ambulatory,,,[Unknown], -163,,ambulatory,,,[Unknown],[Not Hispanic or Latino] -163,,ambulatory,44,female,,[Not Hispanic or Latino] -163,,ambulatory,26,female,[White],[Not Hispanic or Latino] -163,,ambulatory,23,female,[White], -163,,ambulatory,21,female,[White],[Not Hispanic or Latino] -163,,ambulatory,19,female,[White], -163,,ambulatory,10,,[White], -163,,ambulatory,2,male,,[Not Hispanic or Latino] -163,2021-09-01,,,male,[White],[Not Hispanic or Latino] -163,2021-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -163,2020-12-01,,,male,[White],[Not Hispanic or Latino] -163,2020-12-01,ambulatory,,male,,[Not Hispanic or Latino] -163,2019-05-01,,,male,[White], -163,2019-03-01,,,male,[White],[Not Hispanic or Latino] -163,2019-01-01,,,male,,[Not Hispanic or Latino] -163,2018-08-01,ambulatory,,male,,[Not Hispanic or Latino] -163,2018-04-01,ambulatory,,female,,[Not Hispanic or Latino] -163,2018-03-01,ambulatory,,male,[White], -163,2017-07-01,,,male,[White],[Not Hispanic or Latino] -163,2017-05-01,ambulatory,,male,[White], +163,,,45,female,white, +163,,,19,female,white,not hispanic or latino +163,,home health,,,white,not hispanic or latino +163,,ambulatory,,,unknown, +163,,ambulatory,,,unknown,not hispanic or latino +163,,ambulatory,44,female,,not hispanic or latino +163,,ambulatory,26,female,white,not hispanic or latino +163,,ambulatory,23,female,white, +163,,ambulatory,21,female,white,not hispanic or latino +163,,ambulatory,19,female,white, +163,,ambulatory,10,,white, +163,,ambulatory,2,male,,not hispanic or latino +163,2021-09-01,,,male,white,not hispanic or latino +163,2021-01-01,ambulatory,,male,white,not hispanic or latino +163,2020-12-01,,,male,white,not hispanic or latino +163,2020-12-01,ambulatory,,male,,not hispanic or latino +163,2019-05-01,,,male,white, +163,2019-03-01,,,male,white,not hispanic or latino +163,2019-01-01,,,male,,not hispanic or latino +163,2018-08-01,ambulatory,,male,,not hispanic or latino +163,2018-04-01,ambulatory,,female,,not hispanic or latino +163,2018-03-01,ambulatory,,male,white, +163,2017-07-01,,,male,white,not hispanic or latino +163,2017-05-01,ambulatory,,male,white, 163,2017-05-01,ambulatory,,female,, -163,2016-09-01,ambulatory,,male,[White], +163,2016-09-01,ambulatory,,male,white, 163,2016-08-01,ambulatory,,female,, -163,2016-06-01,,,female,[White], -162,,,41,female,[White], -162,,,11,,,[Not Hispanic or Latino] -162,,,10,,,[Not Hispanic or Latino] -162,,ambulatory,73,male,[White], -162,,ambulatory,40,female,,[Not Hispanic or Latino] -162,,ambulatory,39,female,,[Not Hispanic or Latino] -162,,ambulatory,33,female,[White], +163,2016-06-01,,,female,white, +162,,,41,female,white, +162,,,11,,,not hispanic or latino +162,,,10,,,not hispanic or latino +162,,ambulatory,73,male,white, +162,,ambulatory,40,female,,not hispanic or latino +162,,ambulatory,39,female,,not hispanic or latino +162,,ambulatory,33,female,white, 162,,ambulatory,8,,, 162,,ambulatory,5,,, -162,2023-01-01,,,male,,[Not Hispanic or Latino] +162,2023-01-01,,,male,,not hispanic or latino 162,2023-01-01,ambulatory,,male,, 162,2022-11-01,,,male,, -162,2022-03-01,ambulatory,,female,,[Not Hispanic or Latino] -162,2020-12-01,ambulatory,,female,[White], -162,2020-10-01,,,male,,[Not Hispanic or Latino] +162,2022-03-01,ambulatory,,female,,not hispanic or latino +162,2020-12-01,ambulatory,,female,white, +162,2020-10-01,,,male,,not hispanic or latino 162,2020-10-01,ambulatory,,female,, -162,2020-04-01,,,male,,[Not Hispanic or Latino] -162,2020-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] -162,2019-10-01,,,female,[White],[Not Hispanic or Latino] +162,2020-04-01,,,male,,not hispanic or latino +162,2020-04-01,ambulatory,,female,white,not hispanic or latino +162,2019-10-01,,,female,white,not hispanic or latino 162,2019-01-01,ambulatory,,male,, 162,2018-12-01,,,male,, -162,2018-04-01,ambulatory,,male,,[Not Hispanic or Latino] -162,2017-06-01,ambulatory,,male,[White], -162,2016-12-01,,,male,[White], -162,2016-10-01,,,male,[White], -162,2016-10-01,ambulatory,,female,,[Not Hispanic or Latino] -162,2016-09-01,,,male,[White],[Not Hispanic or Latino] -162,2016-09-01,ambulatory,,female,,[Not Hispanic or Latino] -162,2016-08-01,,,female,,[Not Hispanic or Latino] -162,2016-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -162,2016-06-01,ambulatory,,male,[White], -161,,,66,male,[White], -161,,,66,male,[White],[Not Hispanic or Latino] +162,2018-04-01,ambulatory,,male,,not hispanic or latino +162,2017-06-01,ambulatory,,male,white, +162,2016-12-01,,,male,white, +162,2016-10-01,,,male,white, +162,2016-10-01,ambulatory,,female,,not hispanic or latino +162,2016-09-01,,,male,white,not hispanic or latino +162,2016-09-01,ambulatory,,female,,not hispanic or latino +162,2016-08-01,,,female,,not hispanic or latino +162,2016-07-01,ambulatory,,male,white,not hispanic or latino +162,2016-06-01,ambulatory,,male,white, +161,,,66,male,white, +161,,,66,male,white,not hispanic or latino 161,,,55,male,, -161,,,24,female,,[Not Hispanic or Latino] -161,,,24,female,[White], +161,,,24,female,,not hispanic or latino +161,,,24,female,white, 161,,ambulatory,71,female,, -161,,ambulatory,71,female,[White], -161,,ambulatory,40,female,[White], +161,,ambulatory,71,female,white, +161,,ambulatory,40,female,white, 161,,ambulatory,37,female,, -161,,ambulatory,36,female,,[Not Hispanic or Latino] -161,,ambulatory,23,female,[White],[Not Hispanic or Latino] +161,,ambulatory,36,female,,not hispanic or latino +161,,ambulatory,23,female,white,not hispanic or latino 161,,ambulatory,6,,, -161,,ambulatory,4,,[White],[Not Hispanic or Latino] +161,,ambulatory,4,,white,not hispanic or latino 161,2022-06-01,ambulatory,,male,, 161,2022-04-01,ambulatory,,male,, -161,2020-12-01,ambulatory,,female,,[Not Hispanic or Latino] +161,2020-12-01,ambulatory,,female,,not hispanic or latino 161,2020-08-01,,,male,, 161,2019-11-01,ambulatory,,female,, -161,2019-09-01,,,female,[White], -161,2019-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -161,2019-04-01,,,male,[White], +161,2019-09-01,,,female,white, +161,2019-08-01,ambulatory,,female,white,not hispanic or latino +161,2019-04-01,,,male,white, 161,2019-04-01,ambulatory,,male,, -161,2019-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -161,2018-11-01,,,female,[White],[Not Hispanic or Latino] -161,2018-11-01,ambulatory,,female,[White], +161,2019-03-01,ambulatory,,female,white,not hispanic or latino +161,2018-11-01,,,female,white,not hispanic or latino +161,2018-11-01,ambulatory,,female,white, 161,2017-11-01,,,female,, -161,2017-06-01,,,male,[White],[Not Hispanic or Latino] -161,2017-01-01,,,male,[White],[Not Hispanic or Latino] -161,2017-01-01,ambulatory,,female,[White], -161,2016-12-01,ambulatory,,female,[White], -161,2016-06-01,,,female,,[Not Hispanic or Latino] +161,2017-06-01,,,male,white,not hispanic or latino +161,2017-01-01,,,male,white,not hispanic or latino +161,2017-01-01,ambulatory,,female,white, +161,2016-12-01,ambulatory,,female,white, +161,2016-06-01,,,female,,not hispanic or latino 160,,,63,male,, -160,,,63,male,,[Not Hispanic or Latino] -160,,,22,female,[White], -160,,,8,,,[Not Hispanic or Latino] -160,,,6,,,[Not Hispanic or Latino] -160,,,5,,,[Not Hispanic or Latino] -160,,,2,male,[White], -160,,ambulatory,7,,[White], -160,2022-06-01,,,male,,[Not Hispanic or Latino] -160,2022-03-01,ambulatory,,female,[White], -160,2021-10-01,ambulatory,,male,[White], -160,2020-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -160,2020-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -160,2020-01-01,,,male,,[Not Hispanic or Latino] -160,2019-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] -160,2019-05-01,,,male,,[Not Hispanic or Latino] -160,2018-10-01,,,female,[White],[Not Hispanic or Latino] -160,2018-10-01,ambulatory,,female,,[Not Hispanic or Latino] +160,,,63,male,,not hispanic or latino +160,,,22,female,white, +160,,,8,,,not hispanic or latino +160,,,6,,,not hispanic or latino +160,,,5,,,not hispanic or latino +160,,,2,male,white, +160,,ambulatory,7,,white, +160,2022-06-01,,,male,,not hispanic or latino +160,2022-03-01,ambulatory,,female,white, +160,2021-10-01,ambulatory,,male,white, +160,2020-07-01,ambulatory,,female,white,not hispanic or latino +160,2020-05-01,ambulatory,,female,white,not hispanic or latino +160,2020-01-01,,,male,,not hispanic or latino +160,2019-06-01,ambulatory,,female,white,not hispanic or latino +160,2019-05-01,,,male,,not hispanic or latino +160,2018-10-01,,,female,white,not hispanic or latino +160,2018-10-01,ambulatory,,female,,not hispanic or latino 160,2018-02-01,ambulatory,,male,, -160,2017-12-01,ambulatory,,male,,[Not Hispanic or Latino] -160,2017-10-01,ambulatory,,male,[White], -160,2017-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -160,2016-11-01,,,male,,[Not Hispanic or Latino] -160,2016-10-01,ambulatory,,male,,[Not Hispanic or Latino] +160,2017-12-01,ambulatory,,male,,not hispanic or latino +160,2017-10-01,ambulatory,,male,white, +160,2017-08-01,ambulatory,,female,white,not hispanic or latino +160,2016-11-01,,,male,,not hispanic or latino +160,2016-10-01,ambulatory,,male,,not hispanic or latino 159,,,46,male,, -159,,,34,female,,[Not Hispanic or Latino] -159,,ambulatory,73,male,[White],[Not Hispanic or Latino] -159,,ambulatory,9,,[White],[Not Hispanic or Latino] -159,2023-03-01,,,male,,[Not Hispanic or Latino] +159,,,34,female,,not hispanic or latino +159,,ambulatory,73,male,white,not hispanic or latino +159,,ambulatory,9,,white,not hispanic or latino +159,2023-03-01,,,male,,not hispanic or latino 159,2022-12-01,,,male,, 159,2022-09-01,,,male,, -159,2022-08-01,,,male,,[Not Hispanic or Latino] +159,2022-08-01,,,male,,not hispanic or latino 159,2022-07-01,ambulatory,,male,, -159,2022-03-01,,,male,,[Not Hispanic or Latino] +159,2022-03-01,,,male,,not hispanic or latino 159,2022-03-01,ambulatory,,male,, 159,2022-01-01,,,male,, -159,2021-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -159,2020-12-01,ambulatory,,male,[White], +159,2021-07-01,ambulatory,,male,white,not hispanic or latino +159,2020-12-01,ambulatory,,male,white, 159,2020-06-01,,,male,, -159,2019-11-01,,,female,[White], -159,2019-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -159,2019-06-01,,,male,,[Not Hispanic or Latino] -159,2019-02-01,,,female,[White],[Not Hispanic or Latino] -159,2018-04-01,ambulatory,,female,[White], -159,2018-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -159,2017-10-01,,,female,[White], +159,2019-11-01,,,female,white, +159,2019-07-01,ambulatory,,female,white,not hispanic or latino +159,2019-06-01,,,male,,not hispanic or latino +159,2019-02-01,,,female,white,not hispanic or latino +159,2018-04-01,ambulatory,,female,white, +159,2018-01-01,ambulatory,,male,white,not hispanic or latino +159,2017-10-01,,,female,white, 159,2017-10-01,ambulatory,,female,, -159,2017-09-01,,,male,[White], -159,2017-07-01,ambulatory,,male,,[Not Hispanic or Latino] -159,2017-04-01,,,female,[White], +159,2017-09-01,,,male,white, +159,2017-07-01,ambulatory,,male,,not hispanic or latino +159,2017-04-01,,,female,white, 159,2017-04-01,ambulatory,,female,, 159,2017-02-01,ambulatory,,female,, -159,2016-10-01,,,female,[White],[Not Hispanic or Latino] -159,2016-09-01,,,female,[White],[Not Hispanic or Latino] +159,2016-10-01,,,female,white,not hispanic or latino +159,2016-09-01,,,female,white,not hispanic or latino 158,,,83,male,, -158,,,83,male,[White], -158,,,51,female,,[Not Hispanic or Latino] -158,,,39,female,[White], -158,,,18,male,,[Not Hispanic or Latino] -158,,,16,male,[White], -158,,,8,,[White], -158,,,7,,[White],[Not Hispanic or Latino] +158,,,83,male,white, +158,,,51,female,,not hispanic or latino +158,,,39,female,white, +158,,,18,male,,not hispanic or latino +158,,,16,male,white, +158,,,8,,white, +158,,,7,,white,not hispanic or latino 158,,home health,,male,, -158,,ambulatory,53,female,[White],[Not Hispanic or Latino] -158,,ambulatory,45,female,,[Not Hispanic or Latino] +158,,ambulatory,53,female,white,not hispanic or latino +158,,ambulatory,45,female,,not hispanic or latino 158,,ambulatory,24,female,, -158,,ambulatory,10,,,[Not Hispanic or Latino] +158,,ambulatory,10,,,not hispanic or latino 158,2020-11-01,ambulatory,,male,, -158,2020-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -158,2020-03-01,,,male,[White], -158,2019-03-01,ambulatory,,male,,[Not Hispanic or Latino] -158,2018-10-01,,,male,[White], -158,2018-07-01,,,male,,[Not Hispanic or Latino] +158,2020-11-01,ambulatory,,female,white,not hispanic or latino +158,2020-03-01,,,male,white, +158,2019-03-01,ambulatory,,male,,not hispanic or latino +158,2018-10-01,,,male,white, +158,2018-07-01,,,male,,not hispanic or latino 158,2018-07-01,ambulatory,,male,, -158,2018-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] -158,2017-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -158,2017-10-01,,,female,,[Not Hispanic or Latino] -158,2017-09-01,ambulatory,,female,[White], -158,2017-04-01,,,female,,[Not Hispanic or Latino] -158,2017-02-01,,,male,,[Not Hispanic or Latino] -158,2016-08-01,,,female,[White], -157,,,49,female,[White],[Not Hispanic or Latino] -157,,,30,female,,[Not Hispanic or Latino] -157,,,22,female,[White],[Not Hispanic or Latino] -157,,ambulatory,7,,,[Not Hispanic or Latino] +158,2018-03-01,ambulatory,,male,white,not hispanic or latino +158,2017-12-01,ambulatory,,female,white,not hispanic or latino +158,2017-10-01,,,female,,not hispanic or latino +158,2017-09-01,ambulatory,,female,white, +158,2017-04-01,,,female,,not hispanic or latino +158,2017-02-01,,,male,,not hispanic or latino +158,2016-08-01,,,female,white, +157,,,49,female,white,not hispanic or latino +157,,,30,female,,not hispanic or latino +157,,,22,female,white,not hispanic or latino +157,,ambulatory,7,,,not hispanic or latino 157,2023-02-01,,,male,, -157,2023-01-01,,,male,[White], -157,2022-07-01,,,male,[White], -157,2020-11-01,,,male,[White], -157,2020-07-01,,,male,,[Not Hispanic or Latino] -157,2020-02-01,,,female,,[Not Hispanic or Latino] -157,2019-10-01,ambulatory,,female,,[Not Hispanic or Latino] +157,2023-01-01,,,male,white, +157,2022-07-01,,,male,white, +157,2020-11-01,,,male,white, +157,2020-07-01,,,male,,not hispanic or latino +157,2020-02-01,,,female,,not hispanic or latino +157,2019-10-01,ambulatory,,female,,not hispanic or latino 157,2018-09-01,,,male,, -157,2017-12-01,,,male,[White], -157,2017-09-01,,,female,[White],[Not Hispanic or Latino] -157,2017-09-01,ambulatory,,male,,[Not Hispanic or Latino] -157,2017-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -157,2017-01-01,ambulatory,,female,,[Not Hispanic or Latino] +157,2017-12-01,,,male,white, +157,2017-09-01,,,female,white,not hispanic or latino +157,2017-09-01,ambulatory,,male,,not hispanic or latino +157,2017-03-01,ambulatory,,female,white,not hispanic or latino +157,2017-01-01,ambulatory,,female,,not hispanic or latino 157,2016-11-01,,,female,, -157,2016-10-01,,,male,[White],[Not Hispanic or Latino] -156,,,36,female,[White],[Not Hispanic or Latino] -156,,,35,female,[White],[Not Hispanic or Latino] -156,,ambulatory,38,,[White], -156,,ambulatory,16,male,,[Not Hispanic or Latino] -156,2022-04-01,,,male,[White], -156,2022-03-01,,,female,[White],[Not Hispanic or Latino] -156,2020-12-01,,,female,[White],[Not Hispanic or Latino] -156,2020-11-01,,,male,,[Not Hispanic or Latino] +157,2016-10-01,,,male,white,not hispanic or latino +156,,,36,female,white,not hispanic or latino +156,,,35,female,white,not hispanic or latino +156,,ambulatory,38,,white, +156,,ambulatory,16,male,,not hispanic or latino +156,2022-04-01,,,male,white, +156,2022-03-01,,,female,white,not hispanic or latino +156,2020-12-01,,,female,white,not hispanic or latino +156,2020-11-01,,,male,,not hispanic or latino 156,2020-10-01,ambulatory,,male,, -156,2020-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] +156,2020-09-01,ambulatory,,female,white,not hispanic or latino 156,2019-05-01,ambulatory,,male,, -156,2019-03-01,ambulatory,,male,[White], +156,2019-03-01,ambulatory,,male,white, 156,2018-11-01,,,male,, -156,2018-08-01,,,male,[White],[Not Hispanic or Latino] -156,2018-07-01,,,male,[White], -156,2018-06-01,ambulatory,,male,[White], -156,2018-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -156,2017-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -156,2017-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] +156,2018-08-01,,,male,white,not hispanic or latino +156,2018-07-01,,,male,white, +156,2018-06-01,ambulatory,,male,white, +156,2018-05-01,ambulatory,,male,white,not hispanic or latino +156,2017-10-01,ambulatory,,male,white,not hispanic or latino +156,2017-08-01,ambulatory,,male,white,not hispanic or latino 156,2017-02-01,ambulatory,,male,, -156,2017-01-01,ambulatory,,male,[White], -155,,,51,female,[White], +156,2017-01-01,ambulatory,,male,white, +155,,,51,female,white, 155,,,30,male,, -155,,,24,female,[White],[Not Hispanic or Latino] -155,,,2,male,[White],[Not Hispanic or Latino] -155,,home health,,male,,[Not Hispanic or Latino] -155,,ambulatory,45,female,[White], -155,,ambulatory,44,female,[White], -155,,ambulatory,22,female,[White], -155,,ambulatory,19,female,[White],[Not Hispanic or Latino] -155,,ambulatory,2,male,[White], -155,2023-03-01,,,male,[White], +155,,,24,female,white,not hispanic or latino +155,,,2,male,white,not hispanic or latino +155,,home health,,male,,not hispanic or latino +155,,ambulatory,45,female,white, +155,,ambulatory,44,female,white, +155,,ambulatory,22,female,white, +155,,ambulatory,19,female,white,not hispanic or latino +155,,ambulatory,2,male,white, +155,2023-03-01,,,male,white, 155,2022-10-01,,,male,, -155,2022-05-01,,,male,[White],[Not Hispanic or Latino] -155,2022-05-01,ambulatory,,male,,[Not Hispanic or Latino] -155,2020-10-01,,,female,,[Not Hispanic or Latino] -155,2020-08-01,,,male,,[Not Hispanic or Latino] -155,2020-07-01,,,male,[White], -155,2020-03-01,,,male,[White],[Not Hispanic or Latino] -155,2019-11-01,,,female,,[Not Hispanic or Latino] -155,2019-10-01,ambulatory,,female,[White], -155,2019-09-01,ambulatory,,female,,[Not Hispanic or Latino] -155,2019-04-01,ambulatory,,male,,[Not Hispanic or Latino] -155,2018-12-01,,,male,[White], -155,2018-10-01,,,male,,[Not Hispanic or Latino] -155,2018-04-01,,,male,[White], -155,2018-04-01,,,female,[White],[Not Hispanic or Latino] -155,2018-02-01,ambulatory,,male,,[Not Hispanic or Latino] -155,2017-11-01,,,male,[White], -155,2017-09-01,ambulatory,,female,,[Not Hispanic or Latino] -155,2017-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -155,2017-04-01,,,male,[White], -155,2017-04-01,ambulatory,,male,,[Not Hispanic or Latino] -155,2016-12-01,ambulatory,,male,[White], -155,2016-11-01,ambulatory,,male,,[Not Hispanic or Latino] -155,2016-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -155,2016-07-01,ambulatory,,female,,[Not Hispanic or Latino] -154,,,63,male,[White], -154,,,63,male,[White],[Not Hispanic or Latino] -154,,,32,male,[White], -154,,inpatient encounter,,female,[White],[Not Hispanic or Latino] -154,,ambulatory,49,female,[White],[Not Hispanic or Latino] -154,,ambulatory,24,female,,[Not Hispanic or Latino] +155,2022-05-01,,,male,white,not hispanic or latino +155,2022-05-01,ambulatory,,male,,not hispanic or latino +155,2020-10-01,,,female,,not hispanic or latino +155,2020-08-01,,,male,,not hispanic or latino +155,2020-07-01,,,male,white, +155,2020-03-01,,,male,white,not hispanic or latino +155,2019-11-01,,,female,,not hispanic or latino +155,2019-10-01,ambulatory,,female,white, +155,2019-09-01,ambulatory,,female,,not hispanic or latino +155,2019-04-01,ambulatory,,male,,not hispanic or latino +155,2018-12-01,,,male,white, +155,2018-10-01,,,male,,not hispanic or latino +155,2018-04-01,,,male,white, +155,2018-04-01,,,female,white,not hispanic or latino +155,2018-02-01,ambulatory,,male,,not hispanic or latino +155,2017-11-01,,,male,white, +155,2017-09-01,ambulatory,,female,,not hispanic or latino +155,2017-05-01,ambulatory,,male,white,not hispanic or latino +155,2017-04-01,,,male,white, +155,2017-04-01,ambulatory,,male,,not hispanic or latino +155,2016-12-01,ambulatory,,male,white, +155,2016-11-01,ambulatory,,male,,not hispanic or latino +155,2016-09-01,ambulatory,,male,white,not hispanic or latino +155,2016-07-01,ambulatory,,female,,not hispanic or latino +154,,,63,male,white, +154,,,63,male,white,not hispanic or latino +154,,,32,male,white, +154,,inpatient encounter,,female,white,not hispanic or latino +154,,ambulatory,49,female,white,not hispanic or latino +154,,ambulatory,24,female,,not hispanic or latino 154,2023-03-01,ambulatory,,male,, -154,2022-01-01,,,male,,[Not Hispanic or Latino] -154,2021-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -154,2021-09-01,ambulatory,,male,[White], +154,2022-01-01,,,male,,not hispanic or latino +154,2021-10-01,ambulatory,,male,white,not hispanic or latino +154,2021-09-01,ambulatory,,male,white, 154,2020-03-01,ambulatory,,male,, -154,2020-02-01,ambulatory,,female,,[Not Hispanic or Latino] +154,2020-02-01,ambulatory,,female,,not hispanic or latino 154,2019-07-01,,,male,, -154,2019-04-01,,,male,[White],[Not Hispanic or Latino] -154,2019-02-01,ambulatory,,female,,[Not Hispanic or Latino] -154,2018-10-01,ambulatory,,female,[White], +154,2019-04-01,,,male,white,not hispanic or latino +154,2019-02-01,ambulatory,,female,,not hispanic or latino +154,2018-10-01,ambulatory,,female,white, 154,2018-02-01,ambulatory,,female,, -154,2017-05-01,,,female,,[Not Hispanic or Latino] -154,2017-05-01,,,female,[White], -154,2017-01-01,ambulatory,,male,,[Not Hispanic or Latino] -154,2016-12-01,,,male,[White],[Not Hispanic or Latino] -154,2016-12-01,,,female,[White],[Not Hispanic or Latino] -153,,,44,female,[White],[Not Hispanic or Latino] -153,,,32,male,,[Not Hispanic or Latino] +154,2017-05-01,,,female,,not hispanic or latino +154,2017-05-01,,,female,white, +154,2017-01-01,ambulatory,,male,,not hispanic or latino +154,2016-12-01,,,male,white,not hispanic or latino +154,2016-12-01,,,female,white,not hispanic or latino +153,,,44,female,white,not hispanic or latino +153,,,32,male,,not hispanic or latino 153,,,3,male,, -153,,ambulatory,66,male,[White], -153,,ambulatory,66,male,[White],[Not Hispanic or Latino] +153,,ambulatory,66,male,white, +153,,ambulatory,66,male,white,not hispanic or latino 153,,ambulatory,43,female,, -153,,ambulatory,18,male,,[Not Hispanic or Latino] +153,,ambulatory,18,male,,not hispanic or latino 153,2022-09-01,ambulatory,,male,, -153,2022-03-01,ambulatory,,male,,[Not Hispanic or Latino] -153,2020-10-01,,,male,[White], -153,2020-10-01,,,female,[White], -153,2020-06-01,,,male,,[Not Hispanic or Latino] -153,2020-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] -153,2019-02-01,ambulatory,,female,[White], -153,2018-10-01,ambulatory,,male,[White], -153,2017-11-01,ambulatory,,male,,[Not Hispanic or Latino] -153,2017-09-01,,,male,[White],[Not Hispanic or Latino] -153,2017-02-01,,,female,[White], -153,2017-01-01,,,female,[White],[Not Hispanic or Latino] -153,2016-11-01,,,male,[White], -153,2016-08-01,ambulatory,,female,,[Not Hispanic or Latino] -153,2016-07-01,,,female,[White],[Not Hispanic or Latino] -153,2016-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] +153,2022-03-01,ambulatory,,male,,not hispanic or latino +153,2020-10-01,,,male,white, +153,2020-10-01,,,female,white, +153,2020-06-01,,,male,,not hispanic or latino +153,2020-06-01,ambulatory,,female,white,not hispanic or latino +153,2019-02-01,ambulatory,,female,white, +153,2018-10-01,ambulatory,,male,white, +153,2017-11-01,ambulatory,,male,,not hispanic or latino +153,2017-09-01,,,male,white,not hispanic or latino +153,2017-02-01,,,female,white, +153,2017-01-01,,,female,white,not hispanic or latino +153,2016-11-01,,,male,white, +153,2016-08-01,ambulatory,,female,,not hispanic or latino +153,2016-07-01,,,female,white,not hispanic or latino +153,2016-06-01,ambulatory,,male,white,not hispanic or latino 152,,,70,male,, -152,,,45,female,[White],[Not Hispanic or Latino] -152,,,32,male,[White],[Not Hispanic or Latino] -152,,,18,male,[White], -152,,,6,,[White], -152,,,5,,[White], -152,,,0,female,[White],[Not Hispanic or Latino] +152,,,45,female,white,not hispanic or latino +152,,,32,male,white,not hispanic or latino +152,,,18,male,white, +152,,,6,,white, +152,,,5,,white, +152,,,0,female,white,not hispanic or latino 152,,ambulatory,55,male,, -152,,ambulatory,24,female,[White], -152,,ambulatory,22,female,[White],[Not Hispanic or Latino] -152,,ambulatory,0,female,[White],[Not Hispanic or Latino] +152,,ambulatory,24,female,white, +152,,ambulatory,22,female,white,not hispanic or latino +152,,ambulatory,0,female,white,not hispanic or latino 152,2022-11-01,ambulatory,,male,, -152,2022-06-01,ambulatory,,male,,[Not Hispanic or Latino] +152,2022-06-01,ambulatory,,male,,not hispanic or latino 152,2020-08-01,ambulatory,,male,, -152,2019-11-01,ambulatory,,female,[White], -152,2019-05-01,,,male,[White],[Not Hispanic or Latino] -152,2018-08-01,ambulatory,,male,[White], -152,2018-02-01,,,male,[White], -152,2017-07-01,ambulatory,,male,[White], +152,2019-11-01,ambulatory,,female,white, +152,2019-05-01,,,male,white,not hispanic or latino +152,2018-08-01,ambulatory,,male,white, +152,2018-02-01,,,male,white, +152,2017-07-01,ambulatory,,male,white, 152,2016-11-01,ambulatory,,female,, -152,2016-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -152,2016-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] -152,2016-07-01,ambulatory,,female,[White], -152,2016-06-01,ambulatory,,female,[White], -151,,,56,male,,[Not Hispanic or Latino] -151,,ambulatory,16,male,[White], -151,,ambulatory,5,,,[Not Hispanic or Latino] -151,2022-07-01,ambulatory,,male,,[Not Hispanic or Latino] -151,2022-06-01,,,male,[White], -151,2022-03-01,,,male,[White], -151,2020-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -151,2020-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -151,2020-03-01,ambulatory,,male,,[Not Hispanic or Latino] +152,2016-10-01,ambulatory,,female,white,not hispanic or latino +152,2016-09-01,ambulatory,,female,white,not hispanic or latino +152,2016-07-01,ambulatory,,female,white, +152,2016-06-01,ambulatory,,female,white, +151,,,56,male,,not hispanic or latino +151,,ambulatory,16,male,white, +151,,ambulatory,5,,,not hispanic or latino +151,2022-07-01,ambulatory,,male,,not hispanic or latino +151,2022-06-01,,,male,white, +151,2022-03-01,,,male,white, +151,2020-12-01,ambulatory,,male,white,not hispanic or latino +151,2020-12-01,ambulatory,,female,white,not hispanic or latino +151,2020-03-01,ambulatory,,male,,not hispanic or latino 151,2019-10-01,,,male,, -151,2019-09-01,ambulatory,,female,[White], -151,2019-04-01,ambulatory,,male,[White], -151,2019-01-01,,,male,[White],[Not Hispanic or Latino] -151,2018-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -151,2018-02-01,,,female,[White], -151,2017-12-01,,,male,[White],[Not Hispanic or Latino] -151,2017-11-01,,,female,[White], -151,2017-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -151,2017-04-01,ambulatory,,female,[White], -151,2016-10-01,ambulatory,,male,[White], -151,2016-06-01,ambulatory,,female,,[Not Hispanic or Latino] -150,,,43,female,,[Not Hispanic or Latino] -150,,,38,,[White],[Not Hispanic or Latino] -150,,,30,female,[White],[Not Hispanic or Latino] +151,2019-09-01,ambulatory,,female,white, +151,2019-04-01,ambulatory,,male,white, +151,2019-01-01,,,male,white,not hispanic or latino +151,2018-11-01,ambulatory,,female,white,not hispanic or latino +151,2018-02-01,,,female,white, +151,2017-12-01,,,male,white,not hispanic or latino +151,2017-11-01,,,female,white, +151,2017-06-01,ambulatory,,male,white,not hispanic or latino +151,2017-04-01,ambulatory,,female,white, +151,2016-10-01,ambulatory,,male,white, +151,2016-06-01,ambulatory,,female,,not hispanic or latino +150,,,43,female,,not hispanic or latino +150,,,38,,white,not hispanic or latino +150,,,30,female,white,not hispanic or latino 150,,ambulatory,46,male,, 150,,ambulatory,32,male,, -150,,ambulatory,11,,[White], -150,,ambulatory,2,male,[White],[Not Hispanic or Latino] -150,2022-07-01,,,male,[White],[Not Hispanic or Latino] -150,2022-05-01,ambulatory,,male,[White], -150,2022-04-01,,,male,[White],[Not Hispanic or Latino] -150,2022-04-01,ambulatory,,male,,[Not Hispanic or Latino] +150,,ambulatory,11,,white, +150,,ambulatory,2,male,white,not hispanic or latino +150,2022-07-01,,,male,white,not hispanic or latino +150,2022-05-01,ambulatory,,male,white, +150,2022-04-01,,,male,white,not hispanic or latino +150,2022-04-01,ambulatory,,male,,not hispanic or latino 150,2020-09-01,,,male,, 150,2020-07-01,ambulatory,,male,, 150,2020-06-01,ambulatory,,male,, -150,2019-09-01,,,female,[White],[Not Hispanic or Latino] +150,2019-09-01,,,female,white,not hispanic or latino 150,2019-06-01,ambulatory,,male,, -150,2019-05-01,ambulatory,,male,[White], -150,2019-01-01,ambulatory,,male,[White], -150,2018-12-01,,,male,,[Not Hispanic or Latino] -150,2018-09-01,,,male,,[Not Hispanic or Latino] -150,2018-02-01,,,female,,[Not Hispanic or Latino] -150,2017-11-01,,,female,,[Not Hispanic or Latino] -150,2017-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] +150,2019-05-01,ambulatory,,male,white, +150,2019-01-01,ambulatory,,male,white, +150,2018-12-01,,,male,,not hispanic or latino +150,2018-09-01,,,male,,not hispanic or latino +150,2018-02-01,,,female,,not hispanic or latino +150,2017-11-01,,,female,,not hispanic or latino +150,2017-06-01,ambulatory,,female,white,not hispanic or latino 149,,,43,male,, 149,,ambulatory,56,male,, -149,,ambulatory,41,female,[White], -149,,ambulatory,11,,,[Not Hispanic or Latino] -149,,ambulatory,6,,,[Not Hispanic or Latino] -149,2022-11-01,,,male,[White], -149,2020-11-01,,,male,[White],[Not Hispanic or Latino] -149,2020-10-01,ambulatory,,female,,[Not Hispanic or Latino] -149,2019-07-01,,,male,,[Not Hispanic or Latino] -149,2018-11-01,,,male,,[Not Hispanic or Latino] -149,2018-10-01,ambulatory,,male,,[Not Hispanic or Latino] -149,2018-07-01,ambulatory,,male,,[Not Hispanic or Latino] +149,,ambulatory,41,female,white, +149,,ambulatory,11,,,not hispanic or latino +149,,ambulatory,6,,,not hispanic or latino +149,2022-11-01,,,male,white, +149,2020-11-01,,,male,white,not hispanic or latino +149,2020-10-01,ambulatory,,female,,not hispanic or latino +149,2019-07-01,,,male,,not hispanic or latino +149,2018-11-01,,,male,,not hispanic or latino +149,2018-10-01,ambulatory,,male,,not hispanic or latino +149,2018-07-01,ambulatory,,male,,not hispanic or latino 149,2017-11-01,ambulatory,,female,, -149,2017-10-01,ambulatory,,female,[White], -149,2017-05-01,ambulatory,,female,,[Not Hispanic or Latino] -149,2017-05-01,ambulatory,,female,[White], -149,2017-02-01,,,female,,[Not Hispanic or Latino] -149,2016-12-01,ambulatory,,female,[White],[Not Hispanic or Latino] -148,,,70,male,,[Not Hispanic or Latino] -148,,,55,male,,[Not Hispanic or Latino] -148,,,33,female,,[Not Hispanic or Latino] -148,,,3,male,,[Not Hispanic or Latino] -148,,ambulatory,71,female,,[Not Hispanic or Latino] -148,,ambulatory,71,female,[White],[Not Hispanic or Latino] +149,2017-10-01,ambulatory,,female,white, +149,2017-05-01,ambulatory,,female,,not hispanic or latino +149,2017-05-01,ambulatory,,female,white, +149,2017-02-01,,,female,,not hispanic or latino +149,2016-12-01,ambulatory,,female,white,not hispanic or latino +148,,,70,male,,not hispanic or latino +148,,,55,male,,not hispanic or latino +148,,,33,female,,not hispanic or latino +148,,,3,male,,not hispanic or latino +148,,ambulatory,71,female,,not hispanic or latino +148,,ambulatory,71,female,white,not hispanic or latino 148,,ambulatory,63,male,, -148,,ambulatory,63,male,,[Not Hispanic or Latino] -148,,ambulatory,34,female,,[Not Hispanic or Latino] -148,,ambulatory,24,female,[White],[Not Hispanic or Latino] -148,,ambulatory,8,,,[Not Hispanic or Latino] -148,2023-03-01,,,male,[White],[Not Hispanic or Latino] -148,2023-03-01,ambulatory,,male,,[Not Hispanic or Latino] -148,2023-02-01,,,male,,[Not Hispanic or Latino] -148,2023-01-01,ambulatory,,male,,[Not Hispanic or Latino] -148,2022-12-01,,,male,[White], -148,2022-09-01,,,male,,[Not Hispanic or Latino] +148,,ambulatory,63,male,,not hispanic or latino +148,,ambulatory,34,female,,not hispanic or latino +148,,ambulatory,24,female,white,not hispanic or latino +148,,ambulatory,8,,,not hispanic or latino +148,2023-03-01,,,male,white,not hispanic or latino +148,2023-03-01,ambulatory,,male,,not hispanic or latino +148,2023-02-01,,,male,,not hispanic or latino +148,2023-01-01,ambulatory,,male,,not hispanic or latino +148,2022-12-01,,,male,white, +148,2022-09-01,,,male,,not hispanic or latino 148,2022-01-01,ambulatory,,male,, -148,2020-11-01,ambulatory,,male,,[Not Hispanic or Latino] -148,2020-11-01,ambulatory,,male,[White], -148,2020-10-01,ambulatory,,female,[White], -148,2020-02-01,,,female,[White], -148,2019-11-01,ambulatory,,female,,[Not Hispanic or Latino] -148,2019-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -148,2019-06-01,,,male,[White], -148,2019-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] -148,2018-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -148,2017-04-01,ambulatory,,female,,[Not Hispanic or Latino] -148,2017-02-01,ambulatory,,male,,[Not Hispanic or Latino] -148,2016-11-01,ambulatory,,male,[White], -147,,,40,female,[White],[Not Hispanic or Latino] +148,2020-11-01,ambulatory,,male,,not hispanic or latino +148,2020-11-01,ambulatory,,male,white, +148,2020-10-01,ambulatory,,female,white, +148,2020-02-01,,,female,white, +148,2019-11-01,ambulatory,,female,,not hispanic or latino +148,2019-10-01,ambulatory,,female,white,not hispanic or latino +148,2019-06-01,,,male,white, +148,2019-03-01,ambulatory,,male,white,not hispanic or latino +148,2018-06-01,ambulatory,,male,white,not hispanic or latino +148,2017-04-01,ambulatory,,female,,not hispanic or latino +148,2017-02-01,ambulatory,,male,,not hispanic or latino +148,2016-11-01,ambulatory,,male,white, +147,,,40,female,white,not hispanic or latino 147,,,17,male,, -147,,ambulatory,30,female,,[Not Hispanic or Latino] -147,2022-11-01,,,male,,[Not Hispanic or Latino] -147,2022-10-01,,,male,,[Not Hispanic or Latino] +147,,ambulatory,30,female,,not hispanic or latino +147,2022-11-01,,,male,,not hispanic or latino +147,2022-10-01,,,male,,not hispanic or latino 147,2022-10-01,ambulatory,,male,, -147,2020-08-01,ambulatory,,male,,[Not Hispanic or Latino] +147,2020-08-01,ambulatory,,male,,not hispanic or latino 147,2019-02-01,,,male,, -147,2019-01-01,ambulatory,,male,,[Not Hispanic or Latino] +147,2019-01-01,ambulatory,,male,,not hispanic or latino 147,2018-12-01,ambulatory,,male,, -147,2018-02-01,,,male,[White],[Not Hispanic or Latino] -147,2017-12-01,ambulatory,,male,[White], -147,2017-10-01,,,female,[White],[Not Hispanic or Latino] -147,2017-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] -147,2017-04-01,,,male,[White],[Not Hispanic or Latino] -147,2017-04-01,,,female,[White],[Not Hispanic or Latino] -147,2017-02-01,,,male,[White], -147,2016-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -147,2016-08-01,,,female,[White],[Not Hispanic or Latino] -147,2016-08-01,ambulatory,,female,[White], -146,,,42,female,[White], +147,2018-02-01,,,male,white,not hispanic or latino +147,2017-12-01,ambulatory,,male,white, +147,2017-10-01,,,female,white,not hispanic or latino +147,2017-09-01,ambulatory,,female,white,not hispanic or latino +147,2017-04-01,,,male,white,not hispanic or latino +147,2017-04-01,,,female,white,not hispanic or latino +147,2017-02-01,,,male,white, +147,2016-12-01,ambulatory,,male,white,not hispanic or latino +147,2016-08-01,,,female,white,not hispanic or latino +147,2016-08-01,ambulatory,,female,white, +146,,,42,female,white, 146,,,38,female,, -146,,,11,,[White],[Not Hispanic or Latino] -146,,,8,,[White],[Not Hispanic or Latino] -146,,,5,,[White],[Not Hispanic or Latino] -146,,ambulatory,51,female,,[Not Hispanic or Latino] -146,,ambulatory,18,male,[White], -146,,ambulatory,8,,[White], -146,2023-02-01,,,male,[White], -146,2022-12-01,,,male,,[Not Hispanic or Latino] +146,,,11,,white,not hispanic or latino +146,,,8,,white,not hispanic or latino +146,,,5,,white,not hispanic or latino +146,,ambulatory,51,female,,not hispanic or latino +146,,ambulatory,18,male,white, +146,,ambulatory,8,,white, +146,2023-02-01,,,male,white, +146,2022-12-01,,,male,,not hispanic or latino 146,2022-12-01,ambulatory,,male,, -146,2020-10-01,,,male,[White],[Not Hispanic or Latino] -146,2020-10-01,ambulatory,,male,,[Not Hispanic or Latino] -146,2020-07-01,,,male,[White],[Not Hispanic or Latino] +146,2020-10-01,,,male,white,not hispanic or latino +146,2020-10-01,ambulatory,,male,,not hispanic or latino +146,2020-07-01,,,male,white,not hispanic or latino 146,2020-05-01,,,male,, -146,2020-04-01,,,male,[White], +146,2020-04-01,,,male,white, 146,2019-12-01,,,male,, -146,2019-11-01,,,female,[White],[Not Hispanic or Latino] -146,2019-07-01,,,male,[White], -146,2018-07-01,,,male,[White],[Not Hispanic or Latino] -146,2018-07-01,ambulatory,,male,[White], -146,2018-04-01,ambulatory,,male,[White], -146,2017-11-01,,,male,[White],[Not Hispanic or Latino] -146,2017-10-01,ambulatory,,female,,[Not Hispanic or Latino] -146,2017-09-01,ambulatory,,male,[White], -146,2017-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -146,2016-11-01,,,female,,[Not Hispanic or Latino] -146,2016-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -145,,,34,female,[White],[Not Hispanic or Latino] -145,,,14,male,,[Not Hispanic or Latino] -145,,ambulatory,44,female,[White],[Not Hispanic or Latino] -145,2023-03-01,ambulatory,,male,[White], +146,2019-11-01,,,female,white,not hispanic or latino +146,2019-07-01,,,male,white, +146,2018-07-01,,,male,white,not hispanic or latino +146,2018-07-01,ambulatory,,male,white, +146,2018-04-01,ambulatory,,male,white, +146,2017-11-01,,,male,white,not hispanic or latino +146,2017-10-01,ambulatory,,female,,not hispanic or latino +146,2017-09-01,ambulatory,,male,white, +146,2017-01-01,ambulatory,,male,white,not hispanic or latino +146,2016-11-01,,,female,,not hispanic or latino +146,2016-10-01,ambulatory,,male,white,not hispanic or latino +145,,,34,female,white,not hispanic or latino +145,,,14,male,,not hispanic or latino +145,,ambulatory,44,female,white,not hispanic or latino +145,2023-03-01,ambulatory,,male,white, 145,2023-02-01,ambulatory,,male,, -145,2023-01-01,,,male,[White],[Not Hispanic or Latino] -145,2022-03-01,,,male,[White],[Not Hispanic or Latino] -145,2022-03-01,ambulatory,,male,[White], +145,2023-01-01,,,male,white,not hispanic or latino +145,2022-03-01,,,male,white,not hispanic or latino +145,2022-03-01,ambulatory,,male,white, 145,2022-02-01,,,male,, -145,2021-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -145,2020-09-01,,,male,,[Not Hispanic or Latino] -145,2020-02-01,ambulatory,,female,[White], -145,2019-05-01,ambulatory,,male,,[Not Hispanic or Latino] -145,2019-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] -145,2018-12-01,,,male,[White],[Not Hispanic or Latino] -145,2018-11-01,,,male,[White], -145,2018-10-01,,,male,[White],[Not Hispanic or Latino] +145,2021-09-01,ambulatory,,male,white,not hispanic or latino +145,2020-09-01,,,male,,not hispanic or latino +145,2020-02-01,ambulatory,,female,white, +145,2019-05-01,ambulatory,,male,,not hispanic or latino +145,2019-04-01,ambulatory,,male,white,not hispanic or latino +145,2018-12-01,,,male,white,not hispanic or latino +145,2018-11-01,,,male,white, +145,2018-10-01,,,male,white,not hispanic or latino 145,2018-09-01,ambulatory,,male,, -145,2018-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] -145,2017-04-01,ambulatory,,male,[White], -145,2017-02-01,ambulatory,,female,[White], -144,,,43,male,,[Not Hispanic or Latino] -144,,,39,female,[White],[Not Hispanic or Latino] +145,2018-04-01,ambulatory,,female,white,not hispanic or latino +145,2017-04-01,ambulatory,,male,white, +145,2017-02-01,ambulatory,,female,white, +144,,,43,male,,not hispanic or latino +144,,,39,female,white,not hispanic or latino 144,,,29,male,, -144,,ambulatory,45,female,[White],[Not Hispanic or Latino] +144,,ambulatory,45,female,white,not hispanic or latino 144,,ambulatory,3,male,, -144,2022-08-01,,,male,[White], -144,2022-07-01,ambulatory,,male,[White], -144,2022-06-01,ambulatory,,male,[White], -144,2022-01-01,,,male,[White], -144,2020-06-01,ambulatory,,male,,[Not Hispanic or Latino] -144,2019-10-01,,,male,[White], -144,2019-06-01,,,male,[White],[Not Hispanic or Latino] -144,2019-06-01,ambulatory,,male,,[Not Hispanic or Latino] +144,2022-08-01,,,male,white, +144,2022-07-01,ambulatory,,male,white, +144,2022-06-01,ambulatory,,male,white, +144,2022-01-01,,,male,white, +144,2020-06-01,ambulatory,,male,,not hispanic or latino +144,2019-10-01,,,male,white, +144,2019-06-01,,,male,white,not hispanic or latino +144,2019-06-01,ambulatory,,male,,not hispanic or latino 144,2018-11-01,ambulatory,,male,, -144,2018-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -144,2018-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] -144,2018-04-01,,,male,[White],[Not Hispanic or Latino] -144,2017-01-01,ambulatory,,female,[White],[Not Hispanic or Latino] -144,2016-11-01,,,male,[White],[Not Hispanic or Latino] -144,2016-06-01,,,female,[White],[Not Hispanic or Latino] -143,,,37,female,,[Not Hispanic or Latino] -143,,,6,,[White],[Not Hispanic or Latino] -143,,ambulatory,51,female,[White], -143,,ambulatory,36,female,[White],[Not Hispanic or Latino] -143,,ambulatory,7,,[White],[Not Hispanic or Latino] -143,,ambulatory,6,,[White], -143,,ambulatory,5,,[White], -143,2023-01-01,ambulatory,,male,[White], -143,2022-04-01,ambulatory,,male,[White], -143,2022-03-01,ambulatory,,female,[White],[Not Hispanic or Latino] -143,2022-01-01,ambulatory,,male,,[Not Hispanic or Latino] -143,2019-12-01,,,male,,[Not Hispanic or Latino] -143,2017-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -142,,,30,male,[White], +144,2018-10-01,ambulatory,,female,white,not hispanic or latino +144,2018-08-01,ambulatory,,male,white,not hispanic or latino +144,2018-04-01,,,male,white,not hispanic or latino +144,2017-01-01,ambulatory,,female,white,not hispanic or latino +144,2016-11-01,,,male,white,not hispanic or latino +144,2016-06-01,,,female,white,not hispanic or latino +143,,,37,female,,not hispanic or latino +143,,,6,,white,not hispanic or latino +143,,ambulatory,51,female,white, +143,,ambulatory,36,female,white,not hispanic or latino +143,,ambulatory,7,,white,not hispanic or latino +143,,ambulatory,6,,white, +143,,ambulatory,5,,white, +143,2023-01-01,ambulatory,,male,white, +143,2022-04-01,ambulatory,,male,white, +143,2022-03-01,ambulatory,,female,white,not hispanic or latino +143,2022-01-01,ambulatory,,male,,not hispanic or latino +143,2019-12-01,,,male,,not hispanic or latino +143,2017-07-01,ambulatory,,male,white,not hispanic or latino +142,,,30,male,white, 142,,,2,female,, -142,,ambulatory,63,male,[White], -142,,ambulatory,63,male,[White],[Not Hispanic or Latino] +142,,ambulatory,63,male,white, +142,,ambulatory,63,male,white,not hispanic or latino 142,,ambulatory,43,male,, -142,,ambulatory,39,female,[White], -142,,ambulatory,35,female,[White],[Not Hispanic or Latino] -142,,ambulatory,33,female,,[Not Hispanic or Latino] -142,,ambulatory,14,male,,[Not Hispanic or Latino] -142,2022-09-01,,,male,[White], -142,2022-09-01,ambulatory,,male,,[Not Hispanic or Latino] -142,2022-06-01,,,male,[White],[Not Hispanic or Latino] -142,2020-06-01,,,male,[White], -142,2019-10-01,,,male,,[Not Hispanic or Latino] -142,2018-09-01,,,male,[White], -142,2018-02-01,ambulatory,,female,[White], -142,2017-02-01,ambulatory,,female,,[Not Hispanic or Latino] -142,2016-11-01,ambulatory,,female,,[Not Hispanic or Latino] -141,,,65,male,[White], -141,,,65,male,[White],[Not Hispanic or Latino] -141,,,46,male,,[Not Hispanic or Latino] -141,,,3,male,[White], +142,,ambulatory,39,female,white, +142,,ambulatory,35,female,white,not hispanic or latino +142,,ambulatory,33,female,,not hispanic or latino +142,,ambulatory,14,male,,not hispanic or latino +142,2022-09-01,,,male,white, +142,2022-09-01,ambulatory,,male,,not hispanic or latino +142,2022-06-01,,,male,white,not hispanic or latino +142,2020-06-01,,,male,white, +142,2019-10-01,,,male,,not hispanic or latino +142,2018-09-01,,,male,white, +142,2018-02-01,ambulatory,,female,white, +142,2017-02-01,ambulatory,,female,,not hispanic or latino +142,2016-11-01,ambulatory,,female,,not hispanic or latino +141,,,65,male,white, +141,,,65,male,white,not hispanic or latino +141,,,46,male,,not hispanic or latino +141,,,3,male,white, 141,,ambulatory,70,male,, -141,,ambulatory,32,male,[White], -141,,ambulatory,30,female,[White],[Not Hispanic or Latino] +141,,ambulatory,32,male,white, +141,,ambulatory,30,female,white,not hispanic or latino 141,2022-08-01,ambulatory,,male,, -141,2022-01-01,,,male,[White],[Not Hispanic or Latino] -141,2020-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -141,2020-04-01,,,male,[White],[Not Hispanic or Latino] -141,2019-09-01,ambulatory,,female,[White],[Not Hispanic or Latino] -141,2019-07-01,,,male,[White],[Not Hispanic or Latino] -141,2018-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -141,2018-02-01,ambulatory,,male,[White], -141,2018-02-01,ambulatory,,female,,[Not Hispanic or Latino] -141,2017-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -141,2017-11-01,ambulatory,,male,[White], -141,2017-11-01,ambulatory,,female,[White], -141,2017-05-01,,,female,[White],[Not Hispanic or Latino] -140,,,30,male,,[Not Hispanic or Latino] +141,2022-01-01,,,male,white,not hispanic or latino +141,2020-11-01,ambulatory,,male,white,not hispanic or latino +141,2020-04-01,,,male,white,not hispanic or latino +141,2019-09-01,ambulatory,,female,white,not hispanic or latino +141,2019-07-01,,,male,white,not hispanic or latino +141,2018-10-01,ambulatory,,male,white,not hispanic or latino +141,2018-02-01,ambulatory,,male,white, +141,2018-02-01,ambulatory,,female,,not hispanic or latino +141,2017-12-01,ambulatory,,male,white,not hispanic or latino +141,2017-11-01,ambulatory,,male,white, +141,2017-11-01,ambulatory,,female,white, +141,2017-05-01,,,female,white,not hispanic or latino +140,,,30,male,,not hispanic or latino 140,,,28,male,, -140,,,10,,[White],[Not Hispanic or Latino] -140,,ambulatory,43,female,,[Not Hispanic or Latino] -140,,ambulatory,32,male,,[Not Hispanic or Latino] -140,2022-11-01,ambulatory,,male,,[Not Hispanic or Latino] -140,2022-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -140,2022-02-01,,,male,,[Not Hispanic or Latino] -140,2020-10-01,,,female,[White],[Not Hispanic or Latino] -140,2020-08-01,,,male,[White], -140,2020-07-01,ambulatory,,male,,[Not Hispanic or Latino] -140,2019-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -140,2019-02-01,,,male,,[Not Hispanic or Latino] -140,2019-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -140,2018-12-01,ambulatory,,male,[White], -140,2018-11-01,,,male,[White],[Not Hispanic or Latino] -140,2017-11-01,,,female,[White],[Not Hispanic or Latino] -140,2017-11-01,ambulatory,,female,,[Not Hispanic or Latino] -140,2017-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -140,2017-04-01,ambulatory,,female,[White],[Not Hispanic or Latino] +140,,,10,,white,not hispanic or latino +140,,ambulatory,43,female,,not hispanic or latino +140,,ambulatory,32,male,,not hispanic or latino +140,2022-11-01,ambulatory,,male,,not hispanic or latino +140,2022-05-01,ambulatory,,male,white,not hispanic or latino +140,2022-02-01,,,male,,not hispanic or latino +140,2020-10-01,,,female,white,not hispanic or latino +140,2020-08-01,,,male,white, +140,2020-07-01,ambulatory,,male,,not hispanic or latino +140,2019-05-01,ambulatory,,male,white,not hispanic or latino +140,2019-02-01,,,male,,not hispanic or latino +140,2019-02-01,ambulatory,,female,white,not hispanic or latino +140,2018-12-01,ambulatory,,male,white, +140,2018-11-01,,,male,white,not hispanic or latino +140,2017-11-01,,,female,white,not hispanic or latino +140,2017-11-01,ambulatory,,female,,not hispanic or latino +140,2017-09-01,ambulatory,,male,white,not hispanic or latino +140,2017-04-01,ambulatory,,female,white,not hispanic or latino 139,,,71,male,, 139,,,51,male,, -139,,,43,male,[White], +139,,,43,male,white, 139,,,34,male,, -139,,ambulatory,55,male,,[Not Hispanic or Latino] -139,,ambulatory,43,male,,[Not Hispanic or Latino] +139,,ambulatory,55,male,,not hispanic or latino +139,,ambulatory,43,male,,not hispanic or latino 139,,ambulatory,38,female,, -139,,ambulatory,32,male,[White],[Not Hispanic or Latino] -139,,ambulatory,3,male,,[Not Hispanic or Latino] -139,2023-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] -139,2022-11-01,ambulatory,,male,[White], -139,2022-10-01,,,male,[White], -139,2022-10-01,ambulatory,,male,,[Not Hispanic or Latino] -139,2022-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] +139,,ambulatory,32,male,white,not hispanic or latino +139,,ambulatory,3,male,,not hispanic or latino +139,2023-03-01,ambulatory,,male,white,not hispanic or latino +139,2022-11-01,ambulatory,,male,white, +139,2022-10-01,,,male,white, +139,2022-10-01,ambulatory,,male,,not hispanic or latino +139,2022-03-01,ambulatory,,male,white,not hispanic or latino 139,2022-02-01,ambulatory,,male,, -139,2020-06-01,,,male,[White],[Not Hispanic or Latino] -139,2020-03-01,ambulatory,,male,[White], -139,2019-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -139,2018-02-01,,,female,[White],[Not Hispanic or Latino] -139,2017-02-01,,,male,[White],[Not Hispanic or Latino] -139,2016-11-01,,,female,[White], -139,2016-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -139,2016-08-01,ambulatory,,female,[White],[Not Hispanic or Latino] -139,2016-07-01,ambulatory,,female,[White],[Not Hispanic or Latino] -138,,,37,female,[White], -138,,,15,male,,[Not Hispanic or Latino] -138,,ambulatory,42,female,[White], -138,,ambulatory,38,,[White],[Not Hispanic or Latino] +139,2020-06-01,,,male,white,not hispanic or latino +139,2020-03-01,ambulatory,,male,white, +139,2019-11-01,ambulatory,,female,white,not hispanic or latino +139,2018-02-01,,,female,white,not hispanic or latino +139,2017-02-01,,,male,white,not hispanic or latino +139,2016-11-01,,,female,white, +139,2016-11-01,ambulatory,,male,white,not hispanic or latino +139,2016-08-01,ambulatory,,female,white,not hispanic or latino +139,2016-07-01,ambulatory,,female,white,not hispanic or latino +138,,,37,female,white, +138,,,15,male,,not hispanic or latino +138,,ambulatory,42,female,white, +138,,ambulatory,38,,white,not hispanic or latino 138,,ambulatory,17,male,, -138,,ambulatory,15,male,,[Not Hispanic or Latino] -138,2020-10-01,ambulatory,,male,[White], -138,2020-07-01,ambulatory,,male,[White], -138,2019-10-01,,,male,[White],[Not Hispanic or Latino] +138,,ambulatory,15,male,,not hispanic or latino +138,2020-10-01,ambulatory,,male,white, +138,2020-07-01,ambulatory,,male,white, +138,2019-10-01,,,male,white,not hispanic or latino 138,2019-08-01,,,male,, -138,2018-09-01,ambulatory,,male,,[Not Hispanic or Latino] -138,2017-02-01,ambulatory,,male,[White], -137,,,30,male,[White],[Not Hispanic or Latino] -137,,ambulatory,70,male,,[Not Hispanic or Latino] -137,,ambulatory,56,male,,[Not Hispanic or Latino] -137,,ambulatory,10,,[White],[Not Hispanic or Latino] -137,,ambulatory,5,,[White],[Not Hispanic or Latino] -137,2023-02-01,,,male,[White],[Not Hispanic or Latino] -137,2022-11-01,,,male,[White],[Not Hispanic or Latino] -137,2022-08-01,,,male,[White],[Not Hispanic or Latino] -137,2022-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -137,2022-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] +138,2018-09-01,ambulatory,,male,,not hispanic or latino +138,2017-02-01,ambulatory,,male,white, +137,,,30,male,white,not hispanic or latino +137,,ambulatory,70,male,,not hispanic or latino +137,,ambulatory,56,male,,not hispanic or latino +137,,ambulatory,10,,white,not hispanic or latino +137,,ambulatory,5,,white,not hispanic or latino +137,2023-02-01,,,male,white,not hispanic or latino +137,2022-11-01,,,male,white,not hispanic or latino +137,2022-08-01,,,male,white,not hispanic or latino +137,2022-07-01,ambulatory,,male,white,not hispanic or latino +137,2022-04-01,ambulatory,,male,white,not hispanic or latino 137,2020-02-01,,,male,, -137,2020-02-01,,,female,[White],[Not Hispanic or Latino] -137,2020-01-01,,,male,[White], -137,2019-02-01,,,male,[White], +137,2020-02-01,,,female,white,not hispanic or latino +137,2020-01-01,,,male,white, +137,2019-02-01,,,male,white, 137,2019-02-01,ambulatory,,male,, -137,2018-11-01,ambulatory,,male,,[Not Hispanic or Latino] -137,2018-09-01,,,male,[White],[Not Hispanic or Latino] -137,2018-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -137,2018-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] -137,2017-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] -137,2017-05-01,ambulatory,,female,[White],[Not Hispanic or Latino] -137,2017-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] -136,,,56,male,[White], -136,,,41,female,[White],[Not Hispanic or Latino] -136,,,17,male,,[Not Hispanic or Latino] -136,,,3,male,[White],[Not Hispanic or Latino] +137,2018-11-01,ambulatory,,male,,not hispanic or latino +137,2018-09-01,,,male,white,not hispanic or latino +137,2018-07-01,ambulatory,,male,white,not hispanic or latino +137,2018-04-01,ambulatory,,male,white,not hispanic or latino +137,2017-10-01,ambulatory,,female,white,not hispanic or latino +137,2017-05-01,ambulatory,,female,white,not hispanic or latino +137,2017-04-01,ambulatory,,male,white,not hispanic or latino +136,,,56,male,white, +136,,,41,female,white,not hispanic or latino +136,,,17,male,,not hispanic or latino +136,,,3,male,white,not hispanic or latino 136,,ambulatory,51,male,, -136,,ambulatory,34,female,[White],[Not Hispanic or Latino] -136,,ambulatory,8,,[White],[Not Hispanic or Latino] -136,2023-02-01,ambulatory,,male,,[Not Hispanic or Latino] -136,2023-02-01,ambulatory,,male,[White], -136,2022-12-01,,,male,[White],[Not Hispanic or Latino] -136,2022-12-01,ambulatory,,male,,[Not Hispanic or Latino] -136,2022-09-01,ambulatory,,male,[White], -136,2020-10-01,ambulatory,,female,[White],[Not Hispanic or Latino] +136,,ambulatory,34,female,white,not hispanic or latino +136,,ambulatory,8,,white,not hispanic or latino +136,2023-02-01,ambulatory,,male,,not hispanic or latino +136,2023-02-01,ambulatory,,male,white, +136,2022-12-01,,,male,white,not hispanic or latino +136,2022-12-01,ambulatory,,male,,not hispanic or latino +136,2022-09-01,ambulatory,,male,white, +136,2020-10-01,ambulatory,,female,white,not hispanic or latino 136,2020-09-01,ambulatory,,male,, -136,2020-05-01,,,male,[White], +136,2020-05-01,,,male,white, 136,2020-04-01,ambulatory,,male,, -136,2020-03-01,ambulatory,,male,[White],[Not Hispanic or Latino] +136,2020-03-01,ambulatory,,male,white,not hispanic or latino 136,2019-10-01,ambulatory,,male,, -136,2018-12-01,ambulatory,,male,,[Not Hispanic or Latino] -136,2018-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -136,2017-02-01,,,female,[White],[Not Hispanic or Latino] -135,,,51,male,,[Not Hispanic or Latino] -135,,,46,male,[White], -135,,,18,male,[White],[Not Hispanic or Latino] -135,,ambulatory,11,,[White],[Not Hispanic or Latino] -135,,ambulatory,6,,[White],[Not Hispanic or Latino] -135,2022-12-01,ambulatory,,male,[White], -135,2022-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -135,2020-09-01,,,male,[White], -135,2020-08-01,,,male,[White],[Not Hispanic or Latino] +136,2018-12-01,ambulatory,,male,,not hispanic or latino +136,2018-02-01,ambulatory,,male,white,not hispanic or latino +136,2017-02-01,,,female,white,not hispanic or latino +135,,,51,male,,not hispanic or latino +135,,,46,male,white, +135,,,18,male,white,not hispanic or latino +135,,ambulatory,11,,white,not hispanic or latino +135,,ambulatory,6,,white,not hispanic or latino +135,2022-12-01,ambulatory,,male,white, +135,2022-06-01,ambulatory,,male,white,not hispanic or latino +135,2020-09-01,,,male,white, +135,2020-08-01,,,male,white,not hispanic or latino 135,2020-01-01,ambulatory,,male,, -135,2019-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -135,2016-06-01,ambulatory,,female,[White],[Not Hispanic or Latino] -134,,,71,male,,[Not Hispanic or Latino] -134,,,51,male,[White], -134,,,43,male,[White],[Not Hispanic or Latino] -134,,,15,male,[White], -134,2022-08-01,ambulatory,,male,,[Not Hispanic or Latino] -134,2022-02-01,ambulatory,,male,,[Not Hispanic or Latino] -134,2020-06-01,ambulatory,,male,[White], +135,2019-01-01,ambulatory,,male,white,not hispanic or latino +135,2016-06-01,ambulatory,,female,white,not hispanic or latino +134,,,71,male,,not hispanic or latino +134,,,51,male,white, +134,,,43,male,white,not hispanic or latino +134,,,15,male,white, +134,2022-08-01,ambulatory,,male,,not hispanic or latino +134,2022-02-01,ambulatory,,male,,not hispanic or latino +134,2020-06-01,ambulatory,,male,white, 134,2020-05-01,ambulatory,,male,, -134,2020-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -134,2016-11-01,ambulatory,,female,[White], +134,2020-02-01,ambulatory,,female,white,not hispanic or latino +134,2016-11-01,ambulatory,,female,white, 133,,,85,,, -133,,,85,,[White], -133,,ambulatory,46,male,,[Not Hispanic or Latino] -133,,ambulatory,40,female,[White],[Not Hispanic or Latino] +133,,,85,,white, +133,,ambulatory,46,male,,not hispanic or latino +133,,ambulatory,40,female,white,not hispanic or latino 133,,ambulatory,34,male,, -133,,ambulatory,15,male,[White], +133,,ambulatory,15,male,white, 133,,ambulatory,2,female,, -133,2022-10-01,,,male,[White],[Not Hispanic or Latino] -133,2022-10-01,ambulatory,,male,[White], -133,2022-09-01,,,male,[White],[Not Hispanic or Latino] -133,2022-02-01,,,male,[White], -133,2022-01-01,ambulatory,,male,[White], -133,2020-05-01,,,male,,[Not Hispanic or Latino] -133,2020-01-01,,,male,[White],[Not Hispanic or Latino] -133,2019-06-01,ambulatory,,male,[White], -133,2018-11-01,ambulatory,,male,[White], -133,2017-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -132,,,70,male,[White], -132,,,33,female,[White],[Not Hispanic or Latino] -132,,,28,male,[White], -132,,ambulatory,51,male,,[Not Hispanic or Latino] -132,,ambulatory,43,male,[White], -132,,ambulatory,3,male,[White], -132,2020-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -132,2020-09-01,ambulatory,,male,,[Not Hispanic or Latino] -132,2020-02-01,,,male,,[Not Hispanic or Latino] -132,2017-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -131,,,51,male,[White],[Not Hispanic or Latino] -131,,,51,female,[White],[Not Hispanic or Latino] +133,2022-10-01,,,male,white,not hispanic or latino +133,2022-10-01,ambulatory,,male,white, +133,2022-09-01,,,male,white,not hispanic or latino +133,2022-02-01,,,male,white, +133,2022-01-01,ambulatory,,male,white, +133,2020-05-01,,,male,,not hispanic or latino +133,2020-01-01,,,male,white,not hispanic or latino +133,2019-06-01,ambulatory,,male,white, +133,2018-11-01,ambulatory,,male,white, +133,2017-11-01,ambulatory,,male,white,not hispanic or latino +132,,,70,male,white, +132,,,33,female,white,not hispanic or latino +132,,,28,male,white, +132,,ambulatory,51,male,,not hispanic or latino +132,,ambulatory,43,male,white, +132,,ambulatory,3,male,white, +132,2020-10-01,ambulatory,,male,white,not hispanic or latino +132,2020-09-01,ambulatory,,male,,not hispanic or latino +132,2020-02-01,,,male,,not hispanic or latino +132,2017-11-01,ambulatory,,female,white,not hispanic or latino +131,,,51,male,white,not hispanic or latino +131,,,51,female,white,not hispanic or latino 131,,,13,male,, -131,,ambulatory,51,male,[White], -131,,ambulatory,37,female,,[Not Hispanic or Latino] -131,2023-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -131,2020-08-01,ambulatory,,male,[White], -131,2020-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -131,2020-04-01,ambulatory,,male,,[Not Hispanic or Latino] -131,2020-01-01,ambulatory,,male,,[Not Hispanic or Latino] -131,2019-02-01,,,male,[White],[Not Hispanic or Latino] -131,2019-02-01,ambulatory,,male,,[Not Hispanic or Latino] -131,2018-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -131,2018-09-01,ambulatory,,male,[White], -131,2018-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -130,,,70,male,[White],[Not Hispanic or Latino] +131,,ambulatory,51,male,white, +131,,ambulatory,37,female,,not hispanic or latino +131,2023-01-01,ambulatory,,male,white,not hispanic or latino +131,2020-08-01,ambulatory,,male,white, +131,2020-06-01,ambulatory,,male,white,not hispanic or latino +131,2020-04-01,ambulatory,,male,,not hispanic or latino +131,2020-01-01,ambulatory,,male,,not hispanic or latino +131,2019-02-01,,,male,white,not hispanic or latino +131,2019-02-01,ambulatory,,male,,not hispanic or latino +131,2018-12-01,ambulatory,,male,white,not hispanic or latino +131,2018-09-01,ambulatory,,male,white, +131,2018-02-01,ambulatory,,female,white,not hispanic or latino +130,,,70,male,white,not hispanic or latino 130,,,68,female,, -130,,,68,female,[White], -130,,,55,male,[White], -130,,,14,male,[White], -130,,ambulatory,46,male,[White], -130,,ambulatory,18,male,[White],[Not Hispanic or Latino] -130,2022-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -130,2022-08-01,ambulatory,,male,[White], -130,2022-02-01,,,male,[White],[Not Hispanic or Latino] -130,2022-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -130,2020-09-01,,,male,[White],[Not Hispanic or Latino] +130,,,68,female,white, +130,,,55,male,white, +130,,,14,male,white, +130,,ambulatory,46,male,white, +130,,ambulatory,18,male,white,not hispanic or latino +130,2022-11-01,ambulatory,,male,white,not hispanic or latino +130,2022-08-01,ambulatory,,male,white, +130,2022-02-01,,,male,white,not hispanic or latino +130,2022-01-01,ambulatory,,male,white,not hispanic or latino +130,2020-09-01,,,male,white,not hispanic or latino 130,2019-12-01,ambulatory,,male,, -130,2019-08-01,,,male,,[Not Hispanic or Latino] -130,2019-02-01,ambulatory,,male,[White], -130,2017-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -130,2017-02-01,ambulatory,,female,[White],[Not Hispanic or Latino] -129,,,71,male,[White], -129,,,68,female,,[Not Hispanic or Latino] -129,,,68,female,[White],[Not Hispanic or Latino] -129,,,17,male,[White], -129,,,16,male,[White],[Not Hispanic or Latino] -129,,,2,female,[White], -129,,ambulatory,43,male,[White],[Not Hispanic or Latino] -129,2020-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] +130,2019-08-01,,,male,,not hispanic or latino +130,2019-02-01,ambulatory,,male,white, +130,2017-02-01,ambulatory,,male,white,not hispanic or latino +130,2017-02-01,ambulatory,,female,white,not hispanic or latino +129,,,71,male,white, +129,,,68,female,,not hispanic or latino +129,,,68,female,white,not hispanic or latino +129,,,17,male,white, +129,,,16,male,white,not hispanic or latino +129,,,2,female,white, +129,,ambulatory,43,male,white,not hispanic or latino +129,2020-07-01,ambulatory,,male,white,not hispanic or latino 129,2020-02-01,ambulatory,,male,, -129,2019-10-01,ambulatory,,male,[White], -129,2019-06-01,ambulatory,,male,[White],[Not Hispanic or Latino] -129,2016-11-01,,,female,[White],[Not Hispanic or Latino] -128,,,38,female,,[Not Hispanic or Latino] -128,,ambulatory,51,male,[White],[Not Hispanic or Latino] -128,,ambulatory,39,female,[White],[Not Hispanic or Latino] +129,2019-10-01,ambulatory,,male,white, +129,2019-06-01,ambulatory,,male,white,not hispanic or latino +129,2016-11-01,,,female,white,not hispanic or latino +128,,,38,female,,not hispanic or latino +128,,ambulatory,51,male,white,not hispanic or latino +128,,ambulatory,39,female,white,not hispanic or latino 128,2019-11-01,,,male,, -128,2018-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -127,,,43,female,[White], -127,,ambulatory,37,female,[White], -127,,ambulatory,33,female,[White],[Not Hispanic or Latino] -127,,ambulatory,17,male,,[Not Hispanic or Latino] -127,,ambulatory,14,male,[White], -127,,ambulatory,3,male,[White],[Not Hispanic or Latino] -127,2023-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -127,2022-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -127,2022-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -127,2022-02-01,ambulatory,,male,[White], -127,2020-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] -127,2020-02-01,,,male,[White], -127,2019-12-01,ambulatory,,male,,[Not Hispanic or Latino] -127,2019-10-01,ambulatory,,male,,[Not Hispanic or Latino] +128,2018-11-01,ambulatory,,male,white,not hispanic or latino +127,,,43,female,white, +127,,ambulatory,37,female,white, +127,,ambulatory,33,female,white,not hispanic or latino +127,,ambulatory,17,male,,not hispanic or latino +127,,ambulatory,14,male,white, +127,,ambulatory,3,male,white,not hispanic or latino +127,2023-02-01,ambulatory,,male,white,not hispanic or latino +127,2022-10-01,ambulatory,,male,white,not hispanic or latino +127,2022-09-01,ambulatory,,male,white,not hispanic or latino +127,2022-02-01,ambulatory,,male,white, +127,2020-08-01,ambulatory,,male,white,not hispanic or latino +127,2020-02-01,,,male,white, +127,2019-12-01,ambulatory,,male,,not hispanic or latino +127,2019-10-01,ambulatory,,male,,not hispanic or latino 127,2019-07-01,ambulatory,,male,, -126,,,71,male,[White],[Not Hispanic or Latino] +126,,,71,male,white,not hispanic or latino 126,,,69,female,, -126,,,69,female,[White], -126,,,56,male,[White],[Not Hispanic or Latino] -126,,,29,male,,[Not Hispanic or Latino] -126,,,28,male,,[Not Hispanic or Latino] -126,2022-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -126,2020-05-01,,,male,[White],[Not Hispanic or Latino] -126,2019-12-01,,,male,[White], -126,2019-08-01,,,male,[White], +126,,,69,female,white, +126,,,56,male,white,not hispanic or latino +126,,,29,male,,not hispanic or latino +126,,,28,male,,not hispanic or latino +126,2022-12-01,ambulatory,,male,white,not hispanic or latino +126,2020-05-01,,,male,white,not hispanic or latino +126,2019-12-01,,,male,white, +126,2019-08-01,,,male,white, 126,2019-08-01,ambulatory,,male,, -126,2018-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -125,,,85,,,[Not Hispanic or Latino] -125,,,85,,[White],[Not Hispanic or Latino] +126,2018-09-01,ambulatory,,male,white,not hispanic or latino +125,,,85,,,not hispanic or latino +125,,,85,,white,not hispanic or latino 125,,,54,male,, 125,,ambulatory,28,male,, -125,2020-05-01,ambulatory,,male,[White], -125,2020-01-01,ambulatory,,male,[White], -125,2016-11-01,ambulatory,,female,[White],[Not Hispanic or Latino] -124,,,69,female,,[Not Hispanic or Latino] -124,,,69,female,[White],[Not Hispanic or Latino] -124,,,29,male,[White], -124,2022-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] -124,2022-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -124,2020-02-01,ambulatory,,male,,[Not Hispanic or Latino] -124,2019-12-01,,,male,[White],[Not Hispanic or Latino] -124,2019-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] +125,2020-05-01,ambulatory,,male,white, +125,2020-01-01,ambulatory,,male,white, +125,2016-11-01,ambulatory,,female,white,not hispanic or latino +124,,,69,female,,not hispanic or latino +124,,,69,female,white,not hispanic or latino +124,,,29,male,white, +124,2022-08-01,ambulatory,,male,white,not hispanic or latino +124,2022-02-01,ambulatory,,male,white,not hispanic or latino +124,2020-02-01,ambulatory,,male,,not hispanic or latino +124,2019-12-01,,,male,white,not hispanic or latino +124,2019-02-01,ambulatory,,male,white,not hispanic or latino 123,,,3,female,, -123,,,2,female,,[Not Hispanic or Latino] +123,,,2,female,,not hispanic or latino 123,,ambulatory,68,female,, -123,,ambulatory,68,female,[White], -123,,ambulatory,56,male,[White], -123,,ambulatory,55,male,[White], -123,,ambulatory,41,female,[White],[Not Hispanic or Latino] +123,,ambulatory,68,female,white, +123,,ambulatory,56,male,white, +123,,ambulatory,55,male,white, +123,,ambulatory,41,female,white,not hispanic or latino 123,,ambulatory,30,male,, -123,,ambulatory,16,male,[White],[Not Hispanic or Latino] -123,2020-05-01,ambulatory,,male,,[Not Hispanic or Latino] +123,,ambulatory,16,male,white,not hispanic or latino +123,2020-05-01,ambulatory,,male,,not hispanic or latino 123,2019-11-01,ambulatory,,male,, -123,2019-10-01,ambulatory,,male,[White],[Not Hispanic or Latino] -122,,ambulatory,68,female,,[Not Hispanic or Latino] -122,,ambulatory,68,female,[White],[Not Hispanic or Latino] -122,,ambulatory,17,male,[White], -122,,ambulatory,2,female,[White], -122,2020-02-01,,,male,[White],[Not Hispanic or Latino] -122,2019-07-01,ambulatory,,male,,[Not Hispanic or Latino] -121,,,55,male,[White],[Not Hispanic or Latino] -121,,,28,male,[White],[Not Hispanic or Latino] -121,,ambulatory,70,male,[White], -121,,ambulatory,38,female,,[Not Hispanic or Latino] +123,2019-10-01,ambulatory,,male,white,not hispanic or latino +122,,ambulatory,68,female,,not hispanic or latino +122,,ambulatory,68,female,white,not hispanic or latino +122,,ambulatory,17,male,white, +122,,ambulatory,2,female,white, +122,2020-02-01,,,male,white,not hispanic or latino +122,2019-07-01,ambulatory,,male,,not hispanic or latino +121,,,55,male,white,not hispanic or latino +121,,,28,male,white,not hispanic or latino +121,,ambulatory,70,male,white, +121,,ambulatory,38,female,,not hispanic or latino 121,,ambulatory,13,male,, -121,2020-09-01,ambulatory,,male,[White], -121,2020-01-01,ambulatory,,male,[White],[Not Hispanic or Latino] -121,2019-11-01,,,male,[White], -120,,,29,male,[White],[Not Hispanic or Latino] -120,,ambulatory,51,female,[White],[Not Hispanic or Latino] -120,2020-02-01,ambulatory,,male,[White], -120,2019-12-01,ambulatory,,male,[White], -120,2019-11-01,,,male,,[Not Hispanic or Latino] -120,2019-08-01,,,male,[White],[Not Hispanic or Latino] +121,2020-09-01,ambulatory,,male,white, +121,2020-01-01,ambulatory,,male,white,not hispanic or latino +121,2019-11-01,,,male,white, +120,,,29,male,white,not hispanic or latino +120,,ambulatory,51,female,white,not hispanic or latino +120,2020-02-01,ambulatory,,male,white, +120,2019-12-01,ambulatory,,male,white, +120,2019-11-01,,,male,,not hispanic or latino +120,2019-08-01,,,male,white,not hispanic or latino 119,,,42,male,, 119,,,12,female,, -119,,ambulatory,70,male,[White],[Not Hispanic or Latino] +119,,ambulatory,70,male,white,not hispanic or latino 119,,ambulatory,3,female,, -119,2019-07-01,ambulatory,,male,[White], -118,,,17,male,[White],[Not Hispanic or Latino] -118,,home health,,male,[White], -118,,ambulatory,43,female,[White], -118,2019-12-01,ambulatory,,male,[White],[Not Hispanic or Latino] -118,2019-08-01,ambulatory,,male,,[Not Hispanic or Latino] -117,,,46,male,[White],[Not Hispanic or Latino] -117,,,34,male,,[Not Hispanic or Latino] -117,,ambulatory,65,male,[White], -117,,ambulatory,65,male,[White],[Not Hispanic or Latino] -117,,ambulatory,28,male,[White], -117,2020-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] -117,2019-11-01,ambulatory,,male,[White], +119,2019-07-01,ambulatory,,male,white, +118,,,17,male,white,not hispanic or latino +118,,home health,,male,white, +118,,ambulatory,43,female,white, +118,2019-12-01,ambulatory,,male,white,not hispanic or latino +118,2019-08-01,ambulatory,,male,,not hispanic or latino +117,,,46,male,white,not hispanic or latino +117,,,34,male,,not hispanic or latino +117,,ambulatory,65,male,white, +117,,ambulatory,65,male,white,not hispanic or latino +117,,ambulatory,28,male,white, +117,2020-09-01,ambulatory,,male,white,not hispanic or latino +117,2019-11-01,ambulatory,,male,white, 116,,,9,male,, 116,,ambulatory,85,,, -116,,ambulatory,85,,[White], -116,2020-05-01,ambulatory,,male,[White],[Not Hispanic or Latino] -116,2020-04-01,ambulatory,,male,[White], -115,,,54,male,,[Not Hispanic or Latino] -115,,home health,,male,[White],[Not Hispanic or Latino] +116,,ambulatory,85,,white, +116,2020-05-01,ambulatory,,male,white,not hispanic or latino +116,2020-04-01,ambulatory,,male,white, +115,,,54,male,,not hispanic or latino +115,,home health,,male,white,not hispanic or latino 115,,ambulatory,12,female,, -115,,ambulatory,2,female,,[Not Hispanic or Latino] -115,2020-02-01,ambulatory,,male,[White],[Not Hispanic or Latino] -115,2019-11-01,ambulatory,,male,,[Not Hispanic or Latino] +115,,ambulatory,2,female,,not hispanic or latino +115,2020-02-01,ambulatory,,male,white,not hispanic or latino +115,2019-11-01,ambulatory,,male,,not hispanic or latino 115,2019-09-01,,,male,, -114,,,64,male,[White], -114,,,64,male,[White],[Not Hispanic or Latino] +114,,,64,male,white, +114,,,64,male,white,not hispanic or latino 114,,,52,female,, 114,,ambulatory,69,female,, -114,,ambulatory,69,female,[White], -114,,ambulatory,55,male,[White],[Not Hispanic or Latino] -114,2019-11-01,,,male,[White],[Not Hispanic or Latino] -114,2019-08-01,ambulatory,,male,[White], -114,2019-07-01,ambulatory,,male,[White],[Not Hispanic or Latino] -113,,,43,female,[White],[Not Hispanic or Latino] -113,,,42,female,[White],[Not Hispanic or Latino] -113,,,3,female,,[Not Hispanic or Latino] -113,,ambulatory,56,male,[White],[Not Hispanic or Latino] +114,,ambulatory,69,female,white, +114,,ambulatory,55,male,white,not hispanic or latino +114,2019-11-01,,,male,white,not hispanic or latino +114,2019-08-01,ambulatory,,male,white, +114,2019-07-01,ambulatory,,male,white,not hispanic or latino +113,,,43,female,white,not hispanic or latino +113,,,42,female,white,not hispanic or latino +113,,,3,female,,not hispanic or latino +113,,ambulatory,56,male,white,not hispanic or latino 113,,ambulatory,54,male,, -113,,ambulatory,46,male,[White],[Not Hispanic or Latino] -113,,ambulatory,34,male,,[Not Hispanic or Latino] -112,,,42,male,,[Not Hispanic or Latino] -112,,,34,male,[White], -112,,,12,female,,[Not Hispanic or Latino] -112,,,3,female,[White], -112,,ambulatory,69,female,,[Not Hispanic or Latino] -112,,ambulatory,69,female,[White],[Not Hispanic or Latino] -112,2020-04-01,ambulatory,,male,[White],[Not Hispanic or Latino] -111,,,38,female,[White], -111,,,12,female,[White], -111,,ambulatory,28,male,,[Not Hispanic or Latino] -111,,ambulatory,17,male,[White],[Not Hispanic or Latino] -110,,,52,female,,[Not Hispanic or Latino] +113,,ambulatory,46,male,white,not hispanic or latino +113,,ambulatory,34,male,,not hispanic or latino +112,,,42,male,,not hispanic or latino +112,,,34,male,white, +112,,,12,female,,not hispanic or latino +112,,,3,female,white, +112,,ambulatory,69,female,,not hispanic or latino +112,,ambulatory,69,female,white,not hispanic or latino +112,2020-04-01,ambulatory,,male,white,not hispanic or latino +111,,,38,female,white, +111,,,12,female,white, +111,,ambulatory,28,male,,not hispanic or latino +111,,ambulatory,17,male,white,not hispanic or latino +110,,,52,female,,not hispanic or latino 110,,,40,male,, 110,,,19,male,, 110,,,9,female,, -110,,,2,female,[White],[Not Hispanic or Latino] -110,,ambulatory,64,male,[White], -110,,ambulatory,64,male,[White],[Not Hispanic or Latino] +110,,,2,female,white,not hispanic or latino +110,,ambulatory,64,male,white, +110,,ambulatory,64,male,white,not hispanic or latino 110,,ambulatory,42,male,, -110,,ambulatory,30,male,[White], -110,2019-11-01,ambulatory,,male,[White],[Not Hispanic or Latino] -109,,ambulatory,85,,,[Not Hispanic or Latino] -109,,ambulatory,85,,[White],[Not Hispanic or Latino] -109,,ambulatory,34,male,[White], -109,,ambulatory,3,female,,[Not Hispanic or Latino] -109,,ambulatory,3,female,[White], -108,,,13,male,,[Not Hispanic or Latino] +110,,ambulatory,30,male,white, +110,2019-11-01,ambulatory,,male,white,not hispanic or latino +109,,ambulatory,85,,,not hispanic or latino +109,,ambulatory,85,,white,not hispanic or latino +109,,ambulatory,34,male,white, +109,,ambulatory,3,female,,not hispanic or latino +109,,ambulatory,3,female,white, +108,,,13,male,,not hispanic or latino 108,,,4,male,, -108,,ambulatory,30,male,,[Not Hispanic or Latino] -108,,ambulatory,12,female,,[Not Hispanic or Latino] -108,2019-09-01,,,male,,[Not Hispanic or Latino] +108,,ambulatory,30,male,,not hispanic or latino +108,,ambulatory,12,female,,not hispanic or latino +108,2019-09-01,,,male,,not hispanic or latino 108,2019-09-01,ambulatory,,male,, -108,2019-08-01,ambulatory,,male,[White],[Not Hispanic or Latino] +108,2019-08-01,ambulatory,,male,white,not hispanic or latino 107,,,52,male,, -107,,,42,male,[White], -107,,,37,female,[White],[Not Hispanic or Latino] -107,,,12,female,[White],[Not Hispanic or Latino] +107,,,42,male,white, +107,,,37,female,white,not hispanic or latino +107,,,12,female,white,not hispanic or latino 107,,,10,female,, 107,,ambulatory,52,female,, -107,,ambulatory,42,female,[White],[Not Hispanic or Latino] +107,,ambulatory,42,female,white,not hispanic or latino 107,,ambulatory,40,male,, 107,,ambulatory,29,male,, -107,,ambulatory,12,female,[White], +107,,ambulatory,12,female,white, 106,,,75,female,, -106,,,75,female,[White], -106,,,34,male,[White],[Not Hispanic or Latino] -106,,ambulatory,28,male,[White],[Not Hispanic or Latino] -106,2019-09-01,,,male,[White], -105,,,40,male,,[Not Hispanic or Latino] -105,,,9,female,[White], -105,,,4,male,,[Not Hispanic or Latino] +106,,,75,female,white, +106,,,34,male,white,not hispanic or latino +106,,ambulatory,28,male,white,not hispanic or latino +106,2019-09-01,,,male,white, +105,,,40,male,,not hispanic or latino +105,,,9,female,white, +105,,,4,male,,not hispanic or latino 105,,ambulatory,71,male,, -105,,ambulatory,43,female,[White],[Not Hispanic or Latino] -105,,ambulatory,42,male,,[Not Hispanic or Latino] -105,,ambulatory,38,female,[White], -105,,ambulatory,30,male,[White],[Not Hispanic or Latino] +105,,ambulatory,43,female,white,not hispanic or latino +105,,ambulatory,42,male,,not hispanic or latino +105,,ambulatory,38,female,white, +105,,ambulatory,30,male,white,not hispanic or latino 104,,,12,male,, -104,,ambulatory,34,male,[White],[Not Hispanic or Latino] +104,,ambulatory,34,male,white,not hispanic or latino 104,,ambulatory,9,male,, -104,,ambulatory,2,female,[White],[Not Hispanic or Latino] +104,,ambulatory,2,female,white,not hispanic or latino 103,,,7,male,, -103,,ambulatory,54,male,,[Not Hispanic or Latino] -103,,ambulatory,52,female,,[Not Hispanic or Latino] -103,,ambulatory,12,female,[White],[Not Hispanic or Latino] -102,,,9,male,[White], -102,,,3,female,[White],[Not Hispanic or Latino] -102,,ambulatory,40,male,,[Not Hispanic or Latino] +103,,ambulatory,54,male,,not hispanic or latino +103,,ambulatory,52,female,,not hispanic or latino +103,,ambulatory,12,female,white,not hispanic or latino +102,,,9,male,white, +102,,,3,female,white,not hispanic or latino +102,,ambulatory,40,male,,not hispanic or latino 102,,ambulatory,10,female,, 102,,ambulatory,9,female,, -102,2019-09-01,ambulatory,,male,,[Not Hispanic or Latino] -101,,,52,male,,[Not Hispanic or Latino] +102,2019-09-01,ambulatory,,male,,not hispanic or latino +101,,,52,male,,not hispanic or latino 101,,ambulatory,19,male,, -101,,ambulatory,13,male,,[Not Hispanic or Latino] +101,,ambulatory,13,male,,not hispanic or latino 101,,ambulatory,4,male,, -100,,,75,female,,[Not Hispanic or Latino] -100,,,75,female,[White],[Not Hispanic or Latino] -100,,,54,male,[White], -100,,,42,male,[White],[Not Hispanic or Latino] -100,,ambulatory,71,male,,[Not Hispanic or Latino] +100,,,75,female,,not hispanic or latino +100,,,75,female,white,not hispanic or latino +100,,,54,male,white, +100,,,42,male,white,not hispanic or latino +100,,ambulatory,71,male,,not hispanic or latino 100,,ambulatory,12,male,, -99,,,15,male,[White],[Not Hispanic or Latino] -99,,,13,male,[White], -99,,,9,male,,[Not Hispanic or Latino] -99,,,4,male,[White], -99,,ambulatory,15,male,[White],[Not Hispanic or Latino] -99,,ambulatory,3,female,[White],[Not Hispanic or Latino] -99,2019-09-01,,,male,[White],[Not Hispanic or Latino] -99,2019-09-01,ambulatory,,male,[White], -98,,,19,male,,[Not Hispanic or Latino] +99,,,15,male,white,not hispanic or latino +99,,,13,male,white, +99,,,9,male,,not hispanic or latino +99,,,4,male,white, +99,,ambulatory,15,male,white,not hispanic or latino +99,,ambulatory,3,female,white,not hispanic or latino +99,2019-09-01,,,male,white,not hispanic or latino +99,2019-09-01,ambulatory,,male,white, +98,,,19,male,,not hispanic or latino 98,,ambulatory,52,male,, -98,,ambulatory,42,male,[White], -98,,ambulatory,37,female,[White],[Not Hispanic or Latino] -98,,ambulatory,4,male,,[Not Hispanic or Latino] +98,,ambulatory,42,male,white, +98,,ambulatory,37,female,white,not hispanic or latino +98,,ambulatory,4,male,,not hispanic or latino 97,,,67,female,, 97,,,11,female,, -97,,ambulatory,9,female,[White], -96,,,14,male,[White],[Not Hispanic or Latino] -96,,,7,male,,[Not Hispanic or Latino] -96,,,4,male,[White],[Not Hispanic or Latino] -95,,,67,female,,[Not Hispanic or Latino] -95,,,67,female,[White], +97,,ambulatory,9,female,white, +96,,,14,male,white,not hispanic or latino +96,,,7,male,,not hispanic or latino +96,,,4,male,white,not hispanic or latino +95,,,67,female,,not hispanic or latino +95,,,67,female,white, 95,,,31,male,, 95,,,8,male,, 95,,,5,male,, -95,,ambulatory,71,male,[White], +95,,ambulatory,71,male,white, 94,,,66,female,, -94,,,54,male,[White],[Not Hispanic or Latino] -94,,,40,male,[White], -94,,,38,female,[White],[Not Hispanic or Latino] -94,,,19,male,[White], -94,,,11,female,,[Not Hispanic or Latino] -94,,,7,male,[White], -94,,,5,male,,[Not Hispanic or Latino] +94,,,54,male,white,not hispanic or latino +94,,,40,male,white, +94,,,38,female,white,not hispanic or latino +94,,,19,male,white, +94,,,11,female,,not hispanic or latino +94,,,7,male,white, +94,,,5,male,,not hispanic or latino 94,,ambulatory,7,male,, -93,,,67,female,[White],[Not Hispanic or Latino] -93,,,52,male,[White], -93,,,52,female,[White], -93,,,10,female,[White], -93,,emergency,,,,[Hispanic or Latino] -93,,ambulatory,42,male,[White],[Not Hispanic or Latino] -93,,ambulatory,14,male,[White],[Not Hispanic or Latino] -93,2019-09-01,ambulatory,,male,[White],[Not Hispanic or Latino] +93,,,67,female,white,not hispanic or latino +93,,,52,male,white, +93,,,52,female,white, +93,,,10,female,white, +93,,emergency,,,,hispanic or latino +93,,ambulatory,42,male,white,not hispanic or latino +93,,ambulatory,14,male,white,not hispanic or latino +93,2019-09-01,ambulatory,,male,white,not hispanic or latino 92,,,37,male,, -92,,,11,female,[White], +92,,,11,female,white, 92,,,10,male,, -92,,,9,female,,[Not Hispanic or Latino] -92,,ambulatory,71,male,[White],[Not Hispanic or Latino] +92,,,9,female,,not hispanic or latino +92,,ambulatory,71,male,white,not hispanic or latino 92,,ambulatory,66,female,, -92,,ambulatory,52,male,,[Not Hispanic or Latino] -92,,ambulatory,13,male,[White], -92,,ambulatory,4,male,[White], +92,,ambulatory,52,male,,not hispanic or latino +92,,ambulatory,13,male,white, +92,,ambulatory,4,male,white, 91,,,7,female,, 91,,,4,female,, 91,,ambulatory,75,female,, -91,,ambulatory,75,female,[White], -91,,ambulatory,54,male,[White], -91,,ambulatory,40,male,[White], -91,,ambulatory,29,male,,[Not Hispanic or Latino] -91,,ambulatory,10,female,[White], -90,,,66,female,[White], -90,,,12,male,,[Not Hispanic or Latino] -90,,,11,female,[White],[Not Hispanic or Latino] -90,,,9,female,[White],[Not Hispanic or Latino] -90,,ambulatory,9,male,[White], +91,,ambulatory,75,female,white, +91,,ambulatory,54,male,white, +91,,ambulatory,40,male,white, +91,,ambulatory,29,male,,not hispanic or latino +91,,ambulatory,10,female,white, +90,,,66,female,white, +90,,,12,male,,not hispanic or latino +90,,,11,female,white,not hispanic or latino +90,,,9,female,white,not hispanic or latino +90,,ambulatory,9,male,white, 90,,ambulatory,5,male,, -89,,,52,male,[White],[Not Hispanic or Latino] -89,,,52,female,[White],[Not Hispanic or Latino] -89,,,40,male,[White],[Not Hispanic or Latino] -89,,ambulatory,19,male,,[Not Hispanic or Latino] +89,,,52,male,white,not hispanic or latino +89,,,52,female,white,not hispanic or latino +89,,,40,male,white,not hispanic or latino +89,,ambulatory,19,male,,not hispanic or latino 89,,ambulatory,11,female,, -89,,ambulatory,9,male,,[Not Hispanic or Latino] -89,,ambulatory,5,male,,[Not Hispanic or Latino] -89,,ambulatory,4,male,[White],[Not Hispanic or Latino] +89,,ambulatory,9,male,,not hispanic or latino +89,,ambulatory,5,male,,not hispanic or latino +89,,ambulatory,4,male,white,not hispanic or latino 89,,ambulatory,4,female,, -88,,,66,female,,[Not Hispanic or Latino] +88,,,66,female,,not hispanic or latino 88,,,45,male,, -88,,,37,male,,[Not Hispanic or Latino] +88,,,37,male,,not hispanic or latino 88,,,6,female,, -88,,,5,male,[White], -88,,ambulatory,66,female,[White], -88,,ambulatory,52,female,[White], -88,,ambulatory,38,female,[White],[Not Hispanic or Latino] +88,,,5,male,white, +88,,ambulatory,66,female,white, +88,,ambulatory,52,female,white, +88,,ambulatory,38,female,white,not hispanic or latino 88,,ambulatory,37,male,, -88,,ambulatory,29,male,[White], +88,,ambulatory,29,male,white, 88,,ambulatory,10,male,, 88,,ambulatory,8,male,, -87,,,8,male,,[Not Hispanic or Latino] -87,,,7,male,[White],[Not Hispanic or Latino] -87,,,5,male,[White],[Not Hispanic or Latino] -87,,ambulatory,7,male,,[Not Hispanic or Latino] +87,,,8,male,,not hispanic or latino +87,,,7,male,white,not hispanic or latino +87,,,5,male,white,not hispanic or latino +87,,ambulatory,7,male,,not hispanic or latino 86,,,41,male,, 86,,,25,male,, -86,,,9,male,[White],[Not Hispanic or Latino] -86,,ambulatory,75,female,,[Not Hispanic or Latino] -86,,ambulatory,75,female,[White],[Not Hispanic or Latino] -86,,ambulatory,66,female,,[Not Hispanic or Latino] -86,,ambulatory,40,male,[White],[Not Hispanic or Latino] -86,,ambulatory,29,male,[White],[Not Hispanic or Latino] -86,,ambulatory,12,male,,[Not Hispanic or Latino] -86,,ambulatory,11,female,,[Not Hispanic or Latino] +86,,,9,male,white,not hispanic or latino +86,,ambulatory,75,female,,not hispanic or latino +86,,ambulatory,75,female,white,not hispanic or latino +86,,ambulatory,66,female,,not hispanic or latino +86,,ambulatory,40,male,white,not hispanic or latino +86,,ambulatory,29,male,white,not hispanic or latino +86,,ambulatory,12,male,,not hispanic or latino +86,,ambulatory,11,female,,not hispanic or latino 85,,,53,male,, 85,,,11,male,, -85,,,10,female,,[Not Hispanic or Latino] +85,,,10,female,,not hispanic or latino 85,,,6,male,, -85,,,4,female,[White], -85,,ambulatory,54,male,[White],[Not Hispanic or Latino] -85,,ambulatory,19,male,[White], -85,,ambulatory,11,female,[White], -85,,ambulatory,9,female,,[Not Hispanic or Latino] -85,,ambulatory,7,male,[White], -84,,,66,female,[White],[Not Hispanic or Latino] -84,,,31,male,[White], -84,,,8,male,[White], -84,,,6,male,,[Not Hispanic or Latino] -84,,emergency,,,[White],[Hispanic or Latino] -84,,ambulatory,52,male,[White], -84,,ambulatory,52,female,[White],[Not Hispanic or Latino] -84,,ambulatory,37,male,,[Not Hispanic or Latino] -83,,,7,female,[White], +85,,,4,female,white, +85,,ambulatory,54,male,white,not hispanic or latino +85,,ambulatory,19,male,white, +85,,ambulatory,11,female,white, +85,,ambulatory,9,female,,not hispanic or latino +85,,ambulatory,7,male,white, +84,,,66,female,white,not hispanic or latino +84,,,31,male,white, +84,,,8,male,white, +84,,,6,male,,not hispanic or latino +84,,emergency,,,white,hispanic or latino +84,,ambulatory,52,male,white, +84,,ambulatory,52,female,white,not hispanic or latino +84,,ambulatory,37,male,,not hispanic or latino +83,,,7,female,white, 83,,ambulatory,45,male,, -83,,ambulatory,11,female,[White],[Not Hispanic or Latino] -83,,ambulatory,10,female,,[Not Hispanic or Latino] -83,,ambulatory,9,female,[White],[Not Hispanic or Latino] +83,,ambulatory,11,female,white,not hispanic or latino +83,,ambulatory,10,female,,not hispanic or latino +83,,ambulatory,9,female,white,not hispanic or latino 83,,ambulatory,6,female,, -83,,ambulatory,5,male,[White], -83,,ambulatory,4,female,[White], -82,,,19,male,[White],[Not Hispanic or Latino] -82,,,13,male,[White],[Not Hispanic or Latino] -82,,ambulatory,66,female,[White],[Not Hispanic or Latino] +83,,ambulatory,5,male,white, +83,,ambulatory,4,female,white, +82,,,19,male,white,not hispanic or latino +82,,,13,male,white,not hispanic or latino +82,,ambulatory,66,female,white,not hispanic or latino 82,,ambulatory,53,male,, 82,,ambulatory,7,female,, -82,,ambulatory,5,male,[White],[Not Hispanic or Latino] -81,,,31,male,,[Not Hispanic or Latino] -81,,,25,male,,[Not Hispanic or Latino] +82,,ambulatory,5,male,white,not hispanic or latino +81,,,31,male,,not hispanic or latino +81,,,25,male,,not hispanic or latino 81,,,22,male,, 81,,,8,female,, -81,,ambulatory,8,male,,[Not Hispanic or Latino] -80,,,37,male,[White], -80,,,22,male,[White], -80,,,12,male,[White], -80,,,6,female,[White], +81,,ambulatory,8,male,,not hispanic or latino +80,,,37,male,white, +80,,,22,male,white, +80,,,12,male,white, +80,,,6,female,white, 80,,virtual,,,, -80,,ambulatory,52,male,[White],[Not Hispanic or Latino] +80,,ambulatory,52,male,white,not hispanic or latino 79,,,35,male,, -79,,,31,male,[White],[Not Hispanic or Latino] -79,,virtual,,,,[Not Hispanic or Latino] +79,,,31,male,white,not hispanic or latino +79,,virtual,,,,not hispanic or latino 78,,,78,female,, -78,,,25,male,[White], +78,,,25,male,white, 78,,ambulatory,41,male,, 78,,ambulatory,25,male,, -78,,ambulatory,8,male,[White], -78,,ambulatory,7,male,[White],[Not Hispanic or Latino] +78,,ambulatory,8,male,white, +78,,ambulatory,7,male,white,not hispanic or latino 78,,ambulatory,6,male,, -77,,,53,male,,[Not Hispanic or Latino] -77,,,45,male,[White], +77,,,53,male,,not hispanic or latino +77,,,45,male,white, 77,,,38,male,, -77,,,10,male,,[Not Hispanic or Latino] -77,,,10,female,[White],[Not Hispanic or Latino] -77,,,8,male,[White],[Not Hispanic or Latino] -77,,,7,female,,[Not Hispanic or Latino] +77,,,10,male,,not hispanic or latino +77,,,10,female,white,not hispanic or latino +77,,,8,male,white,not hispanic or latino +77,,,7,female,,not hispanic or latino 77,,ambulatory,67,female,, 77,,ambulatory,11,male,, -77,,ambulatory,6,male,,[Not Hispanic or Latino] -76,,,41,male,,[Not Hispanic or Latino] -76,,,38,male,,[Not Hispanic or Latino] -76,,,37,male,[White],[Not Hispanic or Latino] -76,,,22,male,,[Not Hispanic or Latino] -76,,,22,male,[White],[Not Hispanic or Latino] -76,,,10,male,[White], -76,,,6,female,,[Not Hispanic or Latino] +77,,ambulatory,6,male,,not hispanic or latino +76,,,41,male,,not hispanic or latino +76,,,38,male,,not hispanic or latino +76,,,37,male,white,not hispanic or latino +76,,,22,male,,not hispanic or latino +76,,,22,male,white,not hispanic or latino +76,,,10,male,white, +76,,,6,female,,not hispanic or latino 76,,,5,female,, -76,,,4,female,,[Not Hispanic or Latino] -76,,virtual,,,[White], -76,,ambulatory,37,male,[White], +76,,,4,female,,not hispanic or latino +76,,virtual,,,white, +76,,ambulatory,37,male,white, 76,,ambulatory,31,male,, -76,,ambulatory,12,male,[White], -76,,ambulatory,10,female,[White],[Not Hispanic or Latino] -76,,ambulatory,9,male,[White],[Not Hispanic or Latino] -75,,,45,male,,[Not Hispanic or Latino] -75,,,25,male,[White],[Not Hispanic or Latino] -75,,virtual,,,[White],[Not Hispanic or Latino] -75,,ambulatory,67,female,,[Not Hispanic or Latino] -75,,ambulatory,67,female,[White], -75,,ambulatory,13,male,[White],[Not Hispanic or Latino] -75,,ambulatory,10,male,,[Not Hispanic or Latino] -75,,ambulatory,7,female,[White], -75,,ambulatory,6,female,[White], +76,,ambulatory,12,male,white, +76,,ambulatory,10,female,white,not hispanic or latino +76,,ambulatory,9,male,white,not hispanic or latino +75,,,45,male,,not hispanic or latino +75,,,25,male,white,not hispanic or latino +75,,virtual,,,white,not hispanic or latino +75,,ambulatory,67,female,,not hispanic or latino +75,,ambulatory,67,female,white, +75,,ambulatory,13,male,white,not hispanic or latino +75,,ambulatory,10,male,,not hispanic or latino +75,,ambulatory,7,female,white, +75,,ambulatory,6,female,white, 74,,,82,female,, -74,,,82,female,,[Not Hispanic or Latino] -74,,,41,male,[White], +74,,,82,female,,not hispanic or latino +74,,,41,male,white, 74,,,39,male,, -74,,,35,male,,[Not Hispanic or Latino] -74,,,8,female,[White], -74,,,4,female,[White],[Not Hispanic or Latino] -74,,ambulatory,53,male,,[Not Hispanic or Latino] +74,,,35,male,,not hispanic or latino +74,,,8,female,white, +74,,,4,female,white,not hispanic or latino +74,,ambulatory,53,male,,not hispanic or latino 74,,ambulatory,8,female,, -74,,ambulatory,4,female,,[Not Hispanic or Latino] -73,,,8,female,,[Not Hispanic or Latino] -73,,ambulatory,67,female,[White],[Not Hispanic or Latino] -73,,ambulatory,45,male,[White], +74,,ambulatory,4,female,,not hispanic or latino +73,,,8,female,,not hispanic or latino +73,,ambulatory,67,female,white,not hispanic or latino +73,,ambulatory,45,male,white, 73,,ambulatory,35,male,, -73,,ambulatory,25,male,,[Not Hispanic or Latino] -73,,ambulatory,19,male,[White],[Not Hispanic or Latino] -72,,,39,male,,[Not Hispanic or Latino] -72,,,34,,,[Hispanic or Latino] -72,,,11,male,[White], -72,,,6,male,[White], -72,,,6,female,[White],[Not Hispanic or Latino] -72,,ambulatory,45,male,,[Not Hispanic or Latino] -72,,ambulatory,37,male,[White],[Not Hispanic or Latino] +73,,ambulatory,25,male,,not hispanic or latino +73,,ambulatory,19,male,white,not hispanic or latino +72,,,39,male,,not hispanic or latino +72,,,34,,,hispanic or latino +72,,,11,male,white, +72,,,6,male,white, +72,,,6,female,white,not hispanic or latino +72,,ambulatory,45,male,,not hispanic or latino +72,,ambulatory,37,male,white,not hispanic or latino 72,,ambulatory,22,male,, -72,,ambulatory,10,male,[White], -72,,ambulatory,8,male,[White],[Not Hispanic or Latino] -72,,ambulatory,6,female,,[Not Hispanic or Latino] +72,,ambulatory,10,male,white, +72,,ambulatory,8,male,white,not hispanic or latino +72,,ambulatory,6,female,,not hispanic or latino 72,,ambulatory,5,female,, -72,,ambulatory,4,female,[White],[Not Hispanic or Latino] -71,,,7,female,[White],[Not Hispanic or Latino] -71,,,6,male,[White],[Not Hispanic or Latino] -71,,ambulatory,22,male,[White], -70,,,53,male,[White], +72,,ambulatory,4,female,white,not hispanic or latino +71,,,7,female,white,not hispanic or latino +71,,,6,male,white,not hispanic or latino +71,,ambulatory,22,male,white, +70,,,53,male,white, 70,,ambulatory,39,male,, 70,,ambulatory,38,male,, -70,,ambulatory,25,male,[White], -70,,ambulatory,7,female,,[Not Hispanic or Latino] -69,,,8,female,[White],[Not Hispanic or Latino] +70,,ambulatory,25,male,white, +70,,ambulatory,7,female,,not hispanic or latino +69,,,8,female,white,not hispanic or latino 69,,ambulatory,78,female,, -69,,ambulatory,41,male,,[Not Hispanic or Latino] -69,,ambulatory,38,male,,[Not Hispanic or Latino] -68,,,11,male,,[Not Hispanic or Latino] -68,,ambulatory,53,male,[White], -68,,ambulatory,41,male,[White], -68,,ambulatory,39,male,,[Not Hispanic or Latino] -68,,ambulatory,35,male,,[Not Hispanic or Latino] -68,,ambulatory,34,,,[Hispanic or Latino] -68,,ambulatory,22,male,,[Not Hispanic or Latino] -68,,ambulatory,22,male,[White],[Not Hispanic or Latino] -68,,ambulatory,8,female,[White], -68,,ambulatory,6,male,[White], -68,,ambulatory,6,female,[White],[Not Hispanic or Latino] +69,,ambulatory,41,male,,not hispanic or latino +69,,ambulatory,38,male,,not hispanic or latino +68,,,11,male,,not hispanic or latino +68,,ambulatory,53,male,white, +68,,ambulatory,41,male,white, +68,,ambulatory,39,male,,not hispanic or latino +68,,ambulatory,35,male,,not hispanic or latino +68,,ambulatory,34,,,hispanic or latino +68,,ambulatory,22,male,,not hispanic or latino +68,,ambulatory,22,male,white,not hispanic or latino +68,,ambulatory,8,female,white, +68,,ambulatory,6,male,white, +68,,ambulatory,6,female,white,not hispanic or latino 67,,,23,male,, -67,,,12,male,[White],[Not Hispanic or Latino] +67,,,12,male,white,not hispanic or latino 67,,ambulatory,82,female,, -67,,ambulatory,82,female,,[Not Hispanic or Latino] -67,,ambulatory,31,male,[White], -67,,ambulatory,25,male,[White],[Not Hispanic or Latino] -67,,ambulatory,8,female,,[Not Hispanic or Latino] -67,,ambulatory,6,male,[White],[Not Hispanic or Latino] -66,,,35,male,[White], -66,,,5,female,,[Not Hispanic or Latino] -65,,,53,male,[White],[Not Hispanic or Latino] -65,,,23,male,[White], -65,,ambulatory,11,male,[White], -65,,ambulatory,7,female,[White],[Not Hispanic or Latino] +67,,ambulatory,82,female,,not hispanic or latino +67,,ambulatory,31,male,white, +67,,ambulatory,25,male,white,not hispanic or latino +67,,ambulatory,8,female,,not hispanic or latino +67,,ambulatory,6,male,white,not hispanic or latino +66,,,35,male,white, +66,,,5,female,,not hispanic or latino +65,,,53,male,white,not hispanic or latino +65,,,23,male,white, +65,,ambulatory,11,male,white, +65,,ambulatory,7,female,white,not hispanic or latino 64,,,77,female,, -64,,,45,male,[White],[Not Hispanic or Latino] -64,,,41,male,[White],[Not Hispanic or Latino] -64,,,5,female,[White], -64,,ambulatory,31,male,,[Not Hispanic or Latino] -64,,ambulatory,8,female,[White],[Not Hispanic or Latino] -63,,,77,female,,[Not Hispanic or Latino] -63,,,31,,,[Hispanic or Latino] -63,,,10,male,[White],[Not Hispanic or Latino] -63,,ambulatory,53,male,[White],[Not Hispanic or Latino] -63,,ambulatory,12,male,[White],[Not Hispanic or Latino] -63,,ambulatory,11,male,,[Not Hispanic or Latino] -62,,,77,female,[White], -62,,,35,male,[White],[Not Hispanic or Latino] -62,,ambulatory,45,male,[White],[Not Hispanic or Latino] -62,,ambulatory,35,male,[White], -62,,ambulatory,31,male,[White],[Not Hispanic or Latino] -62,,ambulatory,5,female,,[Not Hispanic or Latino] -61,,,77,female,[White],[Not Hispanic or Latino] +64,,,45,male,white,not hispanic or latino +64,,,41,male,white,not hispanic or latino +64,,,5,female,white, +64,,ambulatory,31,male,,not hispanic or latino +64,,ambulatory,8,female,white,not hispanic or latino +63,,,77,female,,not hispanic or latino +63,,,31,,,hispanic or latino +63,,,10,male,white,not hispanic or latino +63,,ambulatory,53,male,white,not hispanic or latino +63,,ambulatory,12,male,white,not hispanic or latino +63,,ambulatory,11,male,,not hispanic or latino +62,,,77,female,white, +62,,,35,male,white,not hispanic or latino +62,,ambulatory,45,male,white,not hispanic or latino +62,,ambulatory,35,male,white, +62,,ambulatory,31,male,white,not hispanic or latino +62,,ambulatory,5,female,,not hispanic or latino +61,,,77,female,white,not hispanic or latino 61,,,26,male,, -61,,,23,male,,[Not Hispanic or Latino] -61,,emergency,,female,,[Hispanic or Latino] -61,,ambulatory,10,male,[White],[Not Hispanic or Latino] +61,,,23,male,,not hispanic or latino +61,,emergency,,female,,hispanic or latino +61,,ambulatory,10,male,white,not hispanic or latino 60,,,36,male,, 60,,ambulatory,23,male,, -60,,ambulatory,5,female,[White], -59,,,23,male,[White],[Not Hispanic or Latino] +60,,ambulatory,5,female,white, +59,,,23,male,white,not hispanic or latino 59,,,20,male,, -59,,,5,female,[White],[Not Hispanic or Latino] -59,,ambulatory,41,male,[White],[Not Hispanic or Latino] -59,,ambulatory,23,male,[White], +59,,,5,female,white,not hispanic or latino +59,,ambulatory,41,male,white,not hispanic or latino +59,,ambulatory,23,male,white, 58,,ambulatory,77,female,, -58,,ambulatory,35,male,[White],[Not Hispanic or Latino] -57,,,38,male,[White], -57,,ambulatory,77,female,,[Not Hispanic or Latino] +58,,ambulatory,35,male,white,not hispanic or latino +57,,,38,male,white, +57,,ambulatory,77,female,,not hispanic or latino 57,,ambulatory,36,male,, -56,,,38,male,[White],[Not Hispanic or Latino] -56,,,34,,[White],[Hispanic or Latino] +56,,,38,male,white,not hispanic or latino +56,,,34,,white,hispanic or latino 56,,,27,male,, -56,,,11,male,[White],[Not Hispanic or Latino] +56,,,11,male,white,not hispanic or latino 56,,virtual,,male,, -56,,virtual,,male,,[Not Hispanic or Latino] -56,,emergency,,,[Black or African American], -56,,ambulatory,77,female,[White], -56,,ambulatory,31,,,[Hispanic or Latino] -55,,,36,male,,[Not Hispanic or Latino] -55,,,26,male,[White], -55,,virtual,,male,[White], -55,,virtual,,male,[White],[Not Hispanic or Latino] -55,,emergency,,female,[White],[Hispanic or Latino] -55,,ambulatory,77,female,[White],[Not Hispanic or Latino] -55,,ambulatory,23,male,,[Not Hispanic or Latino] -55,,ambulatory,5,female,[White],[Not Hispanic or Latino] -54,,,35,,,[Hispanic or Latino] -54,,,31,,[White],[Hispanic or Latino] -54,,,27,male,,[Not Hispanic or Latino] -54,,,27,male,[White], +56,,virtual,,male,,not hispanic or latino +56,,emergency,,,black or african american, +56,,ambulatory,77,female,white, +56,,ambulatory,31,,,hispanic or latino +55,,,36,male,,not hispanic or latino +55,,,26,male,white, +55,,virtual,,male,white, +55,,virtual,,male,white,not hispanic or latino +55,,emergency,,female,white,hispanic or latino +55,,ambulatory,77,female,white,not hispanic or latino +55,,ambulatory,23,male,,not hispanic or latino +55,,ambulatory,5,female,white,not hispanic or latino +54,,,35,,,hispanic or latino +54,,,31,,white,hispanic or latino +54,,,27,male,,not hispanic or latino +54,,,27,male,white, 54,,home health,,female,, -54,,ambulatory,23,male,[White],[Not Hispanic or Latino] +54,,ambulatory,23,male,white,not hispanic or latino 54,,ambulatory,20,male,, -53,,,35,,[White],[Hispanic or Latino] -53,,,27,male,[White],[Not Hispanic or Latino] -53,,,20,male,[White], -53,,home health,,female,[White], -53,,ambulatory,34,,[White],[Hispanic or Latino] -52,,,26,male,,[Not Hispanic or Latino] -52,,ambulatory,36,male,,[Not Hispanic or Latino] +53,,,35,,white,hispanic or latino +53,,,27,male,white,not hispanic or latino +53,,,20,male,white, +53,,home health,,female,white, +53,,ambulatory,34,,white,hispanic or latino +52,,,26,male,,not hispanic or latino +52,,ambulatory,36,male,,not hispanic or latino 52,,ambulatory,26,male,, -52,,ambulatory,11,male,[White],[Not Hispanic or Latino] -51,,,26,male,[White],[Not Hispanic or Latino] -51,,ambulatory,38,male,[White], +52,,ambulatory,11,male,white,not hispanic or latino +51,,,26,male,white,not hispanic or latino +51,,ambulatory,38,male,white, 50,,,21,male,, -50,,,20,male,,[Not Hispanic or Latino] -50,,ambulatory,38,male,[White],[Not Hispanic or Latino] -50,,ambulatory,35,,,[Hispanic or Latino] -49,,,32,,,[Hispanic or Latino] -49,,home health,,female,,[Not Hispanic or Latino] -49,,ambulatory,35,,[White],[Hispanic or Latino] -49,,ambulatory,31,,[White],[Hispanic or Latino] +50,,,20,male,,not hispanic or latino +50,,ambulatory,38,male,white,not hispanic or latino +50,,ambulatory,35,,,hispanic or latino +49,,,32,,,hispanic or latino +49,,home health,,female,,not hispanic or latino +49,,ambulatory,35,,white,hispanic or latino +49,,ambulatory,31,,white,hispanic or latino 49,,ambulatory,27,male,, 48,,,76,female,, -48,,,76,female,[White], -48,,,36,,,[Hispanic or Latino] +48,,,76,female,white, +48,,,36,,,hispanic or latino 48,,,24,male,, -48,,home health,,female,[White],[Not Hispanic or Latino] -48,,emergency,,,[Black or African American],[Not Hispanic or Latino] -48,,ambulatory,27,male,,[Not Hispanic or Latino] -48,,ambulatory,20,male,[White], -47,,,39,male,[White], -47,,,24,male,[White], -47,,,21,male,[White], +48,,home health,,female,white,not hispanic or latino +48,,emergency,,,black or african american,not hispanic or latino +48,,ambulatory,27,male,,not hispanic or latino +48,,ambulatory,20,male,white, +47,,,39,male,white, +47,,,24,male,white, +47,,,21,male,white, 47,,ambulatory,76,female,, -47,,ambulatory,76,female,[White], -47,,ambulatory,27,male,[White], -47,,ambulatory,27,male,[White],[Not Hispanic or Latino] -46,,ambulatory,39,male,[White], -46,,ambulatory,26,male,[White], -45,,,76,female,,[Not Hispanic or Latino] -45,,,76,female,[White],[Not Hispanic or Latino] -45,,,39,male,[White],[Not Hispanic or Latino] -45,,,36,male,[White], -45,,ambulatory,76,female,,[Not Hispanic or Latino] -45,,ambulatory,76,female,[White],[Not Hispanic or Latino] -45,,ambulatory,36,,,[Hispanic or Latino] -45,,ambulatory,32,,,[Hispanic or Latino] +47,,ambulatory,76,female,white, +47,,ambulatory,27,male,white, +47,,ambulatory,27,male,white,not hispanic or latino +46,,ambulatory,39,male,white, +46,,ambulatory,26,male,white, +45,,,76,female,,not hispanic or latino +45,,,76,female,white,not hispanic or latino +45,,,39,male,white,not hispanic or latino +45,,,36,male,white, +45,,ambulatory,76,female,,not hispanic or latino +45,,ambulatory,76,female,white,not hispanic or latino +45,,ambulatory,36,,,hispanic or latino +45,,ambulatory,32,,,hispanic or latino 45,,ambulatory,21,male,, -45,,ambulatory,20,male,,[Not Hispanic or Latino] -44,,,20,male,[White],[Not Hispanic or Latino] -44,,ambulatory,39,male,[White],[Not Hispanic or Latino] -44,2021-06-01,,,,,[Hispanic or Latino] -43,,ambulatory,26,male,,[Not Hispanic or Latino] -43,2021-05-01,,,,,[Hispanic or Latino] -42,,ambulatory,36,male,[White], -42,,ambulatory,26,male,[White],[Not Hispanic or Latino] -42,,ambulatory,21,male,[White], -41,2021-06-01,ambulatory,,,,[Hispanic or Latino] -41,2021-04-01,,,,[Black or African American], +45,,ambulatory,20,male,,not hispanic or latino +44,,,20,male,white,not hispanic or latino +44,,ambulatory,39,male,white,not hispanic or latino +44,2021-06-01,,,,,hispanic or latino +43,,ambulatory,26,male,,not hispanic or latino +43,2021-05-01,,,,,hispanic or latino +42,,ambulatory,36,male,white, +42,,ambulatory,26,male,white,not hispanic or latino +42,,ambulatory,21,male,white, +41,2021-06-01,ambulatory,,,,hispanic or latino +41,2021-04-01,,,,black or african american, 40,,,87,,, -40,,,87,,[White], -40,,,36,male,[White],[Not Hispanic or Latino] -40,,,32,,[White],[Hispanic or Latino] -40,,,21,male,,[Not Hispanic or Latino] +40,,,87,,white, +40,,,36,male,white,not hispanic or latino +40,,,32,,white,hispanic or latino +40,,,21,male,,not hispanic or latino 40,,ambulatory,24,male,, -40,2021-05-01,ambulatory,,,,[Hispanic or Latino] -39,,,0,,,[Hispanic or Latino] -39,,,0,,[White],[Hispanic or Latino] +40,2021-05-01,ambulatory,,,,hispanic or latino +39,,,0,,,hispanic or latino +39,,,0,,white,hispanic or latino 39,,ambulatory,87,,, -39,,ambulatory,87,,[White], -39,,ambulatory,24,male,[White], -39,,ambulatory,20,male,[White],[Not Hispanic or Latino] -39,,ambulatory,0,,,[Hispanic or Latino] -39,,ambulatory,0,,[White],[Hispanic or Latino] -39,2021-04-01,ambulatory,,,[Black or African American], -37,,,21,male,[White],[Not Hispanic or Latino] -37,,,14,,,[Hispanic or Latino] -37,,,10,,,[Hispanic or Latino] -37,,ambulatory,36,male,[White],[Not Hispanic or Latino] -37,,ambulatory,32,,[White],[Hispanic or Latino] -37,,ambulatory,14,,,[Hispanic or Latino] -37,2021-05-01,,,,[White],[Hispanic or Latino] -37,2021-04-01,,,,[Black or African American],[Not Hispanic or Latino] -37,2021-03-01,,,,[Black or African American], -36,,,37,,,[Hispanic or Latino] -36,2021-05-01,ambulatory,,,[White],[Hispanic or Latino] -36,2021-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -36,2021-03-01,,,,,[Hispanic or Latino] -35,,,40,,,[Hispanic or Latino] -35,,,16,,[Black or African American], -35,,,9,,,[Hispanic or Latino] -35,,ambulatory,21,male,,[Not Hispanic or Latino] -35,2021-10-01,,,,,[Hispanic or Latino] -35,2021-07-01,,,,,[Hispanic or Latino] -35,2017-06-01,,,,,[Hispanic or Latino] -34,,,40,,[White],[Hispanic or Latino] -34,,,24,male,,[Not Hispanic or Latino] -34,,,1,,,[Hispanic or Latino] -34,,,1,,[White],[Hispanic or Latino] -34,,ambulatory,40,,,[Hispanic or Latino] -34,,ambulatory,37,,,[Hispanic or Latino] -34,2017-06-01,ambulatory,,,,[Hispanic or Latino] -33,,,24,male,[White],[Not Hispanic or Latino] -33,,ambulatory,40,,[White],[Hispanic or Latino] -33,,ambulatory,16,,[Black or African American], -33,,ambulatory,1,,,[Hispanic or Latino] -33,,ambulatory,1,,[White],[Hispanic or Latino] -33,2022-11-01,,,,,[Hispanic or Latino] -33,2021-10-01,,,,[White],[Hispanic or Latino] -33,2021-10-01,ambulatory,,,,[Hispanic or Latino] -33,2021-08-01,,,,,[Hispanic or Latino] -33,2021-07-01,ambulatory,,,,[Hispanic or Latino] -33,2021-06-01,,,,[White],[Hispanic or Latino] -33,2021-06-01,ambulatory,,,[White],[Hispanic or Latino] -33,2021-03-01,ambulatory,,,,[Hispanic or Latino] -33,2021-03-01,ambulatory,,,[Black or African American], -32,,emergency,,male,,[Hispanic or Latino] -32,,ambulatory,21,male,[White],[Not Hispanic or Latino] -32,,ambulatory,10,,,[Hispanic or Latino] -32,,ambulatory,9,,,[Hispanic or Latino] -32,2022-12-01,,,,,[Hispanic or Latino] -32,2022-08-01,,,,[Black or African American], -32,2021-04-01,,,,,[Hispanic or Latino] -32,2019-03-01,,,,,[Hispanic or Latino] -32,2019-03-01,ambulatory,,,,[Hispanic or Latino] -32,2018-05-01,,,,,[Hispanic or Latino] -32,2018-05-01,,,,[White],[Hispanic or Latino] -32,2017-01-01,,,,,[Hispanic or Latino] -31,,,9,,[White],[Hispanic or Latino] -31,,emergency,,female,[Black or African American], +39,,ambulatory,87,,white, +39,,ambulatory,24,male,white, +39,,ambulatory,20,male,white,not hispanic or latino +39,,ambulatory,0,,,hispanic or latino +39,,ambulatory,0,,white,hispanic or latino +39,2021-04-01,ambulatory,,,black or african american, +37,,,21,male,white,not hispanic or latino +37,,,14,,,hispanic or latino +37,,,10,,,hispanic or latino +37,,ambulatory,36,male,white,not hispanic or latino +37,,ambulatory,32,,white,hispanic or latino +37,,ambulatory,14,,,hispanic or latino +37,2021-05-01,,,,white,hispanic or latino +37,2021-04-01,,,,black or african american,not hispanic or latino +37,2021-03-01,,,,black or african american, +36,,,37,,,hispanic or latino +36,2021-05-01,ambulatory,,,white,hispanic or latino +36,2021-04-01,ambulatory,,,black or african american,not hispanic or latino +36,2021-03-01,,,,,hispanic or latino +35,,,40,,,hispanic or latino +35,,,16,,black or african american, +35,,,9,,,hispanic or latino +35,,ambulatory,21,male,,not hispanic or latino +35,2021-10-01,,,,,hispanic or latino +35,2021-07-01,,,,,hispanic or latino +35,2017-06-01,,,,,hispanic or latino +34,,,40,,white,hispanic or latino +34,,,24,male,,not hispanic or latino +34,,,1,,,hispanic or latino +34,,,1,,white,hispanic or latino +34,,ambulatory,40,,,hispanic or latino +34,,ambulatory,37,,,hispanic or latino +34,2017-06-01,ambulatory,,,,hispanic or latino +33,,,24,male,white,not hispanic or latino +33,,ambulatory,40,,white,hispanic or latino +33,,ambulatory,16,,black or african american, +33,,ambulatory,1,,,hispanic or latino +33,,ambulatory,1,,white,hispanic or latino +33,2022-11-01,,,,,hispanic or latino +33,2021-10-01,,,,white,hispanic or latino +33,2021-10-01,ambulatory,,,,hispanic or latino +33,2021-08-01,,,,,hispanic or latino +33,2021-07-01,ambulatory,,,,hispanic or latino +33,2021-06-01,,,,white,hispanic or latino +33,2021-06-01,ambulatory,,,white,hispanic or latino +33,2021-03-01,ambulatory,,,,hispanic or latino +33,2021-03-01,ambulatory,,,black or african american, +32,,emergency,,male,,hispanic or latino +32,,ambulatory,21,male,white,not hispanic or latino +32,,ambulatory,10,,,hispanic or latino +32,,ambulatory,9,,,hispanic or latino +32,2022-12-01,,,,,hispanic or latino +32,2022-08-01,,,,black or african american, +32,2021-04-01,,,,,hispanic or latino +32,2019-03-01,,,,,hispanic or latino +32,2019-03-01,ambulatory,,,,hispanic or latino +32,2018-05-01,,,,,hispanic or latino +32,2018-05-01,,,,white,hispanic or latino +32,2017-01-01,,,,,hispanic or latino +31,,,9,,white,hispanic or latino +31,,emergency,,female,black or african american, 31,,emergency,31,,, -31,2021-10-01,ambulatory,,,[White],[Hispanic or Latino] -31,2021-08-01,ambulatory,,,,[Hispanic or Latino] -31,2021-06-01,,,female,,[Hispanic or Latino] -31,2017-06-01,,,,[White],[Hispanic or Latino] -30,2023-01-01,,,,,[Hispanic or Latino] -30,2022-11-01,ambulatory,,,,[Hispanic or Latino] -30,2021-11-01,,,,,[Hispanic or Latino] -30,2021-11-01,ambulatory,,,,[Hispanic or Latino] -30,2021-08-01,,,,[White],[Hispanic or Latino] -30,2021-05-01,,,,[Black or African American], -30,2019-06-01,,,,,[Hispanic or Latino] -30,2017-06-01,ambulatory,,,[White],[Hispanic or Latino] -30,2017-01-01,,,,[White],[Hispanic or Latino] -30,2016-06-01,,,,,[Hispanic or Latino] -30,2016-06-01,,,,[Black or African American], -29,,,10,,[White],[Hispanic or Latino] -29,,inpatient encounter,,,,[Hispanic or Latino] -29,,emergency,,male,[White],[Hispanic or Latino] +31,2021-10-01,ambulatory,,,white,hispanic or latino +31,2021-08-01,ambulatory,,,,hispanic or latino +31,2021-06-01,,,female,,hispanic or latino +31,2017-06-01,,,,white,hispanic or latino +30,2023-01-01,,,,,hispanic or latino +30,2022-11-01,ambulatory,,,,hispanic or latino +30,2021-11-01,,,,,hispanic or latino +30,2021-11-01,ambulatory,,,,hispanic or latino +30,2021-08-01,,,,white,hispanic or latino +30,2021-05-01,,,,black or african american, +30,2019-06-01,,,,,hispanic or latino +30,2017-06-01,ambulatory,,,white,hispanic or latino +30,2017-01-01,,,,white,hispanic or latino +30,2016-06-01,,,,,hispanic or latino +30,2016-06-01,,,,black or african american, +29,,,10,,white,hispanic or latino +29,,inpatient encounter,,,,hispanic or latino +29,,emergency,,male,white,hispanic or latino 29,,emergency,73,,, -29,,emergency,73,,,[Not Hispanic or Latino] -29,,emergency,31,,[White], +29,,emergency,73,,,not hispanic or latino +29,,emergency,31,,white, 29,,emergency,29,,, -29,2023-01-01,ambulatory,,,,[Hispanic or Latino] -29,2022-05-01,,,,,[Hispanic or Latino] -29,2022-04-01,,,,,[Hispanic or Latino] -29,2021-10-01,,,,[Black or African American], -29,2021-08-01,,,,[Black or African American], -29,2021-06-01,ambulatory,,female,,[Hispanic or Latino] -29,2021-03-01,,,,[Black or African American],[Not Hispanic or Latino] -29,2017-01-01,ambulatory,,,,[Hispanic or Latino] -29,2016-06-01,,,,[Black or African American],[Not Hispanic or Latino] -28,,emergency,29,,[White], -28,,ambulatory,24,male,,[Not Hispanic or Latino] -28,,ambulatory,9,,[White],[Hispanic or Latino] -28,2022-12-01,,,,[White],[Hispanic or Latino] -28,2022-12-01,ambulatory,,,,[Hispanic or Latino] -28,2022-11-01,,,,[White],[Hispanic or Latino] -28,2022-05-01,ambulatory,,,,[Hispanic or Latino] -28,2022-04-01,,,,[Black or African American], -28,2021-12-01,,,,,[Hispanic or Latino] -28,2021-10-01,ambulatory,,,[Black or African American], -28,2021-09-01,,,,,[Hispanic or Latino] -28,2021-09-01,ambulatory,,,,[Hispanic or Latino] -28,2021-08-01,ambulatory,,,[White],[Hispanic or Latino] -28,2021-07-01,,,,[White],[Hispanic or Latino] -28,2021-07-01,ambulatory,,,[White],[Hispanic or Latino] -28,2021-05-01,ambulatory,,,[Black or African American], -28,2021-04-01,,,,[White],[Hispanic or Latino] -28,2021-04-01,ambulatory,,,,[Hispanic or Latino] -28,2021-03-01,,,,[White],[Hispanic or Latino] -28,2021-02-01,,,,,[Hispanic or Latino] -28,2019-05-01,,,,,[Hispanic or Latino] -28,2018-10-01,,,,,[Hispanic or Latino] -28,2018-05-01,ambulatory,,,,[Hispanic or Latino] -28,2018-05-01,ambulatory,,,[White],[Hispanic or Latino] -28,2016-12-01,,,,[Black or African American], -28,2016-06-01,,,,[White],[Hispanic or Latino] -28,2016-06-01,ambulatory,,,,[Hispanic or Latino] -28,2016-06-01,ambulatory,,,[Black or African American], -27,,ambulatory,24,male,[White],[Not Hispanic or Latino] -27,2023-02-01,,,,,[Hispanic or Latino] -27,2023-02-01,,,,[White],[Hispanic or Latino] -27,2023-01-01,,,,[White],[Hispanic or Latino] -27,2022-04-01,ambulatory,,,[Black or African American], -27,2021-11-01,,,,[Black or African American], -27,2021-10-01,,,,[Black or African American],[Not Hispanic or Latino] -27,2021-09-01,,,,[Black or African American], -27,2021-09-01,ambulatory,,,[Black or African American], -27,2021-08-01,,,,[Black or African American],[Not Hispanic or Latino] -27,2021-08-01,ambulatory,,,[Black or African American], -27,2020-04-01,,,,[Black or African American], -27,2019-06-01,,,,[White],[Hispanic or Latino] -27,2019-06-01,ambulatory,,,,[Hispanic or Latino] -27,2019-03-01,,,,[White],[Hispanic or Latino] -27,2019-03-01,ambulatory,,,[White],[Hispanic or Latino] -27,2018-03-01,,,,[Black or African American], -27,2017-12-01,,,,[Black or African American], -27,2017-12-01,ambulatory,,,[Black or African American], -27,2017-02-01,,,,,[Hispanic or Latino] -27,2017-01-01,ambulatory,,,[White],[Hispanic or Latino] -27,2016-12-01,ambulatory,,,[Black or African American], -27,2016-06-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -26,,,20,,,[Hispanic or Latino] -26,,emergency,,female,[Black or African American],[Not Hispanic or Latino] +29,2023-01-01,ambulatory,,,,hispanic or latino +29,2022-05-01,,,,,hispanic or latino +29,2022-04-01,,,,,hispanic or latino +29,2021-10-01,,,,black or african american, +29,2021-08-01,,,,black or african american, +29,2021-06-01,ambulatory,,female,,hispanic or latino +29,2021-03-01,,,,black or african american,not hispanic or latino +29,2017-01-01,ambulatory,,,,hispanic or latino +29,2016-06-01,,,,black or african american,not hispanic or latino +28,,emergency,29,,white, +28,,ambulatory,24,male,,not hispanic or latino +28,,ambulatory,9,,white,hispanic or latino +28,2022-12-01,,,,white,hispanic or latino +28,2022-12-01,ambulatory,,,,hispanic or latino +28,2022-11-01,,,,white,hispanic or latino +28,2022-05-01,ambulatory,,,,hispanic or latino +28,2022-04-01,,,,black or african american, +28,2021-12-01,,,,,hispanic or latino +28,2021-10-01,ambulatory,,,black or african american, +28,2021-09-01,,,,,hispanic or latino +28,2021-09-01,ambulatory,,,,hispanic or latino +28,2021-08-01,ambulatory,,,white,hispanic or latino +28,2021-07-01,,,,white,hispanic or latino +28,2021-07-01,ambulatory,,,white,hispanic or latino +28,2021-05-01,ambulatory,,,black or african american, +28,2021-04-01,,,,white,hispanic or latino +28,2021-04-01,ambulatory,,,,hispanic or latino +28,2021-03-01,,,,white,hispanic or latino +28,2021-02-01,,,,,hispanic or latino +28,2019-05-01,,,,,hispanic or latino +28,2018-10-01,,,,,hispanic or latino +28,2018-05-01,ambulatory,,,,hispanic or latino +28,2018-05-01,ambulatory,,,white,hispanic or latino +28,2016-12-01,,,,black or african american, +28,2016-06-01,,,,white,hispanic or latino +28,2016-06-01,ambulatory,,,,hispanic or latino +28,2016-06-01,ambulatory,,,black or african american, +27,,ambulatory,24,male,white,not hispanic or latino +27,2023-02-01,,,,,hispanic or latino +27,2023-02-01,,,,white,hispanic or latino +27,2023-01-01,,,,white,hispanic or latino +27,2022-04-01,ambulatory,,,black or african american, +27,2021-11-01,,,,black or african american, +27,2021-10-01,,,,black or african american,not hispanic or latino +27,2021-09-01,,,,black or african american, +27,2021-09-01,ambulatory,,,black or african american, +27,2021-08-01,,,,black or african american,not hispanic or latino +27,2021-08-01,ambulatory,,,black or african american, +27,2020-04-01,,,,black or african american, +27,2019-06-01,,,,white,hispanic or latino +27,2019-06-01,ambulatory,,,,hispanic or latino +27,2019-03-01,,,,white,hispanic or latino +27,2019-03-01,ambulatory,,,white,hispanic or latino +27,2018-03-01,,,,black or african american, +27,2017-12-01,,,,black or african american, +27,2017-12-01,ambulatory,,,black or african american, +27,2017-02-01,,,,,hispanic or latino +27,2017-01-01,ambulatory,,,white,hispanic or latino +27,2016-12-01,ambulatory,,,black or african american, +27,2016-06-01,ambulatory,,,black or african american,not hispanic or latino +26,,,20,,,hispanic or latino +26,,emergency,,female,black or african american,not hispanic or latino 26,,emergency,32,,, -26,,emergency,29,,,[Not Hispanic or Latino] -26,,ambulatory,10,,[White],[Hispanic or Latino] -26,2023-02-01,ambulatory,,,,[Hispanic or Latino] -26,2023-02-01,ambulatory,,,[White],[Hispanic or Latino] -26,2023-01-01,ambulatory,,,[White],[Hispanic or Latino] -26,2021-12-01,,,,[Black or African American], -26,2021-12-01,ambulatory,,,[Black or African American], -26,2021-10-01,,,female,,[Hispanic or Latino] -26,2021-10-01,,,female,[White],[Hispanic or Latino] -26,2021-10-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -26,2021-06-01,,,,[Black or African American], -26,2021-04-01,,,male,[Black or African American], -26,2021-03-01,ambulatory,,,[White],[Hispanic or Latino] -26,2021-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -26,2021-02-01,,,,[White],[Hispanic or Latino] -26,2020-04-01,,,,[Black or African American],[Not Hispanic or Latino] -26,2019-05-01,,,,[White],[Hispanic or Latino] -26,2019-05-01,ambulatory,,,,[Hispanic or Latino] -26,2018-04-01,,,,[Black or African American], -26,2018-04-01,,,,[Black or African American],[Not Hispanic or Latino] -26,2018-04-01,ambulatory,,,[Black or African American], -26,2018-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -26,2018-03-01,,,,[Black or African American],[Not Hispanic or Latino] -26,2018-03-01,ambulatory,,,[Black or African American], -26,2017-10-01,,,,[Black or African American], -26,2017-10-01,ambulatory,,,[Black or African American], +26,,emergency,29,,,not hispanic or latino +26,,ambulatory,10,,white,hispanic or latino +26,2023-02-01,ambulatory,,,,hispanic or latino +26,2023-02-01,ambulatory,,,white,hispanic or latino +26,2023-01-01,ambulatory,,,white,hispanic or latino +26,2021-12-01,,,,black or african american, +26,2021-12-01,ambulatory,,,black or african american, +26,2021-10-01,,,female,,hispanic or latino +26,2021-10-01,,,female,white,hispanic or latino +26,2021-10-01,ambulatory,,,black or african american,not hispanic or latino +26,2021-06-01,,,,black or african american, +26,2021-04-01,,,male,black or african american, +26,2021-03-01,ambulatory,,,white,hispanic or latino +26,2021-03-01,ambulatory,,,black or african american,not hispanic or latino +26,2021-02-01,,,,white,hispanic or latino +26,2020-04-01,,,,black or african american,not hispanic or latino +26,2019-05-01,,,,white,hispanic or latino +26,2019-05-01,ambulatory,,,,hispanic or latino +26,2018-04-01,,,,black or african american, +26,2018-04-01,,,,black or african american,not hispanic or latino +26,2018-04-01,ambulatory,,,black or african american, +26,2018-04-01,ambulatory,,,black or african american,not hispanic or latino +26,2018-03-01,,,,black or african american,not hispanic or latino +26,2018-03-01,ambulatory,,,black or african american, +26,2017-10-01,,,,black or african american, +26,2017-10-01,ambulatory,,,black or african american, 26,2017-07-01,emergency,,,, -26,2017-07-01,emergency,,,[White], -26,2016-12-01,,,,[Black or African American],[Not Hispanic or Latino] -26,2016-06-01,ambulatory,,,[White],[Hispanic or Latino] -25,,emergency,,male,[Black or African American], -25,,emergency,32,,[White], -25,,emergency,31,,,[Not Hispanic or Latino] -25,,emergency,29,,[White],[Not Hispanic or Latino] -25,,ambulatory,20,,,[Hispanic or Latino] -25,2023-03-01,,,,,[Hispanic or Latino] -25,2023-01-01,,,,[Black or African American], -25,2023-01-01,ambulatory,,,[Black or African American], -25,2022-11-01,,,,[Black or African American], -25,2022-11-01,ambulatory,,,[White],[Hispanic or Latino] -25,2022-11-01,ambulatory,,,[Black or African American], -25,2022-07-01,,,,[Black or African American], -25,2022-07-01,ambulatory,,,[Black or African American], -25,2022-05-01,,,,[White],[Hispanic or Latino] -25,2022-04-01,ambulatory,,,,[Hispanic or Latino] -25,2022-03-01,,,,,[Hispanic or Latino] -25,2022-03-01,ambulatory,,,,[Hispanic or Latino] -25,2022-01-01,,,,[Black or African American], -25,2022-01-01,ambulatory,,,[Black or African American], -25,2021-11-01,,,,[White],[Hispanic or Latino] -25,2021-11-01,ambulatory,,,[White],[Hispanic or Latino] -25,2021-10-01,ambulatory,,female,,[Hispanic or Latino] -25,2021-10-01,ambulatory,,female,[White],[Hispanic or Latino] -25,2021-08-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -25,2021-07-01,,,,[Black or African American], -25,2021-07-01,,,female,,[Hispanic or Latino] -25,2021-07-01,ambulatory,,female,,[Hispanic or Latino] -25,2021-05-01,,,,[Black or African American],[Not Hispanic or Latino] -25,2021-05-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -25,2021-04-01,ambulatory,,,[White],[Hispanic or Latino] -25,2021-04-01,ambulatory,,male,[Black or African American], -25,2021-02-01,ambulatory,,,,[Hispanic or Latino] -25,2020-12-01,,,,,[Hispanic or Latino] -25,2020-10-01,,,,,[Hispanic or Latino] -25,2020-05-01,,,,,[Hispanic or Latino] -25,2020-04-01,ambulatory,,,[Black or African American], -25,2018-10-01,,,,[White],[Hispanic or Latino] -25,2018-10-01,ambulatory,,,,[Hispanic or Latino] -25,2018-08-01,,,,[Black or African American], -25,2018-06-01,,,,,[Hispanic or Latino] -25,2018-06-01,,,,[Black or African American], +26,2017-07-01,emergency,,,white, +26,2016-12-01,,,,black or african american,not hispanic or latino +26,2016-06-01,ambulatory,,,white,hispanic or latino +25,,emergency,,male,black or african american, +25,,emergency,32,,white, +25,,emergency,31,,,not hispanic or latino +25,,emergency,29,,white,not hispanic or latino +25,,ambulatory,20,,,hispanic or latino +25,2023-03-01,,,,,hispanic or latino +25,2023-01-01,,,,black or african american, +25,2023-01-01,ambulatory,,,black or african american, +25,2022-11-01,,,,black or african american, +25,2022-11-01,ambulatory,,,white,hispanic or latino +25,2022-11-01,ambulatory,,,black or african american, +25,2022-07-01,,,,black or african american, +25,2022-07-01,ambulatory,,,black or african american, +25,2022-05-01,,,,white,hispanic or latino +25,2022-04-01,ambulatory,,,,hispanic or latino +25,2022-03-01,,,,,hispanic or latino +25,2022-03-01,ambulatory,,,,hispanic or latino +25,2022-01-01,,,,black or african american, +25,2022-01-01,ambulatory,,,black or african american, +25,2021-11-01,,,,white,hispanic or latino +25,2021-11-01,ambulatory,,,white,hispanic or latino +25,2021-10-01,ambulatory,,female,,hispanic or latino +25,2021-10-01,ambulatory,,female,white,hispanic or latino +25,2021-08-01,ambulatory,,,black or african american,not hispanic or latino +25,2021-07-01,,,,black or african american, +25,2021-07-01,,,female,,hispanic or latino +25,2021-07-01,ambulatory,,female,,hispanic or latino +25,2021-05-01,,,,black or african american,not hispanic or latino +25,2021-05-01,ambulatory,,,black or african american,not hispanic or latino +25,2021-04-01,ambulatory,,,white,hispanic or latino +25,2021-04-01,ambulatory,,male,black or african american, +25,2021-02-01,ambulatory,,,,hispanic or latino +25,2020-12-01,,,,,hispanic or latino +25,2020-10-01,,,,,hispanic or latino +25,2020-05-01,,,,,hispanic or latino +25,2020-04-01,ambulatory,,,black or african american, +25,2018-10-01,,,,white,hispanic or latino +25,2018-10-01,ambulatory,,,,hispanic or latino +25,2018-08-01,,,,black or african american, +25,2018-06-01,,,,,hispanic or latino +25,2018-06-01,,,,black or african american, 25,2018-06-01,emergency,,,, -25,2018-04-01,,,,,[Hispanic or Latino] -25,2018-04-01,,,,[White],[Hispanic or Latino] -25,2018-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -25,2018-01-01,,,,[Black or African American], -25,2018-01-01,ambulatory,,,[Black or African American], -25,2017-07-01,emergency,,,,[Not Hispanic or Latino] -25,2017-07-01,emergency,,,[White],[Not Hispanic or Latino] -25,2017-05-01,,,,,[Hispanic or Latino] -25,2017-04-01,,,,[Black or African American], -25,2017-02-01,,,,[White],[Hispanic or Latino] -25,2017-02-01,ambulatory,,,,[Hispanic or Latino] +25,2018-04-01,,,,,hispanic or latino +25,2018-04-01,,,,white,hispanic or latino +25,2018-03-01,ambulatory,,,black or african american,not hispanic or latino +25,2018-01-01,,,,black or african american, +25,2018-01-01,ambulatory,,,black or african american, +25,2017-07-01,emergency,,,,not hispanic or latino +25,2017-07-01,emergency,,,white,not hispanic or latino +25,2017-05-01,,,,,hispanic or latino +25,2017-04-01,,,,black or african american, +25,2017-02-01,,,,white,hispanic or latino +25,2017-02-01,ambulatory,,,,hispanic or latino 25,2017-01-01,emergency,,,, -25,2016-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] +25,2016-12-01,ambulatory,,,black or african american,not hispanic or latino 24,,virtual,,female,, -24,,inpatient encounter,,,[White],[Hispanic or Latino] -24,,emergency,32,,,[Not Hispanic or Latino] -24,,emergency,31,,[White],[Not Hispanic or Latino] +24,,inpatient encounter,,,white,hispanic or latino +24,,emergency,32,,,not hispanic or latino +24,,emergency,31,,white,not hispanic or latino 24,,emergency,30,,, -24,2023-03-01,ambulatory,,,,[Hispanic or Latino] -24,2022-12-01,ambulatory,,,[White],[Hispanic or Latino] -24,2022-09-01,,,,,[Hispanic or Latino] -24,2022-08-01,,,,,[Hispanic or Latino] -24,2022-07-01,,,,[Black or African American],[Not Hispanic or Latino] -24,2022-07-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -24,2022-05-01,,,,[Black or African American], -24,2022-05-01,ambulatory,,,[White],[Hispanic or Latino] -24,2021-12-01,,,,[White],[Hispanic or Latino] -24,2021-09-01,,,,[White],[Hispanic or Latino] -24,2021-09-01,ambulatory,,,[White],[Hispanic or Latino] -24,2020-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -24,2019-06-01,,,female,,[Hispanic or Latino] -24,2019-06-01,ambulatory,,,[White],[Hispanic or Latino] -24,2019-05-01,ambulatory,,,[White],[Hispanic or Latino] -24,2019-02-01,,,,,[Hispanic or Latino] -24,2019-01-01,,,,,[Hispanic or Latino] -24,2019-01-01,,,,[White],[Hispanic or Latino] -24,2019-01-01,ambulatory,,,,[Hispanic or Latino] -24,2019-01-01,ambulatory,,,[White],[Hispanic or Latino] -24,2018-10-01,,,,[Black or African American], -24,2018-09-01,,,,,[Hispanic or Latino] -24,2018-09-01,,,,[Black or African American], -24,2018-06-01,emergency,,,,[Not Hispanic or Latino] -24,2018-06-01,ambulatory,,,,[Hispanic or Latino] -24,2018-06-01,ambulatory,,,[Black or African American], -24,2018-02-01,,,,[Black or African American], -24,2017-12-01,,,,[Black or African American],[Not Hispanic or Latino] -24,2017-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -24,2017-04-01,,,,[Black or African American],[Not Hispanic or Latino] -24,2016-10-01,,,,[Black or African American], -24,2016-07-01,,,,[Black or African American], -24,2016-07-01,,,,[Black or African American],[Not Hispanic or Latino] -23,,virtual,,female,,[Not Hispanic or Latino] -23,,inpatient encounter,,,[Black or African American], +24,2023-03-01,ambulatory,,,,hispanic or latino +24,2022-12-01,ambulatory,,,white,hispanic or latino +24,2022-09-01,,,,,hispanic or latino +24,2022-08-01,,,,,hispanic or latino +24,2022-07-01,,,,black or african american,not hispanic or latino +24,2022-07-01,ambulatory,,,black or african american,not hispanic or latino +24,2022-05-01,,,,black or african american, +24,2022-05-01,ambulatory,,,white,hispanic or latino +24,2021-12-01,,,,white,hispanic or latino +24,2021-09-01,,,,white,hispanic or latino +24,2021-09-01,ambulatory,,,white,hispanic or latino +24,2020-04-01,ambulatory,,,black or african american,not hispanic or latino +24,2019-06-01,,,female,,hispanic or latino +24,2019-06-01,ambulatory,,,white,hispanic or latino +24,2019-05-01,ambulatory,,,white,hispanic or latino +24,2019-02-01,,,,,hispanic or latino +24,2019-01-01,,,,,hispanic or latino +24,2019-01-01,,,,white,hispanic or latino +24,2019-01-01,ambulatory,,,,hispanic or latino +24,2019-01-01,ambulatory,,,white,hispanic or latino +24,2018-10-01,,,,black or african american, +24,2018-09-01,,,,,hispanic or latino +24,2018-09-01,,,,black or african american, +24,2018-06-01,emergency,,,,not hispanic or latino +24,2018-06-01,ambulatory,,,,hispanic or latino +24,2018-06-01,ambulatory,,,black or african american, +24,2018-02-01,,,,black or african american, +24,2017-12-01,,,,black or african american,not hispanic or latino +24,2017-12-01,ambulatory,,,black or african american,not hispanic or latino +24,2017-04-01,,,,black or african american,not hispanic or latino +24,2016-10-01,,,,black or african american, +24,2016-07-01,,,,black or african american, +24,2016-07-01,,,,black or african american,not hispanic or latino +23,,virtual,,female,,not hispanic or latino +23,,inpatient encounter,,,black or african american, 23,,home health,75,,, -23,,emergency,32,,[White],[Not Hispanic or Latino] -23,,emergency,30,,[White], -23,2023-03-01,,,,[White],[Hispanic or Latino] -23,2022-10-01,,,,,[Hispanic or Latino] -23,2022-09-01,ambulatory,,,,[Hispanic or Latino] -23,2022-08-01,ambulatory,,,,[Hispanic or Latino] -23,2022-07-01,,,,,[Hispanic or Latino] +23,,emergency,32,,white,not hispanic or latino +23,,emergency,30,,white, +23,2023-03-01,,,,white,hispanic or latino +23,2022-10-01,,,,,hispanic or latino +23,2022-09-01,ambulatory,,,,hispanic or latino +23,2022-08-01,ambulatory,,,,hispanic or latino +23,2022-07-01,,,,,hispanic or latino 23,2022-05-01,emergency,,,, -23,2022-05-01,ambulatory,,,[Black or African American], -23,2022-04-01,,,,[White],[Hispanic or Latino] -23,2022-03-01,,,,[White],[Hispanic or Latino] -23,2022-03-01,ambulatory,,,[White],[Hispanic or Latino] -23,2021-12-01,ambulatory,,,,[Hispanic or Latino] -23,2021-07-01,,,female,[White],[Hispanic or Latino] -23,2021-07-01,ambulatory,,,[Black or African American], -23,2021-07-01,ambulatory,,female,[White],[Hispanic or Latino] -23,2021-04-01,,,male,[Black or African American],[Not Hispanic or Latino] -23,2021-04-01,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] -23,2021-03-01,,,female,,[Hispanic or Latino] -23,2021-02-01,ambulatory,,,[White],[Hispanic or Latino] -23,2020-12-01,,,,[White],[Hispanic or Latino] -23,2020-10-01,,,,[Black or African American], -23,2020-10-01,ambulatory,,,,[Hispanic or Latino] -23,2020-05-01,ambulatory,,,,[Hispanic or Latino] -23,2019-06-01,,,female,[White],[Hispanic or Latino] -23,2019-04-01,,,,,[Hispanic or Latino] +23,2022-05-01,ambulatory,,,black or african american, +23,2022-04-01,,,,white,hispanic or latino +23,2022-03-01,,,,white,hispanic or latino +23,2022-03-01,ambulatory,,,white,hispanic or latino +23,2021-12-01,ambulatory,,,,hispanic or latino +23,2021-07-01,,,female,white,hispanic or latino +23,2021-07-01,ambulatory,,,black or african american, +23,2021-07-01,ambulatory,,female,white,hispanic or latino +23,2021-04-01,,,male,black or african american,not hispanic or latino +23,2021-04-01,ambulatory,,male,black or african american,not hispanic or latino +23,2021-03-01,,,female,,hispanic or latino +23,2021-02-01,ambulatory,,,white,hispanic or latino +23,2020-12-01,,,,white,hispanic or latino +23,2020-10-01,,,,black or african american, +23,2020-10-01,ambulatory,,,,hispanic or latino +23,2020-05-01,ambulatory,,,,hispanic or latino +23,2019-06-01,,,female,white,hispanic or latino +23,2019-04-01,,,,,hispanic or latino 23,2019-02-01,emergency,,,, -23,2019-02-01,ambulatory,,,,[Hispanic or Latino] -23,2018-09-01,ambulatory,,,,[Hispanic or Latino] -23,2018-09-01,ambulatory,,,[Black or African American], -23,2018-08-01,,,,[Black or African American],[Not Hispanic or Latino] -23,2018-08-01,ambulatory,,,[Black or African American], -23,2018-04-01,ambulatory,,,,[Hispanic or Latino] -23,2018-04-01,ambulatory,,,[White],[Hispanic or Latino] -23,2018-02-01,ambulatory,,,[Black or African American], -23,2018-01-01,,,,[Black or African American],[Not Hispanic or Latino] -23,2018-01-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -23,2017-11-01,,,,,[Hispanic or Latino] -23,2017-10-01,,,,,[Hispanic or Latino] -23,2017-10-01,ambulatory,,,,[Hispanic or Latino] -23,2017-08-01,,,,,[Hispanic or Latino] -23,2017-06-01,,,,[Black or African American], -23,2017-06-01,ambulatory,,,[Black or African American], -23,2017-05-01,ambulatory,,,,[Hispanic or Latino] -23,2017-03-01,,,,,[Hispanic or Latino] -23,2017-02-01,ambulatory,,,[White],[Hispanic or Latino] -23,2017-01-01,emergency,,,,[Not Hispanic or Latino] -23,2016-12-01,,,,,[Hispanic or Latino] -22,,home health,75,,[White], -22,,emergency,,male,[Black or African American],[Not Hispanic or Latino] -22,,emergency,30,,,[Not Hispanic or Latino] -22,2023-03-01,ambulatory,,,[White],[Hispanic or Latino] -22,2023-01-01,,,,[Black or African American],[Not Hispanic or Latino] -22,2023-01-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -22,2022-10-01,,,,[Black or African American], -22,2022-10-01,ambulatory,,,,[Hispanic or Latino] -22,2022-07-01,,,,[White],[Hispanic or Latino] -22,2022-07-01,ambulatory,,,,[Hispanic or Latino] -22,2022-05-01,emergency,,,,[Not Hispanic or Latino] -22,2022-05-01,emergency,,,[White], -22,2022-04-01,,,,[Black or African American],[Not Hispanic or Latino] -22,2022-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -22,2022-02-01,,,,,[Hispanic or Latino] -22,2021-11-01,ambulatory,,,[Black or African American], -22,2021-08-01,,,female,,[Hispanic or Latino] -22,2021-06-01,,,female,[White],[Hispanic or Latino] -22,2021-06-01,ambulatory,,,[Black or African American], -22,2021-06-01,ambulatory,,female,[White],[Hispanic or Latino] -22,2021-05-01,,,male,,[Hispanic or Latino] -22,2021-05-01,,,male,[White],[Hispanic or Latino] -22,2021-05-01,ambulatory,,male,,[Hispanic or Latino] -22,2021-05-01,ambulatory,,male,[White],[Hispanic or Latino] -22,2020-11-01,,,,,[Hispanic or Latino] -22,2020-07-01,,,,,[Hispanic or Latino] -22,2020-07-01,ambulatory,,,,[Hispanic or Latino] -22,2020-05-01,,,,[White],[Hispanic or Latino] -22,2019-03-01,,,female,,[Hispanic or Latino] -22,2019-03-01,ambulatory,,female,,[Hispanic or Latino] -22,2019-02-01,emergency,,,,[Not Hispanic or Latino] -22,2018-10-01,ambulatory,,,[White],[Hispanic or Latino] -22,2018-10-01,ambulatory,,,[Black or African American], -22,2018-09-01,,,,[White],[Hispanic or Latino] -22,2018-09-01,,,,[Black or African American],[Not Hispanic or Latino] -22,2018-06-01,emergency,,,[White], -22,2018-02-01,,,,[Black or African American],[Not Hispanic or Latino] -22,2017-12-01,,,,,[Hispanic or Latino] -22,2017-08-01,ambulatory,,,,[Hispanic or Latino] -22,2017-07-01,,,,,[Hispanic or Latino] -22,2017-07-01,,,,[Black or African American], -22,2017-07-01,ambulatory,,,[Black or African American], -22,2017-05-01,,,,[White],[Hispanic or Latino] -22,2017-05-01,,,,[Black or African American], -22,2017-04-01,ambulatory,,,[Black or African American], -22,2017-03-01,,,,[White],[Hispanic or Latino] -22,2017-03-01,,,,[Black or African American], -22,2017-03-01,,,,[Black or African American],[Not Hispanic or Latino] -22,2016-12-01,ambulatory,,,,[Hispanic or Latino] -22,2016-09-01,,,,,[Hispanic or Latino] -22,2016-09-01,,,,[White],[Hispanic or Latino] -22,2016-08-01,,,,[Black or African American], -22,2016-07-01,ambulatory,,,[Black or African American], -22,2016-07-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,,,12,,,[Hispanic or Latino] -21,,,7,,,[Hispanic or Latino] -21,,virtual,,female,[White], -21,,emergency,30,,[White],[Not Hispanic or Latino] +23,2019-02-01,ambulatory,,,,hispanic or latino +23,2018-09-01,ambulatory,,,,hispanic or latino +23,2018-09-01,ambulatory,,,black or african american, +23,2018-08-01,,,,black or african american,not hispanic or latino +23,2018-08-01,ambulatory,,,black or african american, +23,2018-04-01,ambulatory,,,,hispanic or latino +23,2018-04-01,ambulatory,,,white,hispanic or latino +23,2018-02-01,ambulatory,,,black or african american, +23,2018-01-01,,,,black or african american,not hispanic or latino +23,2018-01-01,ambulatory,,,black or african american,not hispanic or latino +23,2017-11-01,,,,,hispanic or latino +23,2017-10-01,,,,,hispanic or latino +23,2017-10-01,ambulatory,,,,hispanic or latino +23,2017-08-01,,,,,hispanic or latino +23,2017-06-01,,,,black or african american, +23,2017-06-01,ambulatory,,,black or african american, +23,2017-05-01,ambulatory,,,,hispanic or latino +23,2017-03-01,,,,,hispanic or latino +23,2017-02-01,ambulatory,,,white,hispanic or latino +23,2017-01-01,emergency,,,,not hispanic or latino +23,2016-12-01,,,,,hispanic or latino +22,,home health,75,,white, +22,,emergency,,male,black or african american,not hispanic or latino +22,,emergency,30,,,not hispanic or latino +22,2023-03-01,ambulatory,,,white,hispanic or latino +22,2023-01-01,,,,black or african american,not hispanic or latino +22,2023-01-01,ambulatory,,,black or african american,not hispanic or latino +22,2022-10-01,,,,black or african american, +22,2022-10-01,ambulatory,,,,hispanic or latino +22,2022-07-01,,,,white,hispanic or latino +22,2022-07-01,ambulatory,,,,hispanic or latino +22,2022-05-01,emergency,,,,not hispanic or latino +22,2022-05-01,emergency,,,white, +22,2022-04-01,,,,black or african american,not hispanic or latino +22,2022-04-01,ambulatory,,,black or african american,not hispanic or latino +22,2022-02-01,,,,,hispanic or latino +22,2021-11-01,ambulatory,,,black or african american, +22,2021-08-01,,,female,,hispanic or latino +22,2021-06-01,,,female,white,hispanic or latino +22,2021-06-01,ambulatory,,,black or african american, +22,2021-06-01,ambulatory,,female,white,hispanic or latino +22,2021-05-01,,,male,,hispanic or latino +22,2021-05-01,,,male,white,hispanic or latino +22,2021-05-01,ambulatory,,male,,hispanic or latino +22,2021-05-01,ambulatory,,male,white,hispanic or latino +22,2020-11-01,,,,,hispanic or latino +22,2020-07-01,,,,,hispanic or latino +22,2020-07-01,ambulatory,,,,hispanic or latino +22,2020-05-01,,,,white,hispanic or latino +22,2019-03-01,,,female,,hispanic or latino +22,2019-03-01,ambulatory,,female,,hispanic or latino +22,2019-02-01,emergency,,,,not hispanic or latino +22,2018-10-01,ambulatory,,,white,hispanic or latino +22,2018-10-01,ambulatory,,,black or african american, +22,2018-09-01,,,,white,hispanic or latino +22,2018-09-01,,,,black or african american,not hispanic or latino +22,2018-06-01,emergency,,,white, +22,2018-02-01,,,,black or african american,not hispanic or latino +22,2017-12-01,,,,,hispanic or latino +22,2017-08-01,ambulatory,,,,hispanic or latino +22,2017-07-01,,,,,hispanic or latino +22,2017-07-01,,,,black or african american, +22,2017-07-01,ambulatory,,,black or african american, +22,2017-05-01,,,,white,hispanic or latino +22,2017-05-01,,,,black or african american, +22,2017-04-01,ambulatory,,,black or african american, +22,2017-03-01,,,,white,hispanic or latino +22,2017-03-01,,,,black or african american, +22,2017-03-01,,,,black or african american,not hispanic or latino +22,2016-12-01,ambulatory,,,,hispanic or latino +22,2016-09-01,,,,,hispanic or latino +22,2016-09-01,,,,white,hispanic or latino +22,2016-08-01,,,,black or african american, +22,2016-07-01,ambulatory,,,black or african american, +22,2016-07-01,ambulatory,,,black or african american,not hispanic or latino +21,,,12,,,hispanic or latino +21,,,7,,,hispanic or latino +21,,virtual,,female,white, +21,,emergency,30,,white,not hispanic or latino 21,,emergency,28,,, -21,,emergency,28,,[White], -21,,ambulatory,12,,,[Hispanic or Latino] -21,2023-02-01,,,,[Black or African American], -21,2023-02-01,,,,[Black or African American],[Not Hispanic or Latino] -21,2022-09-01,,,,[White],[Hispanic or Latino] -21,2022-08-01,,,,[White],[Hispanic or Latino] -21,2022-07-01,ambulatory,,,[White],[Hispanic or Latino] -21,2022-05-01,,,,[Black or African American],[Not Hispanic or Latino] -21,2022-05-01,emergency,,,[White],[Not Hispanic or Latino] -21,2022-03-01,,,,[Black or African American], -21,2022-03-01,ambulatory,,,[Black or African American], -21,2022-02-01,ambulatory,,,,[Hispanic or Latino] -21,2021-12-01,,,female,,[Hispanic or Latino] -21,2021-08-01,,,female,[White],[Hispanic or Latino] +21,,emergency,28,,white, +21,,ambulatory,12,,,hispanic or latino +21,2023-02-01,,,,black or african american, +21,2023-02-01,,,,black or african american,not hispanic or latino +21,2022-09-01,,,,white,hispanic or latino +21,2022-08-01,,,,white,hispanic or latino +21,2022-07-01,ambulatory,,,white,hispanic or latino +21,2022-05-01,,,,black or african american,not hispanic or latino +21,2022-05-01,emergency,,,white,not hispanic or latino +21,2022-03-01,,,,black or african american, +21,2022-03-01,ambulatory,,,black or african american, +21,2022-02-01,ambulatory,,,,hispanic or latino +21,2021-12-01,,,female,,hispanic or latino +21,2021-08-01,,,female,white,hispanic or latino 21,2021-08-01,,14,,, 21,2021-08-01,ambulatory,14,,, -21,2021-05-01,,,female,,[Hispanic or Latino] +21,2021-05-01,,,female,,hispanic or latino 21,2021-05-01,,14,,, -21,2021-05-01,,14,,,[Not Hispanic or Latino] +21,2021-05-01,,14,,,not hispanic or latino 21,2021-05-01,ambulatory,14,,, -21,2021-05-01,ambulatory,14,,,[Not Hispanic or Latino] -21,2021-03-01,ambulatory,,female,,[Hispanic or Latino] -21,2021-02-01,,,,[Black or African American], -21,2020-12-01,ambulatory,,,,[Hispanic or Latino] -21,2020-07-01,,,,[White],[Hispanic or Latino] -21,2020-07-01,ambulatory,,,[White],[Hispanic or Latino] +21,2021-05-01,ambulatory,14,,,not hispanic or latino +21,2021-03-01,ambulatory,,female,,hispanic or latino +21,2021-02-01,,,,black or african american, +21,2020-12-01,ambulatory,,,,hispanic or latino +21,2020-07-01,,,,white,hispanic or latino +21,2020-07-01,ambulatory,,,white,hispanic or latino 21,2020-05-01,emergency,,,, -21,2020-05-01,ambulatory,,,[White],[Hispanic or Latino] -21,2019-11-01,,,,,[Hispanic or Latino] -21,2019-11-01,ambulatory,,,,[Hispanic or Latino] -21,2019-06-01,ambulatory,,female,,[Hispanic or Latino] -21,2019-04-01,,,,[White],[Hispanic or Latino] -21,2018-12-01,,,,,[Hispanic or Latino] -21,2018-10-01,,,,[Black or African American],[Not Hispanic or Latino] -21,2018-09-01,ambulatory,,,[White],[Hispanic or Latino] -21,2018-09-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,2018-08-01,,,,,[Hispanic or Latino] -21,2018-08-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,2018-06-01,,,,[White],[Hispanic or Latino] -21,2018-06-01,emergency,,,[White],[Not Hispanic or Latino] -21,2018-02-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,2018-01-01,,,,,[Hispanic or Latino] -21,2017-11-01,,,,[Black or African American], -21,2017-08-01,,,,[Black or African American], -21,2017-08-01,ambulatory,,,[Black or African American], -21,2017-07-01,ambulatory,,,,[Hispanic or Latino] -21,2017-06-01,,,female,,[Hispanic or Latino] -21,2017-06-01,ambulatory,,female,,[Hispanic or Latino] -21,2017-04-01,,,,,[Hispanic or Latino] -21,2017-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,2017-03-01,ambulatory,,,,[Hispanic or Latino] -21,2017-03-01,ambulatory,,,[Black or African American], -21,2017-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -21,2017-02-01,,,,[Black or African American], -21,2017-01-01,emergency,,,[White], -21,2016-12-01,,,,[White],[Hispanic or Latino] -21,2016-09-01,ambulatory,,,,[Hispanic or Latino] -21,2016-09-01,ambulatory,,,[White],[Hispanic or Latino] -21,2016-08-01,ambulatory,,,[Black or African American], -21,2016-07-01,,,,,[Hispanic or Latino] -20,,,20,,[White],[Hispanic or Latino] -20,,,11,,,[Hispanic or Latino] -20,,virtual,,female,[White],[Not Hispanic or Latino] -20,,home health,75,,,[Not Hispanic or Latino] +21,2020-05-01,ambulatory,,,white,hispanic or latino +21,2019-11-01,,,,,hispanic or latino +21,2019-11-01,ambulatory,,,,hispanic or latino +21,2019-06-01,ambulatory,,female,,hispanic or latino +21,2019-04-01,,,,white,hispanic or latino +21,2018-12-01,,,,,hispanic or latino +21,2018-10-01,,,,black or african american,not hispanic or latino +21,2018-09-01,ambulatory,,,white,hispanic or latino +21,2018-09-01,ambulatory,,,black or african american,not hispanic or latino +21,2018-08-01,,,,,hispanic or latino +21,2018-08-01,ambulatory,,,black or african american,not hispanic or latino +21,2018-06-01,,,,white,hispanic or latino +21,2018-06-01,emergency,,,white,not hispanic or latino +21,2018-02-01,ambulatory,,,black or african american,not hispanic or latino +21,2018-01-01,,,,,hispanic or latino +21,2017-11-01,,,,black or african american, +21,2017-08-01,,,,black or african american, +21,2017-08-01,ambulatory,,,black or african american, +21,2017-07-01,ambulatory,,,,hispanic or latino +21,2017-06-01,,,female,,hispanic or latino +21,2017-06-01,ambulatory,,female,,hispanic or latino +21,2017-04-01,,,,,hispanic or latino +21,2017-04-01,ambulatory,,,black or african american,not hispanic or latino +21,2017-03-01,ambulatory,,,,hispanic or latino +21,2017-03-01,ambulatory,,,black or african american, +21,2017-03-01,ambulatory,,,black or african american,not hispanic or latino +21,2017-02-01,,,,black or african american, +21,2017-01-01,emergency,,,white, +21,2016-12-01,,,,white,hispanic or latino +21,2016-09-01,ambulatory,,,,hispanic or latino +21,2016-09-01,ambulatory,,,white,hispanic or latino +21,2016-08-01,ambulatory,,,black or african american, +21,2016-07-01,,,,,hispanic or latino +20,,,20,,white,hispanic or latino +20,,,11,,,hispanic or latino +20,,virtual,,female,white,not hispanic or latino +20,,home health,75,,,not hispanic or latino 20,,emergency,65,,, -20,,emergency,65,,[White], +20,,emergency,65,,white, 20,,emergency,39,,, -20,,emergency,39,,,[Not Hispanic or Latino] -20,,ambulatory,20,,[White],[Hispanic or Latino] -20,2023-03-01,,,,[Black or African American], +20,,emergency,39,,,not hispanic or latino +20,,ambulatory,20,,white,hispanic or latino +20,2023-03-01,,,,black or african american, 20,2023-03-01,emergency,,,, -20,2022-12-01,,,,[Black or African American], -20,2022-12-01,ambulatory,,,[Black or African American], -20,2022-10-01,,,,[White],[Hispanic or Latino] -20,2022-10-01,,,,[Black or African American],[Not Hispanic or Latino] -20,2022-10-01,ambulatory,,,[White],[Hispanic or Latino] -20,2022-10-01,ambulatory,,,[Black or African American], -20,2022-09-01,,,,[Black or African American], -20,2022-09-01,ambulatory,,,[White],[Hispanic or Latino] -20,2022-08-01,ambulatory,,,[White],[Hispanic or Latino] -20,2022-08-01,ambulatory,,,[Black or African American], +20,2022-12-01,,,,black or african american, +20,2022-12-01,ambulatory,,,black or african american, +20,2022-10-01,,,,white,hispanic or latino +20,2022-10-01,,,,black or african american,not hispanic or latino +20,2022-10-01,ambulatory,,,white,hispanic or latino +20,2022-10-01,ambulatory,,,black or african american, +20,2022-09-01,,,,black or african american, +20,2022-09-01,ambulatory,,,white,hispanic or latino +20,2022-08-01,ambulatory,,,white,hispanic or latino +20,2022-08-01,ambulatory,,,black or african american, 20,2022-07-01,emergency,,,, -20,2022-07-01,emergency,,,,[Not Hispanic or Latino] -20,2022-06-01,,,,,[Hispanic or Latino] -20,2022-05-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -20,2022-04-01,ambulatory,,,[White],[Hispanic or Latino] -20,2022-03-01,,,,[Black or African American],[Not Hispanic or Latino] -20,2022-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -20,2022-02-01,,,,[White],[Hispanic or Latino] +20,2022-07-01,emergency,,,,not hispanic or latino +20,2022-06-01,,,,,hispanic or latino +20,2022-05-01,ambulatory,,,black or african american,not hispanic or latino +20,2022-04-01,ambulatory,,,white,hispanic or latino +20,2022-03-01,,,,black or african american,not hispanic or latino +20,2022-03-01,ambulatory,,,black or african american,not hispanic or latino +20,2022-02-01,,,,white,hispanic or latino 20,2021-09-01,emergency,,,, -20,2021-09-01,emergency,,,,[Not Hispanic or Latino] -20,2021-09-01,emergency,,,[White], -20,2021-09-01,emergency,,,[White],[Not Hispanic or Latino] -20,2021-08-01,,14,,,[Not Hispanic or Latino] -20,2021-08-01,ambulatory,,female,,[Hispanic or Latino] -20,2021-08-01,ambulatory,14,,,[Not Hispanic or Latino] -20,2021-03-01,,,male,[Black or African American], -20,2020-11-01,ambulatory,,,,[Hispanic or Latino] -20,2020-10-01,,,,[White],[Hispanic or Latino] -20,2020-06-01,,,,,[Hispanic or Latino] -20,2020-06-01,ambulatory,,,,[Hispanic or Latino] -20,2020-05-01,emergency,,,,[Not Hispanic or Latino] -20,2019-11-01,,,,[White],[Hispanic or Latino] -20,2019-11-01,ambulatory,,,[White],[Hispanic or Latino] -20,2019-06-01,,,,[Black or African American], -20,2019-06-01,ambulatory,,,[Black or African American], -20,2019-06-01,ambulatory,,female,[White],[Hispanic or Latino] -20,2019-04-01,,,,[Black or African American], -20,2019-04-01,ambulatory,,,,[Hispanic or Latino] -20,2019-03-01,,,,[Black or African American], -20,2018-12-01,ambulatory,,,,[Hispanic or Latino] -20,2018-08-01,ambulatory,,,,[Hispanic or Latino] -20,2018-07-01,,,,,[Hispanic or Latino] -20,2018-07-01,,,,[White],[Hispanic or Latino] -20,2018-06-01,ambulatory,,,[White],[Hispanic or Latino] -20,2017-12-01,ambulatory,,,,[Hispanic or Latino] -20,2017-11-01,,,,[White],[Hispanic or Latino] -20,2017-11-01,ambulatory,,,,[Hispanic or Latino] -20,2017-11-01,ambulatory,,,[Black or African American], -20,2017-09-01,,,,,[Hispanic or Latino] -20,2017-08-01,,,,[White],[Hispanic or Latino] +20,2021-09-01,emergency,,,,not hispanic or latino +20,2021-09-01,emergency,,,white, +20,2021-09-01,emergency,,,white,not hispanic or latino +20,2021-08-01,,14,,,not hispanic or latino +20,2021-08-01,ambulatory,,female,,hispanic or latino +20,2021-08-01,ambulatory,14,,,not hispanic or latino +20,2021-03-01,,,male,black or african american, +20,2020-11-01,ambulatory,,,,hispanic or latino +20,2020-10-01,,,,white,hispanic or latino +20,2020-06-01,,,,,hispanic or latino +20,2020-06-01,ambulatory,,,,hispanic or latino +20,2020-05-01,emergency,,,,not hispanic or latino +20,2019-11-01,,,,white,hispanic or latino +20,2019-11-01,ambulatory,,,white,hispanic or latino +20,2019-06-01,,,,black or african american, +20,2019-06-01,ambulatory,,,black or african american, +20,2019-06-01,ambulatory,,female,white,hispanic or latino +20,2019-04-01,,,,black or african american, +20,2019-04-01,ambulatory,,,,hispanic or latino +20,2019-03-01,,,,black or african american, +20,2018-12-01,ambulatory,,,,hispanic or latino +20,2018-08-01,ambulatory,,,,hispanic or latino +20,2018-07-01,,,,,hispanic or latino +20,2018-07-01,,,,white,hispanic or latino +20,2018-06-01,ambulatory,,,white,hispanic or latino +20,2017-12-01,ambulatory,,,,hispanic or latino +20,2017-11-01,,,,white,hispanic or latino +20,2017-11-01,ambulatory,,,,hispanic or latino +20,2017-11-01,ambulatory,,,black or african american, +20,2017-09-01,,,,,hispanic or latino +20,2017-08-01,,,,white,hispanic or latino 20,2017-06-01,emergency,,,, -20,2017-05-01,ambulatory,,,[White],[Hispanic or Latino] -20,2017-04-01,,,,[White],[Hispanic or Latino] +20,2017-05-01,ambulatory,,,white,hispanic or latino +20,2017-04-01,,,,white,hispanic or latino 20,2017-04-01,emergency,,,, -20,2017-04-01,ambulatory,,,,[Hispanic or Latino] -20,2017-03-01,ambulatory,,,[White],[Hispanic or Latino] -20,2017-01-01,,,female,,[Hispanic or Latino] -20,2016-12-01,ambulatory,,,[White],[Hispanic or Latino] -20,2016-11-01,,,,,[Hispanic or Latino] -20,2016-10-01,,,,,[Hispanic or Latino] -20,2016-10-01,ambulatory,,,,[Hispanic or Latino] -20,2016-09-01,,,,[Black or African American], -20,2016-09-01,,,,[Black or African American],[Not Hispanic or Latino] -20,2016-08-01,,,,,[Hispanic or Latino] -20,2016-07-01,,,,[White],[Hispanic or Latino] +20,2017-04-01,ambulatory,,,,hispanic or latino +20,2017-03-01,ambulatory,,,white,hispanic or latino +20,2017-01-01,,,female,,hispanic or latino +20,2016-12-01,ambulatory,,,white,hispanic or latino +20,2016-11-01,,,,,hispanic or latino +20,2016-10-01,,,,,hispanic or latino +20,2016-10-01,ambulatory,,,,hispanic or latino +20,2016-09-01,,,,black or african american, +20,2016-09-01,,,,black or african american,not hispanic or latino +20,2016-08-01,,,,,hispanic or latino +20,2016-07-01,,,,white,hispanic or latino 20,2016-07-01,emergency,,,, -20,2016-07-01,emergency,,,,[Not Hispanic or Latino] -20,2016-07-01,ambulatory,,,,[Hispanic or Latino] -20,2016-06-01,,,female,,[Hispanic or Latino] -19,,home health,75,,[White],[Not Hispanic or Latino] +20,2016-07-01,emergency,,,,not hispanic or latino +20,2016-07-01,ambulatory,,,,hispanic or latino +20,2016-06-01,,,female,,hispanic or latino +19,,home health,75,,white,not hispanic or latino 19,,emergency,33,,, -19,,emergency,28,,,[Not Hispanic or Latino] -19,,emergency,28,,[White],[Not Hispanic or Latino] -19,,ambulatory,7,,,[Hispanic or Latino] -19,2023-03-01,emergency,,,,[Not Hispanic or Latino] -19,2023-02-01,ambulatory,,,[Black or African American], -19,2023-02-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -19,2022-12-01,,,female,,[Hispanic or Latino] -19,2022-09-01,ambulatory,,,[Black or African American], -19,2022-07-01,emergency,,,[White], -19,2022-07-01,emergency,,,[White],[Not Hispanic or Latino] -19,2022-06-01,,,,[White],[Hispanic or Latino] -19,2022-03-01,,,female,,[Hispanic or Latino] -19,2022-03-01,ambulatory,,female,,[Hispanic or Latino] -19,2022-02-01,ambulatory,,,[White],[Hispanic or Latino] -19,2022-01-01,,,,,[Hispanic or Latino] -19,2022-01-01,ambulatory,,,,[Hispanic or Latino] -19,2021-12-01,,,female,[White],[Hispanic or Latino] -19,2021-12-01,ambulatory,,,[White],[Hispanic or Latino] +19,,emergency,28,,,not hispanic or latino +19,,emergency,28,,white,not hispanic or latino +19,,ambulatory,7,,,hispanic or latino +19,2023-03-01,emergency,,,,not hispanic or latino +19,2023-02-01,ambulatory,,,black or african american, +19,2023-02-01,ambulatory,,,black or african american,not hispanic or latino +19,2022-12-01,,,female,,hispanic or latino +19,2022-09-01,ambulatory,,,black or african american, +19,2022-07-01,emergency,,,white, +19,2022-07-01,emergency,,,white,not hispanic or latino +19,2022-06-01,,,,white,hispanic or latino +19,2022-03-01,,,female,,hispanic or latino +19,2022-03-01,ambulatory,,female,,hispanic or latino +19,2022-02-01,ambulatory,,,white,hispanic or latino +19,2022-01-01,,,,,hispanic or latino +19,2022-01-01,ambulatory,,,,hispanic or latino +19,2021-12-01,,,female,white,hispanic or latino +19,2021-12-01,ambulatory,,,white,hispanic or latino 19,2021-08-01,emergency,,,, -19,2021-08-01,ambulatory,,female,[White],[Hispanic or Latino] -19,2021-07-01,,,,[Black or African American],[Not Hispanic or Latino] -19,2021-07-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] +19,2021-08-01,ambulatory,,female,white,hispanic or latino +19,2021-07-01,,,,black or african american,not hispanic or latino +19,2021-07-01,ambulatory,,,black or african american,not hispanic or latino 19,2021-05-01,emergency,,,, -19,2021-03-01,,,female,[White],[Hispanic or Latino] -19,2021-02-01,,,,[Black or African American],[Not Hispanic or Latino] -19,2021-02-01,ambulatory,,,[Black or African American], -19,2021-01-01,,,,[Black or African American], -19,2021-01-01,ambulatory,,,[Black or African American], -19,2020-12-01,ambulatory,,,[White],[Hispanic or Latino] -19,2020-11-01,,,,[White],[Hispanic or Latino] -19,2020-10-01,ambulatory,,,[Black or African American], -19,2020-08-01,,,,[Black or African American], -19,2020-08-01,ambulatory,,,[Black or African American], -19,2020-07-01,,,,[Black or African American], -19,2020-07-01,ambulatory,,,[Black or African American], -19,2020-05-01,emergency,,,[White], +19,2021-03-01,,,female,white,hispanic or latino +19,2021-02-01,,,,black or african american,not hispanic or latino +19,2021-02-01,ambulatory,,,black or african american, +19,2021-01-01,,,,black or african american, +19,2021-01-01,ambulatory,,,black or african american, +19,2020-12-01,ambulatory,,,white,hispanic or latino +19,2020-11-01,,,,white,hispanic or latino +19,2020-10-01,ambulatory,,,black or african american, +19,2020-08-01,,,,black or african american, +19,2020-08-01,ambulatory,,,black or african american, +19,2020-07-01,,,,black or african american, +19,2020-07-01,ambulatory,,,black or african american, +19,2020-05-01,emergency,,,white, 19,2020-04-01,emergency,,,, -19,2019-08-01,,,,,[Hispanic or Latino] -19,2019-04-01,ambulatory,,,[White],[Hispanic or Latino] -19,2019-03-01,,,female,[White],[Hispanic or Latino] +19,2019-08-01,,,,,hispanic or latino +19,2019-04-01,ambulatory,,,white,hispanic or latino +19,2019-03-01,,,female,white,hispanic or latino 19,2019-03-01,emergency,,,, -19,2019-03-01,emergency,,,,[Not Hispanic or Latino] -19,2019-03-01,ambulatory,,,[Black or African American], -19,2019-03-01,ambulatory,,female,[White],[Hispanic or Latino] -19,2019-02-01,,,,[White],[Hispanic or Latino] -19,2019-02-01,ambulatory,,,[White],[Hispanic or Latino] -19,2018-12-01,,,,[White],[Hispanic or Latino] -19,2018-10-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -19,2018-05-01,,,,[Black or African American], -19,2018-05-01,,,,[Black or African American],[Not Hispanic or Latino] -19,2018-05-01,,,male,,[Hispanic or Latino] -19,2018-05-01,,,male,[White],[Hispanic or Latino] -19,2018-05-01,ambulatory,,,[Black or African American], -19,2018-05-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -19,2018-02-01,,,,,[Hispanic or Latino] -19,2018-01-01,,,,[White],[Hispanic or Latino] -19,2017-12-01,,,,[White],[Hispanic or Latino] +19,2019-03-01,emergency,,,,not hispanic or latino +19,2019-03-01,ambulatory,,,black or african american, +19,2019-03-01,ambulatory,,female,white,hispanic or latino +19,2019-02-01,,,,white,hispanic or latino +19,2019-02-01,ambulatory,,,white,hispanic or latino +19,2018-12-01,,,,white,hispanic or latino +19,2018-10-01,ambulatory,,,black or african american,not hispanic or latino +19,2018-05-01,,,,black or african american, +19,2018-05-01,,,,black or african american,not hispanic or latino +19,2018-05-01,,,male,,hispanic or latino +19,2018-05-01,,,male,white,hispanic or latino +19,2018-05-01,ambulatory,,,black or african american, +19,2018-05-01,ambulatory,,,black or african american,not hispanic or latino +19,2018-02-01,,,,,hispanic or latino +19,2018-01-01,,,,white,hispanic or latino +19,2017-12-01,,,,white,hispanic or latino 19,2017-09-01,emergency,,,, -19,2017-09-01,emergency,,,,[Not Hispanic or Latino] -19,2017-09-01,ambulatory,,,,[Hispanic or Latino] -19,2017-08-01,ambulatory,,,[White],[Hispanic or Latino] -19,2017-06-01,,,female,[White],[Hispanic or Latino] -19,2017-06-01,emergency,,,,[Not Hispanic or Latino] -19,2017-06-01,ambulatory,,female,[White],[Hispanic or Latino] -19,2017-04-01,emergency,,,,[Not Hispanic or Latino] -19,2017-04-01,ambulatory,,,[White],[Hispanic or Latino] -19,2017-02-01,,,female,,[Hispanic or Latino] -19,2017-01-01,emergency,,,[White],[Not Hispanic or Latino] -19,2017-01-01,ambulatory,,female,,[Hispanic or Latino] -19,2016-11-01,,,,[White],[Hispanic or Latino] -19,2016-11-01,ambulatory,,,,[Hispanic or Latino] +19,2017-09-01,emergency,,,,not hispanic or latino +19,2017-09-01,ambulatory,,,,hispanic or latino +19,2017-08-01,ambulatory,,,white,hispanic or latino +19,2017-06-01,,,female,white,hispanic or latino +19,2017-06-01,emergency,,,,not hispanic or latino +19,2017-06-01,ambulatory,,female,white,hispanic or latino +19,2017-04-01,emergency,,,,not hispanic or latino +19,2017-04-01,ambulatory,,,white,hispanic or latino +19,2017-02-01,,,female,,hispanic or latino +19,2017-01-01,emergency,,,white,not hispanic or latino +19,2017-01-01,ambulatory,,female,,hispanic or latino +19,2016-11-01,,,,white,hispanic or latino +19,2016-11-01,ambulatory,,,,hispanic or latino 19,2016-10-01,emergency,,,, -19,2016-10-01,emergency,,,,[Not Hispanic or Latino] -19,2016-09-01,ambulatory,,,[Black or African American], -19,2016-09-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -19,2016-07-01,ambulatory,,,[White],[Hispanic or Latino] -19,2016-06-01,,,female,[White],[Hispanic or Latino] +19,2016-10-01,emergency,,,,not hispanic or latino +19,2016-09-01,ambulatory,,,black or african american, +19,2016-09-01,ambulatory,,,black or african american,not hispanic or latino +19,2016-07-01,ambulatory,,,white,hispanic or latino +19,2016-06-01,,,female,white,hispanic or latino 19,2016-06-01,emergency,,,, -19,2016-06-01,emergency,,,[White], -18,,inpatient encounter,,,[Black or African American],[Not Hispanic or Latino] -18,,inpatient encounter,,female,,[Hispanic or Latino] -18,,inpatient encounter,,female,[White],[Hispanic or Latino] +19,2016-06-01,emergency,,,white, +18,,inpatient encounter,,,black or african american,not hispanic or latino +18,,inpatient encounter,,female,,hispanic or latino +18,,inpatient encounter,,female,white,hispanic or latino 18,,home health,65,,, 18,,emergency,61,,, 18,,emergency,60,,, -18,,emergency,60,,,[Not Hispanic or Latino] -18,,emergency,60,,[White], -18,,emergency,60,,[White],[Not Hispanic or Latino] +18,,emergency,60,,,not hispanic or latino +18,,emergency,60,,white, +18,,emergency,60,,white,not hispanic or latino 18,,emergency,41,,, -18,,emergency,33,,[White], +18,,emergency,33,,white, 18,,emergency,25,,, 18,,emergency,19,,, -18,,emergency,19,,,[Not Hispanic or Latino] -18,2023-03-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2023-03-01,,,female,,[Hispanic or Latino] -18,2023-03-01,emergency,,,[White], -18,2023-03-01,ambulatory,,,[Black or African American], -18,2023-03-01,ambulatory,,female,,[Hispanic or Latino] -18,2023-02-01,,,female,,[Hispanic or Latino] -18,2023-02-01,,,female,[White],[Hispanic or Latino] +18,,emergency,19,,,not hispanic or latino +18,2023-03-01,,,,black or african american,not hispanic or latino +18,2023-03-01,,,female,,hispanic or latino +18,2023-03-01,emergency,,,white, +18,2023-03-01,ambulatory,,,black or african american, +18,2023-03-01,ambulatory,,female,,hispanic or latino +18,2023-02-01,,,female,,hispanic or latino +18,2023-02-01,,,female,white,hispanic or latino 18,2022-12-01,emergency,,,, -18,2022-12-01,emergency,,,[White], -18,2022-12-01,ambulatory,,female,,[Hispanic or Latino] -18,2022-11-01,,,female,,[Hispanic or Latino] -18,2022-11-01,ambulatory,,female,,[Hispanic or Latino] -18,2022-10-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -18,2022-06-01,ambulatory,,,,[Hispanic or Latino] +18,2022-12-01,emergency,,,white, +18,2022-12-01,ambulatory,,female,,hispanic or latino +18,2022-11-01,,,female,,hispanic or latino +18,2022-11-01,ambulatory,,female,,hispanic or latino +18,2022-10-01,ambulatory,,,black or african american,not hispanic or latino +18,2022-06-01,ambulatory,,,,hispanic or latino 18,2022-04-01,emergency,,,, -18,2022-02-01,,,,[Black or African American], -18,2022-02-01,ambulatory,,,[Black or African American], -18,2021-11-01,,,female,,[Hispanic or Latino] -18,2021-11-01,,,female,[White],[Hispanic or Latino] -18,2021-11-01,ambulatory,,female,,[Hispanic or Latino] -18,2021-11-01,ambulatory,,female,[White],[Hispanic or Latino] +18,2022-02-01,,,,black or african american, +18,2022-02-01,ambulatory,,,black or african american, +18,2021-11-01,,,female,,hispanic or latino +18,2021-11-01,,,female,white,hispanic or latino +18,2021-11-01,ambulatory,,female,,hispanic or latino +18,2021-11-01,ambulatory,,female,white,hispanic or latino 18,2021-08-01,,14,female,, -18,2021-08-01,,14,female,,[Not Hispanic or Latino] +18,2021-08-01,,14,female,,not hispanic or latino 18,2021-08-01,ambulatory,14,female,, -18,2021-08-01,ambulatory,14,female,,[Not Hispanic or Latino] -18,2021-05-01,ambulatory,,female,,[Hispanic or Latino] -18,2021-04-01,,,female,,[Hispanic or Latino] +18,2021-08-01,ambulatory,14,female,,not hispanic or latino +18,2021-05-01,ambulatory,,female,,hispanic or latino +18,2021-04-01,,,female,,hispanic or latino 18,2021-03-01,emergency,,,, -18,2021-03-01,ambulatory,,male,[Black or African American], -18,2021-03-01,ambulatory,,female,[White],[Hispanic or Latino] -18,2021-01-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2021-01-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -18,2020-10-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2020-10-01,ambulatory,,,[White],[Hispanic or Latino] -18,2020-08-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2020-08-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -18,2020-07-01,,,,[Black or African American],[Not Hispanic or Latino] +18,2021-03-01,ambulatory,,male,black or african american, +18,2021-03-01,ambulatory,,female,white,hispanic or latino +18,2021-01-01,,,,black or african american,not hispanic or latino +18,2021-01-01,ambulatory,,,black or african american,not hispanic or latino +18,2020-10-01,,,,black or african american,not hispanic or latino +18,2020-10-01,ambulatory,,,white,hispanic or latino +18,2020-08-01,,,,black or african american,not hispanic or latino +18,2020-08-01,ambulatory,,,black or african american,not hispanic or latino +18,2020-07-01,,,,black or african american,not hispanic or latino 18,2020-07-01,emergency,,,, -18,2020-07-01,emergency,,,,[Not Hispanic or Latino] -18,2020-07-01,emergency,,,[White], -18,2020-07-01,emergency,,,[White],[Not Hispanic or Latino] -18,2020-07-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -18,2020-05-01,emergency,,,[White],[Not Hispanic or Latino] -18,2020-04-01,emergency,,,,[Not Hispanic or Latino] -18,2020-03-01,,,,[Black or African American], -18,2020-02-01,,,,,[Hispanic or Latino] -18,2020-02-01,ambulatory,,,,[Hispanic or Latino] -18,2020-01-01,,,,[Black or African American], -18,2020-01-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2019-12-01,,,,,[Hispanic or Latino] -18,2019-12-01,ambulatory,,,,[Hispanic or Latino] +18,2020-07-01,emergency,,,,not hispanic or latino +18,2020-07-01,emergency,,,white, +18,2020-07-01,emergency,,,white,not hispanic or latino +18,2020-07-01,ambulatory,,,black or african american,not hispanic or latino +18,2020-05-01,emergency,,,white,not hispanic or latino +18,2020-04-01,emergency,,,,not hispanic or latino +18,2020-03-01,,,,black or african american, +18,2020-02-01,,,,,hispanic or latino +18,2020-02-01,ambulatory,,,,hispanic or latino +18,2020-01-01,,,,black or african american, +18,2020-01-01,,,,black or african american,not hispanic or latino +18,2019-12-01,,,,,hispanic or latino +18,2019-12-01,ambulatory,,,,hispanic or latino 18,2019-10-01,emergency,,,, -18,2019-10-01,emergency,,,[White], -18,2019-09-01,,,,,[Hispanic or Latino] -18,2019-09-01,,,,[White],[Hispanic or Latino] -18,2019-08-01,ambulatory,,,,[Hispanic or Latino] -18,2019-07-01,,,,,[Hispanic or Latino] -18,2019-07-01,,,,[White],[Hispanic or Latino] -18,2019-07-01,ambulatory,,,,[Hispanic or Latino] -18,2019-07-01,ambulatory,,,[White],[Hispanic or Latino] -18,2019-04-01,,,,[Black or African American],[Not Hispanic or Latino] -18,2019-04-01,ambulatory,,,[Black or African American], -18,2019-03-01,emergency,,,[White], -18,2019-03-01,emergency,,,[White],[Not Hispanic or Latino] -18,2018-12-01,ambulatory,,,[White],[Hispanic or Latino] -18,2018-11-01,,,,,[Hispanic or Latino] +18,2019-10-01,emergency,,,white, +18,2019-09-01,,,,,hispanic or latino +18,2019-09-01,,,,white,hispanic or latino +18,2019-08-01,ambulatory,,,,hispanic or latino +18,2019-07-01,,,,,hispanic or latino +18,2019-07-01,,,,white,hispanic or latino +18,2019-07-01,ambulatory,,,,hispanic or latino +18,2019-07-01,ambulatory,,,white,hispanic or latino +18,2019-04-01,,,,black or african american,not hispanic or latino +18,2019-04-01,ambulatory,,,black or african american, +18,2019-03-01,emergency,,,white, +18,2019-03-01,emergency,,,white,not hispanic or latino +18,2018-12-01,ambulatory,,,white,hispanic or latino +18,2018-11-01,,,,,hispanic or latino 18,2018-03-01,emergency,,,, -18,2018-02-01,ambulatory,,,,[Hispanic or Latino] -18,2018-01-01,ambulatory,,,,[Hispanic or Latino] -18,2017-09-01,,,,[White],[Hispanic or Latino] -18,2017-09-01,emergency,,,[White], -18,2017-09-01,emergency,,,[White],[Not Hispanic or Latino] -18,2017-07-01,,,,[White],[Hispanic or Latino] -18,2017-06-01,emergency,,,[White], +18,2018-02-01,ambulatory,,,,hispanic or latino +18,2018-01-01,ambulatory,,,,hispanic or latino +18,2017-09-01,,,,white,hispanic or latino +18,2017-09-01,emergency,,,white, +18,2017-09-01,emergency,,,white,not hispanic or latino +18,2017-07-01,,,,white,hispanic or latino +18,2017-06-01,emergency,,,white, 18,2017-03-01,emergency,,,, 18,2017-02-01,emergency,,,, -18,2017-01-01,,,female,[White],[Hispanic or Latino] -18,2016-11-01,ambulatory,,,[White],[Hispanic or Latino] -18,2016-06-01,emergency,,,,[Not Hispanic or Latino] -18,2016-06-01,emergency,,,[White],[Not Hispanic or Latino] -18,2016-06-01,ambulatory,,female,,[Hispanic or Latino] -17,,home health,65,,[White], -17,,emergency,,,[Asian], -17,,emergency,,,[Asian],[Not Hispanic or Latino] +18,2017-01-01,,,female,white,hispanic or latino +18,2016-11-01,ambulatory,,,white,hispanic or latino +18,2016-06-01,emergency,,,,not hispanic or latino +18,2016-06-01,emergency,,,white,not hispanic or latino +18,2016-06-01,ambulatory,,female,,hispanic or latino +17,,home health,65,,white, +17,,emergency,,,asian, +17,,emergency,,,asian,not hispanic or latino 17,,emergency,58,,, -17,,emergency,58,,,[Not Hispanic or Latino] +17,,emergency,58,,,not hispanic or latino 17,,emergency,35,,, -17,,emergency,33,,,[Not Hispanic or Latino] +17,,emergency,33,,,not hispanic or latino 17,,emergency,31,male,, 17,,emergency,26,,, -17,,emergency,25,,[White], +17,,emergency,25,,white, 17,,emergency,21,,, -17,,emergency,21,,,[Not Hispanic or Latino] +17,,emergency,21,,,not hispanic or latino 17,,emergency,17,,, 17,,emergency,7,,, -17,,ambulatory,11,,,[Hispanic or Latino] -17,2023-03-01,emergency,,,[White],[Not Hispanic or Latino] +17,,ambulatory,11,,,hispanic or latino +17,2023-03-01,emergency,,,white,not hispanic or latino 17,2023-02-01,emergency,,,, -17,2023-02-01,ambulatory,,female,,[Hispanic or Latino] -17,2023-02-01,ambulatory,,female,[White],[Hispanic or Latino] -17,2022-12-01,,,,[Black or African American],[Not Hispanic or Latino] -17,2022-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -17,2022-06-01,,,,[Black or African American], -17,2022-06-01,ambulatory,,,[White],[Hispanic or Latino] -17,2022-04-01,,,female,,[Hispanic or Latino] -17,2022-04-01,,,female,[White],[Hispanic or Latino] -17,2022-03-01,,,female,[White],[Hispanic or Latino] -17,2022-03-01,ambulatory,,female,[White],[Hispanic or Latino] -17,2022-02-01,,,female,,[Hispanic or Latino] -17,2022-02-01,,,female,[White],[Hispanic or Latino] +17,2023-02-01,ambulatory,,female,,hispanic or latino +17,2023-02-01,ambulatory,,female,white,hispanic or latino +17,2022-12-01,,,,black or african american,not hispanic or latino +17,2022-12-01,ambulatory,,,black or african american,not hispanic or latino +17,2022-06-01,,,,black or african american, +17,2022-06-01,ambulatory,,,white,hispanic or latino +17,2022-04-01,,,female,,hispanic or latino +17,2022-04-01,,,female,white,hispanic or latino +17,2022-03-01,,,female,white,hispanic or latino +17,2022-03-01,ambulatory,,female,white,hispanic or latino +17,2022-02-01,,,female,,hispanic or latino +17,2022-02-01,,,female,white,hispanic or latino 17,2021-12-01,emergency,,,, -17,2021-12-01,emergency,,,[White], +17,2021-12-01,emergency,,,white, 17,2021-11-01,,14,,, -17,2021-08-01,emergency,,,,[Not Hispanic or Latino] -17,2021-06-01,,,,[Black or African American],[Not Hispanic or Latino] -17,2021-06-01,,,,[Asian], -17,2021-06-01,ambulatory,,,[Asian], -17,2021-05-01,,,female,[Black or African American], -17,2021-04-01,,,female,[White],[Hispanic or Latino] -17,2021-03-01,,,female,[Black or African American], -17,2021-02-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -17,2021-01-01,,,,,[Hispanic or Latino] -17,2020-11-01,,,,[Black or African American], -17,2020-11-01,ambulatory,,,[White],[Hispanic or Latino] -17,2020-11-01,ambulatory,,,[Black or African American], +17,2021-08-01,emergency,,,,not hispanic or latino +17,2021-06-01,,,,black or african american,not hispanic or latino +17,2021-06-01,,,,asian, +17,2021-06-01,ambulatory,,,asian, +17,2021-05-01,,,female,black or african american, +17,2021-04-01,,,female,white,hispanic or latino +17,2021-03-01,,,female,black or african american, +17,2021-02-01,ambulatory,,,black or african american,not hispanic or latino +17,2021-01-01,,,,,hispanic or latino +17,2020-11-01,,,,black or african american, +17,2020-11-01,ambulatory,,,white,hispanic or latino +17,2020-11-01,ambulatory,,,black or african american, 17,2020-09-01,emergency,,,, -17,2020-06-01,,,,[Black or African American], -17,2020-03-01,,,,,[Hispanic or Latino] -17,2020-03-01,,,,[Black or African American],[Not Hispanic or Latino] -17,2020-03-01,ambulatory,,,,[Hispanic or Latino] -17,2019-12-01,,,,[White],[Hispanic or Latino] -17,2019-12-01,ambulatory,,,[White],[Hispanic or Latino] -17,2019-10-01,,,,,[Hispanic or Latino] -17,2019-10-01,emergency,,,,[Not Hispanic or Latino] -17,2019-10-01,emergency,,,[White],[Not Hispanic or Latino] -17,2019-06-01,,,,[Black or African American],[Not Hispanic or Latino] -17,2019-06-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] +17,2020-06-01,,,,black or african american, +17,2020-03-01,,,,,hispanic or latino +17,2020-03-01,,,,black or african american,not hispanic or latino +17,2020-03-01,ambulatory,,,,hispanic or latino +17,2019-12-01,,,,white,hispanic or latino +17,2019-12-01,ambulatory,,,white,hispanic or latino +17,2019-10-01,,,,,hispanic or latino +17,2019-10-01,emergency,,,,not hispanic or latino +17,2019-10-01,emergency,,,white,not hispanic or latino +17,2019-06-01,,,,black or african american,not hispanic or latino +17,2019-06-01,ambulatory,,,black or african american,not hispanic or latino 17,2019-04-01,emergency,,,, -17,2019-04-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -17,2019-02-01,,,female,,[Hispanic or Latino] -17,2019-02-01,emergency,,,[White], -17,2019-02-01,emergency,,,[White],[Not Hispanic or Latino] -17,2019-02-01,ambulatory,,female,,[Hispanic or Latino] -17,2018-11-01,ambulatory,,,,[Hispanic or Latino] -17,2018-09-01,,,female,,[Hispanic or Latino] -17,2018-09-01,,,female,[White],[Hispanic or Latino] +17,2019-04-01,ambulatory,,,black or african american,not hispanic or latino +17,2019-02-01,,,female,,hispanic or latino +17,2019-02-01,emergency,,,white, +17,2019-02-01,emergency,,,white,not hispanic or latino +17,2019-02-01,ambulatory,,female,,hispanic or latino +17,2018-11-01,ambulatory,,,,hispanic or latino +17,2018-09-01,,,female,,hispanic or latino +17,2018-09-01,,,female,white,hispanic or latino 17,2018-09-01,emergency,,,, -17,2018-08-01,,,,[White],[Hispanic or Latino] -17,2018-07-01,ambulatory,,,,[Hispanic or Latino] -17,2018-07-01,ambulatory,,,[White],[Hispanic or Latino] +17,2018-08-01,,,,white,hispanic or latino +17,2018-07-01,ambulatory,,,,hispanic or latino +17,2018-07-01,ambulatory,,,white,hispanic or latino 17,2018-06-01,emergency,,male,, -17,2018-03-01,,,,,[Hispanic or Latino] -17,2018-03-01,emergency,,,[White], -17,2018-02-01,,,,[White],[Hispanic or Latino] +17,2018-03-01,,,,,hispanic or latino +17,2018-03-01,emergency,,,white, +17,2018-02-01,,,,white,hispanic or latino 17,2018-01-01,emergency,,,, -17,2017-12-01,ambulatory,,,[White],[Hispanic or Latino] +17,2017-12-01,ambulatory,,,white,hispanic or latino 17,2017-11-01,emergency,,,, -17,2017-11-01,ambulatory,,,[White],[Hispanic or Latino] -17,2017-09-01,ambulatory,,,[White],[Hispanic or Latino] +17,2017-11-01,ambulatory,,,white,hispanic or latino +17,2017-09-01,ambulatory,,,white,hispanic or latino 17,2017-07-01,emergency,,male,, -17,2017-07-01,emergency,,male,,[Not Hispanic or Latino] -17,2017-07-01,emergency,,male,[White], -17,2017-07-01,emergency,,male,[White],[Not Hispanic or Latino] -17,2017-07-01,ambulatory,,,[White],[Hispanic or Latino] -17,2017-06-01,emergency,,,[White],[Not Hispanic or Latino] -17,2017-03-01,emergency,,,,[Not Hispanic or Latino] -17,2017-02-01,,,female,[White],[Hispanic or Latino] -17,2017-02-01,ambulatory,,female,,[Hispanic or Latino] -17,2017-01-01,ambulatory,,female,[White],[Hispanic or Latino] -17,2016-10-01,,,,[White],[Hispanic or Latino] -17,2016-10-01,ambulatory,,,[White],[Hispanic or Latino] +17,2017-07-01,emergency,,male,,not hispanic or latino +17,2017-07-01,emergency,,male,white, +17,2017-07-01,emergency,,male,white,not hispanic or latino +17,2017-07-01,ambulatory,,,white,hispanic or latino +17,2017-06-01,emergency,,,white,not hispanic or latino +17,2017-03-01,emergency,,,,not hispanic or latino +17,2017-02-01,,,female,white,hispanic or latino +17,2017-02-01,ambulatory,,female,,hispanic or latino +17,2017-01-01,ambulatory,,female,white,hispanic or latino +17,2016-10-01,,,,white,hispanic or latino +17,2016-10-01,ambulatory,,,white,hispanic or latino 17,2016-08-01,emergency,,,, -17,2016-08-01,ambulatory,,,,[Hispanic or Latino] -17,2016-07-01,emergency,,,[White], -17,2016-07-01,emergency,,,[White],[Not Hispanic or Latino] -17,2016-06-01,ambulatory,,female,[White],[Hispanic or Latino] -16,,,8,,,[Hispanic or Latino] +17,2016-08-01,ambulatory,,,,hispanic or latino +17,2016-07-01,emergency,,,white, +17,2016-07-01,emergency,,,white,not hispanic or latino +17,2016-06-01,ambulatory,,female,white,hispanic or latino +16,,,8,,,hispanic or latino 16,,emergency,39,female,, -16,,emergency,39,female,,[Not Hispanic or Latino] +16,,emergency,39,female,,not hispanic or latino 16,,emergency,36,,, 16,,emergency,34,,, -16,,emergency,33,,[White],[Not Hispanic or Latino] +16,,emergency,33,,white,not hispanic or latino 16,,emergency,32,female,, -16,,emergency,26,,,[Not Hispanic or Latino] -16,,emergency,26,,[White], -16,,emergency,19,,[White], -16,,emergency,19,,[White],[Not Hispanic or Latino] -16,,emergency,17,,,[Not Hispanic or Latino] +16,,emergency,26,,,not hispanic or latino +16,,emergency,26,,white, +16,,emergency,19,,white, +16,,emergency,19,,white,not hispanic or latino +16,,emergency,17,,,not hispanic or latino 16,,emergency,9,,, -16,,emergency,9,,[White], -16,,emergency,7,,,[Not Hispanic or Latino] -16,,emergency,7,,[White], +16,,emergency,9,,white, +16,,emergency,7,,,not hispanic or latino +16,,emergency,7,,white, 16,,emergency,1,,, -16,2023-03-01,,,female,[White],[Hispanic or Latino] -16,2023-03-01,ambulatory,,female,[White],[Hispanic or Latino] -16,2023-02-01,emergency,,,,[Not Hispanic or Latino] -16,2023-02-01,emergency,,,[White], -16,2023-01-01,,,female,,[Hispanic or Latino] -16,2022-12-01,,,female,[White],[Hispanic or Latino] -16,2022-11-01,,,female,[White],[Hispanic or Latino] -16,2022-11-01,ambulatory,,female,[White],[Hispanic or Latino] -16,2022-08-01,,,female,,[Hispanic or Latino] +16,2023-03-01,,,female,white,hispanic or latino +16,2023-03-01,ambulatory,,female,white,hispanic or latino +16,2023-02-01,emergency,,,,not hispanic or latino +16,2023-02-01,emergency,,,white, +16,2023-01-01,,,female,,hispanic or latino +16,2022-12-01,,,female,white,hispanic or latino +16,2022-11-01,,,female,white,hispanic or latino +16,2022-11-01,ambulatory,,female,white,hispanic or latino +16,2022-08-01,,,female,,hispanic or latino 16,2022-08-01,emergency,,,, -16,2022-08-01,ambulatory,,female,,[Hispanic or Latino] +16,2022-08-01,ambulatory,,female,,hispanic or latino 16,2022-07-01,,15,,, -16,2022-07-01,,15,,,[Not Hispanic or Latino] -16,2022-06-01,,,,[Black or African American],[Not Hispanic or Latino] -16,2022-06-01,ambulatory,,,[Black or African American], -16,2022-05-01,,,female,,[Hispanic or Latino] -16,2022-04-01,emergency,,,[White], +16,2022-07-01,,15,,,not hispanic or latino +16,2022-06-01,,,,black or african american,not hispanic or latino +16,2022-06-01,ambulatory,,,black or african american, +16,2022-05-01,,,female,,hispanic or latino +16,2022-04-01,emergency,,,white, 16,2022-03-01,emergency,,,, -16,2022-03-01,emergency,,,,[Not Hispanic or Latino] -16,2022-03-01,emergency,,,[White], -16,2022-03-01,emergency,,,[White],[Not Hispanic or Latino] -16,2022-02-01,ambulatory,,female,,[Hispanic or Latino] -16,2022-02-01,ambulatory,,female,[White],[Hispanic or Latino] +16,2022-03-01,emergency,,,,not hispanic or latino +16,2022-03-01,emergency,,,white, +16,2022-03-01,emergency,,,white,not hispanic or latino +16,2022-02-01,ambulatory,,female,,hispanic or latino +16,2022-02-01,ambulatory,,female,white,hispanic or latino 16,2021-12-01,,14,,, -16,2021-12-01,,14,,,[Not Hispanic or Latino] -16,2021-12-01,ambulatory,,female,,[Hispanic or Latino] -16,2021-11-01,,14,,,[Not Hispanic or Latino] +16,2021-12-01,,14,,,not hispanic or latino +16,2021-12-01,ambulatory,,female,,hispanic or latino +16,2021-11-01,,14,,,not hispanic or latino 16,2021-11-01,ambulatory,14,,, -16,2021-09-01,,,female,,[Hispanic or Latino] -16,2021-09-01,ambulatory,,female,,[Hispanic or Latino] -16,2021-08-01,,14,,[White], -16,2021-08-01,emergency,,,[White], -16,2021-08-01,ambulatory,14,,[White], -16,2021-06-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -16,2021-05-01,emergency,,,,[Not Hispanic or Latino] -16,2021-05-01,emergency,,,[White], -16,2021-04-01,ambulatory,,female,,[Hispanic or Latino] -16,2021-03-01,,,male,[Black or African American],[Not Hispanic or Latino] -16,2021-03-01,emergency,,,,[Not Hispanic or Latino] +16,2021-09-01,,,female,,hispanic or latino +16,2021-09-01,ambulatory,,female,,hispanic or latino +16,2021-08-01,,14,,white, +16,2021-08-01,emergency,,,white, +16,2021-08-01,ambulatory,14,,white, +16,2021-06-01,ambulatory,,,black or african american,not hispanic or latino +16,2021-05-01,emergency,,,,not hispanic or latino +16,2021-05-01,emergency,,,white, +16,2021-04-01,ambulatory,,female,,hispanic or latino +16,2021-03-01,,,male,black or african american,not hispanic or latino +16,2021-03-01,emergency,,,,not hispanic or latino 16,2021-02-01,emergency,,,, -16,2021-01-01,,,,[White],[Hispanic or Latino] +16,2021-01-01,,,,white,hispanic or latino 16,2020-10-01,emergency,,,, -16,2020-10-01,emergency,,,,[Not Hispanic or Latino] -16,2020-09-01,emergency,,,,[Not Hispanic or Latino] -16,2020-09-01,emergency,,,[White], -16,2020-08-01,,,,,[Hispanic or Latino] -16,2020-06-01,,,,[White],[Hispanic or Latino] -16,2020-06-01,ambulatory,,,[White],[Hispanic or Latino] -16,2020-06-01,ambulatory,,,[Black or African American], -16,2020-04-01,emergency,,,[White], -16,2020-03-01,ambulatory,,,[Black or African American], -16,2020-02-01,,,,[White],[Hispanic or Latino] -16,2020-02-01,ambulatory,,,[White],[Hispanic or Latino] -16,2020-01-01,ambulatory,,,[Black or African American], -16,2020-01-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -16,2019-10-01,ambulatory,,,,[Hispanic or Latino] -16,2019-09-01,ambulatory,,,,[Hispanic or Latino] -16,2019-09-01,ambulatory,,,[White],[Hispanic or Latino] -16,2019-05-01,,,female,,[Hispanic or Latino] +16,2020-10-01,emergency,,,,not hispanic or latino +16,2020-09-01,emergency,,,,not hispanic or latino +16,2020-09-01,emergency,,,white, +16,2020-08-01,,,,,hispanic or latino +16,2020-06-01,,,,white,hispanic or latino +16,2020-06-01,ambulatory,,,white,hispanic or latino +16,2020-06-01,ambulatory,,,black or african american, +16,2020-04-01,emergency,,,white, +16,2020-03-01,ambulatory,,,black or african american, +16,2020-02-01,,,,white,hispanic or latino +16,2020-02-01,ambulatory,,,white,hispanic or latino +16,2020-01-01,ambulatory,,,black or african american, +16,2020-01-01,ambulatory,,,black or african american,not hispanic or latino +16,2019-10-01,ambulatory,,,,hispanic or latino +16,2019-09-01,ambulatory,,,,hispanic or latino +16,2019-09-01,ambulatory,,,white,hispanic or latino +16,2019-05-01,,,female,,hispanic or latino 16,2019-04-01,,16,,, -16,2019-04-01,,16,,,[Not Hispanic or Latino] -16,2018-11-01,,,,[White],[Hispanic or Latino] -16,2018-11-01,,,,[Black or African American], +16,2019-04-01,,16,,,not hispanic or latino +16,2018-11-01,,,,white,hispanic or latino +16,2018-11-01,,,,black or african american, 16,2018-11-01,emergency,,,, -16,2018-11-01,ambulatory,,,[Black or African American], -16,2018-10-01,,,male,,[Hispanic or Latino] -16,2018-09-01,emergency,,,,[Not Hispanic or Latino] -16,2018-09-01,emergency,,,[White], -16,2018-09-01,ambulatory,,female,,[Hispanic or Latino] -16,2018-09-01,ambulatory,,female,[White],[Hispanic or Latino] -16,2018-08-01,ambulatory,,,[White],[Hispanic or Latino] -16,2018-07-01,,,,[Black or African American], -16,2018-07-01,,,,[Black or African American],[Not Hispanic or Latino] -16,2018-07-01,ambulatory,,,[Black or African American], -16,2018-07-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -16,2018-06-01,emergency,,male,,[Not Hispanic or Latino] -16,2018-03-01,,,,[White],[Hispanic or Latino] -16,2018-03-01,emergency,,,,[Not Hispanic or Latino] +16,2018-11-01,ambulatory,,,black or african american, +16,2018-10-01,,,male,,hispanic or latino +16,2018-09-01,emergency,,,,not hispanic or latino +16,2018-09-01,emergency,,,white, +16,2018-09-01,ambulatory,,female,,hispanic or latino +16,2018-09-01,ambulatory,,female,white,hispanic or latino +16,2018-08-01,ambulatory,,,white,hispanic or latino +16,2018-07-01,,,,black or african american, +16,2018-07-01,,,,black or african american,not hispanic or latino +16,2018-07-01,ambulatory,,,black or african american, +16,2018-07-01,ambulatory,,,black or african american,not hispanic or latino +16,2018-06-01,emergency,,male,,not hispanic or latino +16,2018-03-01,,,,white,hispanic or latino +16,2018-03-01,emergency,,,,not hispanic or latino 16,2018-02-01,emergency,,,, -16,2018-02-01,emergency,,,[White], -16,2018-02-01,ambulatory,,,[White],[Hispanic or Latino] -16,2018-01-01,emergency,,,[White], -16,2018-01-01,ambulatory,,,[White],[Hispanic or Latino] -16,2017-10-01,,,,[White],[Hispanic or Latino] -16,2017-10-01,ambulatory,,,[White],[Hispanic or Latino] -16,2017-04-01,emergency,,,[White], -16,2017-03-01,emergency,,,[White], -16,2017-02-01,emergency,,,,[Not Hispanic or Latino] -16,2017-02-01,emergency,,,[White], +16,2018-02-01,emergency,,,white, +16,2018-02-01,ambulatory,,,white,hispanic or latino +16,2018-01-01,emergency,,,white, +16,2018-01-01,ambulatory,,,white,hispanic or latino +16,2017-10-01,,,,white,hispanic or latino +16,2017-10-01,ambulatory,,,white,hispanic or latino +16,2017-04-01,emergency,,,white, +16,2017-03-01,emergency,,,white, +16,2017-02-01,emergency,,,,not hispanic or latino +16,2017-02-01,emergency,,,white, 16,2017-01-01,emergency,,male,, 16,2016-09-01,emergency,,,, -16,2016-08-01,,,,[White],[Hispanic or Latino] -16,2016-08-01,emergency,,,[White], -15,,inpatient encounter,,male,[Black or African American], +16,2016-08-01,,,,white,hispanic or latino +16,2016-08-01,emergency,,,white, +15,,inpatient encounter,,male,black or african american, 15,,home health,65,female,, -15,,home health,65,female,[White], -15,,emergency,61,,[White], +15,,home health,65,female,white, +15,,emergency,61,,white, 15,,emergency,54,,, 15,,emergency,40,,, -15,,emergency,40,,[White], +15,,emergency,40,,white, 15,,emergency,37,,, 15,,emergency,35,female,, -15,,emergency,32,female,[White], +15,,emergency,32,female,white, 15,,emergency,29,female,, -15,,emergency,29,female,[White], -15,,emergency,26,,[White],[Not Hispanic or Latino] -15,,emergency,25,,,[Not Hispanic or Latino] +15,,emergency,29,female,white, +15,,emergency,26,,white,not hispanic or latino +15,,emergency,25,,,not hispanic or latino 15,,emergency,20,,, 15,,emergency,18,,, -15,,emergency,17,,[White], +15,,emergency,17,,white, 15,,emergency,15,,, -15,,emergency,15,,[White], +15,,emergency,15,,white, 15,,emergency,11,,, -15,,emergency,7,,[White],[Not Hispanic or Latino] -15,,emergency,1,,,[Not Hispanic or Latino] +15,,emergency,7,,white,not hispanic or latino +15,,emergency,1,,,not hispanic or latino 15,2023-04-01,,,,, -15,2023-02-01,emergency,,,[White],[Not Hispanic or Latino] -15,2023-01-01,,,female,[White],[Hispanic or Latino] -15,2023-01-01,ambulatory,,female,,[Hispanic or Latino] -15,2022-12-01,ambulatory,,female,[White],[Hispanic or Latino] -15,2022-11-01,,,male,,[Hispanic or Latino] -15,2022-10-01,,,female,,[Hispanic or Latino] -15,2022-08-01,emergency,,,,[Not Hispanic or Latino] -15,2022-08-01,emergency,,,[White], -15,2022-07-01,,,female,,[Hispanic or Latino] -15,2022-07-01,,,female,[White],[Hispanic or Latino] +15,2023-02-01,emergency,,,white,not hispanic or latino +15,2023-01-01,,,female,white,hispanic or latino +15,2023-01-01,ambulatory,,female,,hispanic or latino +15,2022-12-01,ambulatory,,female,white,hispanic or latino +15,2022-11-01,,,male,,hispanic or latino +15,2022-10-01,,,female,,hispanic or latino +15,2022-08-01,emergency,,,,not hispanic or latino +15,2022-08-01,emergency,,,white, +15,2022-07-01,,,female,,hispanic or latino +15,2022-07-01,,,female,white,hispanic or latino 15,2022-07-01,,15,female,, -15,2022-07-01,,15,female,,[Not Hispanic or Latino] +15,2022-07-01,,15,female,,not hispanic or latino 15,2022-07-01,ambulatory,15,,, -15,2022-07-01,ambulatory,15,,,[Not Hispanic or Latino] -15,2022-05-01,,,female,[White],[Hispanic or Latino] -15,2022-05-01,ambulatory,,female,,[Hispanic or Latino] -15,2022-04-01,,,male,[Black or African American], -15,2022-04-01,emergency,,,,[Not Hispanic or Latino] -15,2022-01-01,,,,[White],[Hispanic or Latino] -15,2022-01-01,ambulatory,,,[White],[Hispanic or Latino] -15,2021-11-01,ambulatory,14,,,[Not Hispanic or Latino] -15,2021-09-01,,,female,[White],[Hispanic or Latino] -15,2021-09-01,ambulatory,,female,[White],[Hispanic or Latino] -15,2021-08-01,,14,,[White],[Not Hispanic or Latino] -15,2021-08-01,ambulatory,14,,[White],[Not Hispanic or Latino] -15,2021-07-01,,,male,[Black or African American], -15,2021-05-01,,,female,[White],[Hispanic or Latino] -15,2021-05-01,emergency,,,[White],[Not Hispanic or Latino] -15,2021-05-01,ambulatory,,female,[Black or African American], -15,2021-04-01,,,female,[Black or African American], -15,2021-04-01,ambulatory,,female,[White],[Hispanic or Latino] -15,2021-03-01,emergency,,,[White], -15,2021-03-01,ambulatory,,female,[Black or African American], -15,2021-02-01,,,male,,[Hispanic or Latino] -15,2021-02-01,emergency,,,[White], -15,2020-10-01,,,male,[Black or African American], -15,2020-09-01,emergency,,,[White],[Not Hispanic or Latino] -15,2020-04-01,,,male,[Black or African American], -15,2020-04-01,emergency,,,[White],[Not Hispanic or Latino] -15,2020-03-01,,,,[White],[Hispanic or Latino] -15,2020-03-01,ambulatory,,,[White],[Hispanic or Latino] -15,2020-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -15,2020-02-01,,,,[Black or African American], -15,2020-02-01,ambulatory,,,[Black or African American], +15,2022-07-01,ambulatory,15,,,not hispanic or latino +15,2022-05-01,,,female,white,hispanic or latino +15,2022-05-01,ambulatory,,female,,hispanic or latino +15,2022-04-01,,,male,black or african american, +15,2022-04-01,emergency,,,,not hispanic or latino +15,2022-01-01,,,,white,hispanic or latino +15,2022-01-01,ambulatory,,,white,hispanic or latino +15,2021-11-01,ambulatory,14,,,not hispanic or latino +15,2021-09-01,,,female,white,hispanic or latino +15,2021-09-01,ambulatory,,female,white,hispanic or latino +15,2021-08-01,,14,,white,not hispanic or latino +15,2021-08-01,ambulatory,14,,white,not hispanic or latino +15,2021-07-01,,,male,black or african american, +15,2021-05-01,,,female,white,hispanic or latino +15,2021-05-01,emergency,,,white,not hispanic or latino +15,2021-05-01,ambulatory,,female,black or african american, +15,2021-04-01,,,female,black or african american, +15,2021-04-01,ambulatory,,female,white,hispanic or latino +15,2021-03-01,emergency,,,white, +15,2021-03-01,ambulatory,,female,black or african american, +15,2021-02-01,,,male,,hispanic or latino +15,2021-02-01,emergency,,,white, +15,2020-10-01,,,male,black or african american, +15,2020-09-01,emergency,,,white,not hispanic or latino +15,2020-04-01,,,male,black or african american, +15,2020-04-01,emergency,,,white,not hispanic or latino +15,2020-03-01,,,,white,hispanic or latino +15,2020-03-01,ambulatory,,,white,hispanic or latino +15,2020-03-01,ambulatory,,,black or african american,not hispanic or latino +15,2020-02-01,,,,black or african american, +15,2020-02-01,ambulatory,,,black or african american, 15,2020-01-01,emergency,,,, -15,2020-01-01,emergency,,,,[Not Hispanic or Latino] -15,2019-12-01,,,female,,[Hispanic or Latino] -15,2019-12-01,,,female,[White],[Hispanic or Latino] -15,2019-12-01,ambulatory,,female,,[Hispanic or Latino] -15,2019-12-01,ambulatory,,female,[White],[Hispanic or Latino] -15,2019-08-01,,,,[White],[Hispanic or Latino] -15,2019-05-01,,,female,[White],[Hispanic or Latino] -15,2019-05-01,ambulatory,,female,,[Hispanic or Latino] -15,2019-04-01,,,female,,[Hispanic or Latino] -15,2019-04-01,emergency,,,,[Not Hispanic or Latino] -15,2019-04-01,emergency,,,[White], -15,2019-03-01,,,,[Black or African American],[Not Hispanic or Latino] -15,2019-02-01,,,,[Black or African American], -15,2019-01-01,,,,[Black or African American], -15,2019-01-01,,,,[Black or African American],[Not Hispanic or Latino] -15,2019-01-01,ambulatory,,,[Black or African American], -15,2019-01-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -15,2018-12-01,,,,[Black or African American], +15,2020-01-01,emergency,,,,not hispanic or latino +15,2019-12-01,,,female,,hispanic or latino +15,2019-12-01,,,female,white,hispanic or latino +15,2019-12-01,ambulatory,,female,,hispanic or latino +15,2019-12-01,ambulatory,,female,white,hispanic or latino +15,2019-08-01,,,,white,hispanic or latino +15,2019-05-01,,,female,white,hispanic or latino +15,2019-05-01,ambulatory,,female,,hispanic or latino +15,2019-04-01,,,female,,hispanic or latino +15,2019-04-01,emergency,,,,not hispanic or latino +15,2019-04-01,emergency,,,white, +15,2019-03-01,,,,black or african american,not hispanic or latino +15,2019-02-01,,,,black or african american, +15,2019-01-01,,,,black or african american, +15,2019-01-01,,,,black or african american,not hispanic or latino +15,2019-01-01,ambulatory,,,black or african american, +15,2019-01-01,ambulatory,,,black or african american,not hispanic or latino +15,2018-12-01,,,,black or african american, 15,2018-12-01,emergency,,,, -15,2018-12-01,ambulatory,,,[Black or African American], -15,2018-11-01,emergency,,,,[Not Hispanic or Latino] -15,2018-11-01,emergency,,,[White], -15,2018-11-01,ambulatory,,,[White],[Hispanic or Latino] +15,2018-12-01,ambulatory,,,black or african american, +15,2018-11-01,emergency,,,,not hispanic or latino +15,2018-11-01,emergency,,,white, +15,2018-11-01,ambulatory,,,white,hispanic or latino 15,2018-10-01,emergency,,,, -15,2018-10-01,ambulatory,,male,,[Hispanic or Latino] -15,2018-09-01,emergency,,,[White],[Not Hispanic or Latino] +15,2018-10-01,ambulatory,,male,,hispanic or latino +15,2018-09-01,emergency,,,white,not hispanic or latino 15,2018-08-01,emergency,,,, -15,2018-06-01,emergency,,male,[White], -15,2018-03-01,emergency,,,[White],[Not Hispanic or Latino] -15,2018-03-01,ambulatory,,,,[Hispanic or Latino] -15,2018-02-01,emergency,,,,[Not Hispanic or Latino] -15,2018-02-01,emergency,,,[White],[Not Hispanic or Latino] -15,2017-11-01,emergency,,,[White], +15,2018-06-01,emergency,,male,white, +15,2018-03-01,emergency,,,white,not hispanic or latino +15,2018-03-01,ambulatory,,,,hispanic or latino +15,2018-02-01,emergency,,,,not hispanic or latino +15,2018-02-01,emergency,,,white,not hispanic or latino +15,2017-11-01,emergency,,,white, 15,2017-10-01,emergency,,,, -15,2017-10-01,emergency,,,,[Not Hispanic or Latino] -15,2017-10-01,emergency,,,[White], -15,2017-10-01,emergency,,,[White],[Not Hispanic or Latino] -15,2017-05-01,,,female,,[Hispanic or Latino] -15,2017-04-01,emergency,,,[White],[Not Hispanic or Latino] -15,2017-03-01,emergency,,,[White],[Not Hispanic or Latino] -15,2017-02-01,ambulatory,,female,[White],[Hispanic or Latino] -15,2017-01-01,emergency,,male,[White], -15,2016-10-01,emergency,,,[White], -15,2016-10-01,emergency,,,[White],[Not Hispanic or Latino] -15,2016-09-01,emergency,,,,[Not Hispanic or Latino] -15,2016-09-01,emergency,,,[White], -15,2016-07-01,,,female,,[Hispanic or Latino] +15,2017-10-01,emergency,,,,not hispanic or latino +15,2017-10-01,emergency,,,white, +15,2017-10-01,emergency,,,white,not hispanic or latino +15,2017-05-01,,,female,,hispanic or latino +15,2017-04-01,emergency,,,white,not hispanic or latino +15,2017-03-01,emergency,,,white,not hispanic or latino +15,2017-02-01,ambulatory,,female,white,hispanic or latino +15,2017-01-01,emergency,,male,white, +15,2016-10-01,emergency,,,white, +15,2016-10-01,emergency,,,white,not hispanic or latino +15,2016-09-01,emergency,,,,not hispanic or latino +15,2016-09-01,emergency,,,white, +15,2016-07-01,,,female,,hispanic or latino 14,,inpatient encounter,65,,, -14,,inpatient encounter,65,,,[Not Hispanic or Latino] -14,,home health,65,,,[Not Hispanic or Latino] +14,,inpatient encounter,65,,,not hispanic or latino +14,,home health,65,,,not hispanic or latino 14,,emergency,59,,, -14,,emergency,59,,,[Not Hispanic or Latino] -14,,emergency,58,,[White], -14,,emergency,58,,[White],[Not Hispanic or Latino] -14,,emergency,54,,,[Not Hispanic or Latino] +14,,emergency,59,,,not hispanic or latino +14,,emergency,58,,white, +14,,emergency,58,,white,not hispanic or latino +14,,emergency,54,,,not hispanic or latino 14,,emergency,42,,, -14,,emergency,40,,,[Not Hispanic or Latino] -14,,emergency,40,,[White],[Not Hispanic or Latino] -14,,emergency,36,,,[Not Hispanic or Latino] +14,,emergency,40,,,not hispanic or latino +14,,emergency,40,,white,not hispanic or latino +14,,emergency,36,,,not hispanic or latino 14,,emergency,36,female,, -14,,emergency,35,,,[Not Hispanic or Latino] -14,,emergency,35,,[White], -14,,emergency,32,female,,[Not Hispanic or Latino] +14,,emergency,35,,,not hispanic or latino +14,,emergency,35,,white, +14,,emergency,32,female,,not hispanic or latino 14,,emergency,31,female,, 14,,emergency,27,,, -14,,emergency,27,,[White], -14,,emergency,25,,[White],[Not Hispanic or Latino] +14,,emergency,27,,white, +14,,emergency,25,,white,not hispanic or latino 14,,emergency,23,,, -14,,emergency,21,,[White], -14,,emergency,21,,[White],[Not Hispanic or Latino] -14,,emergency,20,,,[Not Hispanic or Latino] -14,,emergency,20,,[White], -14,,emergency,20,,[White],[Not Hispanic or Latino] -14,,emergency,18,,,[Not Hispanic or Latino] -14,,emergency,17,,[White],[Not Hispanic or Latino] +14,,emergency,21,,white, +14,,emergency,21,,white,not hispanic or latino +14,,emergency,20,,,not hispanic or latino +14,,emergency,20,,white, +14,,emergency,20,,white,not hispanic or latino +14,,emergency,18,,,not hispanic or latino +14,,emergency,17,,white,not hispanic or latino 14,,emergency,16,,, 14,,emergency,15,female,, -14,,emergency,15,female,[White], +14,,emergency,15,female,white, 14,,emergency,13,,, 14,,emergency,2,,, -14,,emergency,1,,[White], -14,,ambulatory,8,,,[Hispanic or Latino] -14,2023-04-01,,,,,[Not Hispanic or Latino] +14,,emergency,1,,white, +14,,ambulatory,8,,,hispanic or latino +14,2023-04-01,,,,,not hispanic or latino 14,2023-04-01,ambulatory,,,, 14,2023-03-01,,16,,, 14,2023-03-01,ambulatory,16,,, -14,2023-01-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2022-12-01,emergency,,,,[Not Hispanic or Latino] -14,2022-12-01,emergency,,,[White],[Not Hispanic or Latino] -14,2022-10-01,,,female,[White],[Hispanic or Latino] -14,2022-10-01,ambulatory,,female,,[Hispanic or Latino] -14,2022-10-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2022-08-01,,,female,[White],[Hispanic or Latino] -14,2022-08-01,emergency,,,[White],[Not Hispanic or Latino] -14,2022-08-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2022-07-01,ambulatory,,female,,[Hispanic or Latino] -14,2022-07-01,ambulatory,,female,[White],[Hispanic or Latino] +14,2023-01-01,ambulatory,,female,white,hispanic or latino +14,2022-12-01,emergency,,,,not hispanic or latino +14,2022-12-01,emergency,,,white,not hispanic or latino +14,2022-10-01,,,female,white,hispanic or latino +14,2022-10-01,ambulatory,,female,,hispanic or latino +14,2022-10-01,ambulatory,,female,white,hispanic or latino +14,2022-08-01,,,female,white,hispanic or latino +14,2022-08-01,emergency,,,white,not hispanic or latino +14,2022-08-01,ambulatory,,female,white,hispanic or latino +14,2022-07-01,ambulatory,,female,,hispanic or latino +14,2022-07-01,ambulatory,,female,white,hispanic or latino 14,2022-07-01,ambulatory,15,female,, -14,2022-07-01,ambulatory,15,female,,[Not Hispanic or Latino] -14,2022-05-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2022-04-01,emergency,,,[White],[Not Hispanic or Latino] -14,2022-04-01,ambulatory,,male,[Black or African American], -14,2022-04-01,ambulatory,,female,,[Hispanic or Latino] -14,2022-04-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2022-01-01,,,female,,[Hispanic or Latino] +14,2022-07-01,ambulatory,15,female,,not hispanic or latino +14,2022-05-01,ambulatory,,female,white,hispanic or latino +14,2022-04-01,emergency,,,white,not hispanic or latino +14,2022-04-01,ambulatory,,male,black or african american, +14,2022-04-01,ambulatory,,female,,hispanic or latino +14,2022-04-01,ambulatory,,female,white,hispanic or latino +14,2022-01-01,,,female,,hispanic or latino 14,2022-01-01,emergency,,,, -14,2022-01-01,emergency,,,,[Not Hispanic or Latino] -14,2022-01-01,emergency,,,[White], -14,2022-01-01,emergency,,,[White],[Not Hispanic or Latino] -14,2022-01-01,ambulatory,,female,,[Hispanic or Latino] -14,2021-12-01,ambulatory,,female,[White],[Hispanic or Latino] +14,2022-01-01,emergency,,,,not hispanic or latino +14,2022-01-01,emergency,,,white, +14,2022-01-01,emergency,,,white,not hispanic or latino +14,2022-01-01,ambulatory,,female,,hispanic or latino +14,2021-12-01,ambulatory,,female,white,hispanic or latino 14,2021-12-01,ambulatory,14,,, -14,2021-12-01,ambulatory,14,,,[Not Hispanic or Latino] +14,2021-12-01,ambulatory,14,,,not hispanic or latino 14,2021-10-01,emergency,,,, 14,2021-09-01,,59,,, -14,2021-09-01,,59,,,[Not Hispanic or Latino] -14,2021-08-01,emergency,,,[White],[Not Hispanic or Latino] +14,2021-09-01,,59,,,not hispanic or latino +14,2021-08-01,emergency,,,white,not hispanic or latino 14,2021-07-01,,14,,, -14,2021-07-01,,14,,,[Not Hispanic or Latino] +14,2021-07-01,,14,,,not hispanic or latino 14,2021-07-01,ambulatory,14,,, -14,2021-07-01,ambulatory,14,,,[Not Hispanic or Latino] +14,2021-07-01,ambulatory,14,,,not hispanic or latino 14,2021-06-01,emergency,,,, 14,2021-05-01,,46,,, -14,2021-05-01,ambulatory,,female,[White],[Hispanic or Latino] -14,2021-04-01,,,male,,[Hispanic or Latino] -14,2021-04-01,,,female,[Black or African American],[Not Hispanic or Latino] -14,2021-04-01,ambulatory,,female,[Black or African American], -14,2021-03-01,emergency,,,[White],[Not Hispanic or Latino] -14,2021-03-01,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] -14,2021-02-01,emergency,,,,[Not Hispanic or Latino] +14,2021-05-01,ambulatory,,female,white,hispanic or latino +14,2021-04-01,,,male,,hispanic or latino +14,2021-04-01,,,female,black or african american,not hispanic or latino +14,2021-04-01,ambulatory,,female,black or african american, +14,2021-03-01,emergency,,,white,not hispanic or latino +14,2021-03-01,ambulatory,,male,black or african american,not hispanic or latino +14,2021-02-01,emergency,,,,not hispanic or latino 14,2021-01-01,inpatient encounter,,,, -14,2021-01-01,ambulatory,,,,[Hispanic or Latino] -14,2020-10-01,,,female,,[Hispanic or Latino] -14,2020-10-01,emergency,,,[White], -14,2020-10-01,emergency,,,[White],[Not Hispanic or Latino] -14,2020-10-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -14,2020-09-01,,,,,[Hispanic or Latino] -14,2020-08-01,,,,[White],[Hispanic or Latino] -14,2020-08-01,ambulatory,,,,[Hispanic or Latino] -14,2020-06-01,,,female,,[Hispanic or Latino] -14,2020-06-01,ambulatory,,female,,[Hispanic or Latino] -14,2020-04-01,,,male,[Black or African American],[Not Hispanic or Latino] -14,2020-04-01,ambulatory,,male,[Black or African American], -14,2020-03-01,,,female,,[Hispanic or Latino] +14,2021-01-01,ambulatory,,,,hispanic or latino +14,2020-10-01,,,female,,hispanic or latino +14,2020-10-01,emergency,,,white, +14,2020-10-01,emergency,,,white,not hispanic or latino +14,2020-10-01,ambulatory,,,black or african american,not hispanic or latino +14,2020-09-01,,,,,hispanic or latino +14,2020-08-01,,,,white,hispanic or latino +14,2020-08-01,ambulatory,,,,hispanic or latino +14,2020-06-01,,,female,,hispanic or latino +14,2020-06-01,ambulatory,,female,,hispanic or latino +14,2020-04-01,,,male,black or african american,not hispanic or latino +14,2020-04-01,ambulatory,,male,black or african american, +14,2020-03-01,,,female,,hispanic or latino 14,2020-03-01,emergency,,,, -14,2020-03-01,emergency,,,,[Not Hispanic or Latino] -14,2020-03-01,ambulatory,,female,,[Hispanic or Latino] -14,2020-01-01,,,,,[Hispanic or Latino] -14,2020-01-01,,,,[White],[Hispanic or Latino] -14,2019-12-01,,,,[Black or African American], +14,2020-03-01,emergency,,,,not hispanic or latino +14,2020-03-01,ambulatory,,female,,hispanic or latino +14,2020-01-01,,,,,hispanic or latino +14,2020-01-01,,,,white,hispanic or latino +14,2019-12-01,,,,black or african american, 14,2019-12-01,emergency,,,, -14,2019-12-01,emergency,,,,[Not Hispanic or Latino] -14,2019-12-01,emergency,,,[White], -14,2019-12-01,emergency,,,[White],[Not Hispanic or Latino] -14,2019-12-01,ambulatory,,,[Black or African American], -14,2019-10-01,,,,[White],[Hispanic or Latino] +14,2019-12-01,emergency,,,,not hispanic or latino +14,2019-12-01,emergency,,,white, +14,2019-12-01,emergency,,,white,not hispanic or latino +14,2019-12-01,ambulatory,,,black or african american, +14,2019-10-01,,,,white,hispanic or latino 14,2019-09-01,emergency,,,, -14,2019-08-01,ambulatory,,,[White],[Hispanic or Latino] +14,2019-08-01,ambulatory,,,white,hispanic or latino 14,2019-05-01,emergency,,,, -14,2019-05-01,emergency,,,,[Not Hispanic or Latino] -14,2019-04-01,ambulatory,,female,,[Hispanic or Latino] -14,2019-03-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] +14,2019-05-01,emergency,,,,not hispanic or latino +14,2019-04-01,ambulatory,,female,,hispanic or latino +14,2019-03-01,ambulatory,,,black or african american,not hispanic or latino 14,2019-02-01,emergency,,female,, -14,2019-02-01,emergency,,female,,[Not Hispanic or Latino] -14,2018-12-01,emergency,,,,[Not Hispanic or Latino] -14,2018-12-01,emergency,,,[White], -14,2018-11-01,,,,[Black or African American],[Not Hispanic or Latino] -14,2018-11-01,emergency,,,[White],[Not Hispanic or Latino] -14,2018-11-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -14,2018-08-01,emergency,,,,[Not Hispanic or Latino] -14,2018-08-01,emergency,,,[White], -14,2018-06-01,emergency,,male,[White],[Not Hispanic or Latino] -14,2018-04-01,,,female,,[Hispanic or Latino] -14,2018-04-01,,,female,[White],[Hispanic or Latino] +14,2019-02-01,emergency,,female,,not hispanic or latino +14,2018-12-01,emergency,,,,not hispanic or latino +14,2018-12-01,emergency,,,white, +14,2018-11-01,,,,black or african american,not hispanic or latino +14,2018-11-01,emergency,,,white,not hispanic or latino +14,2018-11-01,ambulatory,,,black or african american,not hispanic or latino +14,2018-08-01,emergency,,,,not hispanic or latino +14,2018-08-01,emergency,,,white, +14,2018-06-01,emergency,,male,white,not hispanic or latino +14,2018-04-01,,,female,,hispanic or latino +14,2018-04-01,,,female,white,hispanic or latino 14,2018-04-01,emergency,,,, -14,2018-04-01,emergency,,,[White], -14,2018-04-01,ambulatory,,female,,[Hispanic or Latino] -14,2018-04-01,ambulatory,,female,[White],[Hispanic or Latino] +14,2018-04-01,emergency,,,white, +14,2018-04-01,ambulatory,,female,,hispanic or latino +14,2018-04-01,ambulatory,,female,white,hispanic or latino 14,2018-03-01,emergency,,male,, -14,2018-03-01,ambulatory,,,[White],[Hispanic or Latino] -14,2018-02-01,,,female,,[Hispanic or Latino] -14,2018-01-01,emergency,,,,[Not Hispanic or Latino] -14,2017-12-01,,,female,,[Hispanic or Latino] -14,2017-11-01,emergency,,,,[Not Hispanic or Latino] +14,2018-03-01,ambulatory,,,white,hispanic or latino +14,2018-02-01,,,female,,hispanic or latino +14,2018-01-01,emergency,,,,not hispanic or latino +14,2017-12-01,,,female,,hispanic or latino +14,2017-11-01,emergency,,,,not hispanic or latino 14,2017-05-01,emergency,,,, -14,2017-05-01,ambulatory,,female,,[Hispanic or Latino] -14,2017-02-01,emergency,,,[White],[Not Hispanic or Latino] -14,2017-01-01,emergency,,male,,[Not Hispanic or Latino] -14,2016-09-01,emergency,,,[White],[Not Hispanic or Latino] -14,2016-08-01,emergency,,,,[Not Hispanic or Latino] -14,2016-07-01,,,female,[White],[Hispanic or Latino] -14,2016-07-01,ambulatory,,female,,[Hispanic or Latino] -13,,home health,65,,[White],[Not Hispanic or Latino] -13,,emergency,37,,,[Not Hispanic or Latino] -13,,emergency,36,,[White], -13,,emergency,35,female,[White], -13,,emergency,32,female,[White],[Not Hispanic or Latino] -13,,emergency,29,female,,[Not Hispanic or Latino] -13,,emergency,29,female,[White],[Not Hispanic or Latino] +14,2017-05-01,ambulatory,,female,,hispanic or latino +14,2017-02-01,emergency,,,white,not hispanic or latino +14,2017-01-01,emergency,,male,,not hispanic or latino +14,2016-09-01,emergency,,,white,not hispanic or latino +14,2016-08-01,emergency,,,,not hispanic or latino +14,2016-07-01,,,female,white,hispanic or latino +14,2016-07-01,ambulatory,,female,,hispanic or latino +13,,home health,65,,white,not hispanic or latino +13,,emergency,37,,,not hispanic or latino +13,,emergency,36,,white, +13,,emergency,35,female,white, +13,,emergency,32,female,white,not hispanic or latino +13,,emergency,29,female,,not hispanic or latino +13,,emergency,29,female,white,not hispanic or latino 13,,emergency,28,female,, -13,,emergency,28,female,[White], -13,,emergency,27,,,[Not Hispanic or Latino] -13,,emergency,27,,[White],[Not Hispanic or Latino] +13,,emergency,28,female,white, +13,,emergency,27,,,not hispanic or latino +13,,emergency,27,,white,not hispanic or latino 13,,emergency,24,,, -13,,emergency,24,,[White], -13,,emergency,18,,[White], -13,,emergency,16,,,[Not Hispanic or Latino] -13,,emergency,15,,,[Not Hispanic or Latino] -13,,emergency,15,,[White],[Not Hispanic or Latino] -13,,emergency,15,female,,[Not Hispanic or Latino] -13,,emergency,15,female,[White],[Not Hispanic or Latino] -13,,emergency,13,,,[Not Hispanic or Latino] -13,,emergency,13,,[White], -13,,emergency,13,,[White],[Not Hispanic or Latino] -13,,emergency,11,,[White], -13,,emergency,9,,,[Not Hispanic or Latino] -13,,emergency,9,,[White],[Not Hispanic or Latino] -13,,emergency,2,,,[Not Hispanic or Latino] -13,,emergency,1,,[White],[Not Hispanic or Latino] -13,2023-04-01,ambulatory,,,,[Not Hispanic or Latino] +13,,emergency,24,,white, +13,,emergency,18,,white, +13,,emergency,16,,,not hispanic or latino +13,,emergency,15,,,not hispanic or latino +13,,emergency,15,,white,not hispanic or latino +13,,emergency,15,female,,not hispanic or latino +13,,emergency,15,female,white,not hispanic or latino +13,,emergency,13,,,not hispanic or latino +13,,emergency,13,,white, +13,,emergency,13,,white,not hispanic or latino +13,,emergency,11,,white, +13,,emergency,9,,,not hispanic or latino +13,,emergency,9,,white,not hispanic or latino +13,,emergency,2,,,not hispanic or latino +13,,emergency,1,,white,not hispanic or latino +13,2023-04-01,ambulatory,,,,not hispanic or latino 13,2023-01-01,emergency,,,, -13,2023-01-01,emergency,,,,[Not Hispanic or Latino] -13,2023-01-01,emergency,,,[White], -13,2023-01-01,emergency,,,[White],[Not Hispanic or Latino] -13,2022-12-01,,,male,,[Hispanic or Latino] +13,2023-01-01,emergency,,,,not hispanic or latino +13,2023-01-01,emergency,,,white, +13,2023-01-01,emergency,,,white,not hispanic or latino +13,2022-12-01,,,male,,hispanic or latino 13,2022-10-01,emergency,,,, -13,2022-09-01,,,female,,[Hispanic or Latino] +13,2022-09-01,,,female,,hispanic or latino 13,2022-06-01,emergency,,,, -13,2022-05-01,,,male,,[Hispanic or Latino] +13,2022-05-01,,,male,,hispanic or latino 13,2022-05-01,emergency,,male,, -13,2022-05-01,emergency,,male,,[Not Hispanic or Latino] -13,2022-05-01,emergency,,male,[White], -13,2022-05-01,emergency,,male,[White],[Not Hispanic or Latino] -13,2022-05-01,ambulatory,,male,,[Hispanic or Latino] +13,2022-05-01,emergency,,male,,not hispanic or latino +13,2022-05-01,emergency,,male,white, +13,2022-05-01,emergency,,male,white,not hispanic or latino +13,2022-05-01,ambulatory,,male,,hispanic or latino 13,2022-02-01,,15,,, 13,2022-02-01,ambulatory,15,,, -13,2021-12-01,emergency,,,,[Not Hispanic or Latino] -13,2021-12-01,emergency,,,[White],[Not Hispanic or Latino] -13,2021-11-01,,14,,[White], +13,2021-12-01,emergency,,,,not hispanic or latino +13,2021-12-01,emergency,,,white,not hispanic or latino +13,2021-11-01,,14,,white, 13,2021-10-01,,0,,, -13,2021-10-01,,0,,,[Not Hispanic or Latino] -13,2021-10-01,emergency,,,,[Not Hispanic or Latino] +13,2021-10-01,,0,,,not hispanic or latino +13,2021-10-01,emergency,,,,not hispanic or latino 13,2021-09-01,emergency,,male,, -13,2021-09-01,emergency,,male,,[Not Hispanic or Latino] -13,2021-09-01,emergency,,male,[White], -13,2021-09-01,emergency,,male,[White],[Not Hispanic or Latino] -13,2021-07-01,ambulatory,,male,[Black or African American], -13,2021-06-01,,,male,,[Hispanic or Latino] -13,2021-05-01,,,male,[Black or African American], -13,2021-05-01,,,male,[Black or African American],[Not Hispanic or Latino] -13,2021-05-01,,46,,,[Not Hispanic or Latino] -13,2021-05-01,ambulatory,,male,[Black or African American], -13,2021-05-01,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] +13,2021-09-01,emergency,,male,,not hispanic or latino +13,2021-09-01,emergency,,male,white, +13,2021-09-01,emergency,,male,white,not hispanic or latino +13,2021-07-01,ambulatory,,male,black or african american, +13,2021-06-01,,,male,,hispanic or latino +13,2021-05-01,,,male,black or african american, +13,2021-05-01,,,male,black or african american,not hispanic or latino +13,2021-05-01,,46,,,not hispanic or latino +13,2021-05-01,ambulatory,,male,black or african american, +13,2021-05-01,ambulatory,,male,black or african american,not hispanic or latino 13,2021-05-01,ambulatory,46,,, -13,2021-05-01,ambulatory,46,,,[Not Hispanic or Latino] +13,2021-05-01,ambulatory,46,,,not hispanic or latino 13,2021-04-01,emergency,,,, -13,2021-04-01,ambulatory,,female,[Black or African American],[Not Hispanic or Latino] -13,2021-03-01,,,male,,[Hispanic or Latino] -13,2021-03-01,,,female,[Black or African American],[Not Hispanic or Latino] +13,2021-04-01,ambulatory,,female,black or african american,not hispanic or latino +13,2021-03-01,,,male,,hispanic or latino +13,2021-03-01,,,female,black or african american,not hispanic or latino 13,2021-03-01,,56,,, 13,2021-03-01,ambulatory,56,,, -13,2021-02-01,,,female,,[Hispanic or Latino] -13,2021-02-01,emergency,,,[White],[Not Hispanic or Latino] -13,2021-01-01,inpatient encounter,,,[White], -13,2021-01-01,ambulatory,,,[White],[Hispanic or Latino] -13,2020-12-01,,,,[Black or African American], -13,2020-10-01,ambulatory,,male,[Black or African American], -13,2020-09-01,ambulatory,,,,[Hispanic or Latino] -13,2020-06-01,,,,[Black or African American],[Not Hispanic or Latino] -13,2020-06-01,,,female,[White],[Hispanic or Latino] +13,2021-02-01,,,female,,hispanic or latino +13,2021-02-01,emergency,,,white,not hispanic or latino +13,2021-01-01,inpatient encounter,,,white, +13,2021-01-01,ambulatory,,,white,hispanic or latino +13,2020-12-01,,,,black or african american, +13,2020-10-01,ambulatory,,male,black or african american, +13,2020-09-01,ambulatory,,,,hispanic or latino +13,2020-06-01,,,,black or african american,not hispanic or latino +13,2020-06-01,,,female,white,hispanic or latino 13,2020-06-01,emergency,,,, -13,2020-06-01,emergency,,,,[Not Hispanic or Latino] -13,2020-06-01,ambulatory,,female,[White],[Hispanic or Latino] -13,2020-05-01,,,male,,[Hispanic or Latino] +13,2020-06-01,emergency,,,,not hispanic or latino +13,2020-06-01,ambulatory,,female,white,hispanic or latino +13,2020-05-01,,,male,,hispanic or latino 13,2020-05-01,emergency,,female,, -13,2020-05-01,emergency,,female,,[Not Hispanic or Latino] -13,2020-04-01,,,,,[Hispanic or Latino] -13,2020-04-01,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] -13,2020-02-01,,,,[Black or African American],[Not Hispanic or Latino] -13,2020-02-01,,,female,,[Hispanic or Latino] -13,2020-02-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -13,2020-02-01,ambulatory,,female,,[Hispanic or Latino] -13,2020-01-01,emergency,,,[White], -13,2020-01-01,emergency,,,[White],[Not Hispanic or Latino] -13,2020-01-01,ambulatory,,,,[Hispanic or Latino] -13,2020-01-01,ambulatory,,,[White],[Hispanic or Latino] -13,2019-12-01,,,,[Black or African American],[Not Hispanic or Latino] -13,2019-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -13,2019-11-01,,,female,,[Hispanic or Latino] -13,2019-11-01,,,female,[White],[Hispanic or Latino] -13,2019-11-01,ambulatory,,female,,[Hispanic or Latino] -13,2019-11-01,ambulatory,,female,[White],[Hispanic or Latino] -13,2019-10-01,ambulatory,,,[White],[Hispanic or Latino] -13,2019-09-01,emergency,,,[White], -13,2019-07-01,,,female,,[Hispanic or Latino] -13,2019-07-01,,,female,[White],[Hispanic or Latino] +13,2020-05-01,emergency,,female,,not hispanic or latino +13,2020-04-01,,,,,hispanic or latino +13,2020-04-01,ambulatory,,male,black or african american,not hispanic or latino +13,2020-02-01,,,,black or african american,not hispanic or latino +13,2020-02-01,,,female,,hispanic or latino +13,2020-02-01,ambulatory,,,black or african american,not hispanic or latino +13,2020-02-01,ambulatory,,female,,hispanic or latino +13,2020-01-01,emergency,,,white, +13,2020-01-01,emergency,,,white,not hispanic or latino +13,2020-01-01,ambulatory,,,,hispanic or latino +13,2020-01-01,ambulatory,,,white,hispanic or latino +13,2019-12-01,,,,black or african american,not hispanic or latino +13,2019-12-01,ambulatory,,,black or african american,not hispanic or latino +13,2019-11-01,,,female,,hispanic or latino +13,2019-11-01,,,female,white,hispanic or latino +13,2019-11-01,ambulatory,,female,,hispanic or latino +13,2019-11-01,ambulatory,,female,white,hispanic or latino +13,2019-10-01,ambulatory,,,white,hispanic or latino +13,2019-09-01,emergency,,,white, +13,2019-07-01,,,female,,hispanic or latino +13,2019-07-01,,,female,white,hispanic or latino 13,2019-07-01,emergency,,,, -13,2019-07-01,emergency,,,,[Not Hispanic or Latino] -13,2019-07-01,ambulatory,,female,,[Hispanic or Latino] -13,2019-07-01,ambulatory,,female,[White],[Hispanic or Latino] -13,2019-04-01,emergency,,,[White],[Not Hispanic or Latino] -13,2019-02-01,,,female,[White],[Hispanic or Latino] -13,2019-02-01,ambulatory,,female,[White],[Hispanic or Latino] +13,2019-07-01,emergency,,,,not hispanic or latino +13,2019-07-01,ambulatory,,female,,hispanic or latino +13,2019-07-01,ambulatory,,female,white,hispanic or latino +13,2019-04-01,emergency,,,white,not hispanic or latino +13,2019-02-01,,,female,white,hispanic or latino +13,2019-02-01,ambulatory,,female,white,hispanic or latino 13,2019-01-01,emergency,,,, -13,2019-01-01,emergency,,,,[Not Hispanic or Latino] -13,2019-01-01,emergency,,,[White], -13,2019-01-01,emergency,,,[White],[Not Hispanic or Latino] -13,2018-12-01,,,,[Black or African American],[Not Hispanic or Latino] -13,2018-12-01,emergency,,,[White],[Not Hispanic or Latino] -13,2018-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -13,2018-10-01,,,male,[White],[Hispanic or Latino] -13,2018-10-01,emergency,,,[White], -13,2018-08-01,emergency,,,[White],[Not Hispanic or Latino] +13,2019-01-01,emergency,,,,not hispanic or latino +13,2019-01-01,emergency,,,white, +13,2019-01-01,emergency,,,white,not hispanic or latino +13,2018-12-01,,,,black or african american,not hispanic or latino +13,2018-12-01,emergency,,,white,not hispanic or latino +13,2018-12-01,ambulatory,,,black or african american,not hispanic or latino +13,2018-10-01,,,male,white,hispanic or latino +13,2018-10-01,emergency,,,white, +13,2018-08-01,emergency,,,white,not hispanic or latino 13,2018-07-01,emergency,,,, -13,2018-07-01,emergency,,,[White], -13,2018-06-01,,,female,,[Hispanic or Latino] -13,2018-06-01,ambulatory,,female,,[Hispanic or Latino] -13,2018-05-01,,,female,,[Hispanic or Latino] -13,2018-05-01,,,female,[White],[Hispanic or Latino] +13,2018-07-01,emergency,,,white, +13,2018-06-01,,,female,,hispanic or latino +13,2018-06-01,ambulatory,,female,,hispanic or latino +13,2018-05-01,,,female,,hispanic or latino +13,2018-05-01,,,female,white,hispanic or latino 13,2018-05-01,emergency,,,, -13,2018-05-01,emergency,,,[White], -13,2018-04-01,emergency,,,,[Not Hispanic or Latino] -13,2018-04-01,emergency,,,[White],[Not Hispanic or Latino] -13,2018-02-01,ambulatory,,female,,[Hispanic or Latino] -13,2018-01-01,,,female,,[Hispanic or Latino] -13,2018-01-01,emergency,,,[White],[Not Hispanic or Latino] -13,2017-12-01,,,female,[White],[Hispanic or Latino] +13,2018-05-01,emergency,,,white, +13,2018-04-01,emergency,,,,not hispanic or latino +13,2018-04-01,emergency,,,white,not hispanic or latino +13,2018-02-01,ambulatory,,female,,hispanic or latino +13,2018-01-01,,,female,,hispanic or latino +13,2018-01-01,emergency,,,white,not hispanic or latino +13,2017-12-01,,,female,white,hispanic or latino 13,2017-12-01,emergency,,,, -13,2017-12-01,emergency,,,[White], -13,2017-10-01,,,female,,[Hispanic or Latino] -13,2017-10-01,ambulatory,,female,,[Hispanic or Latino] -13,2017-08-01,,,female,,[Hispanic or Latino] -13,2017-05-01,,,female,[White],[Hispanic or Latino] -13,2017-05-01,emergency,,,,[Not Hispanic or Latino] -13,2017-05-01,emergency,,,[White], -13,2016-12-01,,,female,,[Hispanic or Latino] -13,2016-12-01,,,female,[White],[Hispanic or Latino] -13,2016-08-01,emergency,,,[White],[Not Hispanic or Latino] -13,2016-08-01,ambulatory,,,[White],[Hispanic or Latino] +13,2017-12-01,emergency,,,white, +13,2017-10-01,,,female,,hispanic or latino +13,2017-10-01,ambulatory,,female,,hispanic or latino +13,2017-08-01,,,female,,hispanic or latino +13,2017-05-01,,,female,white,hispanic or latino +13,2017-05-01,emergency,,,,not hispanic or latino +13,2017-05-01,emergency,,,white, +13,2016-12-01,,,female,,hispanic or latino +13,2016-12-01,,,female,white,hispanic or latino +13,2016-08-01,emergency,,,white,not hispanic or latino +13,2016-08-01,ambulatory,,,white,hispanic or latino 13,2016-07-01,emergency,,female,, -13,2016-07-01,emergency,,female,,[Not Hispanic or Latino] -13,2016-07-01,ambulatory,,female,[White],[Hispanic or Latino] -12,,,8,,[White],[Hispanic or Latino] -12,,inpatient encounter,65,,[White], -12,,inpatient encounter,65,,[White],[Not Hispanic or Latino] +13,2016-07-01,emergency,,female,,not hispanic or latino +13,2016-07-01,ambulatory,,female,white,hispanic or latino +12,,,8,,white,hispanic or latino +12,,inpatient encounter,65,,white, +12,,inpatient encounter,65,,white,not hispanic or latino 12,,home health,75,male,, 12,,emergency,68,,, -12,,emergency,68,,,[Not Hispanic or Latino] -12,,emergency,54,,[White], +12,,emergency,68,,,not hispanic or latino +12,,emergency,54,,white, 12,,emergency,44,,, -12,,emergency,44,,,[Not Hispanic or Latino] -12,,emergency,37,,[White], -12,,emergency,36,female,,[Not Hispanic or Latino] -12,,emergency,35,female,,[Not Hispanic or Latino] -12,,emergency,34,,,[Not Hispanic or Latino] -12,,emergency,34,,[White], +12,,emergency,44,,,not hispanic or latino +12,,emergency,37,,white, +12,,emergency,36,female,,not hispanic or latino +12,,emergency,35,female,,not hispanic or latino +12,,emergency,34,,,not hispanic or latino +12,,emergency,34,,white, 12,,emergency,30,female,, 12,,emergency,26,female,, 12,,emergency,25,female,, 12,,emergency,21,female,, -12,,emergency,21,female,,[Not Hispanic or Latino] -12,,emergency,18,,[White],[Not Hispanic or Latino] -12,,emergency,16,,[White], -12,,emergency,11,,,[Not Hispanic or Latino] +12,,emergency,21,female,,not hispanic or latino +12,,emergency,18,,white,not hispanic or latino +12,,emergency,16,,white, +12,,emergency,11,,,not hispanic or latino 12,,emergency,1,male,, -12,,emergency,1,male,,[Not Hispanic or Latino] -12,2023-04-01,,,,[White], -12,2022-11-01,ambulatory,,male,,[Hispanic or Latino] -12,2022-10-01,emergency,,,,[Not Hispanic or Latino] +12,,emergency,1,male,,not hispanic or latino +12,2023-04-01,,,,white, +12,2022-11-01,ambulatory,,male,,hispanic or latino +12,2022-10-01,emergency,,,,not hispanic or latino 12,2022-09-01,emergency,,,, -12,2022-09-01,ambulatory,,female,,[Hispanic or Latino] -12,2022-07-01,,15,,[White], -12,2022-07-01,,15,,[White],[Not Hispanic or Latino] +12,2022-09-01,ambulatory,,female,,hispanic or latino +12,2022-07-01,,15,,white, +12,2022-07-01,,15,,white,not hispanic or latino 12,2022-02-01,emergency,,,, -12,2022-02-01,emergency,,,,[Not Hispanic or Latino] -12,2022-02-01,emergency,,,[White], -12,2022-02-01,emergency,,,[White],[Not Hispanic or Latino] -12,2022-01-01,,,female,[White],[Hispanic or Latino] -12,2022-01-01,ambulatory,,female,[White],[Hispanic or Latino] -12,2021-11-01,,,male,,[Hispanic or Latino] -12,2021-11-01,ambulatory,,male,,[Hispanic or Latino] -12,2021-11-01,ambulatory,14,,[White], -12,2021-10-01,emergency,,,[White], +12,2022-02-01,emergency,,,,not hispanic or latino +12,2022-02-01,emergency,,,white, +12,2022-02-01,emergency,,,white,not hispanic or latino +12,2022-01-01,,,female,white,hispanic or latino +12,2022-01-01,ambulatory,,female,white,hispanic or latino +12,2021-11-01,,,male,,hispanic or latino +12,2021-11-01,ambulatory,,male,,hispanic or latino +12,2021-11-01,ambulatory,14,,white, +12,2021-10-01,emergency,,,white, 12,2021-10-01,ambulatory,0,,, -12,2021-10-01,ambulatory,0,,,[Not Hispanic or Latino] -12,2021-07-01,,14,,[White], -12,2021-07-01,,14,,[White],[Not Hispanic or Latino] +12,2021-10-01,ambulatory,0,,,not hispanic or latino +12,2021-07-01,,14,,white, +12,2021-07-01,,14,,white,not hispanic or latino 12,2021-07-01,emergency,,,, -12,2021-07-01,emergency,,,,[Not Hispanic or Latino] -12,2021-07-01,emergency,,,[White], -12,2021-07-01,emergency,,,[White],[Not Hispanic or Latino] -12,2021-07-01,ambulatory,14,,[White], -12,2021-07-01,ambulatory,14,,[White],[Not Hispanic or Latino] -12,2021-06-01,ambulatory,,male,,[Hispanic or Latino] +12,2021-07-01,emergency,,,,not hispanic or latino +12,2021-07-01,emergency,,,white, +12,2021-07-01,emergency,,,white,not hispanic or latino +12,2021-07-01,ambulatory,14,,white, +12,2021-07-01,ambulatory,14,,white,not hispanic or latino +12,2021-06-01,ambulatory,,male,,hispanic or latino 12,2021-05-01,,49,,, 12,2021-05-01,ambulatory,49,,, 12,2021-04-01,,46,,, -12,2021-04-01,emergency,,,[White], -12,2021-04-01,ambulatory,,male,,[Hispanic or Latino] +12,2021-04-01,emergency,,,white, +12,2021-04-01,ambulatory,,male,,hispanic or latino 12,2021-04-01,ambulatory,46,,, -12,2021-03-01,,56,,[White], -12,2021-03-01,ambulatory,,male,,[Hispanic or Latino] -12,2021-03-01,ambulatory,,female,[Black or African American],[Not Hispanic or Latino] -12,2021-03-01,ambulatory,56,,[White], -12,2021-02-01,,,male,[Black or African American], -12,2021-02-01,,,female,[White],[Hispanic or Latino] -12,2021-02-01,ambulatory,,female,,[Hispanic or Latino] -12,2021-01-01,,,male,[Black or African American], -12,2021-01-01,inpatient encounter,,,,[Not Hispanic or Latino] -12,2021-01-01,ambulatory,,male,[Black or African American], -12,2020-12-01,ambulatory,,,[Black or African American], +12,2021-03-01,,56,,white, +12,2021-03-01,ambulatory,,male,,hispanic or latino +12,2021-03-01,ambulatory,,female,black or african american,not hispanic or latino +12,2021-03-01,ambulatory,56,,white, +12,2021-02-01,,,male,black or african american, +12,2021-02-01,,,female,white,hispanic or latino +12,2021-02-01,ambulatory,,female,,hispanic or latino +12,2021-01-01,,,male,black or african american, +12,2021-01-01,inpatient encounter,,,,not hispanic or latino +12,2021-01-01,ambulatory,,male,black or african american, +12,2020-12-01,ambulatory,,,black or african american, 12,2020-10-01,emergency,,male,, -12,2020-10-01,emergency,,male,,[Not Hispanic or Latino] +12,2020-10-01,emergency,,male,,not hispanic or latino 12,2020-08-01,emergency,,,, -12,2020-08-01,ambulatory,,,[White],[Hispanic or Latino] -12,2020-07-01,,,female,,[Hispanic or Latino] -12,2020-07-01,,,female,[White],[Hispanic or Latino] -12,2020-07-01,ambulatory,,female,,[Hispanic or Latino] -12,2020-07-01,ambulatory,,female,[White],[Hispanic or Latino] -12,2020-05-01,,,,[Black or African American], -12,2020-04-01,,,,[White],[Hispanic or Latino] -12,2020-04-01,ambulatory,,,,[Hispanic or Latino] -12,2020-03-01,,,female,[White],[Hispanic or Latino] -12,2020-03-01,ambulatory,,female,[White],[Hispanic or Latino] +12,2020-08-01,ambulatory,,,white,hispanic or latino +12,2020-07-01,,,female,,hispanic or latino +12,2020-07-01,,,female,white,hispanic or latino +12,2020-07-01,ambulatory,,female,,hispanic or latino +12,2020-07-01,ambulatory,,female,white,hispanic or latino +12,2020-05-01,,,,black or african american, +12,2020-04-01,,,,white,hispanic or latino +12,2020-04-01,ambulatory,,,,hispanic or latino +12,2020-03-01,,,female,white,hispanic or latino +12,2020-03-01,ambulatory,,female,white,hispanic or latino 12,2019-12-01,,0,,, 12,2019-12-01,ambulatory,0,,, -12,2019-09-01,emergency,,,,[Not Hispanic or Latino] -12,2019-07-01,emergency,,,[White], -12,2019-07-01,emergency,,,[White],[Not Hispanic or Latino] -12,2019-06-01,,,male,[Black or African American], -12,2019-06-01,ambulatory,,male,[Black or African American], -12,2019-05-01,,,male,,[Hispanic or Latino] +12,2019-09-01,emergency,,,,not hispanic or latino +12,2019-07-01,emergency,,,white, +12,2019-07-01,emergency,,,white,not hispanic or latino +12,2019-06-01,,,male,black or african american, +12,2019-06-01,ambulatory,,male,black or african american, +12,2019-05-01,,,male,,hispanic or latino 12,2019-04-01,emergency,,female,, -12,2018-12-01,,,male,,[Hispanic or Latino] -12,2018-10-01,emergency,,,,[Not Hispanic or Latino] -12,2018-06-01,,,,[Asian], -12,2018-06-01,,,,[Asian],[Not Hispanic or Latino] -12,2018-06-01,,,female,[White],[Hispanic or Latino] -12,2018-06-01,ambulatory,,female,[White],[Hispanic or Latino] -12,2018-05-01,ambulatory,,female,,[Hispanic or Latino] -12,2018-05-01,ambulatory,,female,[White],[Hispanic or Latino] -12,2018-01-01,,,female,[White],[Hispanic or Latino] +12,2018-12-01,,,male,,hispanic or latino +12,2018-10-01,emergency,,,,not hispanic or latino +12,2018-06-01,,,,asian, +12,2018-06-01,,,,asian,not hispanic or latino +12,2018-06-01,,,female,white,hispanic or latino +12,2018-06-01,ambulatory,,female,white,hispanic or latino +12,2018-05-01,ambulatory,,female,,hispanic or latino +12,2018-05-01,ambulatory,,female,white,hispanic or latino +12,2018-01-01,,,female,white,hispanic or latino 12,2018-01-01,emergency,,male,, -12,2018-01-01,emergency,,male,,[Not Hispanic or Latino] -12,2017-12-01,emergency,,,,[Not Hispanic or Latino] -12,2017-12-01,emergency,,,[White],[Not Hispanic or Latino] -12,2017-12-01,ambulatory,,female,,[Hispanic or Latino] -12,2017-11-01,emergency,,,[White],[Not Hispanic or Latino] -12,2017-09-01,,,female,,[Hispanic or Latino] -12,2017-09-01,,,female,[White],[Hispanic or Latino] -12,2017-08-01,,,female,[White],[Hispanic or Latino] -12,2017-08-01,ambulatory,,female,,[Hispanic or Latino] -12,2017-05-01,emergency,,,[White],[Not Hispanic or Latino] -12,2017-05-01,ambulatory,,female,[White],[Hispanic or Latino] -12,2017-04-01,,,female,,[Hispanic or Latino] -12,2017-04-01,,,female,[White],[Hispanic or Latino] +12,2018-01-01,emergency,,male,,not hispanic or latino +12,2017-12-01,emergency,,,,not hispanic or latino +12,2017-12-01,emergency,,,white,not hispanic or latino +12,2017-12-01,ambulatory,,female,,hispanic or latino +12,2017-11-01,emergency,,,white,not hispanic or latino +12,2017-09-01,,,female,,hispanic or latino +12,2017-09-01,,,female,white,hispanic or latino +12,2017-08-01,,,female,white,hispanic or latino +12,2017-08-01,ambulatory,,female,,hispanic or latino +12,2017-05-01,emergency,,,white,not hispanic or latino +12,2017-05-01,ambulatory,,female,white,hispanic or latino +12,2017-04-01,,,female,,hispanic or latino +12,2017-04-01,,,female,white,hispanic or latino 12,2017-04-01,emergency,,male,, -12,2017-04-01,emergency,,male,,[Not Hispanic or Latino] -12,2017-03-01,,,female,,[Hispanic or Latino] +12,2017-04-01,emergency,,male,,not hispanic or latino +12,2017-03-01,,,female,,hispanic or latino 12,2016-10-01,emergency,,male,, -12,2016-10-01,emergency,,male,,[Not Hispanic or Latino] +12,2016-10-01,emergency,,male,,not hispanic or latino 12,2016-08-01,emergency,,female,, -11,,home health,75,male,[White], +11,,home health,75,male,white, 11,,home health,75,female,, -11,,home health,75,female,[White], -11,,home health,65,female,,[Not Hispanic or Latino] -11,,home health,65,female,[White],[Not Hispanic or Latino] +11,,home health,75,female,white, +11,,home health,65,female,,not hispanic or latino +11,,home health,65,female,white,not hispanic or latino 11,,emergency,62,,, -11,,emergency,62,,,[Not Hispanic or Latino] -11,,emergency,54,,[White],[Not Hispanic or Latino] +11,,emergency,62,,,not hispanic or latino +11,,emergency,54,,white,not hispanic or latino 11,,emergency,46,,, 11,,emergency,45,,, 11,,emergency,37,female,, -11,,emergency,36,,[White],[Not Hispanic or Latino] -11,,emergency,36,female,[White], -11,,emergency,35,,[White],[Not Hispanic or Latino] -11,,emergency,30,female,[White], -11,,emergency,28,female,,[Not Hispanic or Latino] -11,,emergency,28,female,[White],[Not Hispanic or Latino] -11,,emergency,26,female,,[Not Hispanic or Latino] -11,,emergency,26,female,[White], -11,,emergency,25,female,[White], -11,,emergency,16,,[White],[Not Hispanic or Latino] +11,,emergency,36,,white,not hispanic or latino +11,,emergency,36,female,white, +11,,emergency,35,,white,not hispanic or latino +11,,emergency,30,female,white, +11,,emergency,28,female,,not hispanic or latino +11,,emergency,28,female,white,not hispanic or latino +11,,emergency,26,female,,not hispanic or latino +11,,emergency,26,female,white, +11,,emergency,25,female,white, +11,,emergency,16,,white,not hispanic or latino 11,,emergency,8,,, 11,,emergency,6,,, -11,,emergency,2,,[White], -11,,emergency,1,male,[White], -11,,emergency,1,male,[White],[Not Hispanic or Latino] -11,2023-04-01,,,,[White],[Not Hispanic or Latino] -11,2023-04-01,ambulatory,,,[White], -11,2022-10-01,emergency,,,[White], -11,2022-10-01,emergency,,,[White],[Not Hispanic or Latino] -11,2022-09-01,emergency,,,,[Not Hispanic or Latino] -11,2022-09-01,emergency,,,[White], +11,,emergency,2,,white, +11,,emergency,1,male,white, +11,,emergency,1,male,white,not hispanic or latino +11,2023-04-01,,,,white,not hispanic or latino +11,2023-04-01,ambulatory,,,white, +11,2022-10-01,emergency,,,white, +11,2022-10-01,emergency,,,white,not hispanic or latino +11,2022-09-01,emergency,,,,not hispanic or latino +11,2022-09-01,emergency,,,white, 11,2022-04-01,emergency,,male,, 11,2022-03-01,emergency,,female,, -11,2022-03-01,emergency,,female,,[Not Hispanic or Latino] -11,2022-03-01,emergency,,female,[White], -11,2022-03-01,emergency,,female,[White],[Not Hispanic or Latino] +11,2022-03-01,emergency,,female,,not hispanic or latino +11,2022-03-01,emergency,,female,white, +11,2022-03-01,emergency,,female,white,not hispanic or latino 11,2021-12-01,,0,,, -11,2021-12-01,,0,,,[Not Hispanic or Latino] +11,2021-12-01,,0,,,not hispanic or latino 11,2021-12-01,ambulatory,0,,, -11,2021-12-01,ambulatory,0,,,[Not Hispanic or Latino] +11,2021-12-01,ambulatory,0,,,not hispanic or latino 11,2021-10-01,,14,,, -11,2021-10-01,,14,,,[Not Hispanic or Latino] -11,2021-10-01,emergency,,,[White],[Not Hispanic or Latino] +11,2021-10-01,,14,,,not hispanic or latino +11,2021-10-01,emergency,,,white,not hispanic or latino 11,2021-10-01,ambulatory,14,,, -11,2021-10-01,ambulatory,14,,,[Not Hispanic or Latino] +11,2021-10-01,ambulatory,14,,,not hispanic or latino 11,2021-08-01,emergency,,male,, -11,2021-08-01,emergency,,male,,[Not Hispanic or Latino] -11,2021-06-01,emergency,,,,[Not Hispanic or Latino] -11,2021-06-01,emergency,,,[White], -11,2021-06-01,emergency,,,[White],[Not Hispanic or Latino] -11,2021-04-01,,,male,[White],[Hispanic or Latino] +11,2021-08-01,emergency,,male,,not hispanic or latino +11,2021-06-01,emergency,,,,not hispanic or latino +11,2021-06-01,emergency,,,white, +11,2021-06-01,emergency,,,white,not hispanic or latino +11,2021-04-01,,,male,white,hispanic or latino 11,2021-04-01,,20,,, -11,2021-04-01,emergency,,,,[Not Hispanic or Latino] +11,2021-04-01,emergency,,,,not hispanic or latino 11,2021-04-01,ambulatory,20,,, -11,2021-03-01,,,,[Asian], -11,2021-03-01,,,,[Asian],[Not Hispanic or Latino] -11,2021-03-01,,56,,,[Not Hispanic or Latino] -11,2021-03-01,ambulatory,,,[Asian], -11,2021-03-01,ambulatory,,,[Asian],[Not Hispanic or Latino] -11,2021-03-01,ambulatory,56,,,[Not Hispanic or Latino] -11,2021-02-01,,,male,[Black or African American],[Not Hispanic or Latino] -11,2021-02-01,ambulatory,,female,[White],[Hispanic or Latino] -11,2021-01-01,,,male,[Black or African American],[Not Hispanic or Latino] +11,2021-03-01,,,,asian, +11,2021-03-01,,,,asian,not hispanic or latino +11,2021-03-01,,56,,,not hispanic or latino +11,2021-03-01,ambulatory,,,asian, +11,2021-03-01,ambulatory,,,asian,not hispanic or latino +11,2021-03-01,ambulatory,56,,,not hispanic or latino +11,2021-02-01,,,male,black or african american,not hispanic or latino +11,2021-02-01,ambulatory,,female,white,hispanic or latino +11,2021-01-01,,,male,black or african american,not hispanic or latino 11,2021-01-01,emergency,,,, -11,2021-01-01,ambulatory,,male,[Black or African American],[Not Hispanic or Latino] -11,2020-12-01,,,,[Black or African American],[Not Hispanic or Latino] -11,2020-12-01,,,male,[Black or African American], +11,2021-01-01,ambulatory,,male,black or african american,not hispanic or latino +11,2020-12-01,,,,black or african american,not hispanic or latino +11,2020-12-01,,,male,black or african american, 11,2020-12-01,emergency,,,, -11,2020-06-01,emergency,,,[White], -11,2020-06-01,emergency,,,[White],[Not Hispanic or Latino] -11,2020-05-01,emergency,,female,[White], -11,2020-05-01,emergency,,female,[White],[Not Hispanic or Latino] +11,2020-06-01,emergency,,,white, +11,2020-06-01,emergency,,,white,not hispanic or latino +11,2020-05-01,emergency,,female,white, +11,2020-05-01,emergency,,female,white,not hispanic or latino 11,2020-04-01,emergency,,male,, -11,2020-04-01,ambulatory,,,[White],[Hispanic or Latino] -11,2020-02-01,,,female,[White],[Hispanic or Latino] -11,2020-02-01,ambulatory,,female,[White],[Hispanic or Latino] -11,2019-12-01,,0,,,[Not Hispanic or Latino] -11,2019-12-01,ambulatory,0,,,[Not Hispanic or Latino] +11,2020-04-01,ambulatory,,,white,hispanic or latino +11,2020-02-01,,,female,white,hispanic or latino +11,2020-02-01,ambulatory,,female,white,hispanic or latino +11,2019-12-01,,0,,,not hispanic or latino +11,2019-12-01,ambulatory,0,,,not hispanic or latino 11,2019-11-01,emergency,,,, -11,2019-11-01,emergency,,,,[Not Hispanic or Latino] -11,2019-09-01,,,female,,[Hispanic or Latino] -11,2019-09-01,,,female,[White],[Hispanic or Latino] -11,2019-08-01,,,female,,[Hispanic or Latino] +11,2019-11-01,emergency,,,,not hispanic or latino +11,2019-09-01,,,female,,hispanic or latino +11,2019-09-01,,,female,white,hispanic or latino +11,2019-08-01,,,female,,hispanic or latino 11,2019-08-01,emergency,,,, -11,2019-08-01,emergency,,,[White], -11,2019-05-01,,,male,[White],[Hispanic or Latino] +11,2019-08-01,emergency,,,white, +11,2019-05-01,,,male,white,hispanic or latino 11,2019-05-01,inpatient encounter,,,, -11,2019-05-01,emergency,,,[White], -11,2019-05-01,emergency,,,[White],[Not Hispanic or Latino] -11,2019-05-01,ambulatory,,male,,[Hispanic or Latino] +11,2019-05-01,emergency,,,white, +11,2019-05-01,emergency,,,white,not hispanic or latino +11,2019-05-01,ambulatory,,male,,hispanic or latino 11,2019-03-01,emergency,,female,, -11,2019-03-01,emergency,,female,,[Not Hispanic or Latino] -11,2019-02-01,emergency,,female,[White], -11,2019-02-01,emergency,,female,[White],[Not Hispanic or Latino] +11,2019-03-01,emergency,,female,,not hispanic or latino +11,2019-02-01,emergency,,female,white, +11,2019-02-01,emergency,,female,white,not hispanic or latino 11,2019-01-01,,1,,, -11,2019-01-01,,1,,[White], +11,2019-01-01,,1,,white, 11,2019-01-01,ambulatory,1,,, -11,2019-01-01,ambulatory,1,,[White], -11,2018-12-01,ambulatory,,male,,[Hispanic or Latino] -11,2018-01-01,emergency,,male,[White], -11,2018-01-01,emergency,,male,[White],[Not Hispanic or Latino] -11,2017-12-01,ambulatory,,female,[White],[Hispanic or Latino] +11,2019-01-01,ambulatory,1,,white, +11,2018-12-01,ambulatory,,male,,hispanic or latino +11,2018-01-01,emergency,,male,white, +11,2018-01-01,emergency,,male,white,not hispanic or latino +11,2017-12-01,ambulatory,,female,white,hispanic or latino 11,2017-08-01,emergency,,,, -11,2017-08-01,emergency,,,[White], -11,2017-07-01,,,female,,[Hispanic or Latino] +11,2017-08-01,emergency,,,white, +11,2017-07-01,,,female,,hispanic or latino 11,2017-06-01,emergency,,female,, -11,2017-06-01,emergency,,female,,[Not Hispanic or Latino] +11,2017-06-01,emergency,,female,,not hispanic or latino 11,2017-05-01,emergency,,male,, -11,2017-04-01,ambulatory,,female,,[Hispanic or Latino] -11,2017-04-01,ambulatory,,female,[White],[Hispanic or Latino] -11,2017-03-01,,,female,[White],[Hispanic or Latino] +11,2017-04-01,ambulatory,,female,,hispanic or latino +11,2017-04-01,ambulatory,,female,white,hispanic or latino +11,2017-03-01,,,female,white,hispanic or latino 11,2016-12-01,emergency,,,, -10,,inpatient encounter,,male,[Black or African American],[Not Hispanic or Latino] -10,,home health,75,male,,[Not Hispanic or Latino] -10,,emergency,44,,[White], -10,,emergency,44,,[White],[Not Hispanic or Latino] -10,,emergency,35,female,[White],[Not Hispanic or Latino] +10,,inpatient encounter,,male,black or african american,not hispanic or latino +10,,home health,75,male,,not hispanic or latino +10,,emergency,44,,white, +10,,emergency,44,,white,not hispanic or latino +10,,emergency,35,female,white,not hispanic or latino 10,,emergency,34,female,, -10,,emergency,30,female,,[Not Hispanic or Latino] -10,,emergency,26,female,[White],[Not Hispanic or Latino] -10,,emergency,11,,[White],[Not Hispanic or Latino] -10,,emergency,2,,[White],[Not Hispanic or Latino] -10,2023-04-01,ambulatory,,,[White],[Not Hispanic or Latino] -10,2022-12-01,ambulatory,,male,,[Hispanic or Latino] +10,,emergency,30,female,,not hispanic or latino +10,,emergency,26,female,white,not hispanic or latino +10,,emergency,11,,white,not hispanic or latino +10,,emergency,2,,white,not hispanic or latino +10,2023-04-01,ambulatory,,,white,not hispanic or latino +10,2022-12-01,ambulatory,,male,,hispanic or latino 10,2022-07-01,emergency,,female,, -10,2022-07-01,emergency,,female,,[Not Hispanic or Latino] -10,2022-07-01,emergency,,female,[White], -10,2022-07-01,emergency,,female,[White],[Not Hispanic or Latino] +10,2022-07-01,emergency,,female,,not hispanic or latino +10,2022-07-01,emergency,,female,white, +10,2022-07-01,emergency,,female,white,not hispanic or latino 10,2022-06-01,,1,,, -10,2022-06-01,,1,,,[Not Hispanic or Latino] +10,2022-06-01,,1,,,not hispanic or latino 10,2022-06-01,ambulatory,1,,, -10,2022-06-01,ambulatory,1,,,[Not Hispanic or Latino] +10,2022-06-01,ambulatory,1,,,not hispanic or latino 10,2021-05-01,,19,,, 10,2021-05-01,,1,,, -10,2021-05-01,,1,,[White], +10,2021-05-01,,1,,white, 10,2021-05-01,ambulatory,1,,, -10,2021-05-01,ambulatory,1,,[White], +10,2021-05-01,ambulatory,1,,white, 10,2021-04-01,,38,,, -10,2021-04-01,,38,,,[Not Hispanic or Latino] -10,2021-04-01,emergency,,,[White],[Not Hispanic or Latino] +10,2021-04-01,,38,,,not hispanic or latino +10,2021-04-01,emergency,,,white,not hispanic or latino 10,2021-04-01,ambulatory,38,,, -10,2021-04-01,ambulatory,38,,,[Not Hispanic or Latino] +10,2021-04-01,ambulatory,38,,,not hispanic or latino 10,2021-02-01,emergency,,male,, -10,2021-02-01,ambulatory,,male,[Black or African American], -10,2021-01-01,emergency,,,,[Not Hispanic or Latino] -10,2021-01-01,emergency,,,[White], -10,2020-12-01,emergency,,,,[Not Hispanic or Latino] -10,2020-12-01,emergency,,,[White], -10,2020-12-01,ambulatory,,,[Black or African American],[Not Hispanic or Latino] -10,2020-12-01,ambulatory,,male,[Black or African American], -10,2020-04-01,emergency,,male,,[Not Hispanic or Latino] -10,2019-12-01,,0,,[White], -10,2019-12-01,ambulatory,0,,[White], -10,2019-11-01,emergency,,,[White], -10,2019-11-01,emergency,,,[White],[Not Hispanic or Latino] -10,2019-09-01,ambulatory,,female,,[Hispanic or Latino] -10,2019-09-01,ambulatory,,female,[White],[Hispanic or Latino] -10,2019-08-01,emergency,,,,[Not Hispanic or Latino] -10,2019-08-01,emergency,,,[White],[Not Hispanic or Latino] -10,2019-01-01,,1,,,[Not Hispanic or Latino] -10,2019-01-01,,1,,[White],[Not Hispanic or Latino] -10,2019-01-01,ambulatory,1,,,[Not Hispanic or Latino] -10,2019-01-01,ambulatory,1,,[White],[Not Hispanic or Latino] -10,2018-10-01,emergency,,,[White],[Not Hispanic or Latino] +10,2021-02-01,ambulatory,,male,black or african american, +10,2021-01-01,emergency,,,,not hispanic or latino +10,2021-01-01,emergency,,,white, +10,2020-12-01,emergency,,,,not hispanic or latino +10,2020-12-01,emergency,,,white, +10,2020-12-01,ambulatory,,,black or african american,not hispanic or latino +10,2020-12-01,ambulatory,,male,black or african american, +10,2020-04-01,emergency,,male,,not hispanic or latino +10,2019-12-01,,0,,white, +10,2019-12-01,ambulatory,0,,white, +10,2019-11-01,emergency,,,white, +10,2019-11-01,emergency,,,white,not hispanic or latino +10,2019-09-01,ambulatory,,female,,hispanic or latino +10,2019-09-01,ambulatory,,female,white,hispanic or latino +10,2019-08-01,emergency,,,,not hispanic or latino +10,2019-08-01,emergency,,,white,not hispanic or latino +10,2019-01-01,,1,,,not hispanic or latino +10,2019-01-01,,1,,white,not hispanic or latino +10,2019-01-01,ambulatory,1,,,not hispanic or latino +10,2019-01-01,ambulatory,1,,white,not hispanic or latino +10,2018-10-01,emergency,,,white,not hispanic or latino 10,2018-10-01,emergency,,female,, -10,2018-10-01,emergency,,female,[White], -10,2018-08-01,,,female,,[Hispanic or Latino] +10,2018-10-01,emergency,,female,white, +10,2018-08-01,,,female,,hispanic or latino 10,2018-08-01,emergency,,female,, -10,2018-08-01,emergency,,female,,[Not Hispanic or Latino] -10,2018-08-01,ambulatory,,female,,[Hispanic or Latino] -10,2018-07-01,emergency,,,,[Not Hispanic or Latino] -10,2018-07-01,emergency,,,[White],[Not Hispanic or Latino] -10,2018-05-01,emergency,,,,[Not Hispanic or Latino] -10,2018-05-01,emergency,,,[White],[Not Hispanic or Latino] -10,2018-01-01,ambulatory,,female,,[Hispanic or Latino] +10,2018-08-01,emergency,,female,,not hispanic or latino +10,2018-08-01,ambulatory,,female,,hispanic or latino +10,2018-07-01,emergency,,,,not hispanic or latino +10,2018-07-01,emergency,,,white,not hispanic or latino +10,2018-05-01,emergency,,,,not hispanic or latino +10,2018-05-01,emergency,,,white,not hispanic or latino +10,2018-01-01,ambulatory,,female,,hispanic or latino 10,2017-11-01,emergency,,female,, -10,2017-07-01,ambulatory,,female,,[Hispanic or Latino] -10,2017-05-01,emergency,,male,,[Not Hispanic or Latino] -10,2017-05-01,emergency,,male,[White], -10,2017-04-01,emergency,,male,[White], -10,2017-04-01,emergency,,male,[White],[Not Hispanic or Latino] -10,2016-12-01,emergency,,,,[Not Hispanic or Latino] -10,2016-12-01,emergency,,,[White], +10,2017-07-01,ambulatory,,female,,hispanic or latino +10,2017-05-01,emergency,,male,,not hispanic or latino +10,2017-05-01,emergency,,male,white, +10,2017-04-01,emergency,,male,white, +10,2017-04-01,emergency,,male,white,not hispanic or latino +10,2016-12-01,emergency,,,,not hispanic or latino +10,2016-12-01,emergency,,,white, diff --git a/tests/regression/reference/core__count_encounter_month.parquet b/tests/regression/reference/core__count_encounter_month.parquet index 4d0e0a61..20d6dd09 100644 Binary files a/tests/regression/reference/core__count_encounter_month.parquet and b/tests/regression/reference/core__count_encounter_month.parquet differ diff --git a/tests/regression/reference/core__count_patient.csv b/tests/regression/reference/core__count_patient.csv index 7371015c..509277c0 100644 --- a/tests/regression/reference/core__count_patient.csv +++ b/tests/regression/reference/core__count_patient.csv @@ -1,327 +1,327 @@ cnt,age,gender,race_display,ethnicity_display 1144,,,, -1040,,,,[Not Hispanic or Latino] -1021,,,[White], -930,,,[White],[Not Hispanic or Latino] +1040,,,,not hispanic or latino +1021,,,white, +930,,,white,not hispanic or latino 578,,female,, 566,,male,, -527,,female,[White], -524,,female,,[Not Hispanic or Latino] -516,,male,,[Not Hispanic or Latino] -494,,male,[White], -479,,female,[White],[Not Hispanic or Latino] -451,,male,[White],[Not Hispanic or Latino] -104,,,,[Hispanic or Latino] -91,,,[White],[Hispanic or Latino] -65,,,[Black or African American], -54,,,[Black or African American],[Not Hispanic or Latino] -54,,female,,[Hispanic or Latino] -50,,male,,[Hispanic or Latino] -48,,female,[White],[Hispanic or Latino] -43,,male,[White],[Hispanic or Latino] -43,,male,[Black or African American], -36,,male,[Black or African American],[Not Hispanic or Latino] -22,,female,[Black or African American], +527,,female,white, +524,,female,,not hispanic or latino +516,,male,,not hispanic or latino +494,,male,white, +479,,female,white,not hispanic or latino +451,,male,white,not hispanic or latino +104,,,,hispanic or latino +91,,,white,hispanic or latino +65,,,black or african american, +54,,,black or african american,not hispanic or latino +54,,female,,hispanic or latino +50,,male,,hispanic or latino +48,,female,white,hispanic or latino +43,,male,white,hispanic or latino +43,,male,black or african american, +36,,male,black or african american,not hispanic or latino +22,,female,black or african american, 22,16,,, 21,74,,, -21,74,,,[Not Hispanic or Latino] -21,74,,[White], -21,74,,[White],[Not Hispanic or Latino] +21,74,,,not hispanic or latino +21,74,,white, +21,74,,white,not hispanic or latino 21,46,,, -21,46,,,[Not Hispanic or Latino] +21,46,,,not hispanic or latino 21,11,,, -20,,,[Asian], +20,,,asian, 20,22,,, -20,16,,,[Not Hispanic or Latino] +20,16,,,not hispanic or latino 20,2,,, -19,,,[Asian],[Not Hispanic or Latino] +19,,,asian,not hispanic or latino 19,48,,, -19,46,,[White], -19,46,,[White],[Not Hispanic or Latino] +19,46,,white, +19,46,,white,not hispanic or latino 19,40,,, -19,40,,,[Not Hispanic or Latino] +19,40,,,not hispanic or latino 19,21,,, 19,20,,, -19,20,,,[Not Hispanic or Latino] +19,20,,,not hispanic or latino 19,14,,, -19,2,,,[Not Hispanic or Latino] -18,,female,[Black or African American],[Not Hispanic or Latino] +19,2,,,not hispanic or latino +18,,female,black or african american,not hispanic or latino 18,62,,, -18,62,,,[Not Hispanic or Latino] -18,48,,,[Not Hispanic or Latino] +18,62,,,not hispanic or latino +18,48,,,not hispanic or latino 18,32,,, -18,22,,,[Not Hispanic or Latino] -18,16,,[White], -18,11,,,[Not Hispanic or Latino] -18,11,,[White], +18,22,,,not hispanic or latino +18,16,,white, +18,11,,,not hispanic or latino +18,11,,white, 18,10,,, -18,10,,[White], +18,10,,white, 17,65,,, -17,65,,,[Not Hispanic or Latino] +17,65,,,not hispanic or latino 17,63,,, -17,62,,[White], -17,62,,[White],[Not Hispanic or Latino] +17,62,,white, +17,62,,white,not hispanic or latino 17,53,,, -17,53,,[White], -17,32,,[White], -17,20,,[White], -17,20,,[White],[Not Hispanic or Latino] -17,14,,,[Not Hispanic or Latino] -17,14,,[White], -17,10,,,[Not Hispanic or Latino] -17,10,,[White],[Not Hispanic or Latino] +17,53,,white, +17,32,,white, +17,20,,white, +17,20,,white,not hispanic or latino +17,14,,,not hispanic or latino +17,14,,white, +17,10,,,not hispanic or latino +17,10,,white,not hispanic or latino 16,88,,, -16,88,,,[Not Hispanic or Latino] -16,88,,[White], -16,88,,[White],[Not Hispanic or Latino] +16,88,,,not hispanic or latino +16,88,,white, +16,88,,white,not hispanic or latino 16,75,,, 16,61,,, -16,61,,,[Not Hispanic or Latino] -16,53,,,[Not Hispanic or Latino] -16,53,,[White],[Not Hispanic or Latino] -16,48,,[White], +16,61,,,not hispanic or latino +16,53,,,not hispanic or latino +16,53,,white,not hispanic or latino +16,48,,white, 16,46,male,, -16,46,male,,[Not Hispanic or Latino] -16,40,,[White], -16,40,,[White],[Not Hispanic or Latino] +16,46,male,,not hispanic or latino +16,40,,white, +16,40,,white,not hispanic or latino 16,33,,, -16,32,,,[Not Hispanic or Latino] +16,32,,,not hispanic or latino 16,24,,, -16,24,,,[Not Hispanic or Latino] -16,24,,[White], -16,24,,[White],[Not Hispanic or Latino] -16,22,,[White], -16,16,,[White],[Not Hispanic or Latino] -16,11,,[White],[Not Hispanic or Latino] +16,24,,,not hispanic or latino +16,24,,white, +16,24,,white,not hispanic or latino +16,22,,white, +16,16,,white,not hispanic or latino +16,11,,white,not hispanic or latino 16,4,,, -15,,,[Unknown], -15,,,[Unknown],[Not Hispanic or Latino] -15,65,,[White], -15,65,,[White],[Not Hispanic or Latino] +15,,,unknown, +15,,,unknown,not hispanic or latino +15,65,,white, +15,65,,white,not hispanic or latino 15,58,,, 15,51,,, -15,48,,[White],[Not Hispanic or Latino] -15,46,male,[White], -15,46,male,[White],[Not Hispanic or Latino] +15,48,,white,not hispanic or latino +15,46,male,white, +15,46,male,white,not hispanic or latino 15,43,,, -15,33,,[White], -15,32,,[White],[Not Hispanic or Latino] +15,33,,white, +15,32,,white,not hispanic or latino 15,25,,, -15,25,,[White], -15,22,,[White],[Not Hispanic or Latino] -15,21,,[White], -15,14,,[White],[Not Hispanic or Latino] -15,4,,,[Not Hispanic or Latino] +15,25,,white, +15,22,,white,not hispanic or latino +15,21,,white, +15,14,,white,not hispanic or latino +15,4,,,not hispanic or latino 15,3,,, -15,2,,[White], -14,,,[Native Hawaiian or Other Pacific Islander], -14,75,,[White], +15,2,,white, +14,,,native hawaiian or other pacific islander, +14,75,,white, 14,75,female,, -14,75,female,[White], -14,63,,[White], -14,58,,,[Not Hispanic or Latino] -14,51,,[White], +14,75,female,white, +14,63,,white, +14,58,,,not hispanic or latino +14,51,,white, 14,37,,, -14,33,,,[Not Hispanic or Latino] +14,33,,,not hispanic or latino 14,27,,, -14,27,,[White], -14,25,,,[Not Hispanic or Latino] -14,25,,[White],[Not Hispanic or Latino] -14,21,,,[Not Hispanic or Latino] +14,27,,white, +14,25,,,not hispanic or latino +14,25,,white,not hispanic or latino +14,21,,,not hispanic or latino 14,5,,, -14,5,,[White], -14,4,,[White], -14,3,,[White], -14,2,,[White],[Not Hispanic or Latino] -13,,,[Native Hawaiian or Other Pacific Islander],[Not Hispanic or Latino] +14,5,,white, +14,4,,white, +14,3,,white, +14,2,,white,not hispanic or latino +13,,,native hawaiian or other pacific islander,not hispanic or latino 13,82,,, -13,82,,,[Not Hispanic or Latino] -13,82,,[White], -13,82,,[White],[Not Hispanic or Latino] -13,75,,,[Not Hispanic or Latino] -13,75,,[White],[Not Hispanic or Latino] -13,75,female,,[Not Hispanic or Latino] -13,75,female,[White],[Not Hispanic or Latino] +13,82,,,not hispanic or latino +13,82,,white, +13,82,,white,not hispanic or latino +13,75,,,not hispanic or latino +13,75,,white,not hispanic or latino +13,75,female,,not hispanic or latino +13,75,female,white,not hispanic or latino 13,67,,, -13,63,,,[Not Hispanic or Latino] +13,63,,,not hispanic or latino 13,59,,, -13,58,,[White], -13,51,,,[Not Hispanic or Latino] +13,58,,white, +13,51,,,not hispanic or latino 13,50,,, 13,41,,, -13,33,,[White],[Not Hispanic or Latino] +13,33,,white,not hispanic or latino 13,30,,, -13,27,,,[Not Hispanic or Latino] -13,27,,[White],[Not Hispanic or Latino] +13,27,,,not hispanic or latino +13,27,,white,not hispanic or latino 13,18,,, -13,18,,,[Not Hispanic or Latino] +13,18,,,not hispanic or latino 13,16,female,, -13,16,female,,[Not Hispanic or Latino] +13,16,female,,not hispanic or latino 13,15,,, 13,8,,, -13,4,,[White],[Not Hispanic or Latino] -13,3,,,[Not Hispanic or Latino] +13,4,,white,not hispanic or latino +13,3,,,not hispanic or latino 13,1,,, -12,,female,[Asian], +12,,female,asian, 12,82,male,, -12,82,male,,[Not Hispanic or Latino] -12,82,male,[White], -12,82,male,[White],[Not Hispanic or Latino] -12,67,,,[Not Hispanic or Latino] +12,82,male,,not hispanic or latino +12,82,male,white, +12,82,male,white,not hispanic or latino +12,67,,,not hispanic or latino 12,66,,, 12,64,,, -12,64,,,[Not Hispanic or Latino] -12,64,,[White], -12,64,,[White],[Not Hispanic or Latino] -12,63,,[White],[Not Hispanic or Latino] -12,61,,[White], -12,61,,[White],[Not Hispanic or Latino] -12,59,,,[Not Hispanic or Latino] -12,58,,[White],[Not Hispanic or Latino] +12,64,,,not hispanic or latino +12,64,,white, +12,64,,white,not hispanic or latino +12,63,,white,not hispanic or latino +12,61,,white, +12,61,,white,not hispanic or latino +12,59,,,not hispanic or latino +12,58,,white,not hispanic or latino 12,52,,, -12,52,,,[Not Hispanic or Latino] -12,52,,[White], -12,52,,[White],[Not Hispanic or Latino] -12,51,,[White],[Not Hispanic or Latino] -12,50,,,[Not Hispanic or Latino] -12,50,,[White], +12,52,,,not hispanic or latino +12,52,,white, +12,52,,white,not hispanic or latino +12,51,,white,not hispanic or latino +12,50,,,not hispanic or latino +12,50,,white, 12,44,,, -12,43,,,[Not Hispanic or Latino] -12,43,,[White], +12,43,,,not hispanic or latino +12,43,,white, 12,42,,, -12,42,,[White], -12,41,,[White], +12,42,,white, +12,41,,white, 12,38,,, -12,37,,[White], +12,37,,white, 12,36,,, 12,31,,, -12,31,,,[Not Hispanic or Latino] -12,30,,[White], +12,31,,,not hispanic or latino +12,30,,white, 12,19,,, -12,19,,,[Not Hispanic or Latino] +12,19,,,not hispanic or latino 12,12,,, 12,11,male,, 12,9,,, -12,9,,,[Not Hispanic or Latino] -12,8,,,[Not Hispanic or Latino] -12,8,,[White], +12,9,,,not hispanic or latino +12,8,,,not hispanic or latino +12,8,,white, 12,6,,, -12,6,,,[Not Hispanic or Latino] -12,5,,,[Not Hispanic or Latino] -12,5,,[White],[Not Hispanic or Latino] -12,3,,[White],[Not Hispanic or Latino] +12,6,,,not hispanic or latino +12,5,,,not hispanic or latino +12,5,,white,not hispanic or latino +12,3,,white,not hispanic or latino 12,2,male,, -12,2,male,,[Not Hispanic or Latino] -12,1,,[White], -11,,,[Black or African American],[Hispanic or Latino] -11,,female,[Asian],[Not Hispanic or Latino] +12,2,male,,not hispanic or latino +12,1,,white, +11,,,black or african american,hispanic or latino +11,,female,asian,not hispanic or latino 11,88,female,, -11,88,female,,[Not Hispanic or Latino] -11,88,female,[White], -11,88,female,[White],[Not Hispanic or Latino] +11,88,female,,not hispanic or latino +11,88,female,white, +11,88,female,white,not hispanic or latino 11,78,,, -11,78,,[White], +11,78,,white, 11,77,,, 11,74,male,, -11,74,male,,[Not Hispanic or Latino] -11,74,male,[White], -11,74,male,[White],[Not Hispanic or Latino] +11,74,male,,not hispanic or latino +11,74,male,white, +11,74,male,white,not hispanic or latino 11,68,,, -11,67,,[White], -11,66,,[White], +11,67,,white, +11,66,,white, 11,63,female,, 11,55,,, -11,50,,[White],[Not Hispanic or Latino] +11,50,,white,not hispanic or latino 11,48,male,, -11,48,male,,[Not Hispanic or Latino] +11,48,male,,not hispanic or latino 11,47,,, -11,47,,[White], +11,47,,white, 11,45,,, -11,45,,,[Not Hispanic or Latino] -11,45,,[White], -11,45,,[White],[Not Hispanic or Latino] -11,44,,,[Not Hispanic or Latino] -11,41,,,[Not Hispanic or Latino] +11,45,,,not hispanic or latino +11,45,,white, +11,45,,white,not hispanic or latino +11,44,,,not hispanic or latino +11,41,,,not hispanic or latino 11,40,female,, -11,40,female,,[Not Hispanic or Latino] -11,38,,[White], -11,37,,,[Not Hispanic or Latino] -11,36,,[White], +11,40,female,,not hispanic or latino +11,38,,white, +11,37,,,not hispanic or latino +11,36,,white, 11,35,,, -11,30,,,[Not Hispanic or Latino] +11,30,,,not hispanic or latino 11,29,,, -11,29,,,[Not Hispanic or Latino] +11,29,,,not hispanic or latino 11,22,male,, -11,22,male,,[Not Hispanic or Latino] +11,22,male,,not hispanic or latino 11,20,female,, -11,20,female,,[Not Hispanic or Latino] -11,18,,[White], -11,18,,[White],[Not Hispanic or Latino] -11,16,female,[White], -11,16,female,[White],[Not Hispanic or Latino] -11,15,,,[Not Hispanic or Latino] -11,15,,[White], +11,20,female,,not hispanic or latino +11,18,,white, +11,18,,white,not hispanic or latino +11,16,female,white, +11,16,female,white,not hispanic or latino +11,15,,,not hispanic or latino +11,15,,white, 11,13,,, -11,12,,,[Not Hispanic or Latino] -11,12,,[White], -11,12,,[White],[Not Hispanic or Latino] -11,11,male,,[Not Hispanic or Latino] -11,8,,[White],[Not Hispanic or Latino] +11,12,,,not hispanic or latino +11,12,,white, +11,12,,white,not hispanic or latino +11,11,male,,not hispanic or latino +11,8,,white,not hispanic or latino 11,7,,, -11,7,,,[Not Hispanic or Latino] -11,6,,[White], -11,6,,[White],[Not Hispanic or Latino] -10,,male,[Unknown], -10,,male,[Unknown],[Not Hispanic or Latino] -10,78,,,[Not Hispanic or Latino] -10,78,,[White],[Not Hispanic or Latino] +11,7,,,not hispanic or latino +11,6,,white, +11,6,,white,not hispanic or latino +10,,male,unknown, +10,,male,unknown,not hispanic or latino +10,78,,,not hispanic or latino +10,78,,white,not hispanic or latino 10,74,female,, -10,74,female,,[Not Hispanic or Latino] -10,74,female,[White], -10,74,female,[White],[Not Hispanic or Latino] +10,74,female,,not hispanic or latino +10,74,female,white, +10,74,female,white,not hispanic or latino 10,69,,, -10,69,,,[Not Hispanic or Latino] -10,69,,[White], -10,69,,[White],[Not Hispanic or Latino] -10,68,,,[Not Hispanic or Latino] -10,68,,[White], -10,67,,[White],[Not Hispanic or Latino] -10,66,,,[Not Hispanic or Latino] +10,69,,,not hispanic or latino +10,69,,white, +10,69,,white,not hispanic or latino +10,68,,,not hispanic or latino +10,68,,white, +10,67,,white,not hispanic or latino +10,66,,,not hispanic or latino 10,65,male,, -10,65,male,,[Not Hispanic or Latino] +10,65,male,,not hispanic or latino 10,57,,, -10,57,,[White], +10,57,,white, 10,56,,, -10,55,,,[Not Hispanic or Latino] +10,55,,,not hispanic or latino 10,51,female,, -10,43,,[White],[Not Hispanic or Latino] -10,42,,,[Not Hispanic or Latino] -10,42,,[White],[Not Hispanic or Latino] -10,41,,[White],[Not Hispanic or Latino] -10,40,female,[White], -10,40,female,[White],[Not Hispanic or Latino] +10,43,,white,not hispanic or latino +10,42,,,not hispanic or latino +10,42,,white,not hispanic or latino +10,41,,white,not hispanic or latino +10,40,female,white, +10,40,female,white,not hispanic or latino 10,39,,, -10,36,,,[Not Hispanic or Latino] -10,35,,[White], +10,36,,,not hispanic or latino +10,35,,white, 10,33,female,, -10,30,,[White],[Not Hispanic or Latino] -10,29,,[White], -10,29,,[White],[Not Hispanic or Latino] +10,30,,white,not hispanic or latino +10,29,,white, +10,29,,white,not hispanic or latino 10,26,,, -10,26,,[White], -10,21,,[White],[Not Hispanic or Latino] +10,26,,white, +10,21,,white,not hispanic or latino 10,21,female,, -10,20,female,[White], -10,20,female,[White],[Not Hispanic or Latino] +10,20,female,white, +10,20,female,white,not hispanic or latino 10,17,,, -10,17,,,[Not Hispanic or Latino] -10,15,,[White],[Not Hispanic or Latino] +10,17,,,not hispanic or latino +10,15,,white,not hispanic or latino 10,14,male,, -10,11,male,[White], +10,11,male,white, 10,10,male,, -10,10,male,,[Not Hispanic or Latino] -10,10,male,[White], -10,10,male,[White],[Not Hispanic or Latino] -10,7,,[White], -10,7,,[White],[Not Hispanic or Latino] -10,1,,,[Not Hispanic or Latino] +10,10,male,,not hispanic or latino +10,10,male,white, +10,10,male,white,not hispanic or latino +10,7,,white, +10,7,,white,not hispanic or latino +10,1,,,not hispanic or latino diff --git a/tests/regression/reference/core__count_patient.parquet b/tests/regression/reference/core__count_patient.parquet index fcfbe4f1..36229c8c 100644 Binary files a/tests/regression/reference/core__count_patient.parquet and b/tests/regression/reference/core__count_patient.parquet differ diff --git a/tests/test_cli.py b/tests/test_cli.py index e613566d..2b3c55d9 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -153,7 +153,7 @@ def test_clean( "args,cursor_calls,pandas_cursor_calls", [ (["build", "-t", "vocab", "--database", "test"], 344, 0), - (["build", "-t", "core", "--database", "test"], 51, 0), + (["build", "-t", "core", "--database", "test"], 52, 0), (["export", "-t", "core", "--database", "test"], 1, 10), ( [ @@ -183,7 +183,7 @@ def test_clean( ), ( ["build", "-t", "core", "-s", "tests/test_data/", "--database", "test"], - 51, + 52, 0, ), ( diff --git a/tests/test_templates.py b/tests/test_templates.py index 748bbfa5..e7dac370 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -213,15 +213,27 @@ def test_core_medication_query(medication_datasources, contains, omits): assert item not in query -def test_count_query(): - expected = """ +@pytest.mark.parametrize( + "expected,filter_resource,where_clauses,fhir_resource,min_subject", + [ + ( + """ CREATE TABLE test_table AS ( - WITH powerset AS ( + WITH + filtered_table AS ( SELECT - count(DISTINCT subject_ref) AS cnt_subject, + subject_ref, "age", "sex" FROM test_source + ), + + powerset AS ( + SELECT + count(DISTINCT subject_ref) AS cnt_subject, + "age", + "sex" + FROM filtered_table GROUP BY cube( "age", @@ -236,29 +248,64 @@ def test_count_query(): FROM powerset WHERE cnt_subject >= 10 -);""" - expected2 = """ table_name: str, - source_table: str, - table_cols: list, - min_subject: int = 10, - where_clauses: Optional[list] = None, - fhir_resource: Optional[str] = None,""" - query = get_count_query("test_table", "test_source", ["age", "sex"]) - with open("output.sql", "w") as f: - f.write(query) - assert query == expected - query = get_count_query("test_table", "test_source", ["age", "sex"], min_subject=5) - assert "cnt_subject >= 5" in query +);""", + None, + None, + None, + None, + ), + ( + """ +CREATE TABLE test_table AS ( + WITH + powerset AS ( + SELECT + count(DISTINCT subject_ref) AS cnt_subject, + "age", + "sex" + FROM test_source + + GROUP BY + cube( + "age", + "sex" + ) + ) - expected = """ + SELECT + cnt_subject AS cnt, + "age", + "sex" + FROM powerset + WHERE + cnt_subject >= 5 +);""", + False, + None, + None, + 5, + ), + ( + """ CREATE TABLE test_table AS ( - WITH powerset AS ( + WITH + filtered_table AS ( + SELECT + subject_ref, + encounter_ref, + "age", + "sex" + FROM test_source + WHERE status = 'finished' + ), + + powerset AS ( SELECT count(DISTINCT subject_ref) AS cnt_subject, count(DISTINCT encounter_ref) AS cnt_encounter, "age", "sex" - FROM test_source + FROM filtered_table GROUP BY cube( "age", @@ -275,14 +322,24 @@ def test_count_query(): age > 10 AND sex == 'F' -);""" - query = get_count_query( - "test_table", - "test_source", - ["age", "sex"], - where_clauses=["age > 10", "sex == 'F'"], - fhir_resource="encounter", - ) +);""", + True, + ["age > 10", "sex == 'F'"], + "encounter", + None, + ), + ], +) +def test_count_query( + expected, filter_resource, where_clauses, fhir_resource, min_subject +): + kwargs = {} + for kwarg in ["filter_resource", "where_clauses", "fhir_resource", "min_subject"]: + if eval(kwarg) is not None: + kwargs[kwarg] = eval(kwarg) + query = get_count_query("test_table", "test_source", ["age", "sex"], **kwargs) + with open("output.sql", "w") as f: + f.write(query) assert query == expected @@ -389,8 +446,8 @@ def test_extension_denormalize_creation(): SELECT id, system, - ARRAY_AGG(prefix_code) AS prefix_code, - ARRAY_AGG( + LOWER(prefix_code) AS prefix_code, + LOWER( prefix_display ) AS prefix_display, ROW_NUMBER() @@ -412,6 +469,38 @@ def test_extension_denormalize_creation(): ) query = get_extension_denormalize_query(config) assert query == expected + config = ExtensionConfig( + "source_table", + "source_id", + "target_table", + "prefix", + "fhir_extension", + ["omb", "text"], + is_array=True, + ) + query = get_extension_denormalize_query(config) + with open("output.sql", "w") as f: + f.write(query) + array_sql = """LOWER( + ARRAY_JOIN( + ARRAY_SORT( + ARRAY_AGG( + prefix_code + ) + ), '; ' + ) + ) + AS prefix_code, + LOWER( + ARRAY_JOIN( + ARRAY_SORT( + ARRAY_AGG( + prefix_display + ) + ), '; ' + ) + ) AS prefix_display,""" + assert array_sql in query def test_insert_into_query_creation():