From 45c899a2c4078353704cc4d78136685edb1f2122 Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Tue, 3 Dec 2024 14:56:47 -0500 Subject: [PATCH] core: add core__diagnosticreport table --- CONTRIBUTING.md | 10 + cumulus_library/.sqlfluff | 15 + cumulus_library/builders/counts.py | 26 + .../statistics_templates/counts_templates.py | 1 + .../studies/core/builder_diagnosticreport.py | 37 + .../core_templates/completion_utils.jinja | 1 + .../core_templates/diagnosticreport.sql.jinja | 102 + cumulus_library/studies/core/count_core.py | 16 + cumulus_library/studies/core/manifest.toml | 2 + .../builder_diagnosticreport.sql | 203 + .../core/reference_sql/builder_encounter.sql | 2 + .../studies/core/reference_sql/count_core.sql | 64 + docs/core-study-details.md | 67 + pyproject.toml | 2 - tests/core/test_core_diagreports.py | 171 + ...ore__count_diagnosticreport_month.cube.csv | 9478 +++++++++++++++++ ..._count_diagnosticreport_month.cube.parquet | Bin 0 -> 19856 bytes tests/test_cli.py | 4 +- .../etl__completion/completion.ndjson | 1 + ...ore__count_diagnosticreport_month.cube.csv | 20 + tests/testbed_utils.py | 14 +- 21 files changed, 10231 insertions(+), 5 deletions(-) create mode 100644 cumulus_library/studies/core/builder_diagnosticreport.py create mode 100644 cumulus_library/studies/core/core_templates/diagnosticreport.sql.jinja create mode 100644 cumulus_library/studies/core/reference_sql/builder_diagnosticreport.sql create mode 100644 tests/core/test_core_diagreports.py create mode 100644 tests/regression/reference/core__count_diagnosticreport_month.cube.csv create mode 100644 tests/regression/reference/core__count_diagnosticreport_month.cube.parquet create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_diagnosticreport_month.cube.csv diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 600a8bf..f29c11a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,6 +40,16 @@ Things to keep in mind: the `id` field, add a `condition_ref` field defined like: `concat('Condition/', id) AS condition_ref` +## DateTime fields + +In general: +- Expand a Date/DateTime/Instant field into four versions: + day/week/month/year, with appropriate suffixes (look for examples). +- If the field is a Date field, leave the `_day` suffix off the day version, + since the end result is not actually a modified value. +- Add start & end versions of Period fields, + since EHRs are truly wild out there and may fill only start or only end. + ## Rebuilding the reference SQL We keep some reference SQL in git, diff --git a/cumulus_library/.sqlfluff b/cumulus_library/.sqlfluff index ecd6dd4..a3bccbd 100644 --- a/cumulus_library/.sqlfluff +++ b/cumulus_library/.sqlfluff @@ -139,6 +139,21 @@ schema = 'reference': True, 'display': False, 'type': True } }, + 'diagnosticreport': { + 'effectivePeriod': { + 'start': True, 'end': True, + }, + 'encounter': { + 'reference': True, + }, + 'id': True, + 'result': { + 'reference': True, + }, + 'subject': { + 'reference': True, + }, + }, 'documentreference': { 'id': True, 'type': True, diff --git a/cumulus_library/builders/counts.py b/cumulus_library/builders/counts.py index 10d495e..74ffb17 100644 --- a/cumulus_library/builders/counts.py +++ b/cumulus_library/builders/counts.py @@ -142,6 +142,32 @@ def count_condition( filter_resource=True, ) + def count_diagnosticreport( + self, + table_name: str, + source_table: str, + table_cols: list, + where_clauses: list | None = None, + min_subject: int | None = None, + ) -> str: + """wrapper method for constructing diagnosticreport counts tables + + :param table_name: The name of the table to create. Must start with study prefix + :param source_table: The table to create counts data from + :param table_cols: The columns from the source table to add to the count table + :param where_clauses: An array of where clauses to use for filtering the data + :param min_subject: An integer setting the minimum bin size for inclusion + (default: 10) + """ + return self.get_count_query( + table_name, + source_table, + table_cols, + where_clauses=where_clauses, + min_subject=min_subject, + fhir_resource="diagnosticreport", + ) + def count_documentreference( self, table_name: str, diff --git a/cumulus_library/builders/statistics_templates/counts_templates.py b/cumulus_library/builders/statistics_templates/counts_templates.py index 55d10d8..f184dea 100644 --- a/cumulus_library/builders/statistics_templates/counts_templates.py +++ b/cumulus_library/builders/statistics_templates/counts_templates.py @@ -17,6 +17,7 @@ class CountableFhirResource(Enum): ALLERGYINTOLERANCE = "allergyintolerance" CONDITION = "condition" + DIAGNOSTICREPORT = "diagnosticreport" DOCUMENTREFERENCE = "documentreference" ENCOUNTER = "encounter" NONE = None diff --git a/cumulus_library/studies/core/builder_diagnosticreport.py b/cumulus_library/studies/core/builder_diagnosticreport.py new file mode 100644 index 0000000..2dcb3d0 --- /dev/null +++ b/cumulus_library/studies/core/builder_diagnosticreport.py @@ -0,0 +1,37 @@ +import cumulus_library +from cumulus_library.studies.core.core_templates import core_templates +from cumulus_library.template_sql import sql_utils + +expected_table_cols = { + "diagnosticreport": { + "id": [], + "status": [], + "subject": sql_utils.REFERENCE, + "encounter": sql_utils.REFERENCE, + "effectiveDateTime": [], + "effectivePeriod": ["start", "end"], + "issued": [], + "result": sql_utils.REFERENCE, + } +} + + +class CoreDiagnosticReportBuilder(cumulus_library.BaseTableBuilder): + display_text = "Creating DiagnosticReport tables..." + + def prepare_queries(self, *args, config: cumulus_library.StudyConfig, **kwargs): + code_sources = [ + sql_utils.CodeableConceptConfig( + source_table="diagnosticreport", + column_hierarchy=[("category", list)], + target_table="core__diagnosticreport_dn_category", + ), + sql_utils.CodeableConceptConfig( + source_table="diagnosticreport", + column_hierarchy=[("code", dict)], + target_table="core__diagnosticreport_dn_code", + ), + ] + self.queries += sql_utils.denormalize_complex_objects(config.db, code_sources) + validated_schema = sql_utils.validate_schema(config.db, expected_table_cols) + self.queries.append(core_templates.get_core_template("diagnosticreport", validated_schema)) diff --git a/cumulus_library/studies/core/core_templates/completion_utils.jinja b/cumulus_library/studies/core/core_templates/completion_utils.jinja index d7ce807..4046412 100644 --- a/cumulus_library/studies/core/core_templates/completion_utils.jinja +++ b/cumulus_library/studies/core/core_templates/completion_utils.jinja @@ -41,6 +41,7 @@ in this table. ( BOOL_OR(ec.table_name = 'allergyintolerance') AND BOOL_OR(ec.table_name = 'condition') + AND BOOL_OR(ec.table_name = 'diagnosticreport') AND BOOL_OR(ec.table_name = 'documentreference') AND BOOL_OR(ec.table_name = 'medicationrequest') AND BOOL_OR(ec.table_name = 'observation') diff --git a/cumulus_library/studies/core/core_templates/diagnosticreport.sql.jinja b/cumulus_library/studies/core/core_templates/diagnosticreport.sql.jinja new file mode 100644 index 0000000..cb95d47 --- /dev/null +++ b/cumulus_library/studies/core/core_templates/diagnosticreport.sql.jinja @@ -0,0 +1,102 @@ +{% import 'core_utils.jinja' as utils %} +{% import 'unnest_utils.jinja' as unnest_utils %} + +-- This table includes all fields of interest to the US Core DiagnosticReport profiles. +-- EXCEPT FOR: +-- * the 'presentedForm' field, which is an attachment array that is stripped out by the ETL. +-- * the `reporter` field, simply due to it not likely being interesting to consumers +-- and being an array field, which would require a lot of row duplication. +-- +-- US Core profiles for reference: +-- * https://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-lab.html +-- * https://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-note.html + +CREATE TABLE core__diagnosticreport AS +WITH temp_diagnosticreport AS ( + SELECT + {{- utils.basic_cols('diagnosticreport', 'd', ['id']) }}, + {{- + utils.nullable_cols( + 'diagnosticreport', + 'd', + [ + 'status', + ('subject', 'reference', 'subject_ref'), + ('encounter', 'reference', 'encounter_ref'), + ], + schema + ) + }}, + {{- + utils.truncate_date_cols( + 'diagnosticreport', + 'd', + [ + ('effectiveDateTime', 'day'), + ('effectiveDateTime', 'week'), + ('effectiveDateTime', 'month'), + ('effectiveDateTime', 'year'), + ('effectivePeriod', 'start', 'effectivePeriod_start_day', 'day'), + ('effectivePeriod', 'start', 'effectivePeriod_start_week', 'week'), + ('effectivePeriod', 'start', 'effectivePeriod_start_month', 'month'), + ('effectivePeriod', 'start', 'effectivePeriod_start_year', 'year'), + ('effectivePeriod', 'end', 'effectivePeriod_end_day', 'day'), + ('effectivePeriod', 'end', 'effectivePeriod_end_week', 'week'), + ('effectivePeriod', 'end', 'effectivePeriod_end_month', 'month'), + ('effectivePeriod', 'end', 'effectivePeriod_end_year', 'year'), + ('issued', 'day'), + ('issued', 'week'), + ('issued', 'month'), + ('issued', 'year'), + ], + schema + ) + }} + FROM diagnosticreport AS d +), + +temp_result AS ( + {{ unnest_utils.flatten('diagnosticreport', 'reference', parent_field='result') }} +) + +SELECT + td.id, + td.status, + + dn_category.code AS category_code, + dn_category.system AS category_system, + dn_category.display AS category_display, + + dn_code.code AS code_code, + dn_code.system AS code_system, + dn_code.display AS code_display, + + td.effectiveDateTime_day, + td.effectiveDateTime_week, + td.effectiveDateTime_month, + td.effectiveDateTime_year, + + td.effectivePeriod_start_day, + td.effectivePeriod_start_week, + td.effectivePeriod_start_month, + td.effectivePeriod_start_year, + + td.effectivePeriod_end_day, + td.effectivePeriod_end_week, + td.effectivePeriod_end_month, + td.effectivePeriod_end_year, + + td.issued_day, + td.issued_week, + td.issued_month, + td.issued_year, + + concat('DiagnosticReport/', td.id) AS diagnosticreport_ref, + td.subject_ref, + td.encounter_ref, + tr.reference AS result_ref + +FROM temp_diagnosticreport AS td +LEFT JOIN core__diagnosticreport_dn_code AS dn_code ON td.id = dn_code.id +LEFT JOIN core__diagnosticreport_dn_category AS dn_category ON td.id = dn_category.id +LEFT JOIN temp_result AS tr ON td.id = tr.id; diff --git a/cumulus_library/studies/core/count_core.py b/cumulus_library/studies/core/count_core.py index c39d6fb..e51ec39 100644 --- a/cumulus_library/studies/core/count_core.py +++ b/cumulus_library/studies/core/count_core.py @@ -27,6 +27,21 @@ def count_core_condition(self, duration: str = "month"): ] return self.count_condition(table_name, from_table, cols) + def count_core_diagnosticreport(self, duration: str = "month"): + table_name = self.get_table_name("count_diagnosticreport", duration=duration) + from_table = self.get_table_name("diagnosticreport") + cols = [ + ["category_display", "varchar", None], + ["code_display", "varchar", None], + # Issued is not the _preferred_ time to pull, since it is an administrative time, + # not a clinical one. But the clinical dates are annoyingly spread across three + # fields: effectiveDateTime, effectivePeriod.start, and effectivePeriod.end. + # So rather than do some fancy collation, just use issued. These core counts are + # just a rough idea of the data, not a polished final product. + [f"issued_{duration}", "date", None], + ] + return self.count_diagnosticreport(table_name, from_table, cols) + def count_core_documentreference(self, duration: str = "month"): table_name = self.get_table_name("count_documentreference", duration=duration) from_table = self.get_table_name("documentreference") @@ -119,6 +134,7 @@ def prepare_queries(self, *args, **kwargs): self.queries = [ self.count_core_allergyintolerance(duration="month"), self.count_core_condition(duration="month"), + self.count_core_diagnosticreport(duration="month"), self.count_core_documentreference(duration="month"), self.count_core_encounter(duration="month"), self.count_core_encounter_all_types(), diff --git a/cumulus_library/studies/core/manifest.toml b/cumulus_library/studies/core/manifest.toml index 3e478a7..8444889 100644 --- a/cumulus_library/studies/core/manifest.toml +++ b/cumulus_library/studies/core/manifest.toml @@ -5,6 +5,7 @@ file_names = [ "builder_prereq_tables.py", "builder_allergyintolerance.py", "builder_condition.py", + "builder_diagnosticreport.py", "builder_patient.py", "builder_encounter.py", "builder_documentreference.py", @@ -19,6 +20,7 @@ file_names = [ count_list = [ "core__count_allergyintolerance_month", "core__count_condition_month", + "core__count_diagnosticreport_month", "core__count_documentreference_month", "core__count_encounter_month", "core__count_encounter_all_types", diff --git a/cumulus_library/studies/core/reference_sql/builder_diagnosticreport.sql b/cumulus_library/studies/core/reference_sql/builder_diagnosticreport.sql new file mode 100644 index 0000000..d609bb6 --- /dev/null +++ b/cumulus_library/studies/core/reference_sql/builder_diagnosticreport.sql @@ -0,0 +1,203 @@ +-- noqa: disable=all +-- This sql was autogenerated as a reference example using the library +-- CLI. Its format is tied to the specific database it was run against, +-- and it may not be correct for all databases. Use the CLI's build +-- option to derive the best SQL for your dataset. + +-- ########################################################### + +CREATE TABLE core__diagnosticreport_dn_category AS ( + WITH + + flattened_rows AS ( + SELECT DISTINCT + t.id AS id, + ROW_NUMBER() OVER (PARTITION BY id) AS row, + r."category" + FROM + diagnosticreport AS t, + UNNEST(t."category") AS r ("category") + ), + + system_category_0 AS ( + SELECT DISTINCT + s.id AS id, + s.row, + u.coding.code, + u.coding.display, + u.coding.system, + u.coding.userSelected + FROM + flattened_rows AS s, + UNNEST(s.category.coding) AS u (coding) + ), --noqa: LT07 + + union_table AS ( + SELECT + id, + row, + system, + code, + display, + userSelected + FROM system_category_0 + + ) + SELECT + id, + row, + code, + system, + display, + userSelected + FROM union_table +); + + +-- ########################################################### + +CREATE TABLE core__diagnosticreport_dn_code AS ( + WITH + + system_code_0 AS ( + SELECT DISTINCT + s.id AS id, + 0 AS row, + u.coding.code, + u.coding.display, + u.coding.system, + u.coding.userSelected + FROM + diagnosticreport AS s, + UNNEST(s.code.coding) AS u (coding) + ), --noqa: LT07 + + union_table AS ( + SELECT + id, + row, + system, + code, + display, + userSelected + FROM system_code_0 + + ) + SELECT + id, + code, + system, + display, + userSelected + FROM union_table +); + + +-- ########################################################### + + + + +-- This table includes all fields of interest to the US Core DiagnosticReport profiles. +-- EXCEPT FOR: +-- * the 'presentedForm' field, which is an attachment array that is stripped out by the ETL. +-- * the `reporter` field, simply due to it not likely being interesting to consumers +-- and being an array field, which would require a lot of row duplication. +-- +-- US Core profiles for reference: +-- * https://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-lab.html +-- * https://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-note.html + +CREATE TABLE core__diagnosticreport AS +WITH temp_diagnosticreport AS ( + SELECT + d.id, + d.status, + d.subject.reference AS subject_ref, + d.encounter.reference AS encounter_ref, + date_trunc('day', date(from_iso8601_timestamp(d."effectiveDateTime"))) + AS effectiveDateTime_day, + date_trunc('week', date(from_iso8601_timestamp(d."effectiveDateTime"))) + AS effectiveDateTime_week, + date_trunc('month', date(from_iso8601_timestamp(d."effectiveDateTime"))) + AS effectiveDateTime_month, + date_trunc('year', date(from_iso8601_timestamp(d."effectiveDateTime"))) + AS effectiveDateTime_year, + date_trunc('day', date(from_iso8601_timestamp(d."effectivePeriod"."start"))) + AS effectivePeriod_start_day, + date_trunc('week', date(from_iso8601_timestamp(d."effectivePeriod"."start"))) + AS effectivePeriod_start_week, + date_trunc('month', date(from_iso8601_timestamp(d."effectivePeriod"."start"))) + AS effectivePeriod_start_month, + date_trunc('year', date(from_iso8601_timestamp(d."effectivePeriod"."start"))) + AS effectivePeriod_start_year, + date_trunc('day', date(from_iso8601_timestamp(d."effectivePeriod"."end"))) + AS effectivePeriod_end_day, + date_trunc('week', date(from_iso8601_timestamp(d."effectivePeriod"."end"))) + AS effectivePeriod_end_week, + date_trunc('month', date(from_iso8601_timestamp(d."effectivePeriod"."end"))) + AS effectivePeriod_end_month, + date_trunc('year', date(from_iso8601_timestamp(d."effectivePeriod"."end"))) + AS effectivePeriod_end_year, + date_trunc('day', date(from_iso8601_timestamp(d."issued"))) + AS issued_day, + date_trunc('week', date(from_iso8601_timestamp(d."issued"))) + AS issued_week, + date_trunc('month', date(from_iso8601_timestamp(d."issued"))) + AS issued_month, + date_trunc('year', date(from_iso8601_timestamp(d."issued"))) + AS issued_year + FROM diagnosticreport AS d +), + +temp_result AS ( + SELECT DISTINCT + t.id AS id, + ROW_NUMBER() OVER (PARTITION BY id) AS row, + r."reference" + FROM + diagnosticreport AS t, + UNNEST(t."result") AS parent (r) +) + +SELECT + td.id, + td.status, + + dn_category.code AS category_code, + dn_category.system AS category_system, + dn_category.display AS category_display, + + dn_code.code AS code_code, + dn_code.system AS code_system, + dn_code.display AS code_display, + + td.effectiveDateTime_day, + td.effectiveDateTime_week, + td.effectiveDateTime_month, + td.effectiveDateTime_year, + + td.effectivePeriod_start_day, + td.effectivePeriod_start_week, + td.effectivePeriod_start_month, + td.effectivePeriod_start_year, + + td.effectivePeriod_end_day, + td.effectivePeriod_end_week, + td.effectivePeriod_end_month, + td.effectivePeriod_end_year, + + td.issued_day, + td.issued_week, + td.issued_month, + td.issued_year, + + concat('DiagnosticReport/', td.id) AS diagnosticreport_ref, + td.subject_ref, + td.encounter_ref, + tr.reference AS result_ref + +FROM temp_diagnosticreport AS td +LEFT JOIN core__diagnosticreport_dn_code AS dn_code ON td.id = dn_code.id +LEFT JOIN core__diagnosticreport_dn_category AS dn_category ON td.id = dn_category.id +LEFT JOIN temp_result AS tr ON td.id = tr.id; diff --git a/cumulus_library/studies/core/reference_sql/builder_encounter.sql b/cumulus_library/studies/core/reference_sql/builder_encounter.sql index c2af3e8..2bb8707 100644 --- a/cumulus_library/studies/core/reference_sql/builder_encounter.sql +++ b/cumulus_library/studies/core/reference_sql/builder_encounter.sql @@ -584,6 +584,7 @@ temp_encounter_completion AS ( ( BOOL_OR(ec.table_name = 'allergyintolerance') AND BOOL_OR(ec.table_name = 'condition') + AND BOOL_OR(ec.table_name = 'diagnosticreport') AND BOOL_OR(ec.table_name = 'documentreference') AND BOOL_OR(ec.table_name = 'medicationrequest') AND BOOL_OR(ec.table_name = 'observation') @@ -735,6 +736,7 @@ temp_encounter_completion AS ( ( BOOL_OR(ec.table_name = 'allergyintolerance') AND BOOL_OR(ec.table_name = 'condition') + AND BOOL_OR(ec.table_name = 'diagnosticreport') AND BOOL_OR(ec.table_name = 'documentreference') AND BOOL_OR(ec.table_name = 'medicationrequest') AND BOOL_OR(ec.table_name = 'observation') diff --git a/cumulus_library/studies/core/reference_sql/count_core.sql b/cumulus_library/studies/core/reference_sql/count_core.sql index 87cda6d..fd65ce6 100644 --- a/cumulus_library/studies/core/reference_sql/count_core.sql +++ b/cumulus_library/studies/core/reference_sql/count_core.sql @@ -166,6 +166,70 @@ CREATE TABLE core__count_condition_month AS ( -- ########################################################### +CREATE TABLE core__count_diagnosticreport_month AS ( + WITH + filtered_table AS ( + SELECT + s.subject_ref, + --noqa: disable=RF03, AL02 + s."category_display", + s."code_display", + s."issued_month" + --noqa: enable=RF03, AL02 + FROM core__diagnosticreport AS s + ), + + null_replacement AS ( + SELECT + subject_ref, + coalesce( + cast(category_display AS varchar), + 'cumulus__none' + ) AS category_display, + coalesce( + cast(code_display AS varchar), + 'cumulus__none' + ) AS code_display, + coalesce( + cast(issued_month AS varchar), + 'cumulus__none' + ) AS issued_month + FROM filtered_table + ), + + powerset AS ( + SELECT + count(DISTINCT subject_ref) AS cnt_subject_ref, + "category_display", + "code_display", + "issued_month", + concat_ws( + '-', + COALESCE("category_display",''), + COALESCE("code_display",''), + COALESCE("issued_month",'') + ) AS id + FROM null_replacement + GROUP BY + cube( + "category_display", + "code_display", + "issued_month" + ) + ) + + SELECT + p.cnt_subject_ref AS cnt, + p."category_display", + p."code_display", + p."issued_month" + FROM powerset AS p + WHERE + cnt_subject_ref >= 10 +); + +-- ########################################################### + CREATE TABLE core__count_documentreference_month AS ( WITH filtered_table AS ( diff --git a/docs/core-study-details.md b/docs/core-study-details.md index 1587394..5364c0c 100644 --- a/docs/core-study-details.md +++ b/docs/core-study-details.md @@ -123,6 +123,16 @@ vital signs) instead. |code_display |varchar|Condition code| +### core__count_diagnosticreport_month + +| Column | Type | Description | +|------------------|-------|---------------------------------| +| cnt |bigint | Count | +| category_display |varchar| Service category | +| code_display |varchar| Code for this diagnostic report | +| issued_month |varchar| When this version was made | + + ### core__count_documentreference_month | Column | Type |Description| @@ -341,6 +351,63 @@ vital signs) instead. |userselected|boolean| | +### core__diagnosticreport + +| Column | Type |Description| +|---------------------------|-------|-----------| +|id |varchar| | +|status |varchar| | +|category_code |varchar| | +|category_system |varchar| | +|category_display |varchar| | +|code_code |varchar| | +|code_system |varchar| | +|code_display |varchar| | +|effectivedatetime_day |date | | +|effectivedatetime_week |date | | +|effectivedatetime_month |date | | +|effectivedatetime_year |date | | +|effectiveperiod_start_day |date | | +|effectiveperiod_start_week |date | | +|effectiveperiod_start_month|date | | +|effectiveperiod_start_year |date | | +|effectiveperiod_end_day |date | | +|effectiveperiod_end_week |date | | +|effectiveperiod_end_month |date | | +|effectiveperiod_end_year |date | | +|issued_day |date | | +|issued_week |date | | +|issued_month |date | | +|issued_year |date | | +|diagnosticreport_ref |varchar| | +|subject_ref |varchar| | +|encounter_ref |varchar| | +|result_ref |varchar| | + + +### core__diagnosticreport_dn_category + +| Column | Type |Description| +|------------|-------|-----------| +|id |varchar| | +|row |bigint | | +|code |varchar| | +|system |varchar| | +|display |varchar| | +|userselected|boolean| | + + +### core__diagnosticreport_dn_code + +| Column | Type |Description| +|------------|-------|-----------| +|id |varchar| | +|code |varchar| | +|system |varchar| | +|display |varchar| | +|userselected|boolean| | + + ### core__documentreference | Column | Type |Description| diff --git a/pyproject.toml b/pyproject.toml index 960522d..98baac7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,10 +2,8 @@ name = "cumulus-library" requires-python = ">= 3.11" dependencies = [ - "ctakesclient >= 1.3", "cumulus-fhir-support >= 1.2", "duckdb >= 1.1", - "fhirclient >= 4.1", "Jinja2 > 3", "pandas <3, >=2.1.3", "psmpy <1, >=0.3.13", diff --git a/tests/core/test_core_diagreports.py b/tests/core/test_core_diagreports.py new file mode 100644 index 0000000..c8b422e --- /dev/null +++ b/tests/core/test_core_diagreports.py @@ -0,0 +1,171 @@ +"""Tests for core__diagnosticreport""" + +import functools +import itertools +import json + +from tests import conftest, testbed_utils + + +def combine_dictionaries(*combos: list[dict]) -> list[dict]: + return [ + functools.reduce(lambda x, y: x | y, tuple_of_dicts) + for tuple_of_dicts in itertools.product(*combos) + ] + + +def dict_set_from_list(rows: list[dict]) -> set[tuple]: + return {tuple(sorted(row.items())) for row in rows} + + +def test_core_diag_report_many_cases(tmp_path): + """Verify that we handle multiply rows as needed when multiple options appear""" + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_diagnostic_report( + "Multiple-Rows", + status="final", + category=[ + {"coding": [{"code": "cat1", "system": "sys:cat", "display": "Cat One"}]}, + {"coding": [{"code": "cat2", "system": "sys:cat", "display": "Cat Two"}]}, + ], + code={ + "coding": [ + {"code": "code1", "system": "sys:code", "display": "Code One"}, + {"code": "code2", "system": "sys:code", "display": "Code Two"}, + ], + }, + subject={"reference": "Patient/P1"}, + encounter={"reference": "Encounter/E1"}, + effectiveDateTime="2019-12-11T10:10:10+05:00", + issued="2019-12-12T10:10:10+05:00", + result=[ + {"reference": "Observation/result1"}, + {"reference": "Observation/result2"}, + ], + ) + + con = testbed.build() + df = con.sql("SELECT * FROM core__diagnosticreport").df() + rows = json.loads(df.to_json(orient="records")) + + assert 8 == len(rows) + + combos = combine_dictionaries( + # Start with a list of size one - all the consistent elements across all rows + [ + { + "id": "Multiple-Rows", + "diagnosticreport_ref": "DiagnosticReport/Multiple-Rows", + "status": "final", + "subject_ref": "Patient/P1", + "encounter_ref": "Encounter/E1", + "effectiveDateTime_day": conftest.date_to_epoch(2019, 12, 11), + "effectiveDateTime_week": conftest.date_to_epoch(2019, 12, 9), + "effectiveDateTime_month": conftest.date_to_epoch(2019, 12, 1), + "effectiveDateTime_year": conftest.date_to_epoch(2019, 1, 1), + "effectivePeriod_start_day": None, + "effectivePeriod_start_week": None, + "effectivePeriod_start_month": None, + "effectivePeriod_start_year": None, + "effectivePeriod_end_day": None, + "effectivePeriod_end_week": None, + "effectivePeriod_end_month": None, + "effectivePeriod_end_year": None, + "issued_day": conftest.date_to_epoch(2019, 12, 12), + "issued_week": conftest.date_to_epoch(2019, 12, 9), + "issued_month": conftest.date_to_epoch(2019, 12, 1), + "issued_year": conftest.date_to_epoch(2019, 1, 1), + }, + ], + [ + {"category_code": "cat1", "category_system": "sys:cat", "category_display": "Cat One"}, + {"category_code": "cat2", "category_system": "sys:cat", "category_display": "Cat Two"}, + ], + [ + {"code_code": "code1", "code_system": "sys:code", "code_display": "Code One"}, + {"code_code": "code2", "code_system": "sys:code", "code_display": "Code Two"}, + ], + [ + {"result_ref": "Observation/result1"}, + {"result_ref": "Observation/result2"}, + ], + ) + assert 8 == len(combos) # sanity check our product math + + assert dict_set_from_list(rows) == dict_set_from_list(combos) + + +def test_core_diag_report_minimal(tmp_path): + """Verify that no actual content works fine""" + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_diagnostic_report("Nothing") + + con = testbed.build() + df = con.sql("SELECT * FROM core__diagnosticreport").df() + rows = json.loads(df.to_json(orient="records")) + + assert rows == [ + { + "id": "Nothing", + "diagnosticreport_ref": "DiagnosticReport/Nothing", + "status": None, + "category_code": None, + "category_system": None, + "category_display": None, + "code_code": None, + "code_system": None, + "code_display": None, + "subject_ref": None, + "encounter_ref": None, + "effectiveDateTime_day": None, + "effectiveDateTime_week": None, + "effectiveDateTime_month": None, + "effectiveDateTime_year": None, + "effectivePeriod_start_day": None, + "effectivePeriod_start_week": None, + "effectivePeriod_start_month": None, + "effectivePeriod_start_year": None, + "effectivePeriod_end_day": None, + "effectivePeriod_end_week": None, + "effectivePeriod_end_month": None, + "effectivePeriod_end_year": None, + "issued_day": None, + "issued_week": None, + "issued_month": None, + "issued_year": None, + "result_ref": None, + } + ] + + +def test_core_diag_report_period(tmp_path): + """Verify that we parse the period correctly""" + testbed = testbed_utils.LocalTestbed(tmp_path) + testbed.add_diagnostic_report( + "Period", + effectivePeriod={ + "start": "2023-10-06T09:30:00Z", + "end": "2023-10-06T10:30:00Z", + }, + ) + + con = testbed.build() + df = con.sql("SELECT * FROM core__diagnosticreport").df() + rows = json.loads(df.to_json(orient="records")) + + assert len(rows) == 1 + effective_fields = {k: v for k, v in rows[0].items() if "effective" in k} + assert effective_fields == { + "effectiveDateTime_day": None, + "effectiveDateTime_week": None, + "effectiveDateTime_month": None, + "effectiveDateTime_year": None, + "effectivePeriod_start_day": conftest.date_to_epoch(2023, 10, 6), + "effectivePeriod_start_week": conftest.date_to_epoch(2023, 10, 2), + "effectivePeriod_start_month": conftest.date_to_epoch(2023, 10, 1), + "effectivePeriod_start_year": conftest.date_to_epoch(2023, 1, 1), + "effectivePeriod_end_day": conftest.date_to_epoch(2023, 10, 6), + "effectivePeriod_end_week": conftest.date_to_epoch(2023, 10, 2), + "effectivePeriod_end_month": conftest.date_to_epoch(2023, 10, 1), + "effectivePeriod_end_year": conftest.date_to_epoch(2023, 1, 1), + } diff --git a/tests/regression/reference/core__count_diagnosticreport_month.cube.csv b/tests/regression/reference/core__count_diagnosticreport_month.cube.csv new file mode 100644 index 0000000..e5858eb --- /dev/null +++ b/tests/regression/reference/core__count_diagnosticreport_month.cube.csv @@ -0,0 +1,9478 @@ +"cnt","category_display","code_display","issued_month" +1144,,, +1144,,"History and physical note", +1144,,"Evaluation + Plan note", +1144,,"CBC panel - Blood by Automated count", +1144,"Laboratory",, +1144,"Laboratory","CBC panel - Blood by Automated count", +1144,"History and physical note",, +1144,"History and physical note","History and physical note", +1144,"History and physical note","Evaluation + Plan note", +1144,"Evaluation + Plan note",, +1144,"Evaluation + Plan note","History and physical note", +1144,"Evaluation + Plan note","Evaluation + Plan note", +977,"cumulus__none",, +931,,"Generalized anxiety disorder 7 item (GAD-7)", +931,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)", +858,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]", +858,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]", +756,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]", +756,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]", +715,,"Drug Abuse Screening Test-10 [DAST-10]", +715,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]", +707,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]", +707,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]", +692,,"Lipid panel with direct LDL - Serum or Plasma", +692,"Laboratory","Lipid panel with direct LDL - Serum or Plasma", +465,,"Basic metabolic panel - Blood", +465,"Laboratory","Basic metabolic panel - Blood", +408,,,"2021-04-01" +407,,"History and physical note","2021-04-01" +407,,"Evaluation + Plan note","2021-04-01" +407,"History and physical note",,"2021-04-01" +407,"History and physical note","History and physical note","2021-04-01" +407,"History and physical note","Evaluation + Plan note","2021-04-01" +407,"Evaluation + Plan note",,"2021-04-01" +407,"Evaluation + Plan note","History and physical note","2021-04-01" +407,"Evaluation + Plan note","Evaluation + Plan note","2021-04-01" +391,,,"2021-03-01" +391,,"History and physical note","2021-03-01" +391,,"Evaluation + Plan note","2021-03-01" +391,"History and physical note",,"2021-03-01" +391,"History and physical note","History and physical note","2021-03-01" +391,"History and physical note","Evaluation + Plan note","2021-03-01" +391,"Evaluation + Plan note",,"2021-03-01" +391,"Evaluation + Plan note","History and physical note","2021-03-01" +391,"Evaluation + Plan note","Evaluation + Plan note","2021-03-01" +365,,,"2021-05-01" +363,,"History and physical note","2021-05-01" +363,,"Evaluation + Plan note","2021-05-01" +363,"History and physical note",,"2021-05-01" +363,"History and physical note","History and physical note","2021-05-01" +363,"History and physical note","Evaluation + Plan note","2021-05-01" +363,"Evaluation + Plan note",,"2021-05-01" +363,"Evaluation + Plan note","History and physical note","2021-05-01" +363,"Evaluation + Plan note","Evaluation + Plan note","2021-05-01" +321,,,"2014-02-01" +321,,"History and physical note","2014-02-01" +321,,"Evaluation + Plan note","2014-02-01" +321,"History and physical note",,"2014-02-01" +321,"History and physical note","History and physical note","2014-02-01" +321,"History and physical note","Evaluation + Plan note","2014-02-01" +321,"Evaluation + Plan note",,"2014-02-01" +321,"Evaluation + Plan note","History and physical note","2014-02-01" +321,"Evaluation + Plan note","Evaluation + Plan note","2014-02-01" +319,,"PHQ-9 quick depression assessment panel [Reported.PHQ]", +319,"cumulus__none","PHQ-9 quick depression assessment panel [Reported.PHQ]", +307,,,"2021-06-01" +307,,"History and physical note","2021-06-01" +307,,"Evaluation + Plan note","2021-06-01" +307,"History and physical note",,"2021-06-01" +307,"History and physical note","History and physical note","2021-06-01" +307,"History and physical note","Evaluation + Plan note","2021-06-01" +307,"Evaluation + Plan note",,"2021-06-01" +307,"Evaluation + Plan note","History and physical note","2021-06-01" +307,"Evaluation + Plan note","Evaluation + Plan note","2021-06-01" +299,,,"2014-03-01" +299,,"History and physical note","2014-03-01" +299,,"Evaluation + Plan note","2014-03-01" +299,"History and physical note",,"2014-03-01" +299,"History and physical note","History and physical note","2014-03-01" +299,"History and physical note","Evaluation + Plan note","2014-03-01" +299,"Evaluation + Plan note",,"2014-03-01" +299,"Evaluation + Plan note","History and physical note","2014-03-01" +299,"Evaluation + Plan note","Evaluation + Plan note","2014-03-01" +291,,,"2021-08-01" +291,,"History and physical note","2021-08-01" +291,,"Evaluation + Plan note","2021-08-01" +291,"History and physical note",,"2021-08-01" +291,"History and physical note","History and physical note","2021-08-01" +291,"History and physical note","Evaluation + Plan note","2021-08-01" +291,"Evaluation + Plan note",,"2021-08-01" +291,"Evaluation + Plan note","History and physical note","2021-08-01" +291,"Evaluation + Plan note","Evaluation + Plan note","2021-08-01" +286,,,"2021-01-01" +285,,"History and physical note","2021-01-01" +285,,"Evaluation + Plan note","2021-01-01" +285,"History and physical note",,"2021-01-01" +285,"History and physical note","History and physical note","2021-01-01" +285,"History and physical note","Evaluation + Plan note","2021-01-01" +285,"Evaluation + Plan note",,"2021-01-01" +285,"Evaluation + Plan note","History and physical note","2021-01-01" +285,"Evaluation + Plan note","Evaluation + Plan note","2021-01-01" +284,,,"2021-02-01" +283,,"History and physical note","2021-02-01" +283,,"Evaluation + Plan note","2021-02-01" +283,"History and physical note",,"2021-02-01" +283,"History and physical note","History and physical note","2021-02-01" +283,"History and physical note","Evaluation + Plan note","2021-02-01" +283,"Evaluation + Plan note",,"2021-02-01" +283,"Evaluation + Plan note","History and physical note","2021-02-01" +283,"Evaluation + Plan note","Evaluation + Plan note","2021-02-01" +275,,,"2014-05-01" +275,,"History and physical note","2014-05-01" +275,,"Evaluation + Plan note","2014-05-01" +275,"History and physical note",,"2014-05-01" +275,"History and physical note","History and physical note","2014-05-01" +275,"History and physical note","Evaluation + Plan note","2014-05-01" +275,"Evaluation + Plan note",,"2014-05-01" +275,"Evaluation + Plan note","History and physical note","2014-05-01" +275,"Evaluation + Plan note","Evaluation + Plan note","2014-05-01" +270,,,"2021-07-01" +270,,"History and physical note","2021-07-01" +270,,"Evaluation + Plan note","2021-07-01" +270,"History and physical note",,"2021-07-01" +270,"History and physical note","History and physical note","2021-07-01" +270,"History and physical note","Evaluation + Plan note","2021-07-01" +270,"Evaluation + Plan note",,"2021-07-01" +270,"Evaluation + Plan note","History and physical note","2021-07-01" +270,"Evaluation + Plan note","Evaluation + Plan note","2021-07-01" +269,,,"2021-09-01" +269,,"History and physical note","2021-09-01" +269,,"Evaluation + Plan note","2021-09-01" +269,"History and physical note",,"2021-09-01" +269,"History and physical note","History and physical note","2021-09-01" +269,"History and physical note","Evaluation + Plan note","2021-09-01" +269,"Evaluation + Plan note",,"2021-09-01" +269,"Evaluation + Plan note","History and physical note","2021-09-01" +269,"Evaluation + Plan note","Evaluation + Plan note","2021-09-01" +266,,,"2021-10-01" +266,,"History and physical note","2021-10-01" +266,,"Evaluation + Plan note","2021-10-01" +266,"History and physical note",,"2021-10-01" +266,"History and physical note","History and physical note","2021-10-01" +266,"History and physical note","Evaluation + Plan note","2021-10-01" +266,"Evaluation + Plan note",,"2021-10-01" +266,"Evaluation + Plan note","History and physical note","2021-10-01" +266,"Evaluation + Plan note","Evaluation + Plan note","2021-10-01" +258,,,"2021-11-01" +258,,"History and physical note","2021-11-01" +258,,"Evaluation + Plan note","2021-11-01" +258,"History and physical note",,"2021-11-01" +258,"History and physical note","History and physical note","2021-11-01" +258,"History and physical note","Evaluation + Plan note","2021-11-01" +258,"Evaluation + Plan note",,"2021-11-01" +258,"Evaluation + Plan note","History and physical note","2021-11-01" +258,"Evaluation + Plan note","Evaluation + Plan note","2021-11-01" +255,,,"2014-07-01" +255,,"History and physical note","2014-07-01" +255,,"Evaluation + Plan note","2014-07-01" +255,"History and physical note",,"2014-07-01" +255,"History and physical note","History and physical note","2014-07-01" +255,"History and physical note","Evaluation + Plan note","2014-07-01" +255,"Evaluation + Plan note",,"2014-07-01" +255,"Evaluation + Plan note","History and physical note","2014-07-01" +255,"Evaluation + Plan note","Evaluation + Plan note","2014-07-01" +252,,,"2022-04-01" +251,,"History and physical note","2022-04-01" +251,,"Evaluation + Plan note","2022-04-01" +251,"History and physical note",,"2022-04-01" +251,"History and physical note","History and physical note","2022-04-01" +251,"History and physical note","Evaluation + Plan note","2022-04-01" +251,"Evaluation + Plan note",,"2022-04-01" +251,"Evaluation + Plan note","History and physical note","2022-04-01" +251,"Evaluation + Plan note","Evaluation + Plan note","2022-04-01" +246,,,"2023-01-01" +246,,"History and physical note","2023-01-01" +246,,"Evaluation + Plan note","2023-01-01" +246,"History and physical note",,"2023-01-01" +246,"History and physical note","History and physical note","2023-01-01" +246,"History and physical note","Evaluation + Plan note","2023-01-01" +246,"Evaluation + Plan note",,"2023-01-01" +246,"Evaluation + Plan note","History and physical note","2023-01-01" +246,"Evaluation + Plan note","Evaluation + Plan note","2023-01-01" +245,,,"2020-03-01" +245,,"History and physical note","2020-03-01" +245,,"Evaluation + Plan note","2020-03-01" +245,"History and physical note",,"2020-03-01" +245,"History and physical note","History and physical note","2020-03-01" +245,"History and physical note","Evaluation + Plan note","2020-03-01" +245,"Evaluation + Plan note",,"2020-03-01" +245,"Evaluation + Plan note","History and physical note","2020-03-01" +245,"Evaluation + Plan note","Evaluation + Plan note","2020-03-01" +242,,,"2020-07-01" +242,,"History and physical note","2020-07-01" +242,,"Evaluation + Plan note","2020-07-01" +242,"History and physical note",,"2020-07-01" +242,"History and physical note","History and physical note","2020-07-01" +242,"History and physical note","Evaluation + Plan note","2020-07-01" +242,"Evaluation + Plan note",,"2020-07-01" +242,"Evaluation + Plan note","History and physical note","2020-07-01" +242,"Evaluation + Plan note","Evaluation + Plan note","2020-07-01" +241,,,"2017-03-01" +240,,,"2022-05-01" +240,,"History and physical note","2017-03-01" +240,,"Evaluation + Plan note","2017-03-01" +240,"History and physical note",,"2017-03-01" +240,"History and physical note","History and physical note","2017-03-01" +240,"History and physical note","Evaluation + Plan note","2017-03-01" +240,"Evaluation + Plan note",,"2017-03-01" +240,"Evaluation + Plan note","History and physical note","2017-03-01" +240,"Evaluation + Plan note","Evaluation + Plan note","2017-03-01" +239,,,"2022-07-01" +239,,,"2014-12-01" +239,,"History and physical note","2022-07-01" +239,,"History and physical note","2022-05-01" +239,,"History and physical note","2014-12-01" +239,,"Evaluation + Plan note","2022-07-01" +239,,"Evaluation + Plan note","2022-05-01" +239,,"Evaluation + Plan note","2014-12-01" +239,"History and physical note",,"2022-07-01" +239,"History and physical note",,"2022-05-01" +239,"History and physical note",,"2014-12-01" +239,"History and physical note","History and physical note","2022-07-01" +239,"History and physical note","History and physical note","2022-05-01" +239,"History and physical note","History and physical note","2014-12-01" +239,"History and physical note","Evaluation + Plan note","2022-07-01" +239,"History and physical note","Evaluation + Plan note","2022-05-01" +239,"History and physical note","Evaluation + Plan note","2014-12-01" +239,"Evaluation + Plan note",,"2022-07-01" +239,"Evaluation + Plan note",,"2022-05-01" +239,"Evaluation + Plan note",,"2014-12-01" +239,"Evaluation + Plan note","History and physical note","2022-07-01" +239,"Evaluation + Plan note","History and physical note","2022-05-01" +239,"Evaluation + Plan note","History and physical note","2014-12-01" +239,"Evaluation + Plan note","Evaluation + Plan note","2022-07-01" +239,"Evaluation + Plan note","Evaluation + Plan note","2022-05-01" +239,"Evaluation + Plan note","Evaluation + Plan note","2014-12-01" +238,,,"2016-07-01" +238,,"History and physical note","2016-07-01" +238,,"Evaluation + Plan note","2016-07-01" +238,"History and physical note",,"2016-07-01" +238,"History and physical note","History and physical note","2016-07-01" +238,"History and physical note","Evaluation + Plan note","2016-07-01" +238,"Evaluation + Plan note",,"2016-07-01" +238,"Evaluation + Plan note","History and physical note","2016-07-01" +238,"Evaluation + Plan note","Evaluation + Plan note","2016-07-01" +237,,,"2021-12-01" +237,,"History and physical note","2021-12-01" +237,,"Evaluation + Plan note","2021-12-01" +237,"History and physical note",,"2021-12-01" +237,"History and physical note","History and physical note","2021-12-01" +237,"History and physical note","Evaluation + Plan note","2021-12-01" +237,"Evaluation + Plan note",,"2021-12-01" +237,"Evaluation + Plan note","History and physical note","2021-12-01" +237,"Evaluation + Plan note","Evaluation + Plan note","2021-12-01" +236,,,"2019-03-01" +236,,"History and physical note","2019-03-01" +236,,"Evaluation + Plan note","2019-03-01" +236,"History and physical note",,"2019-03-01" +236,"History and physical note","History and physical note","2019-03-01" +236,"History and physical note","Evaluation + Plan note","2019-03-01" +236,"Evaluation + Plan note",,"2019-03-01" +236,"Evaluation + Plan note","History and physical note","2019-03-01" +236,"Evaluation + Plan note","Evaluation + Plan note","2019-03-01" +234,,,"2023-02-01" +234,,,"2019-06-01" +234,,,"2018-03-01" +234,,"History and physical note","2023-02-01" +234,,"History and physical note","2019-06-01" +234,,"History and physical note","2018-03-01" +234,,"Evaluation + Plan note","2023-02-01" +234,,"Evaluation + Plan note","2019-06-01" +234,,"Evaluation + Plan note","2018-03-01" +234,,"Comprehensive metabolic 2000 panel - Serum or Plasma", +234,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma", +234,"History and physical note",,"2023-02-01" +234,"History and physical note",,"2019-06-01" +234,"History and physical note",,"2018-03-01" +234,"History and physical note","History and physical note","2023-02-01" +234,"History and physical note","History and physical note","2019-06-01" +234,"History and physical note","History and physical note","2018-03-01" +234,"History and physical note","Evaluation + Plan note","2023-02-01" +234,"History and physical note","Evaluation + Plan note","2019-06-01" +234,"History and physical note","Evaluation + Plan note","2018-03-01" +234,"Evaluation + Plan note",,"2023-02-01" +234,"Evaluation + Plan note",,"2019-06-01" +234,"Evaluation + Plan note",,"2018-03-01" +234,"Evaluation + Plan note","History and physical note","2023-02-01" +234,"Evaluation + Plan note","History and physical note","2019-06-01" +234,"Evaluation + Plan note","History and physical note","2018-03-01" +234,"Evaluation + Plan note","Evaluation + Plan note","2023-02-01" +234,"Evaluation + Plan note","Evaluation + Plan note","2019-06-01" +234,"Evaluation + Plan note","Evaluation + Plan note","2018-03-01" +233,,,"2019-01-01" +233,,"History and physical note","2019-01-01" +233,,"Evaluation + Plan note","2019-01-01" +233,"History and physical note",,"2019-01-01" +233,"History and physical note","History and physical note","2019-01-01" +233,"History and physical note","Evaluation + Plan note","2019-01-01" +233,"Evaluation + Plan note",,"2019-01-01" +233,"Evaluation + Plan note","History and physical note","2019-01-01" +233,"Evaluation + Plan note","Evaluation + Plan note","2019-01-01" +232,,,"2023-03-01" +232,,,"2016-03-01" +232,,,"2016-02-01" +232,,"History and physical note","2023-03-01" +232,,"History and physical note","2016-03-01" +232,,"History and physical note","2016-02-01" +232,,"Evaluation + Plan note","2023-03-01" +232,,"Evaluation + Plan note","2016-03-01" +232,,"Evaluation + Plan note","2016-02-01" +232,"History and physical note",,"2023-03-01" +232,"History and physical note",,"2016-03-01" +232,"History and physical note",,"2016-02-01" +232,"History and physical note","History and physical note","2023-03-01" +232,"History and physical note","History and physical note","2016-03-01" +232,"History and physical note","History and physical note","2016-02-01" +232,"History and physical note","Evaluation + Plan note","2023-03-01" +232,"History and physical note","Evaluation + Plan note","2016-03-01" +232,"History and physical note","Evaluation + Plan note","2016-02-01" +232,"Evaluation + Plan note",,"2023-03-01" +232,"Evaluation + Plan note",,"2016-03-01" +232,"Evaluation + Plan note",,"2016-02-01" +232,"Evaluation + Plan note","History and physical note","2023-03-01" +232,"Evaluation + Plan note","History and physical note","2016-03-01" +232,"Evaluation + Plan note","History and physical note","2016-02-01" +232,"Evaluation + Plan note","Evaluation + Plan note","2023-03-01" +232,"Evaluation + Plan note","Evaluation + Plan note","2016-03-01" +232,"Evaluation + Plan note","Evaluation + Plan note","2016-02-01" +231,,,"2017-06-01" +231,,,"2014-06-01" +231,,"History and physical note","2014-06-01" +231,,"Evaluation + Plan note","2014-06-01" +231,"History and physical note",,"2014-06-01" +231,"History and physical note","History and physical note","2014-06-01" +231,"History and physical note","Evaluation + Plan note","2014-06-01" +231,"Evaluation + Plan note",,"2014-06-01" +231,"Evaluation + Plan note","History and physical note","2014-06-01" +231,"Evaluation + Plan note","Evaluation + Plan note","2014-06-01" +230,,,"2022-03-01" +230,,"History and physical note","2017-06-01" +230,,"Evaluation + Plan note","2017-06-01" +230,"History and physical note",,"2017-06-01" +230,"History and physical note","History and physical note","2017-06-01" +230,"History and physical note","Evaluation + Plan note","2017-06-01" +230,"Evaluation + Plan note",,"2017-06-01" +230,"Evaluation + Plan note","History and physical note","2017-06-01" +230,"Evaluation + Plan note","Evaluation + Plan note","2017-06-01" +229,,"History and physical note","2022-03-01" +229,,"Evaluation + Plan note","2022-03-01" +229,"History and physical note",,"2022-03-01" +229,"History and physical note","History and physical note","2022-03-01" +229,"History and physical note","Evaluation + Plan note","2022-03-01" +229,"Evaluation + Plan note",,"2022-03-01" +229,"Evaluation + Plan note","History and physical note","2022-03-01" +229,"Evaluation + Plan note","Evaluation + Plan note","2022-03-01" +228,,,"2022-06-01" +228,,,"2019-04-01" +228,,"History and physical note","2022-06-01" +228,,"History and physical note","2019-04-01" +228,,"Evaluation + Plan note","2022-06-01" +228,,"Evaluation + Plan note","2019-04-01" +228,"History and physical note",,"2022-06-01" +228,"History and physical note",,"2019-04-01" +228,"History and physical note","History and physical note","2022-06-01" +228,"History and physical note","History and physical note","2019-04-01" +228,"History and physical note","Evaluation + Plan note","2022-06-01" +228,"History and physical note","Evaluation + Plan note","2019-04-01" +228,"Evaluation + Plan note",,"2022-06-01" +228,"Evaluation + Plan note",,"2019-04-01" +228,"Evaluation + Plan note","History and physical note","2022-06-01" +228,"Evaluation + Plan note","History and physical note","2019-04-01" +228,"Evaluation + Plan note","Evaluation + Plan note","2022-06-01" +228,"Evaluation + Plan note","Evaluation + Plan note","2019-04-01" +227,,,"2016-08-01" +227,,,"2013-12-01" +227,,"History and physical note","2016-08-01" +227,,"History and physical note","2013-12-01" +227,,"Evaluation + Plan note","2016-08-01" +227,,"Evaluation + Plan note","2013-12-01" +227,"History and physical note",,"2016-08-01" +227,"History and physical note",,"2013-12-01" +227,"History and physical note","History and physical note","2016-08-01" +227,"History and physical note","History and physical note","2013-12-01" +227,"History and physical note","Evaluation + Plan note","2016-08-01" +227,"History and physical note","Evaluation + Plan note","2013-12-01" +227,"Evaluation + Plan note",,"2016-08-01" +227,"Evaluation + Plan note",,"2013-12-01" +227,"Evaluation + Plan note","History and physical note","2016-08-01" +227,"Evaluation + Plan note","History and physical note","2013-12-01" +227,"Evaluation + Plan note","Evaluation + Plan note","2016-08-01" +227,"Evaluation + Plan note","Evaluation + Plan note","2013-12-01" +226,,,"2018-08-01" +226,,,"2017-08-01" +226,,,"2015-12-01" +226,,,"2014-09-01" +226,,,"2014-08-01" +226,,"History and physical note","2017-08-01" +226,,"History and physical note","2015-12-01" +226,,"History and physical note","2014-09-01" +226,,"History and physical note","2014-08-01" +226,,"Evaluation + Plan note","2017-08-01" +226,,"Evaluation + Plan note","2015-12-01" +226,,"Evaluation + Plan note","2014-09-01" +226,,"Evaluation + Plan note","2014-08-01" +226,"History and physical note",,"2017-08-01" +226,"History and physical note",,"2015-12-01" +226,"History and physical note",,"2014-09-01" +226,"History and physical note",,"2014-08-01" +226,"History and physical note","History and physical note","2017-08-01" +226,"History and physical note","History and physical note","2015-12-01" +226,"History and physical note","History and physical note","2014-09-01" +226,"History and physical note","History and physical note","2014-08-01" +226,"History and physical note","Evaluation + Plan note","2017-08-01" +226,"History and physical note","Evaluation + Plan note","2015-12-01" +226,"History and physical note","Evaluation + Plan note","2014-09-01" +226,"History and physical note","Evaluation + Plan note","2014-08-01" +226,"Evaluation + Plan note",,"2017-08-01" +226,"Evaluation + Plan note",,"2015-12-01" +226,"Evaluation + Plan note",,"2014-09-01" +226,"Evaluation + Plan note",,"2014-08-01" +226,"Evaluation + Plan note","History and physical note","2017-08-01" +226,"Evaluation + Plan note","History and physical note","2015-12-01" +226,"Evaluation + Plan note","History and physical note","2014-09-01" +226,"Evaluation + Plan note","History and physical note","2014-08-01" +226,"Evaluation + Plan note","Evaluation + Plan note","2017-08-01" +226,"Evaluation + Plan note","Evaluation + Plan note","2015-12-01" +226,"Evaluation + Plan note","Evaluation + Plan note","2014-09-01" +226,"Evaluation + Plan note","Evaluation + Plan note","2014-08-01" +225,,,"2020-06-01" +225,,,"2018-06-01" +225,,"History and physical note","2018-08-01" +225,,"History and physical note","2018-06-01" +225,,"Evaluation + Plan note","2018-08-01" +225,,"Evaluation + Plan note","2018-06-01" +225,"History and physical note",,"2018-08-01" +225,"History and physical note",,"2018-06-01" +225,"History and physical note","History and physical note","2018-08-01" +225,"History and physical note","History and physical note","2018-06-01" +225,"History and physical note","Evaluation + Plan note","2018-08-01" +225,"History and physical note","Evaluation + Plan note","2018-06-01" +225,"Evaluation + Plan note",,"2018-08-01" +225,"Evaluation + Plan note",,"2018-06-01" +225,"Evaluation + Plan note","History and physical note","2018-08-01" +225,"Evaluation + Plan note","History and physical note","2018-06-01" +225,"Evaluation + Plan note","Evaluation + Plan note","2018-08-01" +225,"Evaluation + Plan note","Evaluation + Plan note","2018-06-01" +224,,,"2019-05-01" +224,,,"2016-06-01" +224,,,"2015-07-01" +224,,,"2015-02-01" +224,,"History and physical note","2020-06-01" +224,,"History and physical note","2019-05-01" +224,,"History and physical note","2016-06-01" +224,,"History and physical note","2015-07-01" +224,,"History and physical note","2015-02-01" +224,,"Evaluation + Plan note","2020-06-01" +224,,"Evaluation + Plan note","2019-05-01" +224,,"Evaluation + Plan note","2016-06-01" +224,,"Evaluation + Plan note","2015-07-01" +224,,"Evaluation + Plan note","2015-02-01" +224,"History and physical note",,"2020-06-01" +224,"History and physical note",,"2019-05-01" +224,"History and physical note",,"2016-06-01" +224,"History and physical note",,"2015-07-01" +224,"History and physical note",,"2015-02-01" +224,"History and physical note","History and physical note","2020-06-01" +224,"History and physical note","History and physical note","2019-05-01" +224,"History and physical note","History and physical note","2016-06-01" +224,"History and physical note","History and physical note","2015-07-01" +224,"History and physical note","History and physical note","2015-02-01" +224,"History and physical note","Evaluation + Plan note","2020-06-01" +224,"History and physical note","Evaluation + Plan note","2019-05-01" +224,"History and physical note","Evaluation + Plan note","2016-06-01" +224,"History and physical note","Evaluation + Plan note","2015-07-01" +224,"History and physical note","Evaluation + Plan note","2015-02-01" +224,"Evaluation + Plan note",,"2020-06-01" +224,"Evaluation + Plan note",,"2019-05-01" +224,"Evaluation + Plan note",,"2016-06-01" +224,"Evaluation + Plan note",,"2015-07-01" +224,"Evaluation + Plan note",,"2015-02-01" +224,"Evaluation + Plan note","History and physical note","2020-06-01" +224,"Evaluation + Plan note","History and physical note","2019-05-01" +224,"Evaluation + Plan note","History and physical note","2016-06-01" +224,"Evaluation + Plan note","History and physical note","2015-07-01" +224,"Evaluation + Plan note","History and physical note","2015-02-01" +224,"Evaluation + Plan note","Evaluation + Plan note","2020-06-01" +224,"Evaluation + Plan note","Evaluation + Plan note","2019-05-01" +224,"Evaluation + Plan note","Evaluation + Plan note","2016-06-01" +224,"Evaluation + Plan note","Evaluation + Plan note","2015-07-01" +224,"Evaluation + Plan note","Evaluation + Plan note","2015-02-01" +223,,,"2018-01-01" +223,,,"2015-01-01" +223,,"History and physical note","2018-01-01" +223,,"History and physical note","2015-01-01" +223,,"Evaluation + Plan note","2018-01-01" +223,,"Evaluation + Plan note","2015-01-01" +223,"History and physical note",,"2018-01-01" +223,"History and physical note",,"2015-01-01" +223,"History and physical note","History and physical note","2018-01-01" +223,"History and physical note","History and physical note","2015-01-01" +223,"History and physical note","Evaluation + Plan note","2018-01-01" +223,"History and physical note","Evaluation + Plan note","2015-01-01" +223,"Evaluation + Plan note",,"2018-01-01" +223,"Evaluation + Plan note",,"2015-01-01" +223,"Evaluation + Plan note","History and physical note","2018-01-01" +223,"Evaluation + Plan note","History and physical note","2015-01-01" +223,"Evaluation + Plan note","Evaluation + Plan note","2018-01-01" +223,"Evaluation + Plan note","Evaluation + Plan note","2015-01-01" +222,,,"2022-01-01" +222,,,"2017-12-01" +222,,"History and physical note","2022-01-01" +222,,"History and physical note","2017-12-01" +222,,"Evaluation + Plan note","2022-01-01" +222,,"Evaluation + Plan note","2017-12-01" +222,"History and physical note",,"2022-01-01" +222,"History and physical note",,"2017-12-01" +222,"History and physical note","History and physical note","2022-01-01" +222,"History and physical note","History and physical note","2017-12-01" +222,"History and physical note","Evaluation + Plan note","2022-01-01" +222,"History and physical note","Evaluation + Plan note","2017-12-01" +222,"Evaluation + Plan note",,"2022-01-01" +222,"Evaluation + Plan note",,"2017-12-01" +222,"Evaluation + Plan note","History and physical note","2022-01-01" +222,"Evaluation + Plan note","History and physical note","2017-12-01" +222,"Evaluation + Plan note","Evaluation + Plan note","2022-01-01" +222,"Evaluation + Plan note","Evaluation + Plan note","2017-12-01" +221,,,"2022-12-01" +221,,,"2022-08-01" +221,,,"2016-01-01" +221,,"History and physical note","2022-12-01" +221,,"History and physical note","2016-01-01" +221,,"Evaluation + Plan note","2022-12-01" +221,,"Evaluation + Plan note","2016-01-01" +221,"History and physical note",,"2022-12-01" +221,"History and physical note",,"2016-01-01" +221,"History and physical note","History and physical note","2022-12-01" +221,"History and physical note","History and physical note","2016-01-01" +221,"History and physical note","Evaluation + Plan note","2022-12-01" +221,"History and physical note","Evaluation + Plan note","2016-01-01" +221,"Evaluation + Plan note",,"2022-12-01" +221,"Evaluation + Plan note",,"2016-01-01" +221,"Evaluation + Plan note","History and physical note","2022-12-01" +221,"Evaluation + Plan note","History and physical note","2016-01-01" +221,"Evaluation + Plan note","Evaluation + Plan note","2022-12-01" +221,"Evaluation + Plan note","Evaluation + Plan note","2016-01-01" +220,,,"2020-12-01" +220,,,"2020-01-01" +220,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]", +220,,"History and physical note","2022-08-01" +220,,"History and physical note","2020-01-01" +220,,"Evaluation + Plan note","2022-08-01" +220,,"Evaluation + Plan note","2020-01-01" +220,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]", +220,"History and physical note",,"2022-08-01" +220,"History and physical note",,"2020-01-01" +220,"History and physical note","History and physical note","2022-08-01" +220,"History and physical note","History and physical note","2020-01-01" +220,"History and physical note","Evaluation + Plan note","2022-08-01" +220,"History and physical note","Evaluation + Plan note","2020-01-01" +220,"Evaluation + Plan note",,"2022-08-01" +220,"Evaluation + Plan note",,"2020-01-01" +220,"Evaluation + Plan note","History and physical note","2022-08-01" +220,"Evaluation + Plan note","History and physical note","2020-01-01" +220,"Evaluation + Plan note","Evaluation + Plan note","2022-08-01" +220,"Evaluation + Plan note","Evaluation + Plan note","2020-01-01" +219,,,"2022-10-01" +219,,,"2022-09-01" +219,,,"2022-02-01" +219,,,"2020-11-01" +219,,"History and physical note","2022-10-01" +219,,"History and physical note","2022-09-01" +219,,"History and physical note","2022-02-01" +219,,"History and physical note","2020-11-01" +219,,"Evaluation + Plan note","2022-10-01" +219,,"Evaluation + Plan note","2022-09-01" +219,,"Evaluation + Plan note","2022-02-01" +219,,"Evaluation + Plan note","2020-11-01" +219,"History and physical note",,"2022-10-01" +219,"History and physical note",,"2022-09-01" +219,"History and physical note",,"2022-02-01" +219,"History and physical note",,"2020-11-01" +219,"History and physical note","History and physical note","2022-10-01" +219,"History and physical note","History and physical note","2022-09-01" +219,"History and physical note","History and physical note","2022-02-01" +219,"History and physical note","History and physical note","2020-11-01" +219,"History and physical note","Evaluation + Plan note","2022-10-01" +219,"History and physical note","Evaluation + Plan note","2022-09-01" +219,"History and physical note","Evaluation + Plan note","2022-02-01" +219,"History and physical note","Evaluation + Plan note","2020-11-01" +219,"Evaluation + Plan note",,"2022-10-01" +219,"Evaluation + Plan note",,"2022-09-01" +219,"Evaluation + Plan note",,"2022-02-01" +219,"Evaluation + Plan note",,"2020-11-01" +219,"Evaluation + Plan note","History and physical note","2022-10-01" +219,"Evaluation + Plan note","History and physical note","2022-09-01" +219,"Evaluation + Plan note","History and physical note","2022-02-01" +219,"Evaluation + Plan note","History and physical note","2020-11-01" +219,"Evaluation + Plan note","Evaluation + Plan note","2022-10-01" +219,"Evaluation + Plan note","Evaluation + Plan note","2022-09-01" +219,"Evaluation + Plan note","Evaluation + Plan note","2022-02-01" +219,"Evaluation + Plan note","Evaluation + Plan note","2020-11-01" +218,,,"2020-04-01" +218,,,"2017-07-01" +218,,,"2017-05-01" +218,,"History and physical note","2020-12-01" +218,,"History and physical note","2020-04-01" +218,,"History and physical note","2017-05-01" +218,,"Evaluation + Plan note","2020-12-01" +218,,"Evaluation + Plan note","2020-04-01" +218,,"Evaluation + Plan note","2017-05-01" +218,"History and physical note",,"2020-12-01" +218,"History and physical note",,"2020-04-01" +218,"History and physical note",,"2017-05-01" +218,"History and physical note","History and physical note","2020-12-01" +218,"History and physical note","History and physical note","2020-04-01" +218,"History and physical note","History and physical note","2017-05-01" +218,"History and physical note","Evaluation + Plan note","2020-12-01" +218,"History and physical note","Evaluation + Plan note","2020-04-01" +218,"History and physical note","Evaluation + Plan note","2017-05-01" +218,"Evaluation + Plan note",,"2020-12-01" +218,"Evaluation + Plan note",,"2020-04-01" +218,"Evaluation + Plan note",,"2017-05-01" +218,"Evaluation + Plan note","History and physical note","2020-12-01" +218,"Evaluation + Plan note","History and physical note","2020-04-01" +218,"Evaluation + Plan note","History and physical note","2017-05-01" +218,"Evaluation + Plan note","Evaluation + Plan note","2020-12-01" +218,"Evaluation + Plan note","Evaluation + Plan note","2020-04-01" +218,"Evaluation + Plan note","Evaluation + Plan note","2017-05-01" +217,,,"2014-01-01" +217,,"History and physical note","2014-01-01" +217,,"Evaluation + Plan note","2014-01-01" +217,"History and physical note",,"2014-01-01" +217,"History and physical note","History and physical note","2014-01-01" +217,"History and physical note","Evaluation + Plan note","2014-01-01" +217,"Evaluation + Plan note",,"2014-01-01" +217,"Evaluation + Plan note","History and physical note","2014-01-01" +217,"Evaluation + Plan note","Evaluation + Plan note","2014-01-01" +216,,,"2016-12-01" +216,,,"2016-05-01" +216,,"History and physical note","2017-07-01" +216,,"History and physical note","2016-12-01" +216,,"History and physical note","2016-05-01" +216,,"Evaluation + Plan note","2017-07-01" +216,,"Evaluation + Plan note","2016-12-01" +216,,"Evaluation + Plan note","2016-05-01" +216,"History and physical note",,"2017-07-01" +216,"History and physical note",,"2016-12-01" +216,"History and physical note",,"2016-05-01" +216,"History and physical note","History and physical note","2017-07-01" +216,"History and physical note","History and physical note","2016-12-01" +216,"History and physical note","History and physical note","2016-05-01" +216,"History and physical note","Evaluation + Plan note","2017-07-01" +216,"History and physical note","Evaluation + Plan note","2016-12-01" +216,"History and physical note","Evaluation + Plan note","2016-05-01" +216,"Evaluation + Plan note",,"2017-07-01" +216,"Evaluation + Plan note",,"2016-12-01" +216,"Evaluation + Plan note",,"2016-05-01" +216,"Evaluation + Plan note","History and physical note","2017-07-01" +216,"Evaluation + Plan note","History and physical note","2016-12-01" +216,"Evaluation + Plan note","History and physical note","2016-05-01" +216,"Evaluation + Plan note","Evaluation + Plan note","2017-07-01" +216,"Evaluation + Plan note","Evaluation + Plan note","2016-12-01" +216,"Evaluation + Plan note","Evaluation + Plan note","2016-05-01" +215,,,"2018-05-01" +215,,,"2017-01-01" +215,,,"2015-05-01" +215,,"Morse Fall Scale panel", +215,,"History and physical note","2018-05-01" +215,,"History and physical note","2017-01-01" +215,,"Evaluation + Plan note","2018-05-01" +215,,"Evaluation + Plan note","2017-01-01" +215,"cumulus__none","Morse Fall Scale panel", +215,"History and physical note",,"2018-05-01" +215,"History and physical note",,"2017-01-01" +215,"History and physical note","History and physical note","2018-05-01" +215,"History and physical note","History and physical note","2017-01-01" +215,"History and physical note","Evaluation + Plan note","2018-05-01" +215,"History and physical note","Evaluation + Plan note","2017-01-01" +215,"Evaluation + Plan note",,"2018-05-01" +215,"Evaluation + Plan note",,"2017-01-01" +215,"Evaluation + Plan note","History and physical note","2018-05-01" +215,"Evaluation + Plan note","History and physical note","2017-01-01" +215,"Evaluation + Plan note","Evaluation + Plan note","2018-05-01" +215,"Evaluation + Plan note","Evaluation + Plan note","2017-01-01" +214,,,"2015-03-01" +214,,,"2014-11-01" +214,,,"2014-10-01" +214,,,"2014-04-01" +214,,"History and physical note","2015-05-01" +214,,"History and physical note","2014-10-01" +214,,"History and physical note","2014-04-01" +214,,"Evaluation + Plan note","2015-05-01" +214,,"Evaluation + Plan note","2014-10-01" +214,,"Evaluation + Plan note","2014-04-01" +214,"History and physical note",,"2015-05-01" +214,"History and physical note",,"2014-10-01" +214,"History and physical note",,"2014-04-01" +214,"History and physical note","History and physical note","2015-05-01" +214,"History and physical note","History and physical note","2014-10-01" +214,"History and physical note","History and physical note","2014-04-01" +214,"History and physical note","Evaluation + Plan note","2015-05-01" +214,"History and physical note","Evaluation + Plan note","2014-10-01" +214,"History and physical note","Evaluation + Plan note","2014-04-01" +214,"Evaluation + Plan note",,"2015-05-01" +214,"Evaluation + Plan note",,"2014-10-01" +214,"Evaluation + Plan note",,"2014-04-01" +214,"Evaluation + Plan note","History and physical note","2015-05-01" +214,"Evaluation + Plan note","History and physical note","2014-10-01" +214,"Evaluation + Plan note","History and physical note","2014-04-01" +214,"Evaluation + Plan note","Evaluation + Plan note","2015-05-01" +214,"Evaluation + Plan note","Evaluation + Plan note","2014-10-01" +214,"Evaluation + Plan note","Evaluation + Plan note","2014-04-01" +213,,"History and physical note","2014-11-01" +213,,"Evaluation + Plan note","2014-11-01" +213,"History and physical note",,"2014-11-01" +213,"History and physical note","History and physical note","2014-11-01" +213,"History and physical note","Evaluation + Plan note","2014-11-01" +213,"Evaluation + Plan note",,"2014-11-01" +213,"Evaluation + Plan note","History and physical note","2014-11-01" +213,"Evaluation + Plan note","Evaluation + Plan note","2014-11-01" +212,,,"2020-08-01" +212,,"History and physical note","2020-08-01" +212,,"History and physical note","2015-03-01" +212,,"Evaluation + Plan note","2020-08-01" +212,,"Evaluation + Plan note","2015-03-01" +212,"History and physical note",,"2020-08-01" +212,"History and physical note",,"2015-03-01" +212,"History and physical note","History and physical note","2020-08-01" +212,"History and physical note","History and physical note","2015-03-01" +212,"History and physical note","Evaluation + Plan note","2020-08-01" +212,"History and physical note","Evaluation + Plan note","2015-03-01" +212,"Evaluation + Plan note",,"2020-08-01" +212,"Evaluation + Plan note",,"2015-03-01" +212,"Evaluation + Plan note","History and physical note","2020-08-01" +212,"Evaluation + Plan note","History and physical note","2015-03-01" +212,"Evaluation + Plan note","Evaluation + Plan note","2020-08-01" +212,"Evaluation + Plan note","Evaluation + Plan note","2015-03-01" +211,,,"2022-11-01" +211,,,"2020-05-01" +211,,,"2013-07-01" +211,,"History and physical note","2022-11-01" +211,,"History and physical note","2020-05-01" +211,,"History and physical note","2013-07-01" +211,,"Evaluation + Plan note","2022-11-01" +211,,"Evaluation + Plan note","2020-05-01" +211,,"Evaluation + Plan note","2013-07-01" +211,"History and physical note",,"2022-11-01" +211,"History and physical note",,"2020-05-01" +211,"History and physical note",,"2013-07-01" +211,"History and physical note","History and physical note","2022-11-01" +211,"History and physical note","History and physical note","2020-05-01" +211,"History and physical note","History and physical note","2013-07-01" +211,"History and physical note","Evaluation + Plan note","2022-11-01" +211,"History and physical note","Evaluation + Plan note","2020-05-01" +211,"History and physical note","Evaluation + Plan note","2013-07-01" +211,"Evaluation + Plan note",,"2022-11-01" +211,"Evaluation + Plan note",,"2020-05-01" +211,"Evaluation + Plan note",,"2013-07-01" +211,"Evaluation + Plan note","History and physical note","2022-11-01" +211,"Evaluation + Plan note","History and physical note","2020-05-01" +211,"Evaluation + Plan note","History and physical note","2013-07-01" +211,"Evaluation + Plan note","Evaluation + Plan note","2022-11-01" +211,"Evaluation + Plan note","Evaluation + Plan note","2020-05-01" +211,"Evaluation + Plan note","Evaluation + Plan note","2013-07-01" +209,,,"2019-02-01" +208,,,"2020-10-01" +208,,"History and physical note","2020-10-01" +208,,"Evaluation + Plan note","2020-10-01" +208,"History and physical note",,"2020-10-01" +208,"History and physical note","History and physical note","2020-10-01" +208,"History and physical note","Evaluation + Plan note","2020-10-01" +208,"Evaluation + Plan note",,"2020-10-01" +208,"Evaluation + Plan note","History and physical note","2020-10-01" +208,"Evaluation + Plan note","Evaluation + Plan note","2020-10-01" +207,,,"2019-12-01" +207,,,"2019-07-01" +207,,,"2015-11-01" +207,,"History and physical note","2019-12-01" +207,,"History and physical note","2019-07-01" +207,,"History and physical note","2019-02-01" +207,,"Evaluation + Plan note","2019-12-01" +207,,"Evaluation + Plan note","2019-07-01" +207,,"Evaluation + Plan note","2019-02-01" +207,"History and physical note",,"2019-12-01" +207,"History and physical note",,"2019-07-01" +207,"History and physical note",,"2019-02-01" +207,"History and physical note","History and physical note","2019-12-01" +207,"History and physical note","History and physical note","2019-07-01" +207,"History and physical note","History and physical note","2019-02-01" +207,"History and physical note","Evaluation + Plan note","2019-12-01" +207,"History and physical note","Evaluation + Plan note","2019-07-01" +207,"History and physical note","Evaluation + Plan note","2019-02-01" +207,"Evaluation + Plan note",,"2019-12-01" +207,"Evaluation + Plan note",,"2019-07-01" +207,"Evaluation + Plan note",,"2019-02-01" +207,"Evaluation + Plan note","History and physical note","2019-12-01" +207,"Evaluation + Plan note","History and physical note","2019-07-01" +207,"Evaluation + Plan note","History and physical note","2019-02-01" +207,"Evaluation + Plan note","Evaluation + Plan note","2019-12-01" +207,"Evaluation + Plan note","Evaluation + Plan note","2019-07-01" +207,"Evaluation + Plan note","Evaluation + Plan note","2019-02-01" +206,,,"2020-09-01" +206,,,"2018-07-01" +206,,,"2015-08-01" +206,,,"2013-10-01" +206,,"History and physical note","2020-09-01" +206,,"History and physical note","2018-07-01" +206,,"History and physical note","2015-11-01" +206,,"History and physical note","2015-08-01" +206,,"History and physical note","2013-10-01" +206,,"Evaluation + Plan note","2020-09-01" +206,,"Evaluation + Plan note","2018-07-01" +206,,"Evaluation + Plan note","2015-11-01" +206,,"Evaluation + Plan note","2015-08-01" +206,,"Evaluation + Plan note","2013-10-01" +206,"History and physical note",,"2020-09-01" +206,"History and physical note",,"2018-07-01" +206,"History and physical note",,"2015-11-01" +206,"History and physical note",,"2015-08-01" +206,"History and physical note",,"2013-10-01" +206,"History and physical note","History and physical note","2020-09-01" +206,"History and physical note","History and physical note","2018-07-01" +206,"History and physical note","History and physical note","2015-11-01" +206,"History and physical note","History and physical note","2015-08-01" +206,"History and physical note","History and physical note","2013-10-01" +206,"History and physical note","Evaluation + Plan note","2020-09-01" +206,"History and physical note","Evaluation + Plan note","2018-07-01" +206,"History and physical note","Evaluation + Plan note","2015-11-01" +206,"History and physical note","Evaluation + Plan note","2015-08-01" +206,"History and physical note","Evaluation + Plan note","2013-10-01" +206,"Evaluation + Plan note",,"2020-09-01" +206,"Evaluation + Plan note",,"2018-07-01" +206,"Evaluation + Plan note",,"2015-11-01" +206,"Evaluation + Plan note",,"2015-08-01" +206,"Evaluation + Plan note",,"2013-10-01" +206,"Evaluation + Plan note","History and physical note","2020-09-01" +206,"Evaluation + Plan note","History and physical note","2018-07-01" +206,"Evaluation + Plan note","History and physical note","2015-11-01" +206,"Evaluation + Plan note","History and physical note","2015-08-01" +206,"Evaluation + Plan note","History and physical note","2013-10-01" +206,"Evaluation + Plan note","Evaluation + Plan note","2020-09-01" +206,"Evaluation + Plan note","Evaluation + Plan note","2018-07-01" +206,"Evaluation + Plan note","Evaluation + Plan note","2015-11-01" +206,"Evaluation + Plan note","Evaluation + Plan note","2015-08-01" +206,"Evaluation + Plan note","Evaluation + Plan note","2013-10-01" +205,,,"2019-08-01" +205,,,"2018-09-01" +205,,,"2015-10-01" +205,,,"2013-05-01" +205,,"History and physical note","2019-08-01" +205,,"History and physical note","2018-09-01" +205,,"History and physical note","2015-10-01" +205,,"History and physical note","2013-05-01" +205,,"Evaluation + Plan note","2019-08-01" +205,,"Evaluation + Plan note","2018-09-01" +205,,"Evaluation + Plan note","2015-10-01" +205,,"Evaluation + Plan note","2013-05-01" +205,"History and physical note",,"2019-08-01" +205,"History and physical note",,"2018-09-01" +205,"History and physical note",,"2015-10-01" +205,"History and physical note",,"2013-05-01" +205,"History and physical note","History and physical note","2019-08-01" +205,"History and physical note","History and physical note","2018-09-01" +205,"History and physical note","History and physical note","2015-10-01" +205,"History and physical note","History and physical note","2013-05-01" +205,"History and physical note","Evaluation + Plan note","2019-08-01" +205,"History and physical note","Evaluation + Plan note","2018-09-01" +205,"History and physical note","Evaluation + Plan note","2015-10-01" +205,"History and physical note","Evaluation + Plan note","2013-05-01" +205,"Evaluation + Plan note",,"2019-08-01" +205,"Evaluation + Plan note",,"2018-09-01" +205,"Evaluation + Plan note",,"2015-10-01" +205,"Evaluation + Plan note",,"2013-05-01" +205,"Evaluation + Plan note","History and physical note","2019-08-01" +205,"Evaluation + Plan note","History and physical note","2018-09-01" +205,"Evaluation + Plan note","History and physical note","2015-10-01" +205,"Evaluation + Plan note","History and physical note","2013-05-01" +205,"Evaluation + Plan note","Evaluation + Plan note","2019-08-01" +205,"Evaluation + Plan note","Evaluation + Plan note","2018-09-01" +205,"Evaluation + Plan note","Evaluation + Plan note","2015-10-01" +205,"Evaluation + Plan note","Evaluation + Plan note","2013-05-01" +204,,,"2018-12-01" +204,,,"2016-10-01" +204,,,"2016-09-01" +204,,"History and physical note","2018-12-01" +204,,"History and physical note","2016-10-01" +204,,"Evaluation + Plan note","2018-12-01" +204,,"Evaluation + Plan note","2016-10-01" +204,"History and physical note",,"2018-12-01" +204,"History and physical note",,"2016-10-01" +204,"History and physical note","History and physical note","2018-12-01" +204,"History and physical note","History and physical note","2016-10-01" +204,"History and physical note","Evaluation + Plan note","2018-12-01" +204,"History and physical note","Evaluation + Plan note","2016-10-01" +204,"Evaluation + Plan note",,"2018-12-01" +204,"Evaluation + Plan note",,"2016-10-01" +204,"Evaluation + Plan note","History and physical note","2018-12-01" +204,"Evaluation + Plan note","History and physical note","2016-10-01" +204,"Evaluation + Plan note","Evaluation + Plan note","2018-12-01" +204,"Evaluation + Plan note","Evaluation + Plan note","2016-10-01" +203,,,"2018-04-01" +203,,,"2017-11-01" +203,,,"2015-06-01" +203,,,"2013-06-01" +203,,"History and physical note","2018-04-01" +203,,"History and physical note","2017-11-01" +203,,"History and physical note","2016-09-01" +203,,"History and physical note","2015-06-01" +203,,"History and physical note","2013-06-01" +203,,"Evaluation + Plan note","2018-04-01" +203,,"Evaluation + Plan note","2017-11-01" +203,,"Evaluation + Plan note","2016-09-01" +203,,"Evaluation + Plan note","2015-06-01" +203,,"Evaluation + Plan note","2013-06-01" +203,"History and physical note",,"2018-04-01" +203,"History and physical note",,"2017-11-01" +203,"History and physical note",,"2016-09-01" +203,"History and physical note",,"2015-06-01" +203,"History and physical note",,"2013-06-01" +203,"History and physical note","History and physical note","2018-04-01" +203,"History and physical note","History and physical note","2017-11-01" +203,"History and physical note","History and physical note","2016-09-01" +203,"History and physical note","History and physical note","2015-06-01" +203,"History and physical note","History and physical note","2013-06-01" +203,"History and physical note","Evaluation + Plan note","2018-04-01" +203,"History and physical note","Evaluation + Plan note","2017-11-01" +203,"History and physical note","Evaluation + Plan note","2016-09-01" +203,"History and physical note","Evaluation + Plan note","2015-06-01" +203,"History and physical note","Evaluation + Plan note","2013-06-01" +203,"Evaluation + Plan note",,"2018-04-01" +203,"Evaluation + Plan note",,"2017-11-01" +203,"Evaluation + Plan note",,"2016-09-01" +203,"Evaluation + Plan note",,"2015-06-01" +203,"Evaluation + Plan note",,"2013-06-01" +203,"Evaluation + Plan note","History and physical note","2018-04-01" +203,"Evaluation + Plan note","History and physical note","2017-11-01" +203,"Evaluation + Plan note","History and physical note","2016-09-01" +203,"Evaluation + Plan note","History and physical note","2015-06-01" +203,"Evaluation + Plan note","History and physical note","2013-06-01" +203,"Evaluation + Plan note","Evaluation + Plan note","2018-04-01" +203,"Evaluation + Plan note","Evaluation + Plan note","2017-11-01" +203,"Evaluation + Plan note","Evaluation + Plan note","2016-09-01" +203,"Evaluation + Plan note","Evaluation + Plan note","2015-06-01" +203,"Evaluation + Plan note","Evaluation + Plan note","2013-06-01" +202,,,"2018-10-01" +202,,,"2017-10-01" +202,,"History and physical note","2018-10-01" +202,,"Evaluation + Plan note","2018-10-01" +202,"History and physical note",,"2018-10-01" +202,"History and physical note","History and physical note","2018-10-01" +202,"History and physical note","Evaluation + Plan note","2018-10-01" +202,"Evaluation + Plan note",,"2018-10-01" +202,"Evaluation + Plan note","History and physical note","2018-10-01" +202,"Evaluation + Plan note","Evaluation + Plan note","2018-10-01" +201,,,"2020-02-01" +201,,,"2019-10-01" +201,,"History and physical note","2020-02-01" +201,,"History and physical note","2019-10-01" +201,,"History and physical note","2017-10-01" +201,,"Evaluation + Plan note","2020-02-01" +201,,"Evaluation + Plan note","2019-10-01" +201,,"Evaluation + Plan note","2017-10-01" +201,"History and physical note",,"2020-02-01" +201,"History and physical note",,"2019-10-01" +201,"History and physical note",,"2017-10-01" +201,"History and physical note","History and physical note","2020-02-01" +201,"History and physical note","History and physical note","2019-10-01" +201,"History and physical note","History and physical note","2017-10-01" +201,"History and physical note","Evaluation + Plan note","2020-02-01" +201,"History and physical note","Evaluation + Plan note","2019-10-01" +201,"History and physical note","Evaluation + Plan note","2017-10-01" +201,"Evaluation + Plan note",,"2020-02-01" +201,"Evaluation + Plan note",,"2019-10-01" +201,"Evaluation + Plan note",,"2017-10-01" +201,"Evaluation + Plan note","History and physical note","2020-02-01" +201,"Evaluation + Plan note","History and physical note","2019-10-01" +201,"Evaluation + Plan note","History and physical note","2017-10-01" +201,"Evaluation + Plan note","Evaluation + Plan note","2020-02-01" +201,"Evaluation + Plan note","Evaluation + Plan note","2019-10-01" +201,"Evaluation + Plan note","Evaluation + Plan note","2017-10-01" +200,,,"2017-09-01" +200,,,"2016-04-01" +200,,,"2013-08-01" +200,,"History and physical note","2017-09-01" +200,,"History and physical note","2016-04-01" +200,,"History and physical note","2013-08-01" +200,,"Evaluation + Plan note","2017-09-01" +200,,"Evaluation + Plan note","2016-04-01" +200,,"Evaluation + Plan note","2013-08-01" +200,"History and physical note",,"2017-09-01" +200,"History and physical note",,"2016-04-01" +200,"History and physical note",,"2013-08-01" +200,"History and physical note","History and physical note","2017-09-01" +200,"History and physical note","History and physical note","2016-04-01" +200,"History and physical note","History and physical note","2013-08-01" +200,"History and physical note","Evaluation + Plan note","2017-09-01" +200,"History and physical note","Evaluation + Plan note","2016-04-01" +200,"History and physical note","Evaluation + Plan note","2013-08-01" +200,"Evaluation + Plan note",,"2017-09-01" +200,"Evaluation + Plan note",,"2016-04-01" +200,"Evaluation + Plan note",,"2013-08-01" +200,"Evaluation + Plan note","History and physical note","2017-09-01" +200,"Evaluation + Plan note","History and physical note","2016-04-01" +200,"Evaluation + Plan note","History and physical note","2013-08-01" +200,"Evaluation + Plan note","Evaluation + Plan note","2017-09-01" +200,"Evaluation + Plan note","Evaluation + Plan note","2016-04-01" +200,"Evaluation + Plan note","Evaluation + Plan note","2013-08-01" +198,,,"2013-09-01" +198,,"History and physical note","2013-09-01" +198,,"Evaluation + Plan note","2013-09-01" +198,"History and physical note",,"2013-09-01" +198,"History and physical note","History and physical note","2013-09-01" +198,"History and physical note","Evaluation + Plan note","2013-09-01" +198,"Evaluation + Plan note",,"2013-09-01" +198,"Evaluation + Plan note","History and physical note","2013-09-01" +198,"Evaluation + Plan note","Evaluation + Plan note","2013-09-01" +197,,,"2018-02-01" +197,,,"2017-02-01" +197,,"History and physical note","2018-02-01" +197,,"History and physical note","2017-02-01" +197,,"Evaluation + Plan note","2018-02-01" +197,,"Evaluation + Plan note","2017-02-01" +197,"History and physical note",,"2018-02-01" +197,"History and physical note",,"2017-02-01" +197,"History and physical note","History and physical note","2018-02-01" +197,"History and physical note","History and physical note","2017-02-01" +197,"History and physical note","Evaluation + Plan note","2018-02-01" +197,"History and physical note","Evaluation + Plan note","2017-02-01" +197,"Evaluation + Plan note",,"2018-02-01" +197,"Evaluation + Plan note",,"2017-02-01" +197,"Evaluation + Plan note","History and physical note","2018-02-01" +197,"Evaluation + Plan note","History and physical note","2017-02-01" +197,"Evaluation + Plan note","Evaluation + Plan note","2018-02-01" +197,"Evaluation + Plan note","Evaluation + Plan note","2017-02-01" +196,,,"2018-11-01" +196,,,"2017-04-01" +196,,"History and physical note","2018-11-01" +196,,"History and physical note","2017-04-01" +196,,"Evaluation + Plan note","2018-11-01" +196,,"Evaluation + Plan note","2017-04-01" +196,"History and physical note",,"2018-11-01" +196,"History and physical note",,"2017-04-01" +196,"History and physical note","History and physical note","2018-11-01" +196,"History and physical note","History and physical note","2017-04-01" +196,"History and physical note","Evaluation + Plan note","2018-11-01" +196,"History and physical note","Evaluation + Plan note","2017-04-01" +196,"Evaluation + Plan note",,"2018-11-01" +196,"Evaluation + Plan note",,"2017-04-01" +196,"Evaluation + Plan note","History and physical note","2018-11-01" +196,"Evaluation + Plan note","History and physical note","2017-04-01" +196,"Evaluation + Plan note","Evaluation + Plan note","2018-11-01" +196,"Evaluation + Plan note","Evaluation + Plan note","2017-04-01" +194,,,"2015-04-01" +194,,"History and physical note","2015-04-01" +194,,"Evaluation + Plan note","2015-04-01" +194,"History and physical note",,"2015-04-01" +194,"History and physical note","History and physical note","2015-04-01" +194,"History and physical note","Evaluation + Plan note","2015-04-01" +194,"Evaluation + Plan note",,"2015-04-01" +194,"Evaluation + Plan note","History and physical note","2015-04-01" +194,"Evaluation + Plan note","Evaluation + Plan note","2015-04-01" +193,,,"2015-09-01" +193,,"History and physical note","2015-09-01" +193,,"Evaluation + Plan note","2015-09-01" +193,"History and physical note",,"2015-09-01" +193,"History and physical note","History and physical note","2015-09-01" +193,"History and physical note","Evaluation + Plan note","2015-09-01" +193,"Evaluation + Plan note",,"2015-09-01" +193,"Evaluation + Plan note","History and physical note","2015-09-01" +193,"Evaluation + Plan note","Evaluation + Plan note","2015-09-01" +189,,,"2013-11-01" +189,,"History and physical note","2013-11-01" +189,,"Evaluation + Plan note","2013-11-01" +189,"History and physical note",,"2013-11-01" +189,"History and physical note","History and physical note","2013-11-01" +189,"History and physical note","Evaluation + Plan note","2013-11-01" +189,"Evaluation + Plan note",,"2013-11-01" +189,"Evaluation + Plan note","History and physical note","2013-11-01" +189,"Evaluation + Plan note","Evaluation + Plan note","2013-11-01" +187,,,"2013-04-01" +187,,"History and physical note","2013-04-01" +187,,"Evaluation + Plan note","2013-04-01" +187,"History and physical note",,"2013-04-01" +187,"History and physical note","History and physical note","2013-04-01" +187,"History and physical note","Evaluation + Plan note","2013-04-01" +187,"Evaluation + Plan note",,"2013-04-01" +187,"Evaluation + Plan note","History and physical note","2013-04-01" +187,"Evaluation + Plan note","Evaluation + Plan note","2013-04-01" +186,,,"2019-11-01" +186,,,"2019-09-01" +186,,"History and physical note","2019-11-01" +186,,"History and physical note","2019-09-01" +186,,"Evaluation + Plan note","2019-11-01" +186,,"Evaluation + Plan note","2019-09-01" +186,"History and physical note",,"2019-11-01" +186,"History and physical note",,"2019-09-01" +186,"History and physical note","History and physical note","2019-11-01" +186,"History and physical note","History and physical note","2019-09-01" +186,"History and physical note","Evaluation + Plan note","2019-11-01" +186,"History and physical note","Evaluation + Plan note","2019-09-01" +186,"Evaluation + Plan note",,"2019-11-01" +186,"Evaluation + Plan note",,"2019-09-01" +186,"Evaluation + Plan note","History and physical note","2019-11-01" +186,"Evaluation + Plan note","History and physical note","2019-09-01" +186,"Evaluation + Plan note","Evaluation + Plan note","2019-11-01" +186,"Evaluation + Plan note","Evaluation + Plan note","2019-09-01" +184,,,"2016-11-01" +183,,"History and physical note","2016-11-01" +183,,"Evaluation + Plan note","2016-11-01" +183,"History and physical note",,"2016-11-01" +183,"History and physical note","History and physical note","2016-11-01" +183,"History and physical note","Evaluation + Plan note","2016-11-01" +183,"Evaluation + Plan note",,"2016-11-01" +183,"Evaluation + Plan note","History and physical note","2016-11-01" +183,"Evaluation + Plan note","Evaluation + Plan note","2016-11-01" +154,,"Urinalysis macro (dipstick) panel - Urine", +154,"Laboratory","Urinalysis macro (dipstick) panel - Urine", +147,,"Basic metabolic 2000 panel - Serum or Plasma", +147,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma", +138,,"U.S. standard certificate of death - 2003 revision", +138,"cumulus__none","U.S. standard certificate of death - 2003 revision", +119,"cumulus__none",,"2020-03-01" +111,"cumulus__none",,"2019-03-01" +109,"cumulus__none",,"2017-03-01" +106,"cumulus__none",,"2018-03-01" +105,"cumulus__none",,"2021-03-01" +103,"cumulus__none",,"2021-07-01" +103,"Laboratory",,"2021-01-01" +102,,"SARS-CoV-2 RNA Pnl Resp NAA+probe", +102,"Laboratory","SARS-CoV-2 RNA Pnl Resp NAA+probe", +101,"Laboratory",,"2021-03-01" +100,"cumulus__none",,"2021-06-01" +99,"Laboratory",,"2020-03-01" +99,"Laboratory",,"2019-01-01" +98,,,"2013-01-01" +98,,"History and physical note","2013-01-01" +98,,"Evaluation + Plan note","2013-01-01" +98,"cumulus__none",,"2022-06-01" +98,"cumulus__none",,"2018-08-01" +98,"History and physical note",,"2013-01-01" +98,"History and physical note","History and physical note","2013-01-01" +98,"History and physical note","Evaluation + Plan note","2013-01-01" +98,"Evaluation + Plan note",,"2013-01-01" +98,"Evaluation + Plan note","History and physical note","2013-01-01" +98,"Evaluation + Plan note","Evaluation + Plan note","2013-01-01" +97,"cumulus__none",,"2019-06-01" +97,"Laboratory",,"2018-03-01" +96,"cumulus__none",,"2022-04-01" +96,"Laboratory",,"2020-12-01" +95,"cumulus__none",,"2021-12-01" +95,"cumulus__none",,"2020-08-01" +95,"cumulus__none",,"2014-12-01" +94,,,"2012-01-01" +94,,"History and physical note","2012-01-01" +94,,"Evaluation + Plan note","2012-01-01" +94,"cumulus__none",,"2020-06-01" +94,"Laboratory",,"2022-06-01" +94,"History and physical note",,"2012-01-01" +94,"History and physical note","History and physical note","2012-01-01" +94,"History and physical note","Evaluation + Plan note","2012-01-01" +94,"Evaluation + Plan note",,"2012-01-01" +94,"Evaluation + Plan note","History and physical note","2012-01-01" +94,"Evaluation + Plan note","Evaluation + Plan note","2012-01-01" +93,,,"2012-12-01" +93,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-03-01" +93,,"History and physical note","2012-12-01" +93,,"Evaluation + Plan note","2012-12-01" +93,"cumulus__none",,"2021-08-01" +93,"cumulus__none",,"2021-01-01" +93,"cumulus__none",,"2019-01-01" +93,"cumulus__none",,"2015-07-01" +93,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-03-01" +93,"Laboratory",,"2023-03-01" +93,"Laboratory",,"2020-08-01" +93,"Laboratory",,"2019-03-01" +93,"History and physical note",,"2012-12-01" +93,"History and physical note","History and physical note","2012-12-01" +93,"History and physical note","Evaluation + Plan note","2012-12-01" +93,"Evaluation + Plan note",,"2012-12-01" +93,"Evaluation + Plan note","History and physical note","2012-12-01" +93,"Evaluation + Plan note","Evaluation + Plan note","2012-12-01" +92,"cumulus__none",,"2018-05-01" +92,"cumulus__none",,"2015-01-01" +91,,,"2012-10-01" +91,,,"2012-07-01" +91,,"History and physical note","2012-10-01" +91,,"History and physical note","2012-07-01" +91,,"Evaluation + Plan note","2012-10-01" +91,,"Evaluation + Plan note","2012-07-01" +91,"cumulus__none",,"2021-05-01" +91,"cumulus__none",,"2020-01-01" +91,"Laboratory",,"2022-03-01" +91,"Laboratory",,"2021-06-01" +91,"Laboratory",,"2016-01-01" +91,"History and physical note",,"2012-10-01" +91,"History and physical note",,"2012-07-01" +91,"History and physical note","History and physical note","2012-10-01" +91,"History and physical note","History and physical note","2012-07-01" +91,"History and physical note","Evaluation + Plan note","2012-10-01" +91,"History and physical note","Evaluation + Plan note","2012-07-01" +91,"Evaluation + Plan note",,"2012-10-01" +91,"Evaluation + Plan note",,"2012-07-01" +91,"Evaluation + Plan note","History and physical note","2012-10-01" +91,"Evaluation + Plan note","History and physical note","2012-07-01" +91,"Evaluation + Plan note","Evaluation + Plan note","2012-10-01" +91,"Evaluation + Plan note","Evaluation + Plan note","2012-07-01" +90,"cumulus__none",,"2021-04-01" +90,"Laboratory",,"2021-07-01" +89,,,"2007-12-01" +89,,"History and physical note","2007-12-01" +89,,"Evaluation + Plan note","2007-12-01" +89,"cumulus__none",,"2022-07-01" +89,"cumulus__none",,"2022-05-01" +89,"cumulus__none",,"2022-03-01" +89,"cumulus__none",,"2021-09-01" +89,"cumulus__none",,"2015-02-01" +89,"cumulus__none",,"2014-05-01" +89,"Laboratory",,"2021-08-01" +89,"Laboratory",,"2020-11-01" +89,"History and physical note",,"2007-12-01" +89,"History and physical note","History and physical note","2007-12-01" +89,"History and physical note","Evaluation + Plan note","2007-12-01" +89,"Evaluation + Plan note",,"2007-12-01" +89,"Evaluation + Plan note","History and physical note","2007-12-01" +89,"Evaluation + Plan note","Evaluation + Plan note","2007-12-01" +88,,,"2012-04-01" +88,,"History and physical note","2012-04-01" +88,,"Evaluation + Plan note","2012-04-01" +88,"cumulus__none",,"2021-10-01" +88,"cumulus__none",,"2019-04-01" +88,"cumulus__none",,"2018-06-01" +88,"cumulus__none",,"2017-05-01" +88,"cumulus__none",,"2017-01-01" +88,"Laboratory",,"2022-01-01" +88,"Laboratory",,"2021-09-01" +88,"Laboratory",,"2020-06-01" +88,"Laboratory",,"2017-01-01" +88,"History and physical note",,"2012-04-01" +88,"History and physical note","History and physical note","2012-04-01" +88,"History and physical note","Evaluation + Plan note","2012-04-01" +88,"Evaluation + Plan note",,"2012-04-01" +88,"Evaluation + Plan note","History and physical note","2012-04-01" +88,"Evaluation + Plan note","Evaluation + Plan note","2012-04-01" +87,"cumulus__none",,"2017-07-01" +87,"cumulus__none",,"2016-06-01" +87,"cumulus__none",,"2016-02-01" +87,"cumulus__none",,"2013-12-01" +87,"Laboratory",,"2021-02-01" +87,"Laboratory",,"2019-02-01" +87,"Laboratory",,"2018-08-01" +87,"Laboratory",,"2018-05-01" +87,"Laboratory",,"2018-01-01" +87,"Laboratory",,"2017-03-01" +87,"Laboratory",,"2015-07-01" +86,,,"2012-05-01" +86,,,"2011-12-01" +86,,"History and physical note","2012-05-01" +86,,"History and physical note","2011-12-01" +86,,"Evaluation + Plan note","2012-05-01" +86,,"Evaluation + Plan note","2011-12-01" +86,"cumulus__none",,"2022-01-01" +86,"cumulus__none",,"2021-02-01" +86,"cumulus__none",,"2020-02-01" +86,"cumulus__none",,"2019-02-01" +86,"cumulus__none",,"2016-01-01" +86,"cumulus__none",,"2014-02-01" +86,"Laboratory",,"2021-04-01" +86,"Laboratory",,"2015-01-01" +86,"Laboratory",,"2014-12-01" +86,"Laboratory",,"2014-02-01" +86,"History and physical note",,"2012-05-01" +86,"History and physical note",,"2011-12-01" +86,"History and physical note","History and physical note","2012-05-01" +86,"History and physical note","History and physical note","2011-12-01" +86,"History and physical note","Evaluation + Plan note","2012-05-01" +86,"History and physical note","Evaluation + Plan note","2011-12-01" +86,"Evaluation + Plan note",,"2012-05-01" +86,"Evaluation + Plan note",,"2011-12-01" +86,"Evaluation + Plan note","History and physical note","2012-05-01" +86,"Evaluation + Plan note","History and physical note","2011-12-01" +86,"Evaluation + Plan note","Evaluation + Plan note","2012-05-01" +86,"Evaluation + Plan note","Evaluation + Plan note","2011-12-01" +85,"cumulus__none",,"2022-08-01" +85,"cumulus__none",,"2019-05-01" +85,"cumulus__none",,"2018-11-01" +85,"cumulus__none",,"2017-12-01" +85,"Laboratory",,"2022-09-01" +85,"Laboratory",,"2020-09-01" +85,"Laboratory",,"2019-04-01" +84,,,"2012-06-01" +84,,,"2009-12-01" +84,,,"2009-04-01" +84,,,"2008-12-01" +84,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-03-01" +84,,"History and physical note","2012-06-01" +84,,"History and physical note","2009-12-01" +84,,"History and physical note","2009-04-01" +84,,"Evaluation + Plan note","2012-06-01" +84,,"Evaluation + Plan note","2009-12-01" +84,,"Evaluation + Plan note","2009-04-01" +84,"cumulus__none",,"2016-03-01" +84,"cumulus__none",,"2015-06-01" +84,"cumulus__none",,"2015-05-01" +84,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-03-01" +84,"Laboratory",,"2022-10-01" +84,"Laboratory",,"2021-10-01" +84,"Laboratory",,"2020-01-01" +84,"Laboratory",,"2019-08-01" +84,"History and physical note",,"2012-06-01" +84,"History and physical note",,"2009-12-01" +84,"History and physical note",,"2009-04-01" +84,"History and physical note","History and physical note","2012-06-01" +84,"History and physical note","History and physical note","2009-12-01" +84,"History and physical note","History and physical note","2009-04-01" +84,"History and physical note","Evaluation + Plan note","2012-06-01" +84,"History and physical note","Evaluation + Plan note","2009-12-01" +84,"History and physical note","Evaluation + Plan note","2009-04-01" +84,"Evaluation + Plan note",,"2012-06-01" +84,"Evaluation + Plan note",,"2009-12-01" +84,"Evaluation + Plan note",,"2009-04-01" +84,"Evaluation + Plan note","History and physical note","2012-06-01" +84,"Evaluation + Plan note","History and physical note","2009-12-01" +84,"Evaluation + Plan note","History and physical note","2009-04-01" +84,"Evaluation + Plan note","Evaluation + Plan note","2012-06-01" +84,"Evaluation + Plan note","Evaluation + Plan note","2009-12-01" +84,"Evaluation + Plan note","Evaluation + Plan note","2009-04-01" +83,,,"2013-03-01" +83,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-03-01" +83,,"History and physical note","2013-03-01" +83,,"History and physical note","2008-12-01" +83,,"Evaluation + Plan note","2013-03-01" +83,,"Evaluation + Plan note","2008-12-01" +83,"cumulus__none",,"2022-02-01" +83,"cumulus__none",,"2020-05-01" +83,"cumulus__none",,"2017-06-01" +83,"cumulus__none",,"2014-07-01" +83,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-03-01" +83,"Laboratory",,"2022-07-01" +83,"Laboratory",,"2022-04-01" +83,"Laboratory",,"2021-12-01" +83,"Laboratory",,"2019-06-01" +83,"History and physical note",,"2013-03-01" +83,"History and physical note",,"2008-12-01" +83,"History and physical note","History and physical note","2013-03-01" +83,"History and physical note","History and physical note","2008-12-01" +83,"History and physical note","Evaluation + Plan note","2013-03-01" +83,"History and physical note","Evaluation + Plan note","2008-12-01" +83,"Evaluation + Plan note",,"2013-03-01" +83,"Evaluation + Plan note",,"2008-12-01" +83,"Evaluation + Plan note","History and physical note","2013-03-01" +83,"Evaluation + Plan note","History and physical note","2008-12-01" +83,"Evaluation + Plan note","Evaluation + Plan note","2013-03-01" +83,"Evaluation + Plan note","Evaluation + Plan note","2008-12-01" +82,,,"2010-12-01" +82,,,"2010-08-01" +82,,"History and physical note","2010-12-01" +82,,"History and physical note","2010-08-01" +82,,"Evaluation + Plan note","2010-12-01" +82,,"Evaluation + Plan note","2010-08-01" +82,"cumulus__none",,"2023-02-01" +82,"cumulus__none",,"2020-12-01" +82,"cumulus__none",,"2019-11-01" +82,"cumulus__none",,"2019-08-01" +82,"cumulus__none",,"2016-12-01" +82,"Laboratory",,"2023-01-01" +82,"Laboratory",,"2020-10-01" +82,"Laboratory",,"2018-12-01" +82,"Laboratory",,"2018-09-01" +82,"Laboratory",,"2017-06-01" +82,"Laboratory",,"2017-05-01" +82,"Laboratory",,"2013-12-01" +82,"History and physical note",,"2010-12-01" +82,"History and physical note",,"2010-08-01" +82,"History and physical note","History and physical note","2010-12-01" +82,"History and physical note","History and physical note","2010-08-01" +82,"History and physical note","Evaluation + Plan note","2010-12-01" +82,"History and physical note","Evaluation + Plan note","2010-08-01" +82,"Evaluation + Plan note",,"2010-12-01" +82,"Evaluation + Plan note",,"2010-08-01" +82,"Evaluation + Plan note","History and physical note","2010-12-01" +82,"Evaluation + Plan note","History and physical note","2010-08-01" +82,"Evaluation + Plan note","Evaluation + Plan note","2010-12-01" +82,"Evaluation + Plan note","Evaluation + Plan note","2010-08-01" +81,,,"2013-02-01" +81,,,"2012-11-01" +81,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-06-01" +81,,"History and physical note","2013-02-01" +81,,"History and physical note","2012-11-01" +81,,"Evaluation + Plan note","2013-02-01" +81,,"Evaluation + Plan note","2012-11-01" +81,"cumulus__none",,"2023-01-01" +81,"cumulus__none",,"2022-09-01" +81,"cumulus__none",,"2020-07-01" +81,"cumulus__none",,"2018-01-01" +81,"cumulus__none",,"2016-09-01" +81,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-06-01" +81,"Laboratory",,"2022-05-01" +81,"Laboratory",,"2022-02-01" +81,"Laboratory",,"2021-05-01" +81,"Laboratory",,"2020-05-01" +81,"Laboratory",,"2015-03-01" +81,"Laboratory",,"2015-02-01" +81,"Laboratory",,"2014-05-01" +81,"History and physical note",,"2013-02-01" +81,"History and physical note",,"2012-11-01" +81,"History and physical note","History and physical note","2013-02-01" +81,"History and physical note","History and physical note","2012-11-01" +81,"History and physical note","Evaluation + Plan note","2013-02-01" +81,"History and physical note","Evaluation + Plan note","2012-11-01" +81,"Evaluation + Plan note",,"2013-02-01" +81,"Evaluation + Plan note",,"2012-11-01" +81,"Evaluation + Plan note","History and physical note","2013-02-01" +81,"Evaluation + Plan note","History and physical note","2012-11-01" +81,"Evaluation + Plan note","Evaluation + Plan note","2013-02-01" +81,"Evaluation + Plan note","Evaluation + Plan note","2012-11-01" +80,,,"2011-09-01" +80,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-03-01" +80,,"History and physical note","2011-09-01" +80,,"Evaluation + Plan note","2011-09-01" +80,"cumulus__none",,"2017-08-01" +80,"cumulus__none",,"2015-03-01" +80,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-03-01" +80,"Laboratory",,"2023-02-01" +80,"Laboratory",,"2020-02-01" +80,"Laboratory",,"2018-06-01" +80,"Laboratory",,"2018-02-01" +80,"History and physical note",,"2011-09-01" +80,"History and physical note","History and physical note","2011-09-01" +80,"History and physical note","Evaluation + Plan note","2011-09-01" +80,"Evaluation + Plan note",,"2011-09-01" +80,"Evaluation + Plan note","History and physical note","2011-09-01" +80,"Evaluation + Plan note","Evaluation + Plan note","2011-09-01" +79,,,"2012-03-01" +79,,,"2012-02-01" +79,,,"2010-01-01" +79,,"History and physical note","2012-03-01" +79,,"History and physical note","2012-02-01" +79,,"History and physical note","2010-01-01" +79,,"Evaluation + Plan note","2012-03-01" +79,,"Evaluation + Plan note","2012-02-01" +79,,"Evaluation + Plan note","2010-01-01" +79,"cumulus__none",,"2022-12-01" +79,"cumulus__none",,"2021-11-01" +79,"cumulus__none",,"2018-04-01" +79,"cumulus__none",,"2016-07-01" +79,"cumulus__none",,"2016-05-01" +79,"cumulus__none",,"2015-12-01" +79,"Laboratory",,"2022-12-01" +79,"Laboratory",,"2017-12-01" +79,"Laboratory",,"2017-11-01" +79,"Laboratory",,"2017-10-01" +79,"Laboratory",,"2017-07-01" +79,"Laboratory",,"2015-12-01" +79,"History and physical note",,"2012-03-01" +79,"History and physical note",,"2012-02-01" +79,"History and physical note",,"2010-01-01" +79,"History and physical note","History and physical note","2012-03-01" +79,"History and physical note","History and physical note","2012-02-01" +79,"History and physical note","History and physical note","2010-01-01" +79,"History and physical note","Evaluation + Plan note","2012-03-01" +79,"History and physical note","Evaluation + Plan note","2012-02-01" +79,"History and physical note","Evaluation + Plan note","2010-01-01" +79,"Evaluation + Plan note",,"2012-03-01" +79,"Evaluation + Plan note",,"2012-02-01" +79,"Evaluation + Plan note",,"2010-01-01" +79,"Evaluation + Plan note","History and physical note","2012-03-01" +79,"Evaluation + Plan note","History and physical note","2012-02-01" +79,"Evaluation + Plan note","History and physical note","2010-01-01" +79,"Evaluation + Plan note","Evaluation + Plan note","2012-03-01" +79,"Evaluation + Plan note","Evaluation + Plan note","2012-02-01" +79,"Evaluation + Plan note","Evaluation + Plan note","2010-01-01" +78,,,"2012-09-01" +78,,,"2012-08-01" +78,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-03-01" +78,,"History and physical note","2012-09-01" +78,,"History and physical note","2012-08-01" +78,,"Evaluation + Plan note","2012-09-01" +78,,"Evaluation + Plan note","2012-08-01" +78,"cumulus__none",,"2022-10-01" +78,"cumulus__none",,"2020-10-01" +78,"cumulus__none",,"2018-12-01" +78,"cumulus__none",,"2017-10-01" +78,"cumulus__none",,"2015-04-01" +78,"cumulus__none",,"2014-09-01" +78,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-03-01" +78,"Laboratory",,"2017-02-01" +78,"Laboratory",,"2016-12-01" +78,"Laboratory",,"2016-09-01" +78,"Laboratory",,"2016-06-01" +78,"History and physical note",,"2012-09-01" +78,"History and physical note",,"2012-08-01" +78,"History and physical note","History and physical note","2012-09-01" +78,"History and physical note","History and physical note","2012-08-01" +78,"History and physical note","Evaluation + Plan note","2012-09-01" +78,"History and physical note","Evaluation + Plan note","2012-08-01" +78,"Evaluation + Plan note",,"2012-09-01" +78,"Evaluation + Plan note",,"2012-08-01" +78,"Evaluation + Plan note","History and physical note","2012-09-01" +78,"Evaluation + Plan note","History and physical note","2012-08-01" +78,"Evaluation + Plan note","Evaluation + Plan note","2012-09-01" +78,"Evaluation + Plan note","Evaluation + Plan note","2012-08-01" +77,,,"2011-08-01" +77,,,"2006-12-01" +77,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-04-01" +77,,"History and physical note","2011-08-01" +77,,"History and physical note","2006-12-01" +77,,"Evaluation + Plan note","2011-08-01" +77,,"Evaluation + Plan note","2006-12-01" +77,"cumulus__none",,"2023-03-01" +77,"cumulus__none",,"2019-07-01" +77,"cumulus__none",,"2018-09-01" +77,"cumulus__none",,"2013-05-01" +77,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-04-01" +77,"Laboratory",,"2018-10-01" +77,"Laboratory",,"2018-04-01" +77,"Laboratory",,"2016-02-01" +77,"Laboratory",,"2015-09-01" +77,"Laboratory",,"2015-04-01" +77,"Laboratory",,"2014-01-01" +77,"History and physical note",,"2011-08-01" +77,"History and physical note",,"2006-12-01" +77,"History and physical note","History and physical note","2011-08-01" +77,"History and physical note","History and physical note","2006-12-01" +77,"History and physical note","Evaluation + Plan note","2011-08-01" +77,"History and physical note","Evaluation + Plan note","2006-12-01" +77,"Evaluation + Plan note",,"2011-08-01" +77,"Evaluation + Plan note",,"2006-12-01" +77,"Evaluation + Plan note","History and physical note","2011-08-01" +77,"Evaluation + Plan note","History and physical note","2006-12-01" +77,"Evaluation + Plan note","Evaluation + Plan note","2011-08-01" +77,"Evaluation + Plan note","Evaluation + Plan note","2006-12-01" +76,"cumulus__none",,"2020-11-01" +76,"cumulus__none",,"2020-09-01" +76,"cumulus__none",,"2017-09-01" +76,"cumulus__none",,"2017-02-01" +76,"cumulus__none",,"2016-08-01" +76,"Laboratory",,"2018-11-01" +75,,,"2011-04-01" +75,,,"2010-10-01" +75,,,"2009-05-01" +75,,,"2009-02-01" +75,,"History and physical note","2011-04-01" +75,,"History and physical note","2010-10-01" +75,,"History and physical note","2009-05-01" +75,,"History and physical note","2009-02-01" +75,,"Evaluation + Plan note","2011-04-01" +75,,"Evaluation + Plan note","2010-10-01" +75,,"Evaluation + Plan note","2009-05-01" +75,,"Evaluation + Plan note","2009-02-01" +75,"cumulus__none",,"2020-04-01" +75,"cumulus__none",,"2019-12-01" +75,"cumulus__none",,"2018-07-01" +75,"cumulus__none",,"2018-02-01" +75,"cumulus__none",,"2014-01-01" +75,"Laboratory",,"2022-11-01" +75,"Laboratory",,"2020-04-01" +75,"Laboratory",,"2019-05-01" +75,"Laboratory",,"2016-08-01" +75,"Laboratory",,"2016-07-01" +75,"Laboratory",,"2015-05-01" +75,"History and physical note",,"2011-04-01" +75,"History and physical note",,"2010-10-01" +75,"History and physical note",,"2009-05-01" +75,"History and physical note",,"2009-02-01" +75,"History and physical note","History and physical note","2011-04-01" +75,"History and physical note","History and physical note","2010-10-01" +75,"History and physical note","History and physical note","2009-05-01" +75,"History and physical note","History and physical note","2009-02-01" +75,"History and physical note","Evaluation + Plan note","2011-04-01" +75,"History and physical note","Evaluation + Plan note","2010-10-01" +75,"History and physical note","Evaluation + Plan note","2009-05-01" +75,"History and physical note","Evaluation + Plan note","2009-02-01" +75,"Evaluation + Plan note",,"2011-04-01" +75,"Evaluation + Plan note",,"2010-10-01" +75,"Evaluation + Plan note",,"2009-05-01" +75,"Evaluation + Plan note",,"2009-02-01" +75,"Evaluation + Plan note","History and physical note","2011-04-01" +75,"Evaluation + Plan note","History and physical note","2010-10-01" +75,"Evaluation + Plan note","History and physical note","2009-05-01" +75,"Evaluation + Plan note","History and physical note","2009-02-01" +75,"Evaluation + Plan note","Evaluation + Plan note","2011-04-01" +75,"Evaluation + Plan note","Evaluation + Plan note","2010-10-01" +75,"Evaluation + Plan note","Evaluation + Plan note","2009-05-01" +75,"Evaluation + Plan note","Evaluation + Plan note","2009-02-01" +74,,,"2011-11-01" +74,,,"2011-01-01" +74,,,"2010-05-01" +74,,,"2010-03-01" +74,,,"2009-03-01" +74,,,"2008-09-01" +74,,,"2007-06-01" +74,,"History and physical note","2011-11-01" +74,,"History and physical note","2011-01-01" +74,,"History and physical note","2010-05-01" +74,,"History and physical note","2010-03-01" +74,,"History and physical note","2009-03-01" +74,,"History and physical note","2008-09-01" +74,,"History and physical note","2007-06-01" +74,,"Evaluation + Plan note","2011-11-01" +74,,"Evaluation + Plan note","2011-01-01" +74,,"Evaluation + Plan note","2010-05-01" +74,,"Evaluation + Plan note","2010-03-01" +74,,"Evaluation + Plan note","2009-03-01" +74,,"Evaluation + Plan note","2008-09-01" +74,,"Evaluation + Plan note","2007-06-01" +74,"cumulus__none",,"2022-11-01" +74,"cumulus__none",,"2019-10-01" +74,"cumulus__none",,"2017-11-01" +74,"cumulus__none",,"2015-11-01" +74,"cumulus__none",,"2013-10-01" +74,"Laboratory",,"2022-08-01" +74,"Laboratory",,"2021-11-01" +74,"Laboratory",,"2019-07-01" +74,"Laboratory",,"2014-03-01" +74,"History and physical note",,"2011-11-01" +74,"History and physical note",,"2011-01-01" +74,"History and physical note",,"2010-05-01" +74,"History and physical note",,"2010-03-01" +74,"History and physical note",,"2009-03-01" +74,"History and physical note",,"2008-09-01" +74,"History and physical note",,"2007-06-01" +74,"History and physical note","History and physical note","2011-11-01" +74,"History and physical note","History and physical note","2011-01-01" +74,"History and physical note","History and physical note","2010-05-01" +74,"History and physical note","History and physical note","2010-03-01" +74,"History and physical note","History and physical note","2009-03-01" +74,"History and physical note","History and physical note","2008-09-01" +74,"History and physical note","History and physical note","2007-06-01" +74,"History and physical note","Evaluation + Plan note","2011-11-01" +74,"History and physical note","Evaluation + Plan note","2011-01-01" +74,"History and physical note","Evaluation + Plan note","2010-05-01" +74,"History and physical note","Evaluation + Plan note","2010-03-01" +74,"History and physical note","Evaluation + Plan note","2009-03-01" +74,"History and physical note","Evaluation + Plan note","2008-09-01" +74,"History and physical note","Evaluation + Plan note","2007-06-01" +74,"Evaluation + Plan note",,"2011-11-01" +74,"Evaluation + Plan note",,"2011-01-01" +74,"Evaluation + Plan note",,"2010-05-01" +74,"Evaluation + Plan note",,"2010-03-01" +74,"Evaluation + Plan note",,"2009-03-01" +74,"Evaluation + Plan note",,"2008-09-01" +74,"Evaluation + Plan note",,"2007-06-01" +74,"Evaluation + Plan note","History and physical note","2011-11-01" +74,"Evaluation + Plan note","History and physical note","2011-01-01" +74,"Evaluation + Plan note","History and physical note","2010-05-01" +74,"Evaluation + Plan note","History and physical note","2010-03-01" +74,"Evaluation + Plan note","History and physical note","2009-03-01" +74,"Evaluation + Plan note","History and physical note","2008-09-01" +74,"Evaluation + Plan note","History and physical note","2007-06-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2011-11-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2011-01-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2010-05-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2010-03-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2009-03-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2008-09-01" +74,"Evaluation + Plan note","Evaluation + Plan note","2007-06-01" +73,,,"2011-05-01" +73,,,"2007-04-01" +73,,,"2006-03-01" +73,,,"2003-10-01" +73,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-05-01" +73,,"History and physical note","2011-05-01" +73,,"History and physical note","2007-04-01" +73,,"History and physical note","2006-03-01" +73,,"History and physical note","2003-10-01" +73,,"Evaluation + Plan note","2011-05-01" +73,,"Evaluation + Plan note","2007-04-01" +73,,"Evaluation + Plan note","2006-03-01" +73,,"Evaluation + Plan note","2003-10-01" +73,"cumulus__none",,"2018-10-01" +73,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-05-01" +73,"Laboratory",,"2019-11-01" +73,"Laboratory",,"2018-07-01" +73,"Laboratory",,"2016-03-01" +73,"Laboratory",,"2015-06-01" +73,"Laboratory",,"2013-07-01" +73,"History and physical note",,"2011-05-01" +73,"History and physical note",,"2007-04-01" +73,"History and physical note",,"2006-03-01" +73,"History and physical note",,"2003-10-01" +73,"History and physical note","History and physical note","2011-05-01" +73,"History and physical note","History and physical note","2007-04-01" +73,"History and physical note","History and physical note","2006-03-01" +73,"History and physical note","History and physical note","2003-10-01" +73,"History and physical note","Evaluation + Plan note","2011-05-01" +73,"History and physical note","Evaluation + Plan note","2007-04-01" +73,"History and physical note","Evaluation + Plan note","2006-03-01" +73,"History and physical note","Evaluation + Plan note","2003-10-01" +73,"Evaluation + Plan note",,"2011-05-01" +73,"Evaluation + Plan note",,"2007-04-01" +73,"Evaluation + Plan note",,"2006-03-01" +73,"Evaluation + Plan note",,"2003-10-01" +73,"Evaluation + Plan note","History and physical note","2011-05-01" +73,"Evaluation + Plan note","History and physical note","2007-04-01" +73,"Evaluation + Plan note","History and physical note","2006-03-01" +73,"Evaluation + Plan note","History and physical note","2003-10-01" +73,"Evaluation + Plan note","Evaluation + Plan note","2011-05-01" +73,"Evaluation + Plan note","Evaluation + Plan note","2007-04-01" +73,"Evaluation + Plan note","Evaluation + Plan note","2006-03-01" +73,"Evaluation + Plan note","Evaluation + Plan note","2003-10-01" +72,,,"2011-10-01" +72,,,"2008-01-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-12-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-06-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-01-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-06-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-05-01" +72,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-02-01" +72,,"History and physical note","2011-10-01" +72,,"History and physical note","2008-01-01" +72,,"Generalized anxiety disorder 7 item (GAD-7)","2020-03-01" +72,,"Evaluation + Plan note","2011-10-01" +72,,"Evaluation + Plan note","2008-01-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-12-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-06-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-01-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-06-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-05-01" +72,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-02-01" +72,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-03-01" +72,"Laboratory",,"2019-12-01" +72,"Laboratory",,"2014-07-01" +72,"History and physical note",,"2011-10-01" +72,"History and physical note",,"2008-01-01" +72,"History and physical note","History and physical note","2011-10-01" +72,"History and physical note","History and physical note","2008-01-01" +72,"History and physical note","Evaluation + Plan note","2011-10-01" +72,"History and physical note","Evaluation + Plan note","2008-01-01" +72,"Evaluation + Plan note",,"2011-10-01" +72,"Evaluation + Plan note",,"2008-01-01" +72,"Evaluation + Plan note","History and physical note","2011-10-01" +72,"Evaluation + Plan note","History and physical note","2008-01-01" +72,"Evaluation + Plan note","Evaluation + Plan note","2011-10-01" +72,"Evaluation + Plan note","Evaluation + Plan note","2008-01-01" +71,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-06-01" +71,"cumulus__none",,"2016-11-01" +71,"cumulus__none",,"2015-09-01" +71,"cumulus__none",,"2014-11-01" +71,"cumulus__none",,"2013-07-01" +71,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-06-01" +71,"Laboratory",,"2017-09-01" +71,"Laboratory",,"2017-08-01" +71,"Laboratory",,"2015-08-01" +71,"Laboratory",,"2013-10-01" +70,,,"2008-06-01" +70,,,"2008-05-01" +70,,,"2005-04-01" +70,,"Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection", +70,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-03-01" +70,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-07-01" +70,,"History and physical note","2008-06-01" +70,,"History and physical note","2008-05-01" +70,,"History and physical note","2005-04-01" +70,,"Evaluation + Plan note","2008-06-01" +70,,"Evaluation + Plan note","2008-05-01" +70,,"Evaluation + Plan note","2005-04-01" +70,"cumulus__none",,"2015-10-01" +70,"cumulus__none",,"2014-03-01" +70,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-03-01" +70,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-07-01" +70,"Laboratory",,"2014-09-01" +70,"Laboratory","Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection", +70,"History and physical note",,"2008-06-01" +70,"History and physical note",,"2008-05-01" +70,"History and physical note",,"2005-04-01" +70,"History and physical note","History and physical note","2008-06-01" +70,"History and physical note","History and physical note","2008-05-01" +70,"History and physical note","History and physical note","2005-04-01" +70,"History and physical note","Evaluation + Plan note","2008-06-01" +70,"History and physical note","Evaluation + Plan note","2008-05-01" +70,"History and physical note","Evaluation + Plan note","2005-04-01" +70,"Evaluation + Plan note",,"2008-06-01" +70,"Evaluation + Plan note",,"2008-05-01" +70,"Evaluation + Plan note",,"2005-04-01" +70,"Evaluation + Plan note","History and physical note","2008-06-01" +70,"Evaluation + Plan note","History and physical note","2008-05-01" +70,"Evaluation + Plan note","History and physical note","2005-04-01" +70,"Evaluation + Plan note","Evaluation + Plan note","2008-06-01" +70,"Evaluation + Plan note","Evaluation + Plan note","2008-05-01" +70,"Evaluation + Plan note","Evaluation + Plan note","2005-04-01" +69,,,"2010-07-01" +69,,,"2009-10-01" +69,,,"2009-01-01" +69,,,"2008-11-01" +69,,,"2007-11-01" +69,,,"2006-04-01" +69,,,"2005-11-01" +69,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-09-01" +69,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-01-01" +69,,"History and physical note","2010-07-01" +69,,"History and physical note","2009-10-01" +69,,"History and physical note","2009-01-01" +69,,"History and physical note","2008-11-01" +69,,"History and physical note","2007-11-01" +69,,"History and physical note","2006-04-01" +69,,"History and physical note","2005-11-01" +69,,"Evaluation + Plan note","2010-07-01" +69,,"Evaluation + Plan note","2009-10-01" +69,,"Evaluation + Plan note","2009-01-01" +69,,"Evaluation + Plan note","2008-11-01" +69,,"Evaluation + Plan note","2007-11-01" +69,,"Evaluation + Plan note","2006-04-01" +69,,"Evaluation + Plan note","2005-11-01" +69,"cumulus__none",,"2016-10-01" +69,"cumulus__none",,"2014-04-01" +69,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-09-01" +69,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-01-01" +69,"Laboratory",,"2016-05-01" +69,"Laboratory",,"2015-11-01" +69,"Laboratory",,"2015-10-01" +69,"Laboratory",,"2013-08-01" +69,"Laboratory",,"2013-05-01" +69,"History and physical note",,"2010-07-01" +69,"History and physical note",,"2009-10-01" +69,"History and physical note",,"2009-01-01" +69,"History and physical note",,"2008-11-01" +69,"History and physical note",,"2007-11-01" +69,"History and physical note",,"2006-04-01" +69,"History and physical note",,"2005-11-01" +69,"History and physical note","History and physical note","2010-07-01" +69,"History and physical note","History and physical note","2009-10-01" +69,"History and physical note","History and physical note","2009-01-01" +69,"History and physical note","History and physical note","2008-11-01" +69,"History and physical note","History and physical note","2007-11-01" +69,"History and physical note","History and physical note","2006-04-01" +69,"History and physical note","History and physical note","2005-11-01" +69,"History and physical note","Evaluation + Plan note","2010-07-01" +69,"History and physical note","Evaluation + Plan note","2009-10-01" +69,"History and physical note","Evaluation + Plan note","2009-01-01" +69,"History and physical note","Evaluation + Plan note","2008-11-01" +69,"History and physical note","Evaluation + Plan note","2007-11-01" +69,"History and physical note","Evaluation + Plan note","2006-04-01" +69,"History and physical note","Evaluation + Plan note","2005-11-01" +69,"Evaluation + Plan note",,"2010-07-01" +69,"Evaluation + Plan note",,"2009-10-01" +69,"Evaluation + Plan note",,"2009-01-01" +69,"Evaluation + Plan note",,"2008-11-01" +69,"Evaluation + Plan note",,"2007-11-01" +69,"Evaluation + Plan note",,"2006-04-01" +69,"Evaluation + Plan note",,"2005-11-01" +69,"Evaluation + Plan note","History and physical note","2010-07-01" +69,"Evaluation + Plan note","History and physical note","2009-10-01" +69,"Evaluation + Plan note","History and physical note","2009-01-01" +69,"Evaluation + Plan note","History and physical note","2008-11-01" +69,"Evaluation + Plan note","History and physical note","2007-11-01" +69,"Evaluation + Plan note","History and physical note","2006-04-01" +69,"Evaluation + Plan note","History and physical note","2005-11-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2010-07-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2009-10-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2009-01-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2008-11-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2007-11-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2006-04-01" +69,"Evaluation + Plan note","Evaluation + Plan note","2005-11-01" +68,,,"2009-09-01" +68,,,"2006-07-01" +68,,,"2002-11-01" +68,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-02-01" +68,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-05-01" +68,,"History and physical note","2009-09-01" +68,,"History and physical note","2002-11-01" +68,,"Evaluation + Plan note","2009-09-01" +68,,"Evaluation + Plan note","2002-11-01" +68,"cumulus__none",,"2014-10-01" +68,"cumulus__none",,"2014-08-01" +68,"cumulus__none",,"2014-06-01" +68,"cumulus__none",,"2013-06-01" +68,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-02-01" +68,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-05-01" +68,"Laboratory",,"2013-09-01" +68,"Laboratory",,"2013-06-01" +68,"Laboratory",,"2013-04-01" +68,"History and physical note",,"2009-09-01" +68,"History and physical note",,"2002-11-01" +68,"History and physical note","History and physical note","2009-09-01" +68,"History and physical note","History and physical note","2002-11-01" +68,"History and physical note","Evaluation + Plan note","2009-09-01" +68,"History and physical note","Evaluation + Plan note","2002-11-01" +68,"Evaluation + Plan note",,"2009-09-01" +68,"Evaluation + Plan note",,"2002-11-01" +68,"Evaluation + Plan note","History and physical note","2009-09-01" +68,"Evaluation + Plan note","History and physical note","2002-11-01" +68,"Evaluation + Plan note","Evaluation + Plan note","2009-09-01" +68,"Evaluation + Plan note","Evaluation + Plan note","2002-11-01" +67,,,"2009-08-01" +67,,,"2008-04-01" +67,,,"2007-03-01" +67,,,"2004-07-01" +67,,,"2003-11-01" +67,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-08-01" +67,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-05-01" +67,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-01-01" +67,,"History and physical note","2009-08-01" +67,,"History and physical note","2008-04-01" +67,,"History and physical note","2007-03-01" +67,,"History and physical note","2006-07-01" +67,,"History and physical note","2004-07-01" +67,,"History and physical note","2003-11-01" +67,,"Evaluation + Plan note","2009-08-01" +67,,"Evaluation + Plan note","2008-04-01" +67,,"Evaluation + Plan note","2007-03-01" +67,,"Evaluation + Plan note","2006-07-01" +67,,"Evaluation + Plan note","2004-07-01" +67,,"Evaluation + Plan note","2003-11-01" +67,,"Basic metabolic panel - Blood","2020-03-01" +67,"cumulus__none",,"2013-08-01" +67,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-08-01" +67,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-05-01" +67,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-01-01" +67,"Laboratory",,"2020-07-01" +67,"Laboratory",,"2019-10-01" +67,"Laboratory",,"2016-10-01" +67,"Laboratory",,"2016-04-01" +67,"Laboratory",,"2014-10-01" +67,"Laboratory",,"2014-08-01" +67,"Laboratory",,"2014-06-01" +67,"Laboratory",,"2013-11-01" +67,"Laboratory","Basic metabolic panel - Blood","2020-03-01" +67,"History and physical note",,"2009-08-01" +67,"History and physical note",,"2008-04-01" +67,"History and physical note",,"2007-03-01" +67,"History and physical note",,"2006-07-01" +67,"History and physical note",,"2004-07-01" +67,"History and physical note",,"2003-11-01" +67,"History and physical note","History and physical note","2009-08-01" +67,"History and physical note","History and physical note","2008-04-01" +67,"History and physical note","History and physical note","2007-03-01" +67,"History and physical note","History and physical note","2006-07-01" +67,"History and physical note","History and physical note","2004-07-01" +67,"History and physical note","History and physical note","2003-11-01" +67,"History and physical note","Evaluation + Plan note","2009-08-01" +67,"History and physical note","Evaluation + Plan note","2008-04-01" +67,"History and physical note","Evaluation + Plan note","2007-03-01" +67,"History and physical note","Evaluation + Plan note","2006-07-01" +67,"History and physical note","Evaluation + Plan note","2004-07-01" +67,"History and physical note","Evaluation + Plan note","2003-11-01" +67,"Evaluation + Plan note",,"2009-08-01" +67,"Evaluation + Plan note",,"2008-04-01" +67,"Evaluation + Plan note",,"2007-03-01" +67,"Evaluation + Plan note",,"2006-07-01" +67,"Evaluation + Plan note",,"2004-07-01" +67,"Evaluation + Plan note",,"2003-11-01" +67,"Evaluation + Plan note","History and physical note","2009-08-01" +67,"Evaluation + Plan note","History and physical note","2008-04-01" +67,"Evaluation + Plan note","History and physical note","2007-03-01" +67,"Evaluation + Plan note","History and physical note","2006-07-01" +67,"Evaluation + Plan note","History and physical note","2004-07-01" +67,"Evaluation + Plan note","History and physical note","2003-11-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2009-08-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2008-04-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2007-03-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2006-07-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2004-07-01" +67,"Evaluation + Plan note","Evaluation + Plan note","2003-11-01" +66,,,"2011-06-01" +66,,,"2010-11-01" +66,,,"2008-07-01" +66,,,"2006-11-01" +66,,,"2002-08-01" +66,,,"2001-11-01" +66,,,"2000-10-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-01-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-10-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-04-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-08-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-01-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-07-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-09-01" +66,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-05-01" +66,,"History and physical note","2011-06-01" +66,,"History and physical note","2010-11-01" +66,,"History and physical note","2008-07-01" +66,,"History and physical note","2006-11-01" +66,,"History and physical note","2002-08-01" +66,,"History and physical note","2001-11-01" +66,,"History and physical note","2000-10-01" +66,,"Evaluation + Plan note","2011-06-01" +66,,"Evaluation + Plan note","2010-11-01" +66,,"Evaluation + Plan note","2008-07-01" +66,,"Evaluation + Plan note","2006-11-01" +66,,"Evaluation + Plan note","2002-08-01" +66,,"Evaluation + Plan note","2001-11-01" +66,,"Evaluation + Plan note","2000-10-01" +66,"cumulus__none",,"2015-08-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-01-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-10-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-04-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-08-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-01-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-07-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-09-01" +66,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-05-01" +66,"History and physical note",,"2011-06-01" +66,"History and physical note",,"2010-11-01" +66,"History and physical note",,"2008-07-01" +66,"History and physical note",,"2006-11-01" +66,"History and physical note",,"2002-08-01" +66,"History and physical note",,"2001-11-01" +66,"History and physical note",,"2000-10-01" +66,"History and physical note","History and physical note","2011-06-01" +66,"History and physical note","History and physical note","2010-11-01" +66,"History and physical note","History and physical note","2008-07-01" +66,"History and physical note","History and physical note","2006-11-01" +66,"History and physical note","History and physical note","2002-08-01" +66,"History and physical note","History and physical note","2001-11-01" +66,"History and physical note","History and physical note","2000-10-01" +66,"History and physical note","Evaluation + Plan note","2011-06-01" +66,"History and physical note","Evaluation + Plan note","2010-11-01" +66,"History and physical note","Evaluation + Plan note","2008-07-01" +66,"History and physical note","Evaluation + Plan note","2006-11-01" +66,"History and physical note","Evaluation + Plan note","2002-08-01" +66,"History and physical note","Evaluation + Plan note","2001-11-01" +66,"History and physical note","Evaluation + Plan note","2000-10-01" +66,"Evaluation + Plan note",,"2011-06-01" +66,"Evaluation + Plan note",,"2010-11-01" +66,"Evaluation + Plan note",,"2008-07-01" +66,"Evaluation + Plan note",,"2006-11-01" +66,"Evaluation + Plan note",,"2002-08-01" +66,"Evaluation + Plan note",,"2001-11-01" +66,"Evaluation + Plan note",,"2000-10-01" +66,"Evaluation + Plan note","History and physical note","2011-06-01" +66,"Evaluation + Plan note","History and physical note","2010-11-01" +66,"Evaluation + Plan note","History and physical note","2008-07-01" +66,"Evaluation + Plan note","History and physical note","2006-11-01" +66,"Evaluation + Plan note","History and physical note","2002-08-01" +66,"Evaluation + Plan note","History and physical note","2001-11-01" +66,"Evaluation + Plan note","History and physical note","2000-10-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2011-06-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2010-11-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2008-07-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2006-11-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2002-08-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2001-11-01" +66,"Evaluation + Plan note","Evaluation + Plan note","2000-10-01" +65,,,"2011-07-01" +65,,,"2007-09-01" +65,,,"2006-06-01" +65,,,"2005-12-01" +65,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-05-01" +65,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-07-01" +65,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-02-01" +65,,"History and physical note","2011-07-01" +65,,"History and physical note","2007-09-01" +65,,"History and physical note","2006-06-01" +65,,"History and physical note","2005-12-01" +65,,"Evaluation + Plan note","2011-07-01" +65,,"Evaluation + Plan note","2007-09-01" +65,,"Evaluation + Plan note","2006-06-01" +65,,"Evaluation + Plan note","2005-12-01" +65,,"Basic metabolic panel - Blood","2023-03-01" +65,"cumulus__none",,"2019-09-01" +65,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-05-01" +65,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-07-01" +65,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-02-01" +65,"Laboratory",,"2014-11-01" +65,"Laboratory","Basic metabolic panel - Blood","2023-03-01" +65,"History and physical note",,"2011-07-01" +65,"History and physical note",,"2007-09-01" +65,"History and physical note",,"2006-06-01" +65,"History and physical note",,"2005-12-01" +65,"History and physical note","History and physical note","2011-07-01" +65,"History and physical note","History and physical note","2007-09-01" +65,"History and physical note","History and physical note","2006-06-01" +65,"History and physical note","History and physical note","2005-12-01" +65,"History and physical note","Evaluation + Plan note","2011-07-01" +65,"History and physical note","Evaluation + Plan note","2007-09-01" +65,"History and physical note","Evaluation + Plan note","2006-06-01" +65,"History and physical note","Evaluation + Plan note","2005-12-01" +65,"Evaluation + Plan note",,"2011-07-01" +65,"Evaluation + Plan note",,"2007-09-01" +65,"Evaluation + Plan note",,"2006-06-01" +65,"Evaluation + Plan note",,"2005-12-01" +65,"Evaluation + Plan note","History and physical note","2011-07-01" +65,"Evaluation + Plan note","History and physical note","2007-09-01" +65,"Evaluation + Plan note","History and physical note","2006-06-01" +65,"Evaluation + Plan note","History and physical note","2005-12-01" +65,"Evaluation + Plan note","Evaluation + Plan note","2011-07-01" +65,"Evaluation + Plan note","Evaluation + Plan note","2007-09-01" +65,"Evaluation + Plan note","Evaluation + Plan note","2006-06-01" +65,"Evaluation + Plan note","Evaluation + Plan note","2005-12-01" +64,,,"2010-09-01" +64,,,"2010-02-01" +64,,,"2009-06-01" +64,,,"2008-08-01" +64,,,"2006-01-01" +64,,,"2004-11-01" +64,,"Troponin I.cardiac panel - Serum or Plasma by High sensitivity method", +64,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-08-01" +64,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-05-01" +64,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-12-01" +64,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-01-01" +64,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-03-01" +64,,"History and physical note","2010-09-01" +64,,"History and physical note","2010-02-01" +64,,"History and physical note","2009-06-01" +64,,"History and physical note","2008-08-01" +64,,"History and physical note","2006-01-01" +64,,"History and physical note","2004-11-01" +64,,"Evaluation + Plan note","2010-09-01" +64,,"Evaluation + Plan note","2010-02-01" +64,,"Evaluation + Plan note","2009-06-01" +64,,"Evaluation + Plan note","2008-08-01" +64,,"Evaluation + Plan note","2006-01-01" +64,,"Evaluation + Plan note","2004-11-01" +64,,"Basic metabolic panel - Blood","2019-02-01" +64,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-08-01" +64,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-05-01" +64,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-12-01" +64,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-01-01" +64,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-03-01" +64,"Laboratory",,"2017-04-01" +64,"Laboratory",,"2014-04-01" +64,"Laboratory","Troponin I.cardiac panel - Serum or Plasma by High sensitivity method", +64,"Laboratory","Basic metabolic panel - Blood","2019-02-01" +64,"History and physical note",,"2010-09-01" +64,"History and physical note",,"2010-02-01" +64,"History and physical note",,"2009-06-01" +64,"History and physical note",,"2008-08-01" +64,"History and physical note",,"2006-01-01" +64,"History and physical note",,"2004-11-01" +64,"History and physical note","History and physical note","2010-09-01" +64,"History and physical note","History and physical note","2010-02-01" +64,"History and physical note","History and physical note","2009-06-01" +64,"History and physical note","History and physical note","2008-08-01" +64,"History and physical note","History and physical note","2006-01-01" +64,"History and physical note","History and physical note","2004-11-01" +64,"History and physical note","Evaluation + Plan note","2010-09-01" +64,"History and physical note","Evaluation + Plan note","2010-02-01" +64,"History and physical note","Evaluation + Plan note","2009-06-01" +64,"History and physical note","Evaluation + Plan note","2008-08-01" +64,"History and physical note","Evaluation + Plan note","2006-01-01" +64,"History and physical note","Evaluation + Plan note","2004-11-01" +64,"Evaluation + Plan note",,"2010-09-01" +64,"Evaluation + Plan note",,"2010-02-01" +64,"Evaluation + Plan note",,"2009-06-01" +64,"Evaluation + Plan note",,"2008-08-01" +64,"Evaluation + Plan note",,"2006-01-01" +64,"Evaluation + Plan note",,"2004-11-01" +64,"Evaluation + Plan note","History and physical note","2010-09-01" +64,"Evaluation + Plan note","History and physical note","2010-02-01" +64,"Evaluation + Plan note","History and physical note","2009-06-01" +64,"Evaluation + Plan note","History and physical note","2008-08-01" +64,"Evaluation + Plan note","History and physical note","2006-01-01" +64,"Evaluation + Plan note","History and physical note","2004-11-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2010-09-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2010-02-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2009-06-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2008-08-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2006-01-01" +64,"Evaluation + Plan note","Evaluation + Plan note","2004-11-01" +63,,,"2011-03-01" +63,,,"2011-02-01" +63,,,"2005-07-01" +63,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-07-01" +63,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-05-01" +63,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-09-01" +63,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-12-01" +63,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-08-01" +63,,"History and physical note","2011-03-01" +63,,"History and physical note","2011-02-01" +63,,"History and physical note","2005-07-01" +63,,"Generalized anxiety disorder 7 item (GAD-7)","2021-03-01" +63,,"Evaluation + Plan note","2011-03-01" +63,,"Evaluation + Plan note","2011-02-01" +63,,"Evaluation + Plan note","2005-07-01" +63,"cumulus__none",,"2013-09-01" +63,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-07-01" +63,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-05-01" +63,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-09-01" +63,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-12-01" +63,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-08-01" +63,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-03-01" +63,"Laboratory",,"2019-09-01" +63,"History and physical note",,"2011-03-01" +63,"History and physical note",,"2011-02-01" +63,"History and physical note",,"2005-07-01" +63,"History and physical note","History and physical note","2011-03-01" +63,"History and physical note","History and physical note","2011-02-01" +63,"History and physical note","History and physical note","2005-07-01" +63,"History and physical note","Evaluation + Plan note","2011-03-01" +63,"History and physical note","Evaluation + Plan note","2011-02-01" +63,"History and physical note","Evaluation + Plan note","2005-07-01" +63,"Evaluation + Plan note",,"2011-03-01" +63,"Evaluation + Plan note",,"2011-02-01" +63,"Evaluation + Plan note",,"2005-07-01" +63,"Evaluation + Plan note","History and physical note","2011-03-01" +63,"Evaluation + Plan note","History and physical note","2011-02-01" +63,"Evaluation + Plan note","History and physical note","2005-07-01" +63,"Evaluation + Plan note","Evaluation + Plan note","2011-03-01" +63,"Evaluation + Plan note","Evaluation + Plan note","2011-02-01" +63,"Evaluation + Plan note","Evaluation + Plan note","2005-07-01" +62,,,"2010-04-01" +62,,,"2009-11-01" +62,,,"2009-07-01" +62,,,"2005-10-01" +62,,,"2005-08-01" +62,,,"2005-03-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-12-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-07-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-06-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-02-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-01-01" +62,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-12-01" +62,,"History and physical note","2010-04-01" +62,,"History and physical note","2009-11-01" +62,,"History and physical note","2009-07-01" +62,,"History and physical note","2005-10-01" +62,,"History and physical note","2005-08-01" +62,,"History and physical note","2005-03-01" +62,,"Evaluation + Plan note","2010-04-01" +62,,"Evaluation + Plan note","2009-11-01" +62,,"Evaluation + Plan note","2009-07-01" +62,,"Evaluation + Plan note","2005-10-01" +62,,"Evaluation + Plan note","2005-08-01" +62,,"Evaluation + Plan note","2005-03-01" +62,,"Basic metabolic panel - Blood","2021-01-01" +62,"cumulus__none",,"2016-04-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-12-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-07-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-06-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-02-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-01-01" +62,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-12-01" +62,"Laboratory","Basic metabolic panel - Blood","2021-01-01" +62,"History and physical note",,"2010-04-01" +62,"History and physical note",,"2009-11-01" +62,"History and physical note",,"2009-07-01" +62,"History and physical note",,"2005-10-01" +62,"History and physical note",,"2005-08-01" +62,"History and physical note",,"2005-03-01" +62,"History and physical note","History and physical note","2010-04-01" +62,"History and physical note","History and physical note","2009-11-01" +62,"History and physical note","History and physical note","2009-07-01" +62,"History and physical note","History and physical note","2005-10-01" +62,"History and physical note","History and physical note","2005-08-01" +62,"History and physical note","History and physical note","2005-03-01" +62,"History and physical note","Evaluation + Plan note","2010-04-01" +62,"History and physical note","Evaluation + Plan note","2009-11-01" +62,"History and physical note","Evaluation + Plan note","2009-07-01" +62,"History and physical note","Evaluation + Plan note","2005-10-01" +62,"History and physical note","Evaluation + Plan note","2005-08-01" +62,"History and physical note","Evaluation + Plan note","2005-03-01" +62,"Evaluation + Plan note",,"2010-04-01" +62,"Evaluation + Plan note",,"2009-11-01" +62,"Evaluation + Plan note",,"2009-07-01" +62,"Evaluation + Plan note",,"2005-10-01" +62,"Evaluation + Plan note",,"2005-08-01" +62,"Evaluation + Plan note",,"2005-03-01" +62,"Evaluation + Plan note","History and physical note","2010-04-01" +62,"Evaluation + Plan note","History and physical note","2009-11-01" +62,"Evaluation + Plan note","History and physical note","2009-07-01" +62,"Evaluation + Plan note","History and physical note","2005-10-01" +62,"Evaluation + Plan note","History and physical note","2005-08-01" +62,"Evaluation + Plan note","History and physical note","2005-03-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2010-04-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2009-11-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2009-07-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2005-10-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2005-08-01" +62,"Evaluation + Plan note","Evaluation + Plan note","2005-03-01" +61,,,"2010-06-01" +61,,,"2007-10-01" +61,,,"2007-05-01" +61,,,"2007-01-01" +61,,,"2004-08-01" +61,,,"2004-04-01" +61,,,"2003-07-01" +61,,,"2003-03-01" +61,,,"1997-07-01" +61,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-08-01" +61,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-02-01" +61,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-11-01" +61,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-04-01" +61,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-12-01" +61,,"History and physical note","2010-06-01" +61,,"History and physical note","2007-10-01" +61,,"History and physical note","2007-05-01" +61,,"History and physical note","2007-01-01" +61,,"History and physical note","2004-08-01" +61,,"History and physical note","2004-04-01" +61,,"History and physical note","2003-07-01" +61,,"History and physical note","2003-03-01" +61,,"History and physical note","1997-07-01" +61,,"Generalized anxiety disorder 7 item (GAD-7)","2018-03-01" +61,,"Evaluation + Plan note","2010-06-01" +61,,"Evaluation + Plan note","2007-10-01" +61,,"Evaluation + Plan note","2007-05-01" +61,,"Evaluation + Plan note","2007-01-01" +61,,"Evaluation + Plan note","2004-08-01" +61,,"Evaluation + Plan note","2004-04-01" +61,,"Evaluation + Plan note","2003-07-01" +61,,"Evaluation + Plan note","2003-03-01" +61,,"Evaluation + Plan note","1997-07-01" +61,,"Basic metabolic panel - Blood","2022-03-01" +61,,"Basic metabolic panel - Blood","2021-03-01" +61,"cumulus__none",,"2013-11-01" +61,"cumulus__none",,"2013-04-01" +61,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-08-01" +61,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-02-01" +61,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-11-01" +61,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-04-01" +61,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-12-01" +61,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-03-01" +61,"Laboratory","Basic metabolic panel - Blood","2022-03-01" +61,"Laboratory","Basic metabolic panel - Blood","2021-03-01" +61,"History and physical note",,"2010-06-01" +61,"History and physical note",,"2007-10-01" +61,"History and physical note",,"2007-05-01" +61,"History and physical note",,"2007-01-01" +61,"History and physical note",,"2004-08-01" +61,"History and physical note",,"2004-04-01" +61,"History and physical note",,"2003-07-01" +61,"History and physical note",,"2003-03-01" +61,"History and physical note",,"1997-07-01" +61,"History and physical note","History and physical note","2010-06-01" +61,"History and physical note","History and physical note","2007-10-01" +61,"History and physical note","History and physical note","2007-05-01" +61,"History and physical note","History and physical note","2007-01-01" +61,"History and physical note","History and physical note","2004-08-01" +61,"History and physical note","History and physical note","2004-04-01" +61,"History and physical note","History and physical note","2003-07-01" +61,"History and physical note","History and physical note","2003-03-01" +61,"History and physical note","History and physical note","1997-07-01" +61,"History and physical note","Evaluation + Plan note","2010-06-01" +61,"History and physical note","Evaluation + Plan note","2007-10-01" +61,"History and physical note","Evaluation + Plan note","2007-05-01" +61,"History and physical note","Evaluation + Plan note","2007-01-01" +61,"History and physical note","Evaluation + Plan note","2004-08-01" +61,"History and physical note","Evaluation + Plan note","2004-04-01" +61,"History and physical note","Evaluation + Plan note","2003-07-01" +61,"History and physical note","Evaluation + Plan note","2003-03-01" +61,"History and physical note","Evaluation + Plan note","1997-07-01" +61,"Evaluation + Plan note",,"2010-06-01" +61,"Evaluation + Plan note",,"2007-10-01" +61,"Evaluation + Plan note",,"2007-05-01" +61,"Evaluation + Plan note",,"2007-01-01" +61,"Evaluation + Plan note",,"2004-08-01" +61,"Evaluation + Plan note",,"2004-04-01" +61,"Evaluation + Plan note",,"2003-07-01" +61,"Evaluation + Plan note",,"2003-03-01" +61,"Evaluation + Plan note",,"1997-07-01" +61,"Evaluation + Plan note","History and physical note","2010-06-01" +61,"Evaluation + Plan note","History and physical note","2007-10-01" +61,"Evaluation + Plan note","History and physical note","2007-05-01" +61,"Evaluation + Plan note","History and physical note","2007-01-01" +61,"Evaluation + Plan note","History and physical note","2004-08-01" +61,"Evaluation + Plan note","History and physical note","2004-04-01" +61,"Evaluation + Plan note","History and physical note","2003-07-01" +61,"Evaluation + Plan note","History and physical note","2003-03-01" +61,"Evaluation + Plan note","History and physical note","1997-07-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2010-06-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2007-10-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2007-05-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2007-01-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2004-08-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2004-04-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2003-07-01" +61,"Evaluation + Plan note","Evaluation + Plan note","2003-03-01" +61,"Evaluation + Plan note","Evaluation + Plan note","1997-07-01" +60,,,"2008-10-01" +60,,,"2008-03-01" +60,,,"2007-07-01" +60,,,"2006-10-01" +60,,,"2006-05-01" +60,,,"2004-12-01" +60,,,"2003-09-01" +60,,,"2002-02-01" +60,,,"2000-06-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-01-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-02-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-11-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-10-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-09-01" +60,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-03-01" +60,,"History and physical note","2008-10-01" +60,,"History and physical note","2008-03-01" +60,,"History and physical note","2007-07-01" +60,,"History and physical note","2006-10-01" +60,,"History and physical note","2006-05-01" +60,,"History and physical note","2004-12-01" +60,,"History and physical note","2003-09-01" +60,,"History and physical note","2002-02-01" +60,,"History and physical note","2000-06-01" +60,,"Evaluation + Plan note","2008-10-01" +60,,"Evaluation + Plan note","2008-03-01" +60,,"Evaluation + Plan note","2007-07-01" +60,,"Evaluation + Plan note","2006-10-01" +60,,"Evaluation + Plan note","2006-05-01" +60,,"Evaluation + Plan note","2004-12-01" +60,,"Evaluation + Plan note","2003-09-01" +60,,"Evaluation + Plan note","2002-02-01" +60,,"Evaluation + Plan note","2000-06-01" +60,,"Basic metabolic panel - Blood","2021-06-01" +60,,"Basic metabolic panel - Blood","2019-01-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-01-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-02-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2021-11-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-10-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-09-01" +60,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-03-01" +60,"Laboratory","Basic metabolic panel - Blood","2021-06-01" +60,"Laboratory","Basic metabolic panel - Blood","2019-01-01" +60,"History and physical note",,"2008-10-01" +60,"History and physical note",,"2008-03-01" +60,"History and physical note",,"2007-07-01" +60,"History and physical note",,"2006-10-01" +60,"History and physical note",,"2006-05-01" +60,"History and physical note",,"2004-12-01" +60,"History and physical note",,"2003-09-01" +60,"History and physical note",,"2002-02-01" +60,"History and physical note",,"2000-06-01" +60,"History and physical note","History and physical note","2008-10-01" +60,"History and physical note","History and physical note","2008-03-01" +60,"History and physical note","History and physical note","2007-07-01" +60,"History and physical note","History and physical note","2006-10-01" +60,"History and physical note","History and physical note","2006-05-01" +60,"History and physical note","History and physical note","2004-12-01" +60,"History and physical note","History and physical note","2003-09-01" +60,"History and physical note","History and physical note","2002-02-01" +60,"History and physical note","History and physical note","2000-06-01" +60,"History and physical note","Evaluation + Plan note","2008-10-01" +60,"History and physical note","Evaluation + Plan note","2008-03-01" +60,"History and physical note","Evaluation + Plan note","2007-07-01" +60,"History and physical note","Evaluation + Plan note","2006-10-01" +60,"History and physical note","Evaluation + Plan note","2006-05-01" +60,"History and physical note","Evaluation + Plan note","2004-12-01" +60,"History and physical note","Evaluation + Plan note","2003-09-01" +60,"History and physical note","Evaluation + Plan note","2002-02-01" +60,"History and physical note","Evaluation + Plan note","2000-06-01" +60,"Evaluation + Plan note",,"2008-10-01" +60,"Evaluation + Plan note",,"2008-03-01" +60,"Evaluation + Plan note",,"2007-07-01" +60,"Evaluation + Plan note",,"2006-10-01" +60,"Evaluation + Plan note",,"2006-05-01" +60,"Evaluation + Plan note",,"2004-12-01" +60,"Evaluation + Plan note",,"2003-09-01" +60,"Evaluation + Plan note",,"2002-02-01" +60,"Evaluation + Plan note",,"2000-06-01" +60,"Evaluation + Plan note","History and physical note","2008-10-01" +60,"Evaluation + Plan note","History and physical note","2008-03-01" +60,"Evaluation + Plan note","History and physical note","2007-07-01" +60,"Evaluation + Plan note","History and physical note","2006-10-01" +60,"Evaluation + Plan note","History and physical note","2006-05-01" +60,"Evaluation + Plan note","History and physical note","2004-12-01" +60,"Evaluation + Plan note","History and physical note","2003-09-01" +60,"Evaluation + Plan note","History and physical note","2002-02-01" +60,"Evaluation + Plan note","History and physical note","2000-06-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2008-10-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2008-03-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2007-07-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2006-10-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2006-05-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2004-12-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2003-09-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2002-02-01" +60,"Evaluation + Plan note","Evaluation + Plan note","2000-06-01" +59,,,"2006-02-01" +59,,,"2004-10-01" +59,,,"2003-12-01" +59,,,"2003-08-01" +59,,,"2002-03-01" +59,,,"2000-09-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-03-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-02-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-09-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-08-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-01-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-12-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-11-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-10-01" +59,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-06-01" +59,,"History and physical note","2006-02-01" +59,,"History and physical note","2004-10-01" +59,,"History and physical note","2003-12-01" +59,,"History and physical note","2003-08-01" +59,,"History and physical note","2002-03-01" +59,,"History and physical note","2000-09-01" +59,,"Generalized anxiety disorder 7 item (GAD-7)","2018-08-01" +59,,"Evaluation + Plan note","2006-02-01" +59,,"Evaluation + Plan note","2004-10-01" +59,,"Evaluation + Plan note","2003-12-01" +59,,"Evaluation + Plan note","2003-08-01" +59,,"Evaluation + Plan note","2002-03-01" +59,,"Evaluation + Plan note","2000-09-01" +59,,"Basic metabolic panel - Blood","2021-02-01" +59,,"Basic metabolic panel - Blood","2020-02-01" +59,,"Basic metabolic panel - Blood","2017-01-01" +59,"cumulus__none",,"2017-04-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-03-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2023-02-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-09-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-08-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-01-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-12-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-11-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-10-01" +59,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-06-01" +59,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-08-01" +59,"Laboratory","Basic metabolic panel - Blood","2021-02-01" +59,"Laboratory","Basic metabolic panel - Blood","2020-02-01" +59,"Laboratory","Basic metabolic panel - Blood","2017-01-01" +59,"History and physical note",,"2006-02-01" +59,"History and physical note",,"2004-10-01" +59,"History and physical note",,"2003-12-01" +59,"History and physical note",,"2003-08-01" +59,"History and physical note",,"2002-03-01" +59,"History and physical note",,"2000-09-01" +59,"History and physical note","History and physical note","2006-02-01" +59,"History and physical note","History and physical note","2004-10-01" +59,"History and physical note","History and physical note","2003-12-01" +59,"History and physical note","History and physical note","2003-08-01" +59,"History and physical note","History and physical note","2002-03-01" +59,"History and physical note","History and physical note","2000-09-01" +59,"History and physical note","Evaluation + Plan note","2006-02-01" +59,"History and physical note","Evaluation + Plan note","2004-10-01" +59,"History and physical note","Evaluation + Plan note","2003-12-01" +59,"History and physical note","Evaluation + Plan note","2003-08-01" +59,"History and physical note","Evaluation + Plan note","2002-03-01" +59,"History and physical note","Evaluation + Plan note","2000-09-01" +59,"Evaluation + Plan note",,"2006-02-01" +59,"Evaluation + Plan note",,"2004-10-01" +59,"Evaluation + Plan note",,"2003-12-01" +59,"Evaluation + Plan note",,"2003-08-01" +59,"Evaluation + Plan note",,"2002-03-01" +59,"Evaluation + Plan note",,"2000-09-01" +59,"Evaluation + Plan note","History and physical note","2006-02-01" +59,"Evaluation + Plan note","History and physical note","2004-10-01" +59,"Evaluation + Plan note","History and physical note","2003-12-01" +59,"Evaluation + Plan note","History and physical note","2003-08-01" +59,"Evaluation + Plan note","History and physical note","2002-03-01" +59,"Evaluation + Plan note","History and physical note","2000-09-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2006-02-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2004-10-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2003-12-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2003-08-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2002-03-01" +59,"Evaluation + Plan note","Evaluation + Plan note","2000-09-01" +58,,,"2008-02-01" +58,,,"2007-08-01" +58,,,"2006-08-01" +58,,,"2005-06-01" +58,,,"2005-01-01" +58,,,"2001-08-01" +58,,"Urinalysis complete panel - Urine", +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-12-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-07-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-10-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-11-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-02-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-12-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-11-01" +58,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-09-01" +58,,"History and physical note","2008-02-01" +58,,"History and physical note","2007-08-01" +58,,"History and physical note","2006-08-01" +58,,"History and physical note","2005-06-01" +58,,"History and physical note","2005-01-01" +58,,"History and physical note","2001-08-01" +58,,"Evaluation + Plan note","2008-02-01" +58,,"Evaluation + Plan note","2007-08-01" +58,,"Evaluation + Plan note","2006-08-01" +58,,"Evaluation + Plan note","2005-06-01" +58,,"Evaluation + Plan note","2005-01-01" +58,,"Evaluation + Plan note","2001-08-01" +58,,"Basic metabolic panel - Blood","2021-07-01" +58,,"Basic metabolic panel - Blood","2020-01-01" +58,,"Basic metabolic panel - Blood","2015-01-01" +58,,"Basic metabolic panel - Blood","2014-12-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-12-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-07-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-10-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-11-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-02-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-12-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-11-01" +58,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-09-01" +58,"Laboratory",,"2016-11-01" +58,"Laboratory","Urinalysis complete panel - Urine", +58,"Laboratory","Basic metabolic panel - Blood","2021-07-01" +58,"Laboratory","Basic metabolic panel - Blood","2020-01-01" +58,"Laboratory","Basic metabolic panel - Blood","2015-01-01" +58,"Laboratory","Basic metabolic panel - Blood","2014-12-01" +58,"History and physical note",,"2008-02-01" +58,"History and physical note",,"2007-08-01" +58,"History and physical note",,"2006-08-01" +58,"History and physical note",,"2005-06-01" +58,"History and physical note",,"2005-01-01" +58,"History and physical note",,"2001-08-01" +58,"History and physical note","History and physical note","2008-02-01" +58,"History and physical note","History and physical note","2007-08-01" +58,"History and physical note","History and physical note","2006-08-01" +58,"History and physical note","History and physical note","2005-06-01" +58,"History and physical note","History and physical note","2005-01-01" +58,"History and physical note","History and physical note","2001-08-01" +58,"History and physical note","Evaluation + Plan note","2008-02-01" +58,"History and physical note","Evaluation + Plan note","2007-08-01" +58,"History and physical note","Evaluation + Plan note","2006-08-01" +58,"History and physical note","Evaluation + Plan note","2005-06-01" +58,"History and physical note","Evaluation + Plan note","2005-01-01" +58,"History and physical note","Evaluation + Plan note","2001-08-01" +58,"Evaluation + Plan note",,"2008-02-01" +58,"Evaluation + Plan note",,"2007-08-01" +58,"Evaluation + Plan note",,"2006-08-01" +58,"Evaluation + Plan note",,"2005-06-01" +58,"Evaluation + Plan note",,"2005-01-01" +58,"Evaluation + Plan note",,"2001-08-01" +58,"Evaluation + Plan note","History and physical note","2008-02-01" +58,"Evaluation + Plan note","History and physical note","2007-08-01" +58,"Evaluation + Plan note","History and physical note","2006-08-01" +58,"Evaluation + Plan note","History and physical note","2005-06-01" +58,"Evaluation + Plan note","History and physical note","2005-01-01" +58,"Evaluation + Plan note","History and physical note","2001-08-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2008-02-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2007-08-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2006-08-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2005-06-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2005-01-01" +58,"Evaluation + Plan note","Evaluation + Plan note","2001-08-01" +57,,,"2002-12-01" +57,,,"1999-10-01" +57,,,"1996-10-01" +57,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-10-01" +57,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-09-01" +57,,"History and physical note","2002-12-01" +57,,"History and physical note","1999-10-01" +57,,"History and physical note","1996-10-01" +57,,"Evaluation + Plan note","2002-12-01" +57,,"Evaluation + Plan note","1999-10-01" +57,,"Evaluation + Plan note","1996-10-01" +57,,"Basic metabolic panel - Blood","2022-06-01" +57,,"Basic metabolic panel - Blood","2022-01-01" +57,,"Basic metabolic panel - Blood","2021-12-01" +57,,"Basic metabolic panel - Blood","2019-03-01" +57,,"Basic metabolic panel - Blood","2016-12-01" +57,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-10-01" +57,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-09-01" +57,"Laboratory","Basic metabolic panel - Blood","2022-06-01" +57,"Laboratory","Basic metabolic panel - Blood","2022-01-01" +57,"Laboratory","Basic metabolic panel - Blood","2021-12-01" +57,"Laboratory","Basic metabolic panel - Blood","2019-03-01" +57,"Laboratory","Basic metabolic panel - Blood","2016-12-01" +57,"History and physical note",,"2002-12-01" +57,"History and physical note",,"1999-10-01" +57,"History and physical note",,"1996-10-01" +57,"History and physical note","History and physical note","2002-12-01" +57,"History and physical note","History and physical note","1999-10-01" +57,"History and physical note","History and physical note","1996-10-01" +57,"History and physical note","Evaluation + Plan note","2002-12-01" +57,"History and physical note","Evaluation + Plan note","1999-10-01" +57,"History and physical note","Evaluation + Plan note","1996-10-01" +57,"Evaluation + Plan note",,"2002-12-01" +57,"Evaluation + Plan note",,"1999-10-01" +57,"Evaluation + Plan note",,"1996-10-01" +57,"Evaluation + Plan note","History and physical note","2002-12-01" +57,"Evaluation + Plan note","History and physical note","1999-10-01" +57,"Evaluation + Plan note","History and physical note","1996-10-01" +57,"Evaluation + Plan note","Evaluation + Plan note","2002-12-01" +57,"Evaluation + Plan note","Evaluation + Plan note","1999-10-01" +57,"Evaluation + Plan note","Evaluation + Plan note","1996-10-01" +56,,,"2007-02-01" +56,,,"2005-05-01" +56,,,"2003-04-01" +56,,,"2003-02-01" +56,,,"2002-09-01" +56,,,"2001-06-01" +56,,,"2001-03-01" +56,,,"1996-09-01" +56,,,"1995-10-01" +56,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-10-01" +56,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-12-01" +56,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-06-01" +56,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-05-01" +56,,"History and physical note","2007-02-01" +56,,"History and physical note","2005-05-01" +56,,"History and physical note","2003-04-01" +56,,"History and physical note","2003-02-01" +56,,"History and physical note","2002-09-01" +56,,"History and physical note","2001-06-01" +56,,"History and physical note","2001-03-01" +56,,"History and physical note","1996-09-01" +56,,"History and physical note","1995-10-01" +56,,"Evaluation + Plan note","2007-02-01" +56,,"Evaluation + Plan note","2005-05-01" +56,,"Evaluation + Plan note","2003-04-01" +56,,"Evaluation + Plan note","2003-02-01" +56,,"Evaluation + Plan note","2002-09-01" +56,,"Evaluation + Plan note","2001-06-01" +56,,"Evaluation + Plan note","2001-03-01" +56,,"Evaluation + Plan note","1996-09-01" +56,,"Evaluation + Plan note","1995-10-01" +56,,"Basic metabolic panel - Blood","2017-12-01" +56,,"Basic metabolic panel - Blood","2016-01-01" +56,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-10-01" +56,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-12-01" +56,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-06-01" +56,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-05-01" +56,"Laboratory","Basic metabolic panel - Blood","2017-12-01" +56,"Laboratory","Basic metabolic panel - Blood","2016-01-01" +56,"History and physical note",,"2007-02-01" +56,"History and physical note",,"2005-05-01" +56,"History and physical note",,"2003-04-01" +56,"History and physical note",,"2003-02-01" +56,"History and physical note",,"2002-09-01" +56,"History and physical note",,"2001-06-01" +56,"History and physical note",,"2001-03-01" +56,"History and physical note",,"1996-09-01" +56,"History and physical note",,"1995-10-01" +56,"History and physical note","History and physical note","2007-02-01" +56,"History and physical note","History and physical note","2005-05-01" +56,"History and physical note","History and physical note","2003-04-01" +56,"History and physical note","History and physical note","2003-02-01" +56,"History and physical note","History and physical note","2002-09-01" +56,"History and physical note","History and physical note","2001-06-01" +56,"History and physical note","History and physical note","2001-03-01" +56,"History and physical note","History and physical note","1996-09-01" +56,"History and physical note","History and physical note","1995-10-01" +56,"History and physical note","Evaluation + Plan note","2007-02-01" +56,"History and physical note","Evaluation + Plan note","2005-05-01" +56,"History and physical note","Evaluation + Plan note","2003-04-01" +56,"History and physical note","Evaluation + Plan note","2003-02-01" +56,"History and physical note","Evaluation + Plan note","2002-09-01" +56,"History and physical note","Evaluation + Plan note","2001-06-01" +56,"History and physical note","Evaluation + Plan note","2001-03-01" +56,"History and physical note","Evaluation + Plan note","1996-09-01" +56,"History and physical note","Evaluation + Plan note","1995-10-01" +56,"Evaluation + Plan note",,"2007-02-01" +56,"Evaluation + Plan note",,"2005-05-01" +56,"Evaluation + Plan note",,"2003-04-01" +56,"Evaluation + Plan note",,"2003-02-01" +56,"Evaluation + Plan note",,"2002-09-01" +56,"Evaluation + Plan note",,"2001-06-01" +56,"Evaluation + Plan note",,"2001-03-01" +56,"Evaluation + Plan note",,"1996-09-01" +56,"Evaluation + Plan note",,"1995-10-01" +56,"Evaluation + Plan note","History and physical note","2007-02-01" +56,"Evaluation + Plan note","History and physical note","2005-05-01" +56,"Evaluation + Plan note","History and physical note","2003-04-01" +56,"Evaluation + Plan note","History and physical note","2003-02-01" +56,"Evaluation + Plan note","History and physical note","2002-09-01" +56,"Evaluation + Plan note","History and physical note","2001-06-01" +56,"Evaluation + Plan note","History and physical note","2001-03-01" +56,"Evaluation + Plan note","History and physical note","1996-09-01" +56,"Evaluation + Plan note","History and physical note","1995-10-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2007-02-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2005-05-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2003-04-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2003-02-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2002-09-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2001-06-01" +56,"Evaluation + Plan note","Evaluation + Plan note","2001-03-01" +56,"Evaluation + Plan note","Evaluation + Plan note","1996-09-01" +56,"Evaluation + Plan note","Evaluation + Plan note","1995-10-01" +55,,,"2006-09-01" +55,,,"2001-10-01" +55,,,"2000-11-01" +55,,,"1997-03-01" +55,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-02-01" +55,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-10-01" +55,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-08-01" +55,,"History and physical note","2006-09-01" +55,,"History and physical note","2001-10-01" +55,,"History and physical note","2000-11-01" +55,,"History and physical note","1997-03-01" +55,,"Generalized anxiety disorder 7 item (GAD-7)","2020-02-01" +55,,"Evaluation + Plan note","2006-09-01" +55,,"Evaluation + Plan note","2001-10-01" +55,,"Evaluation + Plan note","2000-11-01" +55,,"Evaluation + Plan note","1997-03-01" +55,,"Basic metabolic panel - Blood","2023-01-01" +55,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-02-01" +55,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-10-01" +55,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-08-01" +55,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-02-01" +55,"Laboratory","Basic metabolic panel - Blood","2023-01-01" +55,"History and physical note",,"2006-09-01" +55,"History and physical note",,"2001-10-01" +55,"History and physical note",,"2000-11-01" +55,"History and physical note",,"1997-03-01" +55,"History and physical note","History and physical note","2006-09-01" +55,"History and physical note","History and physical note","2001-10-01" +55,"History and physical note","History and physical note","2000-11-01" +55,"History and physical note","History and physical note","1997-03-01" +55,"History and physical note","Evaluation + Plan note","2006-09-01" +55,"History and physical note","Evaluation + Plan note","2001-10-01" +55,"History and physical note","Evaluation + Plan note","2000-11-01" +55,"History and physical note","Evaluation + Plan note","1997-03-01" +55,"Evaluation + Plan note",,"2006-09-01" +55,"Evaluation + Plan note",,"2001-10-01" +55,"Evaluation + Plan note",,"2000-11-01" +55,"Evaluation + Plan note",,"1997-03-01" +55,"Evaluation + Plan note","History and physical note","2006-09-01" +55,"Evaluation + Plan note","History and physical note","2001-10-01" +55,"Evaluation + Plan note","History and physical note","2000-11-01" +55,"Evaluation + Plan note","History and physical note","1997-03-01" +55,"Evaluation + Plan note","Evaluation + Plan note","2006-09-01" +55,"Evaluation + Plan note","Evaluation + Plan note","2001-10-01" +55,"Evaluation + Plan note","Evaluation + Plan note","2000-11-01" +55,"Evaluation + Plan note","Evaluation + Plan note","1997-03-01" +54,,,"2005-09-01" +54,,,"2003-05-01" +54,,,"2002-10-01" +54,,,"1999-08-01" +54,,,"1994-05-01" +54,,,"1990-08-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-04-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-04-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-06-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-05-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-09-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-04-01" +54,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-06-01" +54,,"History and physical note","2005-09-01" +54,,"History and physical note","2003-05-01" +54,,"History and physical note","2002-10-01" +54,,"History and physical note","1999-08-01" +54,,"History and physical note","1994-05-01" +54,,"History and physical note","1990-08-01" +54,,"Generalized anxiety disorder 7 item (GAD-7)","2019-03-01" +54,,"Generalized anxiety disorder 7 item (GAD-7)","2017-03-01" +54,,"Evaluation + Plan note","2005-09-01" +54,,"Evaluation + Plan note","2003-05-01" +54,,"Evaluation + Plan note","2002-10-01" +54,,"Evaluation + Plan note","1999-08-01" +54,,"Evaluation + Plan note","1994-05-01" +54,,"Evaluation + Plan note","1990-08-01" +54,,"Basic metabolic panel - Blood","2023-02-01" +54,,"Basic metabolic panel - Blood","2021-09-01" +54,,"Basic metabolic panel - Blood","2018-05-01" +54,,"Basic metabolic panel - Blood","2018-01-01" +54,,"Basic Metabolic 2000 Panel", +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-04-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-04-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-06-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-05-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-09-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-04-01" +54,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-06-01" +54,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-03-01" +54,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-03-01" +54,"Laboratory","Basic metabolic panel - Blood","2023-02-01" +54,"Laboratory","Basic metabolic panel - Blood","2021-09-01" +54,"Laboratory","Basic metabolic panel - Blood","2018-05-01" +54,"Laboratory","Basic metabolic panel - Blood","2018-01-01" +54,"Laboratory","Basic Metabolic 2000 Panel", +54,"History and physical note",,"2005-09-01" +54,"History and physical note",,"2003-05-01" +54,"History and physical note",,"2002-10-01" +54,"History and physical note",,"1999-08-01" +54,"History and physical note",,"1994-05-01" +54,"History and physical note",,"1990-08-01" +54,"History and physical note","History and physical note","2005-09-01" +54,"History and physical note","History and physical note","2003-05-01" +54,"History and physical note","History and physical note","2002-10-01" +54,"History and physical note","History and physical note","1999-08-01" +54,"History and physical note","History and physical note","1994-05-01" +54,"History and physical note","History and physical note","1990-08-01" +54,"History and physical note","Evaluation + Plan note","2005-09-01" +54,"History and physical note","Evaluation + Plan note","2003-05-01" +54,"History and physical note","Evaluation + Plan note","2002-10-01" +54,"History and physical note","Evaluation + Plan note","1999-08-01" +54,"History and physical note","Evaluation + Plan note","1994-05-01" +54,"History and physical note","Evaluation + Plan note","1990-08-01" +54,"Evaluation + Plan note",,"2005-09-01" +54,"Evaluation + Plan note",,"2003-05-01" +54,"Evaluation + Plan note",,"2002-10-01" +54,"Evaluation + Plan note",,"1999-08-01" +54,"Evaluation + Plan note",,"1994-05-01" +54,"Evaluation + Plan note",,"1990-08-01" +54,"Evaluation + Plan note","History and physical note","2005-09-01" +54,"Evaluation + Plan note","History and physical note","2003-05-01" +54,"Evaluation + Plan note","History and physical note","2002-10-01" +54,"Evaluation + Plan note","History and physical note","1999-08-01" +54,"Evaluation + Plan note","History and physical note","1994-05-01" +54,"Evaluation + Plan note","History and physical note","1990-08-01" +54,"Evaluation + Plan note","Evaluation + Plan note","2005-09-01" +54,"Evaluation + Plan note","Evaluation + Plan note","2003-05-01" +54,"Evaluation + Plan note","Evaluation + Plan note","2002-10-01" +54,"Evaluation + Plan note","Evaluation + Plan note","1999-08-01" +54,"Evaluation + Plan note","Evaluation + Plan note","1994-05-01" +54,"Evaluation + Plan note","Evaluation + Plan note","1990-08-01" +53,,,"2004-09-01" +53,,,"2004-03-01" +53,,,"2004-02-01" +53,,,"2002-06-01" +53,,,"2002-05-01" +53,,,"2002-01-01" +53,,,"2001-12-01" +53,,,"1999-09-01" +53,,,"1998-11-01" +53,,,"1998-10-01" +53,,,"1998-03-01" +53,,,"1997-10-01" +53,,,"1997-02-01" +53,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-07-01" +53,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-01-01" +53,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-10-01" +53,,"History and physical note","2004-09-01" +53,,"History and physical note","2004-03-01" +53,,"History and physical note","2004-02-01" +53,,"History and physical note","2002-06-01" +53,,"History and physical note","2002-05-01" +53,,"History and physical note","2002-01-01" +53,,"History and physical note","2001-12-01" +53,,"History and physical note","1999-09-01" +53,,"History and physical note","1998-11-01" +53,,"History and physical note","1998-10-01" +53,,"History and physical note","1998-03-01" +53,,"History and physical note","1997-10-01" +53,,"History and physical note","1997-02-01" +53,,"Heart failure tracking panel", +53,,"Generalized anxiety disorder 7 item (GAD-7)","2021-07-01" +53,,"Generalized anxiety disorder 7 item (GAD-7)","2021-06-01" +53,,"Generalized anxiety disorder 7 item (GAD-7)","2020-08-01" +53,,"Generalized anxiety disorder 7 item (GAD-7)","2019-11-01" +53,,"Generalized anxiety disorder 7 item (GAD-7)","2014-12-01" +53,,"Evaluation + Plan note","2004-09-01" +53,,"Evaluation + Plan note","2004-03-01" +53,,"Evaluation + Plan note","2004-02-01" +53,,"Evaluation + Plan note","2002-06-01" +53,,"Evaluation + Plan note","2002-05-01" +53,,"Evaluation + Plan note","2002-01-01" +53,,"Evaluation + Plan note","2001-12-01" +53,,"Evaluation + Plan note","1999-09-01" +53,,"Evaluation + Plan note","1998-11-01" +53,,"Evaluation + Plan note","1998-10-01" +53,,"Evaluation + Plan note","1998-03-01" +53,,"Evaluation + Plan note","1997-10-01" +53,,"Evaluation + Plan note","1997-02-01" +53,,"Basic metabolic panel - Blood","2022-12-01" +53,,"Basic metabolic panel - Blood","2022-10-01" +53,,"Basic metabolic panel - Blood","2021-10-01" +53,,"Basic metabolic panel - Blood","2021-08-01" +53,,"Basic metabolic panel - Blood","2020-06-01" +53,,"Basic metabolic panel - Blood","2014-05-01" +53,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-07-01" +53,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-01-01" +53,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-10-01" +53,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-07-01" +53,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-06-01" +53,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-08-01" +53,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-11-01" +53,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-12-01" +53,"Laboratory","Heart failure tracking panel", +53,"Laboratory","Basic metabolic panel - Blood","2022-12-01" +53,"Laboratory","Basic metabolic panel - Blood","2022-10-01" +53,"Laboratory","Basic metabolic panel - Blood","2021-10-01" +53,"Laboratory","Basic metabolic panel - Blood","2021-08-01" +53,"Laboratory","Basic metabolic panel - Blood","2020-06-01" +53,"Laboratory","Basic metabolic panel - Blood","2014-05-01" +53,"History and physical note",,"2004-09-01" +53,"History and physical note",,"2004-03-01" +53,"History and physical note",,"2004-02-01" +53,"History and physical note",,"2002-06-01" +53,"History and physical note",,"2002-05-01" +53,"History and physical note",,"2002-01-01" +53,"History and physical note",,"2001-12-01" +53,"History and physical note",,"1999-09-01" +53,"History and physical note",,"1998-11-01" +53,"History and physical note",,"1998-10-01" +53,"History and physical note",,"1998-03-01" +53,"History and physical note",,"1997-10-01" +53,"History and physical note",,"1997-02-01" +53,"History and physical note","History and physical note","2004-09-01" +53,"History and physical note","History and physical note","2004-03-01" +53,"History and physical note","History and physical note","2004-02-01" +53,"History and physical note","History and physical note","2002-06-01" +53,"History and physical note","History and physical note","2002-05-01" +53,"History and physical note","History and physical note","2002-01-01" +53,"History and physical note","History and physical note","2001-12-01" +53,"History and physical note","History and physical note","1999-09-01" +53,"History and physical note","History and physical note","1998-11-01" +53,"History and physical note","History and physical note","1998-10-01" +53,"History and physical note","History and physical note","1998-03-01" +53,"History and physical note","History and physical note","1997-10-01" +53,"History and physical note","History and physical note","1997-02-01" +53,"History and physical note","Evaluation + Plan note","2004-09-01" +53,"History and physical note","Evaluation + Plan note","2004-03-01" +53,"History and physical note","Evaluation + Plan note","2004-02-01" +53,"History and physical note","Evaluation + Plan note","2002-06-01" +53,"History and physical note","Evaluation + Plan note","2002-05-01" +53,"History and physical note","Evaluation + Plan note","2002-01-01" +53,"History and physical note","Evaluation + Plan note","2001-12-01" +53,"History and physical note","Evaluation + Plan note","1999-09-01" +53,"History and physical note","Evaluation + Plan note","1998-11-01" +53,"History and physical note","Evaluation + Plan note","1998-10-01" +53,"History and physical note","Evaluation + Plan note","1998-03-01" +53,"History and physical note","Evaluation + Plan note","1997-10-01" +53,"History and physical note","Evaluation + Plan note","1997-02-01" +53,"Evaluation + Plan note",,"2004-09-01" +53,"Evaluation + Plan note",,"2004-03-01" +53,"Evaluation + Plan note",,"2004-02-01" +53,"Evaluation + Plan note",,"2002-06-01" +53,"Evaluation + Plan note",,"2002-05-01" +53,"Evaluation + Plan note",,"2002-01-01" +53,"Evaluation + Plan note",,"2001-12-01" +53,"Evaluation + Plan note",,"1999-09-01" +53,"Evaluation + Plan note",,"1998-11-01" +53,"Evaluation + Plan note",,"1998-10-01" +53,"Evaluation + Plan note",,"1998-03-01" +53,"Evaluation + Plan note",,"1997-10-01" +53,"Evaluation + Plan note",,"1997-02-01" +53,"Evaluation + Plan note","History and physical note","2004-09-01" +53,"Evaluation + Plan note","History and physical note","2004-03-01" +53,"Evaluation + Plan note","History and physical note","2004-02-01" +53,"Evaluation + Plan note","History and physical note","2002-06-01" +53,"Evaluation + Plan note","History and physical note","2002-05-01" +53,"Evaluation + Plan note","History and physical note","2002-01-01" +53,"Evaluation + Plan note","History and physical note","2001-12-01" +53,"Evaluation + Plan note","History and physical note","1999-09-01" +53,"Evaluation + Plan note","History and physical note","1998-11-01" +53,"Evaluation + Plan note","History and physical note","1998-10-01" +53,"Evaluation + Plan note","History and physical note","1998-03-01" +53,"Evaluation + Plan note","History and physical note","1997-10-01" +53,"Evaluation + Plan note","History and physical note","1997-02-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2004-09-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2004-03-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2004-02-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2002-06-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2002-05-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2002-01-01" +53,"Evaluation + Plan note","Evaluation + Plan note","2001-12-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1999-09-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1998-11-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1998-10-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1998-03-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1997-10-01" +53,"Evaluation + Plan note","Evaluation + Plan note","1997-02-01" +52,,,"2004-06-01" +52,,,"2004-01-01" +52,,,"2002-07-01" +52,,,"2002-04-01" +52,,,"2000-07-01" +52,,,"2000-02-01" +52,,,"1999-06-01" +52,,,"1990-02-01" +52,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-02-01" +52,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-08-01" +52,,"History and physical note","2004-06-01" +52,,"History and physical note","2004-01-01" +52,,"History and physical note","2002-07-01" +52,,"History and physical note","2000-07-01" +52,,"History and physical note","2000-02-01" +52,,"History and physical note","1999-06-01" +52,,"History and physical note","1990-02-01" +52,,"Generalized anxiety disorder 7 item (GAD-7)","2022-11-01" +52,,"Generalized anxiety disorder 7 item (GAD-7)","2021-12-01" +52,,"Generalized anxiety disorder 7 item (GAD-7)","2021-04-01" +52,,"Generalized anxiety disorder 7 item (GAD-7)","2015-01-01" +52,,"Evaluation + Plan note","2004-06-01" +52,,"Evaluation + Plan note","2004-01-01" +52,,"Evaluation + Plan note","2002-07-01" +52,,"Evaluation + Plan note","2000-07-01" +52,,"Evaluation + Plan note","2000-02-01" +52,,"Evaluation + Plan note","1999-06-01" +52,,"Evaluation + Plan note","1990-02-01" +52,,"Basic metabolic panel - Blood","2022-07-01" +52,,"Basic metabolic panel - Blood","2022-05-01" +52,,"Basic metabolic panel - Blood","2022-02-01" +52,,"Basic metabolic panel - Blood","2019-05-01" +52,,"Basic metabolic panel - Blood","2015-12-01" +52,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-02-01" +52,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-08-01" +52,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-11-01" +52,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-12-01" +52,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-04-01" +52,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-01-01" +52,"Laboratory","Basic metabolic panel - Blood","2022-07-01" +52,"Laboratory","Basic metabolic panel - Blood","2022-05-01" +52,"Laboratory","Basic metabolic panel - Blood","2022-02-01" +52,"Laboratory","Basic metabolic panel - Blood","2019-05-01" +52,"Laboratory","Basic metabolic panel - Blood","2015-12-01" +52,"History and physical note",,"2004-06-01" +52,"History and physical note",,"2004-01-01" +52,"History and physical note",,"2002-07-01" +52,"History and physical note",,"2000-07-01" +52,"History and physical note",,"2000-02-01" +52,"History and physical note",,"1999-06-01" +52,"History and physical note",,"1990-02-01" +52,"History and physical note","History and physical note","2004-06-01" +52,"History and physical note","History and physical note","2004-01-01" +52,"History and physical note","History and physical note","2002-07-01" +52,"History and physical note","History and physical note","2000-07-01" +52,"History and physical note","History and physical note","2000-02-01" +52,"History and physical note","History and physical note","1999-06-01" +52,"History and physical note","History and physical note","1990-02-01" +52,"History and physical note","Evaluation + Plan note","2004-06-01" +52,"History and physical note","Evaluation + Plan note","2004-01-01" +52,"History and physical note","Evaluation + Plan note","2002-07-01" +52,"History and physical note","Evaluation + Plan note","2000-07-01" +52,"History and physical note","Evaluation + Plan note","2000-02-01" +52,"History and physical note","Evaluation + Plan note","1999-06-01" +52,"History and physical note","Evaluation + Plan note","1990-02-01" +52,"Evaluation + Plan note",,"2004-06-01" +52,"Evaluation + Plan note",,"2004-01-01" +52,"Evaluation + Plan note",,"2002-07-01" +52,"Evaluation + Plan note",,"2000-07-01" +52,"Evaluation + Plan note",,"2000-02-01" +52,"Evaluation + Plan note",,"1999-06-01" +52,"Evaluation + Plan note",,"1990-02-01" +52,"Evaluation + Plan note","History and physical note","2004-06-01" +52,"Evaluation + Plan note","History and physical note","2004-01-01" +52,"Evaluation + Plan note","History and physical note","2002-07-01" +52,"Evaluation + Plan note","History and physical note","2000-07-01" +52,"Evaluation + Plan note","History and physical note","2000-02-01" +52,"Evaluation + Plan note","History and physical note","1999-06-01" +52,"Evaluation + Plan note","History and physical note","1990-02-01" +52,"Evaluation + Plan note","Evaluation + Plan note","2004-06-01" +52,"Evaluation + Plan note","Evaluation + Plan note","2004-01-01" +52,"Evaluation + Plan note","Evaluation + Plan note","2002-07-01" +52,"Evaluation + Plan note","Evaluation + Plan note","2000-07-01" +52,"Evaluation + Plan note","Evaluation + Plan note","2000-02-01" +52,"Evaluation + Plan note","Evaluation + Plan note","1999-06-01" +52,"Evaluation + Plan note","Evaluation + Plan note","1990-02-01" +51,,,"2000-03-01" +51,,,"1999-12-01" +51,,,"1997-06-01" +51,,,"1995-05-01" +51,,,"1994-07-01" +51,,,"1993-09-01" +51,,,"1993-03-01" +51,,,"1991-03-01" +51,,,"1991-02-01" +51,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-08-01" +51,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-07-01" +51,,"History and physical note","2002-04-01" +51,,"History and physical note","2000-03-01" +51,,"History and physical note","1999-12-01" +51,,"History and physical note","1997-06-01" +51,,"History and physical note","1995-05-01" +51,,"History and physical note","1994-07-01" +51,,"History and physical note","1993-09-01" +51,,"History and physical note","1993-03-01" +51,,"History and physical note","1991-03-01" +51,,"History and physical note","1991-02-01" +51,,"Generalized anxiety disorder 7 item (GAD-7)","2021-05-01" +51,,"Generalized anxiety disorder 7 item (GAD-7)","2019-04-01" +51,,"Evaluation + Plan note","2002-04-01" +51,,"Evaluation + Plan note","2000-03-01" +51,,"Evaluation + Plan note","1999-12-01" +51,,"Evaluation + Plan note","1997-06-01" +51,,"Evaluation + Plan note","1995-05-01" +51,,"Evaluation + Plan note","1994-07-01" +51,,"Evaluation + Plan note","1993-09-01" +51,,"Evaluation + Plan note","1993-03-01" +51,,"Evaluation + Plan note","1991-03-01" +51,,"Evaluation + Plan note","1991-02-01" +51,,"Basic metabolic panel - Blood","2022-09-01" +51,,"Basic metabolic panel - Blood","2022-04-01" +51,,"Basic metabolic panel - Blood","2021-04-01" +51,,"Basic metabolic panel - Blood","2020-10-01" +51,,"Basic metabolic panel - Blood","2020-08-01" +51,,"Basic metabolic panel - Blood","2018-12-01" +51,,"Basic metabolic panel - Blood","2018-03-01" +51,,"Basic metabolic panel - Blood","2018-02-01" +51,,"Basic metabolic panel - Blood","2013-12-01" +51,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-08-01" +51,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-07-01" +51,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-05-01" +51,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-04-01" +51,"Laboratory","Basic metabolic panel - Blood","2022-09-01" +51,"Laboratory","Basic metabolic panel - Blood","2022-04-01" +51,"Laboratory","Basic metabolic panel - Blood","2021-04-01" +51,"Laboratory","Basic metabolic panel - Blood","2020-10-01" +51,"Laboratory","Basic metabolic panel - Blood","2020-08-01" +51,"Laboratory","Basic metabolic panel - Blood","2018-12-01" +51,"Laboratory","Basic metabolic panel - Blood","2018-03-01" +51,"Laboratory","Basic metabolic panel - Blood","2018-02-01" +51,"Laboratory","Basic metabolic panel - Blood","2013-12-01" +51,"History and physical note",,"2002-04-01" +51,"History and physical note",,"2000-03-01" +51,"History and physical note",,"1999-12-01" +51,"History and physical note",,"1997-06-01" +51,"History and physical note",,"1995-05-01" +51,"History and physical note",,"1994-07-01" +51,"History and physical note",,"1993-09-01" +51,"History and physical note",,"1993-03-01" +51,"History and physical note",,"1991-03-01" +51,"History and physical note",,"1991-02-01" +51,"History and physical note","History and physical note","2002-04-01" +51,"History and physical note","History and physical note","2000-03-01" +51,"History and physical note","History and physical note","1999-12-01" +51,"History and physical note","History and physical note","1997-06-01" +51,"History and physical note","History and physical note","1995-05-01" +51,"History and physical note","History and physical note","1994-07-01" +51,"History and physical note","History and physical note","1993-09-01" +51,"History and physical note","History and physical note","1993-03-01" +51,"History and physical note","History and physical note","1991-03-01" +51,"History and physical note","History and physical note","1991-02-01" +51,"History and physical note","Evaluation + Plan note","2002-04-01" +51,"History and physical note","Evaluation + Plan note","2000-03-01" +51,"History and physical note","Evaluation + Plan note","1999-12-01" +51,"History and physical note","Evaluation + Plan note","1997-06-01" +51,"History and physical note","Evaluation + Plan note","1995-05-01" +51,"History and physical note","Evaluation + Plan note","1994-07-01" +51,"History and physical note","Evaluation + Plan note","1993-09-01" +51,"History and physical note","Evaluation + Plan note","1993-03-01" +51,"History and physical note","Evaluation + Plan note","1991-03-01" +51,"History and physical note","Evaluation + Plan note","1991-02-01" +51,"Evaluation + Plan note",,"2002-04-01" +51,"Evaluation + Plan note",,"2000-03-01" +51,"Evaluation + Plan note",,"1999-12-01" +51,"Evaluation + Plan note",,"1997-06-01" +51,"Evaluation + Plan note",,"1995-05-01" +51,"Evaluation + Plan note",,"1994-07-01" +51,"Evaluation + Plan note",,"1993-09-01" +51,"Evaluation + Plan note",,"1993-03-01" +51,"Evaluation + Plan note",,"1991-03-01" +51,"Evaluation + Plan note",,"1991-02-01" +51,"Evaluation + Plan note","History and physical note","2002-04-01" +51,"Evaluation + Plan note","History and physical note","2000-03-01" +51,"Evaluation + Plan note","History and physical note","1999-12-01" +51,"Evaluation + Plan note","History and physical note","1997-06-01" +51,"Evaluation + Plan note","History and physical note","1995-05-01" +51,"Evaluation + Plan note","History and physical note","1994-07-01" +51,"Evaluation + Plan note","History and physical note","1993-09-01" +51,"Evaluation + Plan note","History and physical note","1993-03-01" +51,"Evaluation + Plan note","History and physical note","1991-03-01" +51,"Evaluation + Plan note","History and physical note","1991-02-01" +51,"Evaluation + Plan note","Evaluation + Plan note","2002-04-01" +51,"Evaluation + Plan note","Evaluation + Plan note","2000-03-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1999-12-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1997-06-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1995-05-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1994-07-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1993-09-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1993-03-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1991-03-01" +51,"Evaluation + Plan note","Evaluation + Plan note","1991-02-01" +50,,,"2003-06-01" +50,,,"2001-02-01" +50,,,"2000-08-01" +50,,,"1999-03-01" +50,,,"1999-02-01" +50,,,"1998-09-01" +50,,,"1998-08-01" +50,,,"1990-06-01" +50,,,"1990-05-01" +50,,,"1990-04-01" +50,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-11-01" +50,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-07-01" +50,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-10-01" +50,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-03-01" +50,,"History and physical note","2003-06-01" +50,,"History and physical note","2001-02-01" +50,,"History and physical note","2000-08-01" +50,,"History and physical note","1999-03-01" +50,,"History and physical note","1999-02-01" +50,,"History and physical note","1998-09-01" +50,,"History and physical note","1998-08-01" +50,,"History and physical note","1990-06-01" +50,,"History and physical note","1990-05-01" +50,,"History and physical note","1990-04-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2022-04-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2019-08-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2018-01-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2016-06-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2015-11-01" +50,,"Generalized anxiety disorder 7 item (GAD-7)","2014-02-01" +50,,"Evaluation + Plan note","2003-06-01" +50,,"Evaluation + Plan note","2001-02-01" +50,,"Evaluation + Plan note","2000-08-01" +50,,"Evaluation + Plan note","1999-03-01" +50,,"Evaluation + Plan note","1999-02-01" +50,,"Evaluation + Plan note","1998-09-01" +50,,"Evaluation + Plan note","1998-08-01" +50,,"Evaluation + Plan note","1990-06-01" +50,,"Evaluation + Plan note","1990-05-01" +50,,"Evaluation + Plan note","1990-04-01" +50,,"Basic metabolic panel - Blood","2021-05-01" +50,,"Basic metabolic panel - Blood","2020-11-01" +50,,"Basic metabolic panel - Blood","2020-09-01" +50,,"Basic metabolic panel - Blood","2019-11-01" +50,,"Basic metabolic panel - Blood","2019-04-01" +50,,"Basic metabolic panel - Blood","2018-09-01" +50,,"Basic metabolic panel - Blood","2016-09-01" +50,,"Basic metabolic panel - Blood","2015-04-01" +50,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2020-11-01" +50,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2018-07-01" +50,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2015-10-01" +50,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-03-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-04-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-08-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-01-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-06-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-11-01" +50,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-02-01" +50,"Laboratory","Basic metabolic panel - Blood","2021-05-01" +50,"Laboratory","Basic metabolic panel - Blood","2020-11-01" +50,"Laboratory","Basic metabolic panel - Blood","2020-09-01" +50,"Laboratory","Basic metabolic panel - Blood","2019-11-01" +50,"Laboratory","Basic metabolic panel - Blood","2019-04-01" +50,"Laboratory","Basic metabolic panel - Blood","2018-09-01" +50,"Laboratory","Basic metabolic panel - Blood","2016-09-01" +50,"Laboratory","Basic metabolic panel - Blood","2015-04-01" +50,"History and physical note",,"2003-06-01" +50,"History and physical note",,"2001-02-01" +50,"History and physical note",,"2000-08-01" +50,"History and physical note",,"1999-03-01" +50,"History and physical note",,"1999-02-01" +50,"History and physical note",,"1998-09-01" +50,"History and physical note",,"1998-08-01" +50,"History and physical note",,"1990-06-01" +50,"History and physical note",,"1990-05-01" +50,"History and physical note",,"1990-04-01" +50,"History and physical note","History and physical note","2003-06-01" +50,"History and physical note","History and physical note","2001-02-01" +50,"History and physical note","History and physical note","2000-08-01" +50,"History and physical note","History and physical note","1999-03-01" +50,"History and physical note","History and physical note","1999-02-01" +50,"History and physical note","History and physical note","1998-09-01" +50,"History and physical note","History and physical note","1998-08-01" +50,"History and physical note","History and physical note","1990-06-01" +50,"History and physical note","History and physical note","1990-05-01" +50,"History and physical note","History and physical note","1990-04-01" +50,"History and physical note","Evaluation + Plan note","2003-06-01" +50,"History and physical note","Evaluation + Plan note","2001-02-01" +50,"History and physical note","Evaluation + Plan note","2000-08-01" +50,"History and physical note","Evaluation + Plan note","1999-03-01" +50,"History and physical note","Evaluation + Plan note","1999-02-01" +50,"History and physical note","Evaluation + Plan note","1998-09-01" +50,"History and physical note","Evaluation + Plan note","1998-08-01" +50,"History and physical note","Evaluation + Plan note","1990-06-01" +50,"History and physical note","Evaluation + Plan note","1990-05-01" +50,"History and physical note","Evaluation + Plan note","1990-04-01" +50,"Evaluation + Plan note",,"2003-06-01" +50,"Evaluation + Plan note",,"2001-02-01" +50,"Evaluation + Plan note",,"2000-08-01" +50,"Evaluation + Plan note",,"1999-03-01" +50,"Evaluation + Plan note",,"1999-02-01" +50,"Evaluation + Plan note",,"1998-09-01" +50,"Evaluation + Plan note",,"1998-08-01" +50,"Evaluation + Plan note",,"1990-06-01" +50,"Evaluation + Plan note",,"1990-05-01" +50,"Evaluation + Plan note",,"1990-04-01" +50,"Evaluation + Plan note","History and physical note","2003-06-01" +50,"Evaluation + Plan note","History and physical note","2001-02-01" +50,"Evaluation + Plan note","History and physical note","2000-08-01" +50,"Evaluation + Plan note","History and physical note","1999-03-01" +50,"Evaluation + Plan note","History and physical note","1999-02-01" +50,"Evaluation + Plan note","History and physical note","1998-09-01" +50,"Evaluation + Plan note","History and physical note","1998-08-01" +50,"Evaluation + Plan note","History and physical note","1990-06-01" +50,"Evaluation + Plan note","History and physical note","1990-05-01" +50,"Evaluation + Plan note","History and physical note","1990-04-01" +50,"Evaluation + Plan note","Evaluation + Plan note","2003-06-01" +50,"Evaluation + Plan note","Evaluation + Plan note","2001-02-01" +50,"Evaluation + Plan note","Evaluation + Plan note","2000-08-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1999-03-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1999-02-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1998-09-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1998-08-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1990-06-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1990-05-01" +50,"Evaluation + Plan note","Evaluation + Plan note","1990-04-01" +49,,,"2004-05-01" +49,,,"2001-04-01" +49,,,"1997-01-01" +49,,,"1996-08-01" +49,,,"1996-06-01" +49,,,"1990-09-01" +49,,,"1990-03-01" +49,,,"1990-01-01" +49,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-11-01" +49,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-09-01" +49,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-04-01" +49,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-07-01" +49,,"History and physical note","2004-05-01" +49,,"History and physical note","2001-04-01" +49,,"History and physical note","1997-01-01" +49,,"History and physical note","1996-08-01" +49,,"History and physical note","1996-06-01" +49,,"History and physical note","1990-09-01" +49,,"History and physical note","1990-03-01" +49,,"History and physical note","1990-01-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2022-05-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2021-02-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2020-12-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2020-06-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2018-06-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2018-05-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2018-02-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2017-05-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2016-07-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2015-12-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2015-06-01" +49,,"Generalized anxiety disorder 7 item (GAD-7)","2014-07-01" +49,,"Evaluation + Plan note","2004-05-01" +49,,"Evaluation + Plan note","2001-04-01" +49,,"Evaluation + Plan note","1997-01-01" +49,,"Evaluation + Plan note","1996-08-01" +49,,"Evaluation + Plan note","1996-06-01" +49,,"Evaluation + Plan note","1990-09-01" +49,,"Evaluation + Plan note","1990-03-01" +49,,"Evaluation + Plan note","1990-01-01" +49,,"Basic metabolic panel - Blood","2019-06-01" +49,,"Basic metabolic panel - Blood","2018-10-01" +49,,"Basic metabolic panel - Blood","2017-07-01" +49,,"Basic metabolic panel - Blood","2017-05-01" +49,,"Basic metabolic panel - Blood","2017-03-01" +49,,"Basic metabolic panel - Blood","2014-01-01" +49,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2022-11-01" +49,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2019-09-01" +49,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-04-01" +49,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-07-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-05-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-02-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-12-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-06-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-06-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-05-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-02-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-05-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-07-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-12-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-06-01" +49,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-07-01" +49,"Laboratory","Basic metabolic panel - Blood","2019-06-01" +49,"Laboratory","Basic metabolic panel - Blood","2018-10-01" +49,"Laboratory","Basic metabolic panel - Blood","2017-07-01" +49,"Laboratory","Basic metabolic panel - Blood","2017-05-01" +49,"Laboratory","Basic metabolic panel - Blood","2017-03-01" +49,"Laboratory","Basic metabolic panel - Blood","2014-01-01" +49,"History and physical note",,"2004-05-01" +49,"History and physical note",,"2001-04-01" +49,"History and physical note",,"1997-01-01" +49,"History and physical note",,"1996-08-01" +49,"History and physical note",,"1996-06-01" +49,"History and physical note",,"1990-09-01" +49,"History and physical note",,"1990-03-01" +49,"History and physical note",,"1990-01-01" +49,"History and physical note","History and physical note","2004-05-01" +49,"History and physical note","History and physical note","2001-04-01" +49,"History and physical note","History and physical note","1997-01-01" +49,"History and physical note","History and physical note","1996-08-01" +49,"History and physical note","History and physical note","1996-06-01" +49,"History and physical note","History and physical note","1990-09-01" +49,"History and physical note","History and physical note","1990-03-01" +49,"History and physical note","History and physical note","1990-01-01" +49,"History and physical note","Evaluation + Plan note","2004-05-01" +49,"History and physical note","Evaluation + Plan note","2001-04-01" +49,"History and physical note","Evaluation + Plan note","1997-01-01" +49,"History and physical note","Evaluation + Plan note","1996-08-01" +49,"History and physical note","Evaluation + Plan note","1996-06-01" +49,"History and physical note","Evaluation + Plan note","1990-09-01" +49,"History and physical note","Evaluation + Plan note","1990-03-01" +49,"History and physical note","Evaluation + Plan note","1990-01-01" +49,"Evaluation + Plan note",,"2004-05-01" +49,"Evaluation + Plan note",,"2001-04-01" +49,"Evaluation + Plan note",,"1997-01-01" +49,"Evaluation + Plan note",,"1996-08-01" +49,"Evaluation + Plan note",,"1996-06-01" +49,"Evaluation + Plan note",,"1990-09-01" +49,"Evaluation + Plan note",,"1990-03-01" +49,"Evaluation + Plan note",,"1990-01-01" +49,"Evaluation + Plan note","History and physical note","2004-05-01" +49,"Evaluation + Plan note","History and physical note","2001-04-01" +49,"Evaluation + Plan note","History and physical note","1997-01-01" +49,"Evaluation + Plan note","History and physical note","1996-08-01" +49,"Evaluation + Plan note","History and physical note","1996-06-01" +49,"Evaluation + Plan note","History and physical note","1990-09-01" +49,"Evaluation + Plan note","History and physical note","1990-03-01" +49,"Evaluation + Plan note","History and physical note","1990-01-01" +49,"Evaluation + Plan note","Evaluation + Plan note","2004-05-01" +49,"Evaluation + Plan note","Evaluation + Plan note","2001-04-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1997-01-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1996-08-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1996-06-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1990-09-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1990-03-01" +49,"Evaluation + Plan note","Evaluation + Plan note","1990-01-01" +48,,,"2001-01-01" +48,,,"1999-05-01" +48,,,"1997-09-01" +48,,,"1996-11-01" +48,,,"1996-05-01" +48,,,"1996-03-01" +48,,,"1992-10-01" +48,,,"1988-06-01" +48,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-08-01" +48,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-06-01" +48,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-04-01" +48,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-04-01" +48,,"Lipid panel with direct LDL - Serum or Plasma","2022-09-01" +48,,"History and physical note","2001-01-01" +48,,"History and physical note","1999-05-01" +48,,"History and physical note","1997-09-01" +48,,"History and physical note","1996-11-01" +48,,"History and physical note","1996-05-01" +48,,"History and physical note","1996-03-01" +48,,"History and physical note","1992-10-01" +48,,"History and physical note","1988-06-01" +48,,"Generalized anxiety disorder 7 item (GAD-7)","2022-06-01" +48,,"Generalized anxiety disorder 7 item (GAD-7)","2020-07-01" +48,,"Generalized anxiety disorder 7 item (GAD-7)","2019-01-01" +48,,"Generalized anxiety disorder 7 item (GAD-7)","2014-09-01" +48,,"Generalized anxiety disorder 7 item (GAD-7)","2014-05-01" +48,,"Evaluation + Plan note","2001-01-01" +48,,"Evaluation + Plan note","1999-05-01" +48,,"Evaluation + Plan note","1997-09-01" +48,,"Evaluation + Plan note","1996-11-01" +48,,"Evaluation + Plan note","1996-05-01" +48,,"Evaluation + Plan note","1996-03-01" +48,,"Evaluation + Plan note","1992-10-01" +48,,"Evaluation + Plan note","1988-06-01" +48,,"Basic metabolic panel - Blood","2022-08-01" +48,,"Basic metabolic panel - Blood","2021-11-01" +48,,"Basic metabolic panel - Blood","2019-12-01" +48,,"Basic metabolic panel - Blood","2019-07-01" +48,,"Basic metabolic panel - Blood","2018-08-01" +48,,"Basic metabolic panel - Blood","2015-02-01" +48,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-08-01" +48,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-06-01" +48,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-04-01" +48,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-04-01" +48,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-06-01" +48,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-07-01" +48,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-01-01" +48,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-09-01" +48,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-05-01" +48,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-09-01" +48,"Laboratory","Basic metabolic panel - Blood","2022-08-01" +48,"Laboratory","Basic metabolic panel - Blood","2021-11-01" +48,"Laboratory","Basic metabolic panel - Blood","2019-12-01" +48,"Laboratory","Basic metabolic panel - Blood","2019-07-01" +48,"Laboratory","Basic metabolic panel - Blood","2018-08-01" +48,"Laboratory","Basic metabolic panel - Blood","2015-02-01" +48,"History and physical note",,"2001-01-01" +48,"History and physical note",,"1999-05-01" +48,"History and physical note",,"1997-09-01" +48,"History and physical note",,"1996-11-01" +48,"History and physical note",,"1996-05-01" +48,"History and physical note",,"1996-03-01" +48,"History and physical note",,"1992-10-01" +48,"History and physical note",,"1988-06-01" +48,"History and physical note","History and physical note","2001-01-01" +48,"History and physical note","History and physical note","1999-05-01" +48,"History and physical note","History and physical note","1997-09-01" +48,"History and physical note","History and physical note","1996-11-01" +48,"History and physical note","History and physical note","1996-05-01" +48,"History and physical note","History and physical note","1996-03-01" +48,"History and physical note","History and physical note","1992-10-01" +48,"History and physical note","History and physical note","1988-06-01" +48,"History and physical note","Evaluation + Plan note","2001-01-01" +48,"History and physical note","Evaluation + Plan note","1999-05-01" +48,"History and physical note","Evaluation + Plan note","1997-09-01" +48,"History and physical note","Evaluation + Plan note","1996-11-01" +48,"History and physical note","Evaluation + Plan note","1996-05-01" +48,"History and physical note","Evaluation + Plan note","1996-03-01" +48,"History and physical note","Evaluation + Plan note","1992-10-01" +48,"History and physical note","Evaluation + Plan note","1988-06-01" +48,"Evaluation + Plan note",,"2001-01-01" +48,"Evaluation + Plan note",,"1999-05-01" +48,"Evaluation + Plan note",,"1997-09-01" +48,"Evaluation + Plan note",,"1996-11-01" +48,"Evaluation + Plan note",,"1996-05-01" +48,"Evaluation + Plan note",,"1996-03-01" +48,"Evaluation + Plan note",,"1992-10-01" +48,"Evaluation + Plan note",,"1988-06-01" +48,"Evaluation + Plan note","History and physical note","2001-01-01" +48,"Evaluation + Plan note","History and physical note","1999-05-01" +48,"Evaluation + Plan note","History and physical note","1997-09-01" +48,"Evaluation + Plan note","History and physical note","1996-11-01" +48,"Evaluation + Plan note","History and physical note","1996-05-01" +48,"Evaluation + Plan note","History and physical note","1996-03-01" +48,"Evaluation + Plan note","History and physical note","1992-10-01" +48,"Evaluation + Plan note","History and physical note","1988-06-01" +48,"Evaluation + Plan note","Evaluation + Plan note","2001-01-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1999-05-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1997-09-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1996-11-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1996-05-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1996-03-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1992-10-01" +48,"Evaluation + Plan note","Evaluation + Plan note","1988-06-01" +47,,,"2001-07-01" +47,,,"2000-12-01" +47,,,"1998-06-01" +47,,,"1998-05-01" +47,,,"1998-02-01" +47,,,"1996-02-01" +47,,,"1996-01-01" +47,,,"1995-02-01" +47,,,"1994-02-01" +47,,,"1993-05-01" +47,,,"1989-01-01" +47,,"Urinalysis macro (dipstick) panel - Urine","2021-10-01" +47,,"Urinalysis macro (dipstick) panel - Urine","2020-03-01" +47,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-11-01" +47,,"Lipid panel with direct LDL - Serum or Plasma","2019-01-01" +47,,"History and physical note","2001-07-01" +47,,"History and physical note","2000-12-01" +47,,"History and physical note","1998-06-01" +47,,"History and physical note","1998-05-01" +47,,"History and physical note","1998-02-01" +47,,"History and physical note","1996-02-01" +47,,"History and physical note","1996-01-01" +47,,"History and physical note","1995-02-01" +47,,"History and physical note","1994-02-01" +47,,"History and physical note","1993-05-01" +47,,"History and physical note","1989-01-01" +47,,"Generalized anxiety disorder 7 item (GAD-7)","2023-02-01" +47,,"Generalized anxiety disorder 7 item (GAD-7)","2019-10-01" +47,,"Generalized anxiety disorder 7 item (GAD-7)","2019-05-01" +47,,"Evaluation + Plan note","2001-07-01" +47,,"Evaluation + Plan note","2000-12-01" +47,,"Evaluation + Plan note","1998-06-01" +47,,"Evaluation + Plan note","1998-05-01" +47,,"Evaluation + Plan note","1998-02-01" +47,,"Evaluation + Plan note","1996-02-01" +47,,"Evaluation + Plan note","1996-01-01" +47,,"Evaluation + Plan note","1995-02-01" +47,,"Evaluation + Plan note","1994-02-01" +47,,"Evaluation + Plan note","1993-05-01" +47,,"Evaluation + Plan note","1989-01-01" +47,,"Basic metabolic panel - Blood","2020-05-01" +47,,"Basic metabolic panel - Blood","2019-08-01" +47,,"Basic metabolic panel - Blood","2017-09-01" +47,,"Basic metabolic panel - Blood","2016-06-01" +47,,"Basic metabolic panel - Blood","2015-07-01" +47,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2016-11-01" +47,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2023-02-01" +47,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-10-01" +47,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-05-01" +47,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-10-01" +47,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-03-01" +47,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-01-01" +47,"Laboratory","Basic metabolic panel - Blood","2020-05-01" +47,"Laboratory","Basic metabolic panel - Blood","2019-08-01" +47,"Laboratory","Basic metabolic panel - Blood","2017-09-01" +47,"Laboratory","Basic metabolic panel - Blood","2016-06-01" +47,"Laboratory","Basic metabolic panel - Blood","2015-07-01" +47,"History and physical note",,"2001-07-01" +47,"History and physical note",,"2000-12-01" +47,"History and physical note",,"1998-06-01" +47,"History and physical note",,"1998-05-01" +47,"History and physical note",,"1998-02-01" +47,"History and physical note",,"1996-02-01" +47,"History and physical note",,"1996-01-01" +47,"History and physical note",,"1995-02-01" +47,"History and physical note",,"1994-02-01" +47,"History and physical note",,"1993-05-01" +47,"History and physical note",,"1989-01-01" +47,"History and physical note","History and physical note","2001-07-01" +47,"History and physical note","History and physical note","2000-12-01" +47,"History and physical note","History and physical note","1998-06-01" +47,"History and physical note","History and physical note","1998-05-01" +47,"History and physical note","History and physical note","1998-02-01" +47,"History and physical note","History and physical note","1996-02-01" +47,"History and physical note","History and physical note","1996-01-01" +47,"History and physical note","History and physical note","1995-02-01" +47,"History and physical note","History and physical note","1994-02-01" +47,"History and physical note","History and physical note","1993-05-01" +47,"History and physical note","History and physical note","1989-01-01" +47,"History and physical note","Evaluation + Plan note","2001-07-01" +47,"History and physical note","Evaluation + Plan note","2000-12-01" +47,"History and physical note","Evaluation + Plan note","1998-06-01" +47,"History and physical note","Evaluation + Plan note","1998-05-01" +47,"History and physical note","Evaluation + Plan note","1998-02-01" +47,"History and physical note","Evaluation + Plan note","1996-02-01" +47,"History and physical note","Evaluation + Plan note","1996-01-01" +47,"History and physical note","Evaluation + Plan note","1995-02-01" +47,"History and physical note","Evaluation + Plan note","1994-02-01" +47,"History and physical note","Evaluation + Plan note","1993-05-01" +47,"History and physical note","Evaluation + Plan note","1989-01-01" +47,"Evaluation + Plan note",,"2001-07-01" +47,"Evaluation + Plan note",,"2000-12-01" +47,"Evaluation + Plan note",,"1998-06-01" +47,"Evaluation + Plan note",,"1998-05-01" +47,"Evaluation + Plan note",,"1998-02-01" +47,"Evaluation + Plan note",,"1996-02-01" +47,"Evaluation + Plan note",,"1996-01-01" +47,"Evaluation + Plan note",,"1995-02-01" +47,"Evaluation + Plan note",,"1994-02-01" +47,"Evaluation + Plan note",,"1993-05-01" +47,"Evaluation + Plan note",,"1989-01-01" +47,"Evaluation + Plan note","History and physical note","2001-07-01" +47,"Evaluation + Plan note","History and physical note","2000-12-01" +47,"Evaluation + Plan note","History and physical note","1998-06-01" +47,"Evaluation + Plan note","History and physical note","1998-05-01" +47,"Evaluation + Plan note","History and physical note","1998-02-01" +47,"Evaluation + Plan note","History and physical note","1996-02-01" +47,"Evaluation + Plan note","History and physical note","1996-01-01" +47,"Evaluation + Plan note","History and physical note","1995-02-01" +47,"Evaluation + Plan note","History and physical note","1994-02-01" +47,"Evaluation + Plan note","History and physical note","1993-05-01" +47,"Evaluation + Plan note","History and physical note","1989-01-01" +47,"Evaluation + Plan note","Evaluation + Plan note","2001-07-01" +47,"Evaluation + Plan note","Evaluation + Plan note","2000-12-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1998-06-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1998-05-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1998-02-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1996-02-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1996-01-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1995-02-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1994-02-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1993-05-01" +47,"Evaluation + Plan note","Evaluation + Plan note","1989-01-01" +46,,,"2005-02-01" +46,,,"2001-09-01" +46,,,"2000-04-01" +46,,,"1999-01-01" +46,,,"1997-12-01" +46,,,"1997-11-01" +46,,,"1993-10-01" +46,,,"1993-02-01" +46,,,"1991-01-01" +46,,"Urinalysis macro (dipstick) panel - Urine","2022-06-01" +46,,"Urinalysis macro (dipstick) panel - Urine","2021-05-01" +46,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-10-01" +46,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-09-01" +46,,"History and physical note","2005-02-01" +46,,"History and physical note","2001-09-01" +46,,"History and physical note","2000-04-01" +46,,"History and physical note","1999-01-01" +46,,"History and physical note","1997-12-01" +46,,"History and physical note","1997-11-01" +46,,"History and physical note","1993-10-01" +46,,"History and physical note","1993-02-01" +46,,"History and physical note","1991-01-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2022-10-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2022-03-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2022-02-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2019-06-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2015-10-01" +46,,"Generalized anxiety disorder 7 item (GAD-7)","2015-02-01" +46,,"Evaluation + Plan note","2005-02-01" +46,,"Evaluation + Plan note","2001-09-01" +46,,"Evaluation + Plan note","2000-04-01" +46,,"Evaluation + Plan note","1999-01-01" +46,,"Evaluation + Plan note","1997-12-01" +46,,"Evaluation + Plan note","1997-11-01" +46,,"Evaluation + Plan note","1993-10-01" +46,,"Evaluation + Plan note","1993-02-01" +46,,"Evaluation + Plan note","1991-01-01" +46,,"Basic metabolic panel - Blood","2017-10-01" +46,,"Basic metabolic panel - Blood","2016-02-01" +46,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-10-01" +46,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-09-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-10-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-03-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-02-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-06-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-10-01" +46,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-02-01" +46,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-06-01" +46,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-05-01" +46,"Laboratory","Basic metabolic panel - Blood","2017-10-01" +46,"Laboratory","Basic metabolic panel - Blood","2016-02-01" +46,"History and physical note",,"2005-02-01" +46,"History and physical note",,"2001-09-01" +46,"History and physical note",,"2000-04-01" +46,"History and physical note",,"1999-01-01" +46,"History and physical note",,"1997-12-01" +46,"History and physical note",,"1997-11-01" +46,"History and physical note",,"1993-10-01" +46,"History and physical note",,"1993-02-01" +46,"History and physical note",,"1991-01-01" +46,"History and physical note","History and physical note","2005-02-01" +46,"History and physical note","History and physical note","2001-09-01" +46,"History and physical note","History and physical note","2000-04-01" +46,"History and physical note","History and physical note","1999-01-01" +46,"History and physical note","History and physical note","1997-12-01" +46,"History and physical note","History and physical note","1997-11-01" +46,"History and physical note","History and physical note","1993-10-01" +46,"History and physical note","History and physical note","1993-02-01" +46,"History and physical note","History and physical note","1991-01-01" +46,"History and physical note","Evaluation + Plan note","2005-02-01" +46,"History and physical note","Evaluation + Plan note","2001-09-01" +46,"History and physical note","Evaluation + Plan note","2000-04-01" +46,"History and physical note","Evaluation + Plan note","1999-01-01" +46,"History and physical note","Evaluation + Plan note","1997-12-01" +46,"History and physical note","Evaluation + Plan note","1997-11-01" +46,"History and physical note","Evaluation + Plan note","1993-10-01" +46,"History and physical note","Evaluation + Plan note","1993-02-01" +46,"History and physical note","Evaluation + Plan note","1991-01-01" +46,"Evaluation + Plan note",,"2005-02-01" +46,"Evaluation + Plan note",,"2001-09-01" +46,"Evaluation + Plan note",,"2000-04-01" +46,"Evaluation + Plan note",,"1999-01-01" +46,"Evaluation + Plan note",,"1997-12-01" +46,"Evaluation + Plan note",,"1997-11-01" +46,"Evaluation + Plan note",,"1993-10-01" +46,"Evaluation + Plan note",,"1993-02-01" +46,"Evaluation + Plan note",,"1991-01-01" +46,"Evaluation + Plan note","History and physical note","2005-02-01" +46,"Evaluation + Plan note","History and physical note","2001-09-01" +46,"Evaluation + Plan note","History and physical note","2000-04-01" +46,"Evaluation + Plan note","History and physical note","1999-01-01" +46,"Evaluation + Plan note","History and physical note","1997-12-01" +46,"Evaluation + Plan note","History and physical note","1997-11-01" +46,"Evaluation + Plan note","History and physical note","1993-10-01" +46,"Evaluation + Plan note","History and physical note","1993-02-01" +46,"Evaluation + Plan note","History and physical note","1991-01-01" +46,"Evaluation + Plan note","Evaluation + Plan note","2005-02-01" +46,"Evaluation + Plan note","Evaluation + Plan note","2001-09-01" +46,"Evaluation + Plan note","Evaluation + Plan note","2000-04-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1999-01-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1997-12-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1997-11-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1993-10-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1993-02-01" +46,"Evaluation + Plan note","Evaluation + Plan note","1991-01-01" +45,,,"2000-01-01" +45,,,"1998-12-01" +45,,,"1998-07-01" +45,,,"1997-08-01" +45,,,"1995-07-01" +45,,,"1994-08-01" +45,,,"1993-11-01" +45,,,"1993-01-01" +45,,,"1992-05-01" +45,,,"1991-09-01" +45,,,"1991-06-01" +45,,,"1990-07-01" +45,,,"1989-12-01" +45,,"Urinalysis macro (dipstick) panel - Urine","2023-03-01" +45,,"Urinalysis macro (dipstick) panel - Urine","2022-03-01" +45,,"Urinalysis macro (dipstick) panel - Urine","2021-08-01" +45,,"Urinalysis macro (dipstick) panel - Urine","2018-10-01" +45,,"Urinalysis macro (dipstick) panel - Urine","2016-09-01" +45,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-03-01" +45,,"History and physical note","2000-01-01" +45,,"History and physical note","1998-07-01" +45,,"History and physical note","1997-08-01" +45,,"History and physical note","1995-07-01" +45,,"History and physical note","1994-08-01" +45,,"History and physical note","1993-11-01" +45,,"History and physical note","1993-01-01" +45,,"History and physical note","1992-05-01" +45,,"History and physical note","1991-09-01" +45,,"History and physical note","1991-06-01" +45,,"History and physical note","1990-07-01" +45,,"History and physical note","1989-12-01" +45,,"Generalized anxiety disorder 7 item (GAD-7)","2022-01-01" +45,,"Generalized anxiety disorder 7 item (GAD-7)","2020-01-01" +45,,"Evaluation + Plan note","2000-01-01" +45,,"Evaluation + Plan note","1998-07-01" +45,,"Evaluation + Plan note","1997-08-01" +45,,"Evaluation + Plan note","1995-07-01" +45,,"Evaluation + Plan note","1994-08-01" +45,,"Evaluation + Plan note","1993-11-01" +45,,"Evaluation + Plan note","1993-01-01" +45,,"Evaluation + Plan note","1992-05-01" +45,,"Evaluation + Plan note","1991-09-01" +45,,"Evaluation + Plan note","1991-06-01" +45,,"Evaluation + Plan note","1990-07-01" +45,,"Evaluation + Plan note","1989-12-01" +45,,"Basic metabolic panel - Blood","2022-11-01" +45,,"Basic metabolic panel - Blood","2020-07-01" +45,,"Basic metabolic panel - Blood","2018-06-01" +45,,"Basic metabolic panel - Blood","2017-11-01" +45,,"Basic metabolic panel - Blood","2017-02-01" +45,,"Basic metabolic panel - Blood","2016-10-01" +45,,"Basic metabolic panel - Blood","2015-05-01" +45,,"Basic metabolic panel - Blood","2015-03-01" +45,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-03-01" +45,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-01-01" +45,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-01-01" +45,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2023-03-01" +45,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-03-01" +45,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-08-01" +45,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-10-01" +45,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-09-01" +45,"Laboratory","Basic metabolic panel - Blood","2022-11-01" +45,"Laboratory","Basic metabolic panel - Blood","2020-07-01" +45,"Laboratory","Basic metabolic panel - Blood","2018-06-01" +45,"Laboratory","Basic metabolic panel - Blood","2017-11-01" +45,"Laboratory","Basic metabolic panel - Blood","2017-02-01" +45,"Laboratory","Basic metabolic panel - Blood","2016-10-01" +45,"Laboratory","Basic metabolic panel - Blood","2015-05-01" +45,"Laboratory","Basic metabolic panel - Blood","2015-03-01" +45,"History and physical note",,"2000-01-01" +45,"History and physical note",,"1998-07-01" +45,"History and physical note",,"1997-08-01" +45,"History and physical note",,"1995-07-01" +45,"History and physical note",,"1994-08-01" +45,"History and physical note",,"1993-11-01" +45,"History and physical note",,"1993-01-01" +45,"History and physical note",,"1992-05-01" +45,"History and physical note",,"1991-09-01" +45,"History and physical note",,"1991-06-01" +45,"History and physical note",,"1990-07-01" +45,"History and physical note",,"1989-12-01" +45,"History and physical note","History and physical note","2000-01-01" +45,"History and physical note","History and physical note","1998-07-01" +45,"History and physical note","History and physical note","1997-08-01" +45,"History and physical note","History and physical note","1995-07-01" +45,"History and physical note","History and physical note","1994-08-01" +45,"History and physical note","History and physical note","1993-11-01" +45,"History and physical note","History and physical note","1993-01-01" +45,"History and physical note","History and physical note","1992-05-01" +45,"History and physical note","History and physical note","1991-09-01" +45,"History and physical note","History and physical note","1991-06-01" +45,"History and physical note","History and physical note","1990-07-01" +45,"History and physical note","History and physical note","1989-12-01" +45,"History and physical note","Evaluation + Plan note","2000-01-01" +45,"History and physical note","Evaluation + Plan note","1998-07-01" +45,"History and physical note","Evaluation + Plan note","1997-08-01" +45,"History and physical note","Evaluation + Plan note","1995-07-01" +45,"History and physical note","Evaluation + Plan note","1994-08-01" +45,"History and physical note","Evaluation + Plan note","1993-11-01" +45,"History and physical note","Evaluation + Plan note","1993-01-01" +45,"History and physical note","Evaluation + Plan note","1992-05-01" +45,"History and physical note","Evaluation + Plan note","1991-09-01" +45,"History and physical note","Evaluation + Plan note","1991-06-01" +45,"History and physical note","Evaluation + Plan note","1990-07-01" +45,"History and physical note","Evaluation + Plan note","1989-12-01" +45,"Evaluation + Plan note",,"2000-01-01" +45,"Evaluation + Plan note",,"1998-07-01" +45,"Evaluation + Plan note",,"1997-08-01" +45,"Evaluation + Plan note",,"1995-07-01" +45,"Evaluation + Plan note",,"1994-08-01" +45,"Evaluation + Plan note",,"1993-11-01" +45,"Evaluation + Plan note",,"1993-01-01" +45,"Evaluation + Plan note",,"1992-05-01" +45,"Evaluation + Plan note",,"1991-09-01" +45,"Evaluation + Plan note",,"1991-06-01" +45,"Evaluation + Plan note",,"1990-07-01" +45,"Evaluation + Plan note",,"1989-12-01" +45,"Evaluation + Plan note","History and physical note","2000-01-01" +45,"Evaluation + Plan note","History and physical note","1998-07-01" +45,"Evaluation + Plan note","History and physical note","1997-08-01" +45,"Evaluation + Plan note","History and physical note","1995-07-01" +45,"Evaluation + Plan note","History and physical note","1994-08-01" +45,"Evaluation + Plan note","History and physical note","1993-11-01" +45,"Evaluation + Plan note","History and physical note","1993-01-01" +45,"Evaluation + Plan note","History and physical note","1992-05-01" +45,"Evaluation + Plan note","History and physical note","1991-09-01" +45,"Evaluation + Plan note","History and physical note","1991-06-01" +45,"Evaluation + Plan note","History and physical note","1990-07-01" +45,"Evaluation + Plan note","History and physical note","1989-12-01" +45,"Evaluation + Plan note","Evaluation + Plan note","2000-01-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1998-07-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1997-08-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1995-07-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1994-08-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1993-11-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1993-01-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1992-05-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1991-09-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1991-06-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1990-07-01" +45,"Evaluation + Plan note","Evaluation + Plan note","1989-12-01" +44,,,"2003-01-01" +44,,,"2001-05-01" +44,,,"1997-05-01" +44,,,"1997-04-01" +44,,,"1994-01-01" +44,,,"1993-08-01" +44,,,"1992-09-01" +44,,,"1988-12-01" +44,,,"1985-12-01" +44,,"Urinalysis macro (dipstick) panel - Urine","2022-10-01" +44,,"Urinalysis macro (dipstick) panel - Urine","2021-09-01" +44,,"Urinalysis macro (dipstick) panel - Urine","2021-06-01" +44,,"Urinalysis macro (dipstick) panel - Urine","2021-02-01" +44,,"Urinalysis macro (dipstick) panel - Urine","2015-07-01" +44,,"PT panel - Platelet poor plasma by Coagulation assay", +44,,"History and physical note","2003-01-01" +44,,"History and physical note","2001-05-01" +44,,"History and physical note","1998-12-01" +44,,"History and physical note","1997-05-01" +44,,"History and physical note","1997-04-01" +44,,"History and physical note","1994-01-01" +44,,"History and physical note","1993-08-01" +44,,"History and physical note","1992-09-01" +44,,"History and physical note","1988-12-01" +44,,"History and physical note","1985-12-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2023-01-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2021-09-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2021-01-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2016-09-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2016-01-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2015-07-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2015-03-01" +44,,"Generalized anxiety disorder 7 item (GAD-7)","2014-01-01" +44,,"Evaluation + Plan note","2003-01-01" +44,,"Evaluation + Plan note","2001-05-01" +44,,"Evaluation + Plan note","1998-12-01" +44,,"Evaluation + Plan note","1997-05-01" +44,,"Evaluation + Plan note","1997-04-01" +44,,"Evaluation + Plan note","1994-01-01" +44,,"Evaluation + Plan note","1993-08-01" +44,,"Evaluation + Plan note","1992-09-01" +44,,"Evaluation + Plan note","1988-12-01" +44,,"Evaluation + Plan note","1985-12-01" +44,,"Basic metabolic panel - Blood","2018-04-01" +44,,"Basic metabolic panel - Blood","2016-07-01" +44,,"Basic metabolic panel - Blood","2016-03-01" +44,,"Basic metabolic panel - Blood","2013-05-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2023-01-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-09-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-01-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-09-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-01-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-07-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-03-01" +44,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-01-01" +44,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-10-01" +44,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-09-01" +44,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-06-01" +44,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-02-01" +44,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-07-01" +44,"Laboratory","PT panel - Platelet poor plasma by Coagulation assay", +44,"Laboratory","Basic metabolic panel - Blood","2018-04-01" +44,"Laboratory","Basic metabolic panel - Blood","2016-07-01" +44,"Laboratory","Basic metabolic panel - Blood","2016-03-01" +44,"Laboratory","Basic metabolic panel - Blood","2013-05-01" +44,"History and physical note",,"2003-01-01" +44,"History and physical note",,"2001-05-01" +44,"History and physical note",,"1998-12-01" +44,"History and physical note",,"1997-05-01" +44,"History and physical note",,"1997-04-01" +44,"History and physical note",,"1994-01-01" +44,"History and physical note",,"1993-08-01" +44,"History and physical note",,"1992-09-01" +44,"History and physical note",,"1988-12-01" +44,"History and physical note",,"1985-12-01" +44,"History and physical note","History and physical note","2003-01-01" +44,"History and physical note","History and physical note","2001-05-01" +44,"History and physical note","History and physical note","1998-12-01" +44,"History and physical note","History and physical note","1997-05-01" +44,"History and physical note","History and physical note","1997-04-01" +44,"History and physical note","History and physical note","1994-01-01" +44,"History and physical note","History and physical note","1993-08-01" +44,"History and physical note","History and physical note","1992-09-01" +44,"History and physical note","History and physical note","1988-12-01" +44,"History and physical note","History and physical note","1985-12-01" +44,"History and physical note","Evaluation + Plan note","2003-01-01" +44,"History and physical note","Evaluation + Plan note","2001-05-01" +44,"History and physical note","Evaluation + Plan note","1998-12-01" +44,"History and physical note","Evaluation + Plan note","1997-05-01" +44,"History and physical note","Evaluation + Plan note","1997-04-01" +44,"History and physical note","Evaluation + Plan note","1994-01-01" +44,"History and physical note","Evaluation + Plan note","1993-08-01" +44,"History and physical note","Evaluation + Plan note","1992-09-01" +44,"History and physical note","Evaluation + Plan note","1988-12-01" +44,"History and physical note","Evaluation + Plan note","1985-12-01" +44,"Evaluation + Plan note",,"2003-01-01" +44,"Evaluation + Plan note",,"2001-05-01" +44,"Evaluation + Plan note",,"1998-12-01" +44,"Evaluation + Plan note",,"1997-05-01" +44,"Evaluation + Plan note",,"1997-04-01" +44,"Evaluation + Plan note",,"1994-01-01" +44,"Evaluation + Plan note",,"1993-08-01" +44,"Evaluation + Plan note",,"1992-09-01" +44,"Evaluation + Plan note",,"1988-12-01" +44,"Evaluation + Plan note",,"1985-12-01" +44,"Evaluation + Plan note","History and physical note","2003-01-01" +44,"Evaluation + Plan note","History and physical note","2001-05-01" +44,"Evaluation + Plan note","History and physical note","1998-12-01" +44,"Evaluation + Plan note","History and physical note","1997-05-01" +44,"Evaluation + Plan note","History and physical note","1997-04-01" +44,"Evaluation + Plan note","History and physical note","1994-01-01" +44,"Evaluation + Plan note","History and physical note","1993-08-01" +44,"Evaluation + Plan note","History and physical note","1992-09-01" +44,"Evaluation + Plan note","History and physical note","1988-12-01" +44,"Evaluation + Plan note","History and physical note","1985-12-01" +44,"Evaluation + Plan note","Evaluation + Plan note","2003-01-01" +44,"Evaluation + Plan note","Evaluation + Plan note","2001-05-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1998-12-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1997-05-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1997-04-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1994-01-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1993-08-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1992-09-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1988-12-01" +44,"Evaluation + Plan note","Evaluation + Plan note","1985-12-01" +43,,,"2000-05-01" +43,,,"1994-06-01" +43,,,"1994-03-01" +43,,,"1993-07-01" +43,,,"1992-08-01" +43,,,"1990-10-01" +43,,,"1989-05-01" +43,,,"1986-12-01" +43,,"Urinalysis macro (dipstick) panel - Urine","2022-07-01" +43,,"Urinalysis macro (dipstick) panel - Urine","2021-07-01" +43,,"Urinalysis macro (dipstick) panel - Urine","2020-10-01" +43,,"Urinalysis macro (dipstick) panel - Urine","2018-03-01" +43,,"Urinalysis macro (dipstick) panel - Urine","2017-10-01" +43,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-04-01" +43,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-11-01" +43,,"Lipid panel with direct LDL - Serum or Plasma","2022-06-01" +43,,"History and physical note","2000-05-01" +43,,"History and physical note","1994-06-01" +43,,"History and physical note","1994-03-01" +43,,"History and physical note","1993-07-01" +43,,"History and physical note","1992-08-01" +43,,"History and physical note","1990-10-01" +43,,"History and physical note","1989-05-01" +43,,"History and physical note","1986-12-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2022-07-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2021-11-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2021-10-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2020-05-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2020-04-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2017-10-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2017-07-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2016-12-01" +43,,"Generalized anxiety disorder 7 item (GAD-7)","2016-02-01" +43,,"Evaluation + Plan note","2000-05-01" +43,,"Evaluation + Plan note","1994-06-01" +43,,"Evaluation + Plan note","1994-03-01" +43,,"Evaluation + Plan note","1993-07-01" +43,,"Evaluation + Plan note","1992-08-01" +43,,"Evaluation + Plan note","1990-10-01" +43,,"Evaluation + Plan note","1989-05-01" +43,,"Evaluation + Plan note","1986-12-01" +43,,"Basic metabolic panel - Blood","2020-04-01" +43,,"Basic metabolic panel - Blood","2019-10-01" +43,,"Basic metabolic panel - Blood","2018-11-01" +43,,"Basic metabolic panel - Blood","2016-08-01" +43,,"Basic metabolic panel - Blood","2014-09-01" +43,,"Basic metabolic panel - Blood","2014-07-01" +43,,"Basic metabolic 2000 panel - Serum or Plasma","2020-03-01" +43,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2017-04-01" +43,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2014-11-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-07-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-11-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-10-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-05-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-04-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-10-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-07-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-12-01" +43,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-02-01" +43,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-07-01" +43,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-07-01" +43,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-10-01" +43,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-03-01" +43,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-10-01" +43,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-06-01" +43,"Laboratory","Basic metabolic panel - Blood","2020-04-01" +43,"Laboratory","Basic metabolic panel - Blood","2019-10-01" +43,"Laboratory","Basic metabolic panel - Blood","2018-11-01" +43,"Laboratory","Basic metabolic panel - Blood","2016-08-01" +43,"Laboratory","Basic metabolic panel - Blood","2014-09-01" +43,"Laboratory","Basic metabolic panel - Blood","2014-07-01" +43,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-03-01" +43,"History and physical note",,"2000-05-01" +43,"History and physical note",,"1994-06-01" +43,"History and physical note",,"1994-03-01" +43,"History and physical note",,"1993-07-01" +43,"History and physical note",,"1992-08-01" +43,"History and physical note",,"1990-10-01" +43,"History and physical note",,"1989-05-01" +43,"History and physical note",,"1986-12-01" +43,"History and physical note","History and physical note","2000-05-01" +43,"History and physical note","History and physical note","1994-06-01" +43,"History and physical note","History and physical note","1994-03-01" +43,"History and physical note","History and physical note","1993-07-01" +43,"History and physical note","History and physical note","1992-08-01" +43,"History and physical note","History and physical note","1990-10-01" +43,"History and physical note","History and physical note","1989-05-01" +43,"History and physical note","History and physical note","1986-12-01" +43,"History and physical note","Evaluation + Plan note","2000-05-01" +43,"History and physical note","Evaluation + Plan note","1994-06-01" +43,"History and physical note","Evaluation + Plan note","1994-03-01" +43,"History and physical note","Evaluation + Plan note","1993-07-01" +43,"History and physical note","Evaluation + Plan note","1992-08-01" +43,"History and physical note","Evaluation + Plan note","1990-10-01" +43,"History and physical note","Evaluation + Plan note","1989-05-01" +43,"History and physical note","Evaluation + Plan note","1986-12-01" +43,"Evaluation + Plan note",,"2000-05-01" +43,"Evaluation + Plan note",,"1994-06-01" +43,"Evaluation + Plan note",,"1994-03-01" +43,"Evaluation + Plan note",,"1993-07-01" +43,"Evaluation + Plan note",,"1992-08-01" +43,"Evaluation + Plan note",,"1990-10-01" +43,"Evaluation + Plan note",,"1989-05-01" +43,"Evaluation + Plan note",,"1986-12-01" +43,"Evaluation + Plan note","History and physical note","2000-05-01" +43,"Evaluation + Plan note","History and physical note","1994-06-01" +43,"Evaluation + Plan note","History and physical note","1994-03-01" +43,"Evaluation + Plan note","History and physical note","1993-07-01" +43,"Evaluation + Plan note","History and physical note","1992-08-01" +43,"Evaluation + Plan note","History and physical note","1990-10-01" +43,"Evaluation + Plan note","History and physical note","1989-05-01" +43,"Evaluation + Plan note","History and physical note","1986-12-01" +43,"Evaluation + Plan note","Evaluation + Plan note","2000-05-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1994-06-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1994-03-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1993-07-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1992-08-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1990-10-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1989-05-01" +43,"Evaluation + Plan note","Evaluation + Plan note","1986-12-01" +42,,,"1995-11-01" +42,,,"1995-06-01" +42,,,"1995-01-01" +42,,,"1992-07-01" +42,,,"1991-08-01" +42,,,"1990-12-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2021-01-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2020-06-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2020-05-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2019-02-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2018-09-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2018-04-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2017-11-01" +42,,"Urinalysis macro (dipstick) panel - Urine","2015-01-01" +42,,"Lipid panel with direct LDL - Serum or Plasma","2021-09-01" +42,,"Lipid panel with direct LDL - Serum or Plasma","2021-03-01" +42,,"History and physical note","1995-11-01" +42,,"History and physical note","1995-06-01" +42,,"History and physical note","1995-01-01" +42,,"History and physical note","1992-07-01" +42,,"History and physical note","1991-08-01" +42,,"History and physical note","1990-12-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2022-09-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2019-02-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2018-11-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2017-06-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2016-03-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2015-08-01" +42,,"Generalized anxiety disorder 7 item (GAD-7)","2013-05-01" +42,,"Gas panel - Arterial blood", +42,,"Evaluation + Plan note","1995-11-01" +42,,"Evaluation + Plan note","1995-06-01" +42,,"Evaluation + Plan note","1995-01-01" +42,,"Evaluation + Plan note","1992-07-01" +42,,"Evaluation + Plan note","1991-08-01" +42,,"Evaluation + Plan note","1990-12-01" +42,,"Basic metabolic panel - Blood","2020-12-01" +42,,"Basic metabolic panel - Blood","2017-06-01" +42,,"Basic metabolic panel - Blood","2016-05-01" +42,,"Basic metabolic panel - Blood","2015-11-01" +42,,"Basic metabolic panel - Blood","2014-11-01" +42,,"Basic metabolic panel - Blood","2014-06-01" +42,,"Basic metabolic panel - Blood","2014-02-01" +42,,"Basic metabolic panel - Blood","2013-10-01" +42,,"Basic metabolic 2000 panel - Serum or Plasma","2021-02-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-09-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-02-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-11-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-06-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-03-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-08-01" +42,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-05-01" +42,"cumulus__none","Gas panel - Arterial blood", +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-01-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-06-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-05-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-02-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-09-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-04-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-11-01" +42,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-01-01" +42,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-09-01" +42,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-03-01" +42,"Laboratory","Basic metabolic panel - Blood","2020-12-01" +42,"Laboratory","Basic metabolic panel - Blood","2017-06-01" +42,"Laboratory","Basic metabolic panel - Blood","2016-05-01" +42,"Laboratory","Basic metabolic panel - Blood","2015-11-01" +42,"Laboratory","Basic metabolic panel - Blood","2014-11-01" +42,"Laboratory","Basic metabolic panel - Blood","2014-06-01" +42,"Laboratory","Basic metabolic panel - Blood","2014-02-01" +42,"Laboratory","Basic metabolic panel - Blood","2013-10-01" +42,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-02-01" +42,"History and physical note",,"1995-11-01" +42,"History and physical note",,"1995-06-01" +42,"History and physical note",,"1995-01-01" +42,"History and physical note",,"1992-07-01" +42,"History and physical note",,"1991-08-01" +42,"History and physical note",,"1990-12-01" +42,"History and physical note","History and physical note","1995-11-01" +42,"History and physical note","History and physical note","1995-06-01" +42,"History and physical note","History and physical note","1995-01-01" +42,"History and physical note","History and physical note","1992-07-01" +42,"History and physical note","History and physical note","1991-08-01" +42,"History and physical note","History and physical note","1990-12-01" +42,"History and physical note","Evaluation + Plan note","1995-11-01" +42,"History and physical note","Evaluation + Plan note","1995-06-01" +42,"History and physical note","Evaluation + Plan note","1995-01-01" +42,"History and physical note","Evaluation + Plan note","1992-07-01" +42,"History and physical note","Evaluation + Plan note","1991-08-01" +42,"History and physical note","Evaluation + Plan note","1990-12-01" +42,"Evaluation + Plan note",,"1995-11-01" +42,"Evaluation + Plan note",,"1995-06-01" +42,"Evaluation + Plan note",,"1995-01-01" +42,"Evaluation + Plan note",,"1992-07-01" +42,"Evaluation + Plan note",,"1991-08-01" +42,"Evaluation + Plan note",,"1990-12-01" +42,"Evaluation + Plan note","History and physical note","1995-11-01" +42,"Evaluation + Plan note","History and physical note","1995-06-01" +42,"Evaluation + Plan note","History and physical note","1995-01-01" +42,"Evaluation + Plan note","History and physical note","1992-07-01" +42,"Evaluation + Plan note","History and physical note","1991-08-01" +42,"Evaluation + Plan note","History and physical note","1990-12-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1995-11-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1995-06-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1995-01-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1992-07-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1991-08-01" +42,"Evaluation + Plan note","Evaluation + Plan note","1990-12-01" +41,,,"1999-11-01" +41,,,"1998-01-01" +41,,,"1995-09-01" +41,,,"1995-08-01" +41,,,"1994-09-01" +41,,,"1993-06-01" +41,,,"1992-11-01" +41,,,"1992-06-01" +41,,,"1992-02-01" +41,,,"1992-01-01" +41,,,"1991-10-01" +41,,,"1989-10-01" +41,,,"1989-06-01" +41,,,"1989-02-01" +41,,,"1988-10-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2022-12-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2022-11-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2022-05-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2020-01-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2019-03-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2018-08-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2017-08-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2017-02-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2016-12-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2016-10-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2016-08-01" +41,,"Urinalysis macro (dipstick) panel - Urine","2014-12-01" +41,,"Lipid panel with direct LDL - Serum or Plasma","2023-02-01" +41,,"Lipid panel with direct LDL - Serum or Plasma","2021-12-01" +41,,"Lipid panel with direct LDL - Serum or Plasma","2021-02-01" +41,,"Lipid panel with direct LDL - Serum or Plasma","2018-03-01" +41,,"Lipid panel with direct LDL - Serum or Plasma","2017-01-01" +41,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-03-01" +41,,"History and physical note","1999-11-01" +41,,"History and physical note","1998-01-01" +41,,"History and physical note","1995-09-01" +41,,"History and physical note","1995-08-01" +41,,"History and physical note","1994-09-01" +41,,"History and physical note","1993-06-01" +41,,"History and physical note","1992-11-01" +41,,"History and physical note","1992-06-01" +41,,"History and physical note","1992-02-01" +41,,"History and physical note","1992-01-01" +41,,"History and physical note","1991-10-01" +41,,"History and physical note","1989-10-01" +41,,"History and physical note","1989-06-01" +41,,"History and physical note","1989-02-01" +41,,"History and physical note","1988-10-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2019-12-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2017-08-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2017-02-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2016-05-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2015-05-01" +41,,"Generalized anxiety disorder 7 item (GAD-7)","2015-04-01" +41,,"Evaluation + Plan note","1999-11-01" +41,,"Evaluation + Plan note","1998-01-01" +41,,"Evaluation + Plan note","1995-09-01" +41,,"Evaluation + Plan note","1995-08-01" +41,,"Evaluation + Plan note","1994-09-01" +41,,"Evaluation + Plan note","1993-06-01" +41,,"Evaluation + Plan note","1992-11-01" +41,,"Evaluation + Plan note","1992-06-01" +41,,"Evaluation + Plan note","1992-02-01" +41,,"Evaluation + Plan note","1992-01-01" +41,,"Evaluation + Plan note","1991-10-01" +41,,"Evaluation + Plan note","1989-10-01" +41,,"Evaluation + Plan note","1989-06-01" +41,,"Evaluation + Plan note","1989-02-01" +41,,"Evaluation + Plan note","1988-10-01" +41,,"Drug Abuse Screening Test-10 [DAST-10]","2019-03-01" +41,,"Basic metabolic panel - Blood","2019-09-01" +41,,"Basic metabolic panel - Blood","2018-07-01" +41,,"Basic metabolic panel - Blood","2015-08-01" +41,,"Basic metabolic panel - Blood","2015-06-01" +41,,"Basic metabolic panel - Blood","2014-08-01" +41,,"Basic metabolic 2000 panel - Serum or Plasma","2018-10-01" +41,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-03-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-12-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-08-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-02-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-05-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-05-01" +41,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-04-01" +41,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-03-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-12-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-11-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-05-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-01-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-03-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-08-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-08-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-02-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-12-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-10-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-08-01" +41,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-12-01" +41,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2023-02-01" +41,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-12-01" +41,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-02-01" +41,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-03-01" +41,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-01-01" +41,"Laboratory","Basic metabolic panel - Blood","2019-09-01" +41,"Laboratory","Basic metabolic panel - Blood","2018-07-01" +41,"Laboratory","Basic metabolic panel - Blood","2015-08-01" +41,"Laboratory","Basic metabolic panel - Blood","2015-06-01" +41,"Laboratory","Basic metabolic panel - Blood","2014-08-01" +41,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-10-01" +41,"History and physical note",,"1999-11-01" +41,"History and physical note",,"1998-01-01" +41,"History and physical note",,"1995-09-01" +41,"History and physical note",,"1995-08-01" +41,"History and physical note",,"1994-09-01" +41,"History and physical note",,"1993-06-01" +41,"History and physical note",,"1992-11-01" +41,"History and physical note",,"1992-06-01" +41,"History and physical note",,"1992-02-01" +41,"History and physical note",,"1992-01-01" +41,"History and physical note",,"1991-10-01" +41,"History and physical note",,"1989-10-01" +41,"History and physical note",,"1989-06-01" +41,"History and physical note",,"1989-02-01" +41,"History and physical note",,"1988-10-01" +41,"History and physical note","History and physical note","1999-11-01" +41,"History and physical note","History and physical note","1998-01-01" +41,"History and physical note","History and physical note","1995-09-01" +41,"History and physical note","History and physical note","1995-08-01" +41,"History and physical note","History and physical note","1994-09-01" +41,"History and physical note","History and physical note","1993-06-01" +41,"History and physical note","History and physical note","1992-11-01" +41,"History and physical note","History and physical note","1992-06-01" +41,"History and physical note","History and physical note","1992-02-01" +41,"History and physical note","History and physical note","1992-01-01" +41,"History and physical note","History and physical note","1991-10-01" +41,"History and physical note","History and physical note","1989-10-01" +41,"History and physical note","History and physical note","1989-06-01" +41,"History and physical note","History and physical note","1989-02-01" +41,"History and physical note","History and physical note","1988-10-01" +41,"History and physical note","Evaluation + Plan note","1999-11-01" +41,"History and physical note","Evaluation + Plan note","1998-01-01" +41,"History and physical note","Evaluation + Plan note","1995-09-01" +41,"History and physical note","Evaluation + Plan note","1995-08-01" +41,"History and physical note","Evaluation + Plan note","1994-09-01" +41,"History and physical note","Evaluation + Plan note","1993-06-01" +41,"History and physical note","Evaluation + Plan note","1992-11-01" +41,"History and physical note","Evaluation + Plan note","1992-06-01" +41,"History and physical note","Evaluation + Plan note","1992-02-01" +41,"History and physical note","Evaluation + Plan note","1992-01-01" +41,"History and physical note","Evaluation + Plan note","1991-10-01" +41,"History and physical note","Evaluation + Plan note","1989-10-01" +41,"History and physical note","Evaluation + Plan note","1989-06-01" +41,"History and physical note","Evaluation + Plan note","1989-02-01" +41,"History and physical note","Evaluation + Plan note","1988-10-01" +41,"Evaluation + Plan note",,"1999-11-01" +41,"Evaluation + Plan note",,"1998-01-01" +41,"Evaluation + Plan note",,"1995-09-01" +41,"Evaluation + Plan note",,"1995-08-01" +41,"Evaluation + Plan note",,"1994-09-01" +41,"Evaluation + Plan note",,"1993-06-01" +41,"Evaluation + Plan note",,"1992-11-01" +41,"Evaluation + Plan note",,"1992-06-01" +41,"Evaluation + Plan note",,"1992-02-01" +41,"Evaluation + Plan note",,"1992-01-01" +41,"Evaluation + Plan note",,"1991-10-01" +41,"Evaluation + Plan note",,"1989-10-01" +41,"Evaluation + Plan note",,"1989-06-01" +41,"Evaluation + Plan note",,"1989-02-01" +41,"Evaluation + Plan note",,"1988-10-01" +41,"Evaluation + Plan note","History and physical note","1999-11-01" +41,"Evaluation + Plan note","History and physical note","1998-01-01" +41,"Evaluation + Plan note","History and physical note","1995-09-01" +41,"Evaluation + Plan note","History and physical note","1995-08-01" +41,"Evaluation + Plan note","History and physical note","1994-09-01" +41,"Evaluation + Plan note","History and physical note","1993-06-01" +41,"Evaluation + Plan note","History and physical note","1992-11-01" +41,"Evaluation + Plan note","History and physical note","1992-06-01" +41,"Evaluation + Plan note","History and physical note","1992-02-01" +41,"Evaluation + Plan note","History and physical note","1992-01-01" +41,"Evaluation + Plan note","History and physical note","1991-10-01" +41,"Evaluation + Plan note","History and physical note","1989-10-01" +41,"Evaluation + Plan note","History and physical note","1989-06-01" +41,"Evaluation + Plan note","History and physical note","1989-02-01" +41,"Evaluation + Plan note","History and physical note","1988-10-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1999-11-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1998-01-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1995-09-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1995-08-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1994-09-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1993-06-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1992-11-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1992-06-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1992-02-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1992-01-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1991-10-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1989-10-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1989-06-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1989-02-01" +41,"Evaluation + Plan note","Evaluation + Plan note","1988-10-01" +40,,,"1999-07-01" +40,,,"1996-07-01" +40,,,"1993-04-01" +40,,,"1988-09-01" +40,,,"1986-05-01" +40,,,"1985-08-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2023-02-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2022-09-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2021-11-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2021-03-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2020-12-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2019-11-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2019-08-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2018-06-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2018-05-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2017-12-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2017-07-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2017-05-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2015-11-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2015-04-01" +40,,"Urinalysis macro (dipstick) panel - Urine","2014-05-01" +40,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-11-01" +40,,"Lipid panel with direct LDL - Serum or Plasma","2022-01-01" +40,,"Iron panel - Serum or Plasma", +40,,"History and physical note","1999-07-01" +40,,"History and physical note","1996-07-01" +40,,"History and physical note","1993-04-01" +40,,"History and physical note","1988-09-01" +40,,"History and physical note","1986-05-01" +40,,"History and physical note","1985-08-01" +40,,"Generalized anxiety disorder 7 item (GAD-7)","2021-08-01" +40,,"Generalized anxiety disorder 7 item (GAD-7)","2018-09-01" +40,,"Generalized anxiety disorder 7 item (GAD-7)","2014-03-01" +40,,"Generalized anxiety disorder 7 item (GAD-7)","2013-08-01" +40,,"Generalized anxiety disorder 7 item (GAD-7)","2013-07-01" +40,,"Evaluation + Plan note","1999-07-01" +40,,"Evaluation + Plan note","1996-07-01" +40,,"Evaluation + Plan note","1993-04-01" +40,,"Evaluation + Plan note","1988-09-01" +40,,"Evaluation + Plan note","1986-05-01" +40,,"Evaluation + Plan note","1985-08-01" +40,,"Basic metabolic panel - Blood","2017-08-01" +40,,"Basic metabolic panel - Blood","2015-10-01" +40,,"Basic metabolic panel - Blood","2015-09-01" +40,,"Basic metabolic 2000 panel - Serum or Plasma","2021-08-01" +40,,"Basic metabolic 2000 panel - Serum or Plasma","2019-03-01" +40,,"Basic metabolic 2000 panel - Serum or Plasma","2019-02-01" +40,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2013-11-01" +40,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2021-08-01" +40,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-09-01" +40,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-03-01" +40,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-08-01" +40,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-07-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2023-02-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-09-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-11-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-03-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-12-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-11-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-08-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-06-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-05-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-12-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-07-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-05-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-11-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-04-01" +40,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-05-01" +40,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-01-01" +40,"Laboratory","Iron panel - Serum or Plasma", +40,"Laboratory","Basic metabolic panel - Blood","2017-08-01" +40,"Laboratory","Basic metabolic panel - Blood","2015-10-01" +40,"Laboratory","Basic metabolic panel - Blood","2015-09-01" +40,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-08-01" +40,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-03-01" +40,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-02-01" +40,"History and physical note",,"1999-07-01" +40,"History and physical note",,"1996-07-01" +40,"History and physical note",,"1993-04-01" +40,"History and physical note",,"1988-09-01" +40,"History and physical note",,"1986-05-01" +40,"History and physical note",,"1985-08-01" +40,"History and physical note","History and physical note","1999-07-01" +40,"History and physical note","History and physical note","1996-07-01" +40,"History and physical note","History and physical note","1993-04-01" +40,"History and physical note","History and physical note","1988-09-01" +40,"History and physical note","History and physical note","1986-05-01" +40,"History and physical note","History and physical note","1985-08-01" +40,"History and physical note","Evaluation + Plan note","1999-07-01" +40,"History and physical note","Evaluation + Plan note","1996-07-01" +40,"History and physical note","Evaluation + Plan note","1993-04-01" +40,"History and physical note","Evaluation + Plan note","1988-09-01" +40,"History and physical note","Evaluation + Plan note","1986-05-01" +40,"History and physical note","Evaluation + Plan note","1985-08-01" +40,"Evaluation + Plan note",,"1999-07-01" +40,"Evaluation + Plan note",,"1996-07-01" +40,"Evaluation + Plan note",,"1993-04-01" +40,"Evaluation + Plan note",,"1988-09-01" +40,"Evaluation + Plan note",,"1986-05-01" +40,"Evaluation + Plan note",,"1985-08-01" +40,"Evaluation + Plan note","History and physical note","1999-07-01" +40,"Evaluation + Plan note","History and physical note","1996-07-01" +40,"Evaluation + Plan note","History and physical note","1993-04-01" +40,"Evaluation + Plan note","History and physical note","1988-09-01" +40,"Evaluation + Plan note","History and physical note","1986-05-01" +40,"Evaluation + Plan note","History and physical note","1985-08-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1999-07-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1996-07-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1993-04-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1988-09-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1986-05-01" +40,"Evaluation + Plan note","Evaluation + Plan note","1985-08-01" +39,,,"1991-11-01" +39,,,"1988-01-01" +39,,,"1987-12-01" +39,,,"1987-01-01" +39,,,"1986-09-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2023-01-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2021-12-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2021-04-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2020-09-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2020-04-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2020-02-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2019-05-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2018-11-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2017-03-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2016-03-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2015-10-01" +39,,"Urinalysis macro (dipstick) panel - Urine","2013-09-01" +39,,"Lipid panel with direct LDL - Serum or Plasma","2020-03-01" +39,,"Lipid panel with direct LDL - Serum or Plasma","2016-01-01" +39,,"History and physical note","1991-11-01" +39,,"History and physical note","1988-01-01" +39,,"History and physical note","1987-12-01" +39,,"History and physical note","1987-01-01" +39,,"History and physical note","1986-09-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2022-08-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2020-11-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2020-09-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2019-07-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2018-07-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2017-12-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2017-01-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2014-04-01" +39,,"Generalized anxiety disorder 7 item (GAD-7)","2013-10-01" +39,,"Evaluation + Plan note","1991-11-01" +39,,"Evaluation + Plan note","1988-01-01" +39,,"Evaluation + Plan note","1987-12-01" +39,,"Evaluation + Plan note","1987-01-01" +39,,"Evaluation + Plan note","1986-09-01" +39,,"Complete blood count (hemogram) panel - Blood by Automated count", +39,,"Basic metabolic panel - Blood","2016-04-01" +39,,"Basic metabolic panel - Blood","2014-10-01" +39,,"Basic metabolic 2000 panel - Serum or Plasma","2022-06-01" +39,,"Basic metabolic 2000 panel - Serum or Plasma","2022-03-01" +39,,"Basic metabolic 2000 panel - Serum or Plasma","2021-10-01" +39,,"Basic metabolic 2000 panel - Serum or Plasma","2021-05-01" +39,,"Basic metabolic 2000 panel - Serum or Plasma","2016-09-01" +39,,"Basic Metabolic Panel", +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-08-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-11-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-09-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-07-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-07-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-12-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-01-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-04-01" +39,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-10-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2023-01-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-12-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2021-04-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-09-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-04-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-02-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-05-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-11-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-03-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-03-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-10-01" +39,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-09-01" +39,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-03-01" +39,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-01-01" +39,"Laboratory","Complete blood count (hemogram) panel - Blood by Automated count", +39,"Laboratory","Basic metabolic panel - Blood","2016-04-01" +39,"Laboratory","Basic metabolic panel - Blood","2014-10-01" +39,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-06-01" +39,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-03-01" +39,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-10-01" +39,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-05-01" +39,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-09-01" +39,"Laboratory","Basic Metabolic Panel", +39,"History and physical note",,"1991-11-01" +39,"History and physical note",,"1988-01-01" +39,"History and physical note",,"1987-12-01" +39,"History and physical note",,"1987-01-01" +39,"History and physical note",,"1986-09-01" +39,"History and physical note","History and physical note","1991-11-01" +39,"History and physical note","History and physical note","1988-01-01" +39,"History and physical note","History and physical note","1987-12-01" +39,"History and physical note","History and physical note","1987-01-01" +39,"History and physical note","History and physical note","1986-09-01" +39,"History and physical note","Evaluation + Plan note","1991-11-01" +39,"History and physical note","Evaluation + Plan note","1988-01-01" +39,"History and physical note","Evaluation + Plan note","1987-12-01" +39,"History and physical note","Evaluation + Plan note","1987-01-01" +39,"History and physical note","Evaluation + Plan note","1986-09-01" +39,"Evaluation + Plan note",,"1991-11-01" +39,"Evaluation + Plan note",,"1988-01-01" +39,"Evaluation + Plan note",,"1987-12-01" +39,"Evaluation + Plan note",,"1987-01-01" +39,"Evaluation + Plan note",,"1986-09-01" +39,"Evaluation + Plan note","History and physical note","1991-11-01" +39,"Evaluation + Plan note","History and physical note","1988-01-01" +39,"Evaluation + Plan note","History and physical note","1987-12-01" +39,"Evaluation + Plan note","History and physical note","1987-01-01" +39,"Evaluation + Plan note","History and physical note","1986-09-01" +39,"Evaluation + Plan note","Evaluation + Plan note","1991-11-01" +39,"Evaluation + Plan note","Evaluation + Plan note","1988-01-01" +39,"Evaluation + Plan note","Evaluation + Plan note","1987-12-01" +39,"Evaluation + Plan note","Evaluation + Plan note","1987-01-01" +39,"Evaluation + Plan note","Evaluation + Plan note","1986-09-01" +38,,,"1996-12-01" +38,,,"1994-10-01" +38,,,"1994-04-01" +38,,,"1991-07-01" +38,,,"1990-11-01" +38,,,"1989-09-01" +38,,,"1988-02-01" +38,,,"1986-08-01" +38,,,"1986-06-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2022-04-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2020-11-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2019-06-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2019-04-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2019-01-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2018-01-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2017-01-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2016-06-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2016-04-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2016-01-01" +38,,"Urinalysis macro (dipstick) panel - Urine","2014-11-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2022-10-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2022-02-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2021-04-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2021-01-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2020-06-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2018-11-01" +38,,"Lipid panel with direct LDL - Serum or Plasma","2014-12-01" +38,,"History and physical note","1996-12-01" +38,,"History and physical note","1994-10-01" +38,,"History and physical note","1994-04-01" +38,,"History and physical note","1991-07-01" +38,,"History and physical note","1990-11-01" +38,,"History and physical note","1989-09-01" +38,,"History and physical note","1988-02-01" +38,,"History and physical note","1986-08-01" +38,,"History and physical note","1986-06-01" +38,,"Generalized anxiety disorder 7 item (GAD-7)","2015-09-01" +38,,"Generalized anxiety disorder 7 item (GAD-7)","2013-12-01" +38,,"Evaluation + Plan note","1996-12-01" +38,,"Evaluation + Plan note","1994-10-01" +38,,"Evaluation + Plan note","1994-04-01" +38,,"Evaluation + Plan note","1991-07-01" +38,,"Evaluation + Plan note","1990-11-01" +38,,"Evaluation + Plan note","1989-09-01" +38,,"Evaluation + Plan note","1988-02-01" +38,,"Evaluation + Plan note","1986-08-01" +38,,"Evaluation + Plan note","1986-06-01" +38,,"Drug Abuse Screening Test-10 [DAST-10]","2018-03-01" +38,,"Basic metabolic panel - Blood","2014-04-01" +38,,"Basic metabolic panel - Blood","2013-08-01" +38,,"Basic metabolic panel - Blood","2013-07-01" +38,,"Basic metabolic 2000 panel - Serum or Plasma","2021-06-01" +38,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2015-09-01" +38,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-12-01" +38,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-03-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-04-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-11-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-06-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-04-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-01-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-01-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-01-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-06-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-04-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-01-01" +38,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-11-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-10-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-02-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-04-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-01-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-06-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-11-01" +38,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-12-01" +38,"Laboratory","Basic metabolic panel - Blood","2014-04-01" +38,"Laboratory","Basic metabolic panel - Blood","2013-08-01" +38,"Laboratory","Basic metabolic panel - Blood","2013-07-01" +38,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-06-01" +38,"History and physical note",,"1996-12-01" +38,"History and physical note",,"1994-10-01" +38,"History and physical note",,"1994-04-01" +38,"History and physical note",,"1991-07-01" +38,"History and physical note",,"1990-11-01" +38,"History and physical note",,"1989-09-01" +38,"History and physical note",,"1988-02-01" +38,"History and physical note",,"1986-08-01" +38,"History and physical note",,"1986-06-01" +38,"History and physical note","History and physical note","1996-12-01" +38,"History and physical note","History and physical note","1994-10-01" +38,"History and physical note","History and physical note","1994-04-01" +38,"History and physical note","History and physical note","1991-07-01" +38,"History and physical note","History and physical note","1990-11-01" +38,"History and physical note","History and physical note","1989-09-01" +38,"History and physical note","History and physical note","1988-02-01" +38,"History and physical note","History and physical note","1986-08-01" +38,"History and physical note","History and physical note","1986-06-01" +38,"History and physical note","Evaluation + Plan note","1996-12-01" +38,"History and physical note","Evaluation + Plan note","1994-10-01" +38,"History and physical note","Evaluation + Plan note","1994-04-01" +38,"History and physical note","Evaluation + Plan note","1991-07-01" +38,"History and physical note","Evaluation + Plan note","1990-11-01" +38,"History and physical note","Evaluation + Plan note","1989-09-01" +38,"History and physical note","Evaluation + Plan note","1988-02-01" +38,"History and physical note","Evaluation + Plan note","1986-08-01" +38,"History and physical note","Evaluation + Plan note","1986-06-01" +38,"Evaluation + Plan note",,"1996-12-01" +38,"Evaluation + Plan note",,"1994-10-01" +38,"Evaluation + Plan note",,"1994-04-01" +38,"Evaluation + Plan note",,"1991-07-01" +38,"Evaluation + Plan note",,"1990-11-01" +38,"Evaluation + Plan note",,"1989-09-01" +38,"Evaluation + Plan note",,"1988-02-01" +38,"Evaluation + Plan note",,"1986-08-01" +38,"Evaluation + Plan note",,"1986-06-01" +38,"Evaluation + Plan note","History and physical note","1996-12-01" +38,"Evaluation + Plan note","History and physical note","1994-10-01" +38,"Evaluation + Plan note","History and physical note","1994-04-01" +38,"Evaluation + Plan note","History and physical note","1991-07-01" +38,"Evaluation + Plan note","History and physical note","1990-11-01" +38,"Evaluation + Plan note","History and physical note","1989-09-01" +38,"Evaluation + Plan note","History and physical note","1988-02-01" +38,"Evaluation + Plan note","History and physical note","1986-08-01" +38,"Evaluation + Plan note","History and physical note","1986-06-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1996-12-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1994-10-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1994-04-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1991-07-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1990-11-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1989-09-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1988-02-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1986-08-01" +38,"Evaluation + Plan note","Evaluation + Plan note","1986-06-01" +37,,,"1999-04-01" +37,,,"1995-03-01" +37,,,"1993-12-01" +37,,,"1991-12-01" +37,,,"1991-04-01" +37,,,"1988-08-01" +37,,,"1988-05-01" +37,,,"1988-04-01" +37,,,"1986-01-01" +37,,,"1985-09-01" +37,,,"1984-05-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2022-02-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2022-01-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2020-08-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2018-12-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2017-09-01" +37,,"Urinalysis macro (dipstick) panel - Urine","2014-04-01" +37,,"Lipid panel with direct LDL - Serum or Plasma","2020-01-01" +37,,"History and physical note","1999-04-01" +37,,"History and physical note","1995-03-01" +37,,"History and physical note","1993-12-01" +37,,"History and physical note","1991-12-01" +37,,"History and physical note","1991-04-01" +37,,"History and physical note","1988-08-01" +37,,"History and physical note","1988-05-01" +37,,"History and physical note","1988-04-01" +37,,"History and physical note","1985-09-01" +37,,"History and physical note","1984-05-01" +37,,"Generalized anxiety disorder 7 item (GAD-7)","2022-12-01" +37,,"Generalized anxiety disorder 7 item (GAD-7)","2017-11-01" +37,,"Generalized anxiety disorder 7 item (GAD-7)","2016-08-01" +37,,"Generalized anxiety disorder 7 item (GAD-7)","2014-10-01" +37,,"Evaluation + Plan note","1999-04-01" +37,,"Evaluation + Plan note","1995-03-01" +37,,"Evaluation + Plan note","1993-12-01" +37,,"Evaluation + Plan note","1991-12-01" +37,,"Evaluation + Plan note","1991-04-01" +37,,"Evaluation + Plan note","1988-08-01" +37,,"Evaluation + Plan note","1988-05-01" +37,,"Evaluation + Plan note","1988-04-01" +37,,"Evaluation + Plan note","1985-09-01" +37,,"Evaluation + Plan note","1984-05-01" +37,,"Basic metabolic panel - Blood","2016-11-01" +37,,"Basic metabolic panel - Blood","2013-09-01" +37,,"Basic metabolic panel - Blood","2013-06-01" +37,,"Basic metabolic panel - Blood","2013-04-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2021-09-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2021-07-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2021-01-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2020-10-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2020-05-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2017-10-01" +37,,"Basic metabolic 2000 panel - Serum or Plasma","2015-07-01" +37,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2022-12-01" +37,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-11-01" +37,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-08-01" +37,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-10-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-02-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-01-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-08-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-12-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-09-01" +37,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-04-01" +37,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-01-01" +37,"Laboratory","Basic metabolic panel - Blood","2016-11-01" +37,"Laboratory","Basic metabolic panel - Blood","2013-09-01" +37,"Laboratory","Basic metabolic panel - Blood","2013-06-01" +37,"Laboratory","Basic metabolic panel - Blood","2013-04-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-09-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-07-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-01-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-10-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-05-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-10-01" +37,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-07-01" +37,"History and physical note",,"1999-04-01" +37,"History and physical note",,"1995-03-01" +37,"History and physical note",,"1993-12-01" +37,"History and physical note",,"1991-12-01" +37,"History and physical note",,"1991-04-01" +37,"History and physical note",,"1988-08-01" +37,"History and physical note",,"1988-05-01" +37,"History and physical note",,"1988-04-01" +37,"History and physical note",,"1985-09-01" +37,"History and physical note",,"1984-05-01" +37,"History and physical note","History and physical note","1999-04-01" +37,"History and physical note","History and physical note","1995-03-01" +37,"History and physical note","History and physical note","1993-12-01" +37,"History and physical note","History and physical note","1991-12-01" +37,"History and physical note","History and physical note","1991-04-01" +37,"History and physical note","History and physical note","1988-08-01" +37,"History and physical note","History and physical note","1988-05-01" +37,"History and physical note","History and physical note","1988-04-01" +37,"History and physical note","History and physical note","1985-09-01" +37,"History and physical note","History and physical note","1984-05-01" +37,"History and physical note","Evaluation + Plan note","1999-04-01" +37,"History and physical note","Evaluation + Plan note","1995-03-01" +37,"History and physical note","Evaluation + Plan note","1993-12-01" +37,"History and physical note","Evaluation + Plan note","1991-12-01" +37,"History and physical note","Evaluation + Plan note","1991-04-01" +37,"History and physical note","Evaluation + Plan note","1988-08-01" +37,"History and physical note","Evaluation + Plan note","1988-05-01" +37,"History and physical note","Evaluation + Plan note","1988-04-01" +37,"History and physical note","Evaluation + Plan note","1985-09-01" +37,"History and physical note","Evaluation + Plan note","1984-05-01" +37,"Evaluation + Plan note",,"1999-04-01" +37,"Evaluation + Plan note",,"1995-03-01" +37,"Evaluation + Plan note",,"1993-12-01" +37,"Evaluation + Plan note",,"1991-12-01" +37,"Evaluation + Plan note",,"1991-04-01" +37,"Evaluation + Plan note",,"1988-08-01" +37,"Evaluation + Plan note",,"1988-05-01" +37,"Evaluation + Plan note",,"1988-04-01" +37,"Evaluation + Plan note",,"1985-09-01" +37,"Evaluation + Plan note",,"1984-05-01" +37,"Evaluation + Plan note","History and physical note","1999-04-01" +37,"Evaluation + Plan note","History and physical note","1995-03-01" +37,"Evaluation + Plan note","History and physical note","1993-12-01" +37,"Evaluation + Plan note","History and physical note","1991-12-01" +37,"Evaluation + Plan note","History and physical note","1991-04-01" +37,"Evaluation + Plan note","History and physical note","1988-08-01" +37,"Evaluation + Plan note","History and physical note","1988-05-01" +37,"Evaluation + Plan note","History and physical note","1988-04-01" +37,"Evaluation + Plan note","History and physical note","1985-09-01" +37,"Evaluation + Plan note","History and physical note","1984-05-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1999-04-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1995-03-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1993-12-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1991-12-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1991-04-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1988-08-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1988-05-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1988-04-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1985-09-01" +37,"Evaluation + Plan note","Evaluation + Plan note","1984-05-01" +36,,,"1995-04-01" +36,,,"1986-04-01" +36,,,"1984-12-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2022-08-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2019-12-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2019-10-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2016-11-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2015-06-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2015-05-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2014-06-01" +36,,"Urinalysis macro (dipstick) panel - Urine","2013-11-01" +36,,"Lipid panel with direct LDL - Serum or Plasma","2022-12-01" +36,,"Lipid panel with direct LDL - Serum or Plasma","2016-08-01" +36,,"Lipid panel with direct LDL - Serum or Plasma","2015-01-01" +36,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-04-01" +36,,"History and physical note","1995-04-01" +36,,"History and physical note","1986-04-01" +36,,"History and physical note","1986-01-01" +36,,"History and physical note","1984-12-01" +36,,"Generalized anxiety disorder 7 item (GAD-7)","2023-03-01" +36,,"Generalized anxiety disorder 7 item (GAD-7)","2016-11-01" +36,,"Evaluation + Plan note","1995-04-01" +36,,"Evaluation + Plan note","1986-04-01" +36,,"Evaluation + Plan note","1986-01-01" +36,,"Evaluation + Plan note","1984-12-01" +36,,"Drug Abuse Screening Test-10 [DAST-10]","2022-03-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2023-03-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2021-04-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2021-03-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2020-02-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2019-11-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2018-11-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2018-09-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2018-06-01" +36,,"Basic metabolic 2000 panel - Serum or Plasma","2017-11-01" +36,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-06-01" +36,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-04-01" +36,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2023-03-01" +36,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-11-01" +36,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-03-01" +36,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-06-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2022-08-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-12-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-10-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-11-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-06-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-05-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-06-01" +36,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-11-01" +36,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-12-01" +36,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-08-01" +36,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-01-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2023-03-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-04-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-03-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-02-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-11-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-11-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-09-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-06-01" +36,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-11-01" +36,"History and physical note",,"1995-04-01" +36,"History and physical note",,"1986-04-01" +36,"History and physical note",,"1986-01-01" +36,"History and physical note",,"1984-12-01" +36,"History and physical note","History and physical note","1995-04-01" +36,"History and physical note","History and physical note","1986-04-01" +36,"History and physical note","History and physical note","1986-01-01" +36,"History and physical note","History and physical note","1984-12-01" +36,"History and physical note","Evaluation + Plan note","1995-04-01" +36,"History and physical note","Evaluation + Plan note","1986-04-01" +36,"History and physical note","Evaluation + Plan note","1986-01-01" +36,"History and physical note","Evaluation + Plan note","1984-12-01" +36,"Evaluation + Plan note",,"1995-04-01" +36,"Evaluation + Plan note",,"1986-04-01" +36,"Evaluation + Plan note",,"1986-01-01" +36,"Evaluation + Plan note",,"1984-12-01" +36,"Evaluation + Plan note","History and physical note","1995-04-01" +36,"Evaluation + Plan note","History and physical note","1986-04-01" +36,"Evaluation + Plan note","History and physical note","1986-01-01" +36,"Evaluation + Plan note","History and physical note","1984-12-01" +36,"Evaluation + Plan note","Evaluation + Plan note","1995-04-01" +36,"Evaluation + Plan note","Evaluation + Plan note","1986-04-01" +36,"Evaluation + Plan note","Evaluation + Plan note","1986-01-01" +36,"Evaluation + Plan note","Evaluation + Plan note","1984-12-01" +35,,,"1998-04-01" +35,,,"1996-04-01" +35,,,"1992-12-01" +35,,,"1991-05-01" +35,,,"1988-11-01" +35,,,"1988-07-01" +35,,,"1987-05-01" +35,,"Urinalysis macro (dipstick) panel - Urine","2015-08-01" +35,,"Urinalysis macro (dipstick) panel - Urine","2014-08-01" +35,,"Urinalysis macro (dipstick) panel - Urine","2014-01-01" +35,,"Urinalysis macro (dipstick) panel - Urine","2013-12-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2021-11-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2020-10-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2020-08-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2019-02-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2018-02-01" +35,,"Lipid panel with direct LDL - Serum or Plasma","2014-05-01" +35,,"History and physical note","1998-04-01" +35,,"History and physical note","1996-04-01" +35,,"History and physical note","1992-12-01" +35,,"History and physical note","1991-05-01" +35,,"History and physical note","1988-11-01" +35,,"History and physical note","1988-07-01" +35,,"History and physical note","1987-05-01" +35,,"Generalized anxiety disorder 7 item (GAD-7)","2020-10-01" +35,,"Generalized anxiety disorder 7 item (GAD-7)","2017-09-01" +35,,"Generalized anxiety disorder 7 item (GAD-7)","2013-11-01" +35,,"Evaluation + Plan note","1998-04-01" +35,,"Evaluation + Plan note","1996-04-01" +35,,"Evaluation + Plan note","1992-12-01" +35,,"Evaluation + Plan note","1991-05-01" +35,,"Evaluation + Plan note","1988-11-01" +35,,"Evaluation + Plan note","1988-07-01" +35,,"Evaluation + Plan note","1987-05-01" +35,,"Basic metabolic panel - Blood","2014-03-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2022-10-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2020-09-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2020-06-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2020-01-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2019-08-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2019-06-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2019-05-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2018-08-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2018-03-01" +35,,"Basic metabolic 2000 panel - Serum or Plasma","2016-08-01" +35,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2020-10-01" +35,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-09-01" +35,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-11-01" +35,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-08-01" +35,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-08-01" +35,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-01-01" +35,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-12-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-11-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-10-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-08-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-02-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-02-01" +35,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-05-01" +35,"Laboratory","Basic metabolic panel - Blood","2014-03-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-10-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-09-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-06-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-01-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-08-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-06-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-05-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-08-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-03-01" +35,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-08-01" +35,"History and physical note",,"1998-04-01" +35,"History and physical note",,"1996-04-01" +35,"History and physical note",,"1992-12-01" +35,"History and physical note",,"1991-05-01" +35,"History and physical note",,"1988-11-01" +35,"History and physical note",,"1988-07-01" +35,"History and physical note",,"1987-05-01" +35,"History and physical note","History and physical note","1998-04-01" +35,"History and physical note","History and physical note","1996-04-01" +35,"History and physical note","History and physical note","1992-12-01" +35,"History and physical note","History and physical note","1991-05-01" +35,"History and physical note","History and physical note","1988-11-01" +35,"History and physical note","History and physical note","1988-07-01" +35,"History and physical note","History and physical note","1987-05-01" +35,"History and physical note","Evaluation + Plan note","1998-04-01" +35,"History and physical note","Evaluation + Plan note","1996-04-01" +35,"History and physical note","Evaluation + Plan note","1992-12-01" +35,"History and physical note","Evaluation + Plan note","1991-05-01" +35,"History and physical note","Evaluation + Plan note","1988-11-01" +35,"History and physical note","Evaluation + Plan note","1988-07-01" +35,"History and physical note","Evaluation + Plan note","1987-05-01" +35,"Evaluation + Plan note",,"1998-04-01" +35,"Evaluation + Plan note",,"1996-04-01" +35,"Evaluation + Plan note",,"1992-12-01" +35,"Evaluation + Plan note",,"1991-05-01" +35,"Evaluation + Plan note",,"1988-11-01" +35,"Evaluation + Plan note",,"1988-07-01" +35,"Evaluation + Plan note",,"1987-05-01" +35,"Evaluation + Plan note","History and physical note","1998-04-01" +35,"Evaluation + Plan note","History and physical note","1996-04-01" +35,"Evaluation + Plan note","History and physical note","1992-12-01" +35,"Evaluation + Plan note","History and physical note","1991-05-01" +35,"Evaluation + Plan note","History and physical note","1988-11-01" +35,"Evaluation + Plan note","History and physical note","1988-07-01" +35,"Evaluation + Plan note","History and physical note","1987-05-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1998-04-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1996-04-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1992-12-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1991-05-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1988-11-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1988-07-01" +35,"Evaluation + Plan note","Evaluation + Plan note","1987-05-01" +34,,,"1994-11-01" +34,,,"1989-04-01" +34,,,"1987-04-01" +34,,,"1985-06-01" +34,,,"1983-11-01" +34,,,"1983-07-01" +34,,,"1983-05-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2019-09-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2019-07-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2018-07-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2018-02-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2014-10-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2013-10-01" +34,,"Urinalysis macro (dipstick) panel - Urine","2013-05-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2023-03-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2022-03-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2021-06-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2019-08-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2018-09-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2018-01-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2017-09-01" +34,,"Lipid panel with direct LDL - Serum or Plasma","2016-09-01" +34,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-06-01" +34,,"History and physical note","1994-11-01" +34,,"History and physical note","1989-04-01" +34,,"History and physical note","1987-04-01" +34,,"History and physical note","1985-06-01" +34,,"History and physical note","1983-11-01" +34,,"History and physical note","1983-07-01" +34,,"History and physical note","1983-05-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2019-09-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2018-12-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2018-04-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2016-10-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2014-06-01" +34,,"Generalized anxiety disorder 7 item (GAD-7)","2013-04-01" +34,,"Evaluation + Plan note","1994-11-01" +34,,"Evaluation + Plan note","1989-04-01" +34,,"Evaluation + Plan note","1987-04-01" +34,,"Evaluation + Plan note","1985-06-01" +34,,"Evaluation + Plan note","1983-11-01" +34,,"Evaluation + Plan note","1983-07-01" +34,,"Evaluation + Plan note","1983-05-01" +34,,"Drug Abuse Screening Test-10 [DAST-10]","2020-03-01" +34,,"Basic metabolic panel - Blood","2017-04-01" +34,,"Basic metabolic panel - Blood","2013-11-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2022-07-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2020-12-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2019-04-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2019-01-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2018-05-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2015-01-01" +34,,"Basic metabolic 2000 panel - Serum or Plasma","2014-05-01" +34,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-06-01" +34,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-01-01" +34,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-06-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2019-09-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-12-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-04-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-10-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-06-01" +34,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-04-01" +34,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-03-01" +34,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-06-01" +34,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-01-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-09-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2019-07-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-07-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2018-02-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-10-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-10-01" +34,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-05-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2023-03-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-03-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-06-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-08-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-09-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-01-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-09-01" +34,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-09-01" +34,"Laboratory","Basic metabolic panel - Blood","2017-04-01" +34,"Laboratory","Basic metabolic panel - Blood","2013-11-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-07-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-12-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-04-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-01-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-05-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-01-01" +34,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-05-01" +34,"History and physical note",,"1994-11-01" +34,"History and physical note",,"1989-04-01" +34,"History and physical note",,"1987-04-01" +34,"History and physical note",,"1985-06-01" +34,"History and physical note",,"1983-11-01" +34,"History and physical note",,"1983-07-01" +34,"History and physical note",,"1983-05-01" +34,"History and physical note","History and physical note","1994-11-01" +34,"History and physical note","History and physical note","1989-04-01" +34,"History and physical note","History and physical note","1987-04-01" +34,"History and physical note","History and physical note","1985-06-01" +34,"History and physical note","History and physical note","1983-11-01" +34,"History and physical note","History and physical note","1983-07-01" +34,"History and physical note","History and physical note","1983-05-01" +34,"History and physical note","Evaluation + Plan note","1994-11-01" +34,"History and physical note","Evaluation + Plan note","1989-04-01" +34,"History and physical note","Evaluation + Plan note","1987-04-01" +34,"History and physical note","Evaluation + Plan note","1985-06-01" +34,"History and physical note","Evaluation + Plan note","1983-11-01" +34,"History and physical note","Evaluation + Plan note","1983-07-01" +34,"History and physical note","Evaluation + Plan note","1983-05-01" +34,"Evaluation + Plan note",,"1994-11-01" +34,"Evaluation + Plan note",,"1989-04-01" +34,"Evaluation + Plan note",,"1987-04-01" +34,"Evaluation + Plan note",,"1985-06-01" +34,"Evaluation + Plan note",,"1983-11-01" +34,"Evaluation + Plan note",,"1983-07-01" +34,"Evaluation + Plan note",,"1983-05-01" +34,"Evaluation + Plan note","History and physical note","1994-11-01" +34,"Evaluation + Plan note","History and physical note","1989-04-01" +34,"Evaluation + Plan note","History and physical note","1987-04-01" +34,"Evaluation + Plan note","History and physical note","1985-06-01" +34,"Evaluation + Plan note","History and physical note","1983-11-01" +34,"Evaluation + Plan note","History and physical note","1983-07-01" +34,"Evaluation + Plan note","History and physical note","1983-05-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1994-11-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1989-04-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1987-04-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1985-06-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1983-11-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1983-07-01" +34,"Evaluation + Plan note","Evaluation + Plan note","1983-05-01" +33,,,"1992-04-01" +33,,,"1992-03-01" +33,,,"1989-07-01" +33,,,"1987-09-01" +33,,,"1987-08-01" +33,,,"1984-08-01" +33,,,"1983-06-01" +33,,,"1981-01-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2016-07-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2016-05-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2016-02-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2015-09-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2015-03-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2014-07-01" +33,,"Urinalysis macro (dipstick) panel - Urine","2014-02-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2021-10-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2021-07-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2019-09-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2018-12-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2015-11-01" +33,,"Lipid panel with direct LDL - Serum or Plasma","2015-02-01" +33,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-06-01" +33,,"History and physical note","1992-04-01" +33,,"History and physical note","1992-03-01" +33,,"History and physical note","1989-07-01" +33,,"History and physical note","1987-09-01" +33,,"History and physical note","1987-08-01" +33,,"History and physical note","1984-08-01" +33,,"History and physical note","1983-06-01" +33,,"History and physical note","1981-01-01" +33,,"Generalized anxiety disorder 7 item (GAD-7)","2017-04-01" +33,,"Generalized anxiety disorder 7 item (GAD-7)","2014-08-01" +33,,"Generalized anxiety disorder 7 item (GAD-7)","2013-06-01" +33,,"Evaluation + Plan note","1992-04-01" +33,,"Evaluation + Plan note","1992-03-01" +33,,"Evaluation + Plan note","1989-07-01" +33,,"Evaluation + Plan note","1987-09-01" +33,,"Evaluation + Plan note","1987-08-01" +33,,"Evaluation + Plan note","1984-08-01" +33,,"Evaluation + Plan note","1983-06-01" +33,,"Evaluation + Plan note","1981-01-01" +33,,"Drug Abuse Screening Test-10 [DAST-10]","2021-05-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2023-02-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2022-12-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2022-11-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2022-05-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2020-04-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2019-10-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2018-04-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2017-12-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2017-05-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2017-02-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2016-12-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2016-10-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2016-03-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2015-11-01" +33,,"Basic metabolic 2000 panel - Serum or Plasma","2013-09-01" +33,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-01-01" +33,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-06-01" +33,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2017-04-01" +33,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-08-01" +33,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-06-01" +33,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-05-01" +33,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-01-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-07-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-05-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2016-02-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-09-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-03-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-07-01" +33,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-02-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-10-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-07-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-09-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-12-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-11-01" +33,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-02-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2023-02-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-12-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-11-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-05-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-04-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-10-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-04-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-12-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-05-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-02-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-12-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-10-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-03-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-11-01" +33,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-09-01" +33,"History and physical note",,"1992-04-01" +33,"History and physical note",,"1992-03-01" +33,"History and physical note",,"1989-07-01" +33,"History and physical note",,"1987-09-01" +33,"History and physical note",,"1987-08-01" +33,"History and physical note",,"1984-08-01" +33,"History and physical note",,"1983-06-01" +33,"History and physical note",,"1981-01-01" +33,"History and physical note","History and physical note","1992-04-01" +33,"History and physical note","History and physical note","1992-03-01" +33,"History and physical note","History and physical note","1989-07-01" +33,"History and physical note","History and physical note","1987-09-01" +33,"History and physical note","History and physical note","1987-08-01" +33,"History and physical note","History and physical note","1984-08-01" +33,"History and physical note","History and physical note","1983-06-01" +33,"History and physical note","History and physical note","1981-01-01" +33,"History and physical note","Evaluation + Plan note","1992-04-01" +33,"History and physical note","Evaluation + Plan note","1992-03-01" +33,"History and physical note","Evaluation + Plan note","1989-07-01" +33,"History and physical note","Evaluation + Plan note","1987-09-01" +33,"History and physical note","Evaluation + Plan note","1987-08-01" +33,"History and physical note","Evaluation + Plan note","1984-08-01" +33,"History and physical note","Evaluation + Plan note","1983-06-01" +33,"History and physical note","Evaluation + Plan note","1981-01-01" +33,"Evaluation + Plan note",,"1992-04-01" +33,"Evaluation + Plan note",,"1992-03-01" +33,"Evaluation + Plan note",,"1989-07-01" +33,"Evaluation + Plan note",,"1987-09-01" +33,"Evaluation + Plan note",,"1987-08-01" +33,"Evaluation + Plan note",,"1984-08-01" +33,"Evaluation + Plan note",,"1983-06-01" +33,"Evaluation + Plan note",,"1981-01-01" +33,"Evaluation + Plan note","History and physical note","1992-04-01" +33,"Evaluation + Plan note","History and physical note","1992-03-01" +33,"Evaluation + Plan note","History and physical note","1989-07-01" +33,"Evaluation + Plan note","History and physical note","1987-09-01" +33,"Evaluation + Plan note","History and physical note","1987-08-01" +33,"Evaluation + Plan note","History and physical note","1984-08-01" +33,"Evaluation + Plan note","History and physical note","1983-06-01" +33,"Evaluation + Plan note","History and physical note","1981-01-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1992-04-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1992-03-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1989-07-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1987-09-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1987-08-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1984-08-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1983-06-01" +33,"Evaluation + Plan note","Evaluation + Plan note","1981-01-01" +32,,,"1994-12-01" +32,,,"1988-03-01" +32,,,"1987-06-01" +32,,,"1986-10-01" +32,,,"1986-07-01" +32,,,"1983-08-01" +32,,"Urinalysis macro (dipstick) panel - Urine","2017-06-01" +32,,"Urinalysis macro (dipstick) panel - Urine","2015-12-01" +32,,"Lipid panel with direct LDL - Serum or Plasma","2022-07-01" +32,,"Lipid panel with direct LDL - Serum or Plasma","2021-05-01" +32,,"Lipid panel with direct LDL - Serum or Plasma","2018-05-01" +32,,"Influenza virus A and B Ag panel - Upper respiratory specimen by Rapid immunoassay", +32,,"History and physical note","1994-12-01" +32,,"History and physical note","1988-03-01" +32,,"History and physical note","1987-06-01" +32,,"History and physical note","1986-10-01" +32,,"History and physical note","1986-07-01" +32,,"History and physical note","1983-08-01" +32,,"Generalized anxiety disorder 7 item (GAD-7)","2018-10-01" +32,,"Generalized anxiety disorder 7 item (GAD-7)","2014-11-01" +32,,"Gas panel - Venous blood", +32,,"Evaluation + Plan note","1994-12-01" +32,,"Evaluation + Plan note","1988-03-01" +32,,"Evaluation + Plan note","1987-06-01" +32,,"Evaluation + Plan note","1986-10-01" +32,,"Evaluation + Plan note","1986-07-01" +32,,"Evaluation + Plan note","1983-08-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2021-12-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2021-11-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2019-09-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2018-12-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2017-08-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2017-07-01" +32,,"Basic metabolic 2000 panel - Serum or Plasma","2017-01-01" +32,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-07-01" +32,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2018-10-01" +32,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2014-11-01" +32,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-07-01" +32,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-06-01" +32,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-12-01" +32,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-07-01" +32,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-05-01" +32,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-05-01" +32,"Laboratory","Influenza virus A and B Ag panel - Upper respiratory specimen by Rapid immunoassay", +32,"Laboratory","Gas panel - Venous blood", +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-12-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2021-11-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-09-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-12-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-08-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-07-01" +32,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-01-01" +32,"History and physical note",,"1994-12-01" +32,"History and physical note",,"1988-03-01" +32,"History and physical note",,"1987-06-01" +32,"History and physical note",,"1986-10-01" +32,"History and physical note",,"1986-07-01" +32,"History and physical note",,"1983-08-01" +32,"History and physical note","History and physical note","1994-12-01" +32,"History and physical note","History and physical note","1988-03-01" +32,"History and physical note","History and physical note","1987-06-01" +32,"History and physical note","History and physical note","1986-10-01" +32,"History and physical note","History and physical note","1986-07-01" +32,"History and physical note","History and physical note","1983-08-01" +32,"History and physical note","Evaluation + Plan note","1994-12-01" +32,"History and physical note","Evaluation + Plan note","1988-03-01" +32,"History and physical note","Evaluation + Plan note","1987-06-01" +32,"History and physical note","Evaluation + Plan note","1986-10-01" +32,"History and physical note","Evaluation + Plan note","1986-07-01" +32,"History and physical note","Evaluation + Plan note","1983-08-01" +32,"Evaluation + Plan note",,"1994-12-01" +32,"Evaluation + Plan note",,"1988-03-01" +32,"Evaluation + Plan note",,"1987-06-01" +32,"Evaluation + Plan note",,"1986-10-01" +32,"Evaluation + Plan note",,"1986-07-01" +32,"Evaluation + Plan note",,"1983-08-01" +32,"Evaluation + Plan note","History and physical note","1994-12-01" +32,"Evaluation + Plan note","History and physical note","1988-03-01" +32,"Evaluation + Plan note","History and physical note","1987-06-01" +32,"Evaluation + Plan note","History and physical note","1986-10-01" +32,"Evaluation + Plan note","History and physical note","1986-07-01" +32,"Evaluation + Plan note","History and physical note","1983-08-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1994-12-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1988-03-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1987-06-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1986-10-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1986-07-01" +32,"Evaluation + Plan note","Evaluation + Plan note","1983-08-01" +31,,,"1986-11-01" +31,,,"1986-02-01" +31,,,"1985-05-01" +31,,,"1984-11-01" +31,,,"1984-07-01" +31,,,"1984-03-01" +31,,,"1983-10-01" +31,,,"1983-09-01" +31,,,"1982-06-01" +31,,,"1981-05-01" +31,,,"1980-11-01" +31,,,"1980-04-01" +31,,"Urinalysis macro (dipstick) panel - Urine","2015-02-01" +31,,"Urinalysis macro (dipstick) panel - Urine","2014-09-01" +31,,"Urinalysis macro (dipstick) panel - Urine","2014-03-01" +31,,"Urinalysis macro (dipstick) panel - Urine","2013-08-01" +31,,"New York Heart Association Functional Classification panel", +31,,"Lipid panel with direct LDL - Serum or Plasma","2022-11-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2020-05-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2020-02-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2019-11-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2019-04-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2019-03-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2018-08-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2017-10-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2017-08-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2017-06-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2017-05-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2017-03-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2014-09-01" +31,,"Lipid panel with direct LDL - Serum or Plasma","2013-12-01" +31,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-03-01" +31,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-01-01" +31,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-02-01" +31,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-02-01" +31,,"History and physical note","1986-11-01" +31,,"History and physical note","1986-02-01" +31,,"History and physical note","1985-05-01" +31,,"History and physical note","1984-11-01" +31,,"History and physical note","1984-03-01" +31,,"History and physical note","1983-10-01" +31,,"History and physical note","1983-09-01" +31,,"History and physical note","1982-06-01" +31,,"History and physical note","1981-05-01" +31,,"History and physical note","1980-11-01" +31,,"History and physical note","1980-04-01" +31,,"Evaluation + Plan note","1986-11-01" +31,,"Evaluation + Plan note","1986-02-01" +31,,"Evaluation + Plan note","1985-05-01" +31,,"Evaluation + Plan note","1984-11-01" +31,,"Evaluation + Plan note","1984-03-01" +31,,"Evaluation + Plan note","1983-10-01" +31,,"Evaluation + Plan note","1983-09-01" +31,,"Evaluation + Plan note","1982-06-01" +31,,"Evaluation + Plan note","1981-05-01" +31,,"Evaluation + Plan note","1980-11-01" +31,,"Evaluation + Plan note","1980-04-01" +31,,"Drug Abuse Screening Test-10 [DAST-10]","2016-03-01" +31,,"Drug Abuse Screening Test-10 [DAST-10]","2014-12-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2023-01-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2022-09-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2022-02-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2020-11-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2020-08-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2019-12-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2019-07-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2016-06-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2016-01-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2015-10-01" +31,,"Basic metabolic 2000 panel - Serum or Plasma","2014-12-01" +31,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-08-01" +31,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-01-01" +31,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-03-01" +31,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-01-01" +31,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-02-01" +31,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-02-01" +31,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-03-01" +31,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-12-01" +31,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-08-01" +31,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-01-01" +31,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2015-02-01" +31,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-09-01" +31,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2014-03-01" +31,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-08-01" +31,"Laboratory","New York Heart Association Functional Classification panel", +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-11-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-05-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-02-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-11-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-04-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-03-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-08-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-10-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-08-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-06-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-05-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-03-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-09-01" +31,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-12-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2023-01-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-09-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-02-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-11-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-08-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-12-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2019-07-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-06-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-01-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-10-01" +31,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-12-01" +31,"History and physical note",,"1986-11-01" +31,"History and physical note",,"1986-02-01" +31,"History and physical note",,"1985-05-01" +31,"History and physical note",,"1984-11-01" +31,"History and physical note",,"1984-03-01" +31,"History and physical note",,"1983-10-01" +31,"History and physical note",,"1983-09-01" +31,"History and physical note",,"1982-06-01" +31,"History and physical note",,"1981-05-01" +31,"History and physical note",,"1980-11-01" +31,"History and physical note",,"1980-04-01" +31,"History and physical note","History and physical note","1986-11-01" +31,"History and physical note","History and physical note","1986-02-01" +31,"History and physical note","History and physical note","1985-05-01" +31,"History and physical note","History and physical note","1984-11-01" +31,"History and physical note","History and physical note","1984-03-01" +31,"History and physical note","History and physical note","1983-10-01" +31,"History and physical note","History and physical note","1983-09-01" +31,"History and physical note","History and physical note","1982-06-01" +31,"History and physical note","History and physical note","1981-05-01" +31,"History and physical note","History and physical note","1980-11-01" +31,"History and physical note","History and physical note","1980-04-01" +31,"History and physical note","Evaluation + Plan note","1986-11-01" +31,"History and physical note","Evaluation + Plan note","1986-02-01" +31,"History and physical note","Evaluation + Plan note","1985-05-01" +31,"History and physical note","Evaluation + Plan note","1984-11-01" +31,"History and physical note","Evaluation + Plan note","1984-03-01" +31,"History and physical note","Evaluation + Plan note","1983-10-01" +31,"History and physical note","Evaluation + Plan note","1983-09-01" +31,"History and physical note","Evaluation + Plan note","1982-06-01" +31,"History and physical note","Evaluation + Plan note","1981-05-01" +31,"History and physical note","Evaluation + Plan note","1980-11-01" +31,"History and physical note","Evaluation + Plan note","1980-04-01" +31,"Evaluation + Plan note",,"1986-11-01" +31,"Evaluation + Plan note",,"1986-02-01" +31,"Evaluation + Plan note",,"1985-05-01" +31,"Evaluation + Plan note",,"1984-11-01" +31,"Evaluation + Plan note",,"1984-03-01" +31,"Evaluation + Plan note",,"1983-10-01" +31,"Evaluation + Plan note",,"1983-09-01" +31,"Evaluation + Plan note",,"1982-06-01" +31,"Evaluation + Plan note",,"1981-05-01" +31,"Evaluation + Plan note",,"1980-11-01" +31,"Evaluation + Plan note",,"1980-04-01" +31,"Evaluation + Plan note","History and physical note","1986-11-01" +31,"Evaluation + Plan note","History and physical note","1986-02-01" +31,"Evaluation + Plan note","History and physical note","1985-05-01" +31,"Evaluation + Plan note","History and physical note","1984-11-01" +31,"Evaluation + Plan note","History and physical note","1984-03-01" +31,"Evaluation + Plan note","History and physical note","1983-10-01" +31,"Evaluation + Plan note","History and physical note","1983-09-01" +31,"Evaluation + Plan note","History and physical note","1982-06-01" +31,"Evaluation + Plan note","History and physical note","1981-05-01" +31,"Evaluation + Plan note","History and physical note","1980-11-01" +31,"Evaluation + Plan note","History and physical note","1980-04-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1986-11-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1986-02-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1985-05-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1984-11-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1984-03-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1983-10-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1983-09-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1982-06-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1981-05-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1980-11-01" +31,"Evaluation + Plan note","Evaluation + Plan note","1980-04-01" +30,,,"1989-08-01" +30,,,"1989-03-01" +30,,,"1987-07-01" +30,,,"1985-07-01" +30,,,"1984-06-01" +30,,,"1982-12-01" +30,,,"1982-05-01" +30,,,"1979-04-01" +30,,"Urinalysis macro (dipstick) panel - Urine","2020-07-01" +30,,"Urinalysis macro (dipstick) panel - Urine","2017-04-01" +30,,"Urinalysis macro (dipstick) panel - Urine","2013-04-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2022-08-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2022-05-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2020-09-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2019-12-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2019-10-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2019-06-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2017-12-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2016-07-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2015-10-01" +30,,"Lipid panel with direct LDL - Serum or Plasma","2015-03-01" +30,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-12-01" +30,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-03-01" +30,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-11-01" +30,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-05-01" +30,,"History and physical note","1989-08-01" +30,,"History and physical note","1989-03-01" +30,,"History and physical note","1987-07-01" +30,,"History and physical note","1985-07-01" +30,,"History and physical note","1984-07-01" +30,,"History and physical note","1984-06-01" +30,,"History and physical note","1982-12-01" +30,,"History and physical note","1982-05-01" +30,,"History and physical note","1979-04-01" +30,,"Generalized anxiety disorder 7 item (GAD-7)","2013-09-01" +30,,"Evaluation + Plan note","1989-08-01" +30,,"Evaluation + Plan note","1989-03-01" +30,,"Evaluation + Plan note","1987-07-01" +30,,"Evaluation + Plan note","1985-07-01" +30,,"Evaluation + Plan note","1984-07-01" +30,,"Evaluation + Plan note","1984-06-01" +30,,"Evaluation + Plan note","1982-12-01" +30,,"Evaluation + Plan note","1982-05-01" +30,,"Evaluation + Plan note","1979-04-01" +30,,"Drug Abuse Screening Test-10 [DAST-10]","2021-07-01" +30,,"Drug Abuse Screening Test-10 [DAST-10]","2021-03-01" +30,,"Drug Abuse Screening Test-10 [DAST-10]","2017-03-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2022-04-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2022-01-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2018-01-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2017-09-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2017-03-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2016-11-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2016-04-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2014-04-01" +30,,"Basic metabolic 2000 panel - Serum or Plasma","2013-10-01" +30,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-12-01" +30,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-03-01" +30,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-11-01" +30,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-05-01" +30,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2013-09-01" +30,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-07-01" +30,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-03-01" +30,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-03-01" +30,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2020-07-01" +30,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2017-04-01" +30,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-04-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-08-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-05-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-09-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-12-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-10-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-06-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-12-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-07-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-10-01" +30,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-03-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-04-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-01-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-01-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-09-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-03-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-11-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-04-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-04-01" +30,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-10-01" +30,"History and physical note",,"1989-08-01" +30,"History and physical note",,"1989-03-01" +30,"History and physical note",,"1987-07-01" +30,"History and physical note",,"1985-07-01" +30,"History and physical note",,"1984-07-01" +30,"History and physical note",,"1984-06-01" +30,"History and physical note",,"1982-12-01" +30,"History and physical note",,"1982-05-01" +30,"History and physical note",,"1979-04-01" +30,"History and physical note","History and physical note","1989-08-01" +30,"History and physical note","History and physical note","1989-03-01" +30,"History and physical note","History and physical note","1987-07-01" +30,"History and physical note","History and physical note","1985-07-01" +30,"History and physical note","History and physical note","1984-07-01" +30,"History and physical note","History and physical note","1984-06-01" +30,"History and physical note","History and physical note","1982-12-01" +30,"History and physical note","History and physical note","1982-05-01" +30,"History and physical note","History and physical note","1979-04-01" +30,"History and physical note","Evaluation + Plan note","1989-08-01" +30,"History and physical note","Evaluation + Plan note","1989-03-01" +30,"History and physical note","Evaluation + Plan note","1987-07-01" +30,"History and physical note","Evaluation + Plan note","1985-07-01" +30,"History and physical note","Evaluation + Plan note","1984-07-01" +30,"History and physical note","Evaluation + Plan note","1984-06-01" +30,"History and physical note","Evaluation + Plan note","1982-12-01" +30,"History and physical note","Evaluation + Plan note","1982-05-01" +30,"History and physical note","Evaluation + Plan note","1979-04-01" +30,"Evaluation + Plan note",,"1989-08-01" +30,"Evaluation + Plan note",,"1989-03-01" +30,"Evaluation + Plan note",,"1987-07-01" +30,"Evaluation + Plan note",,"1985-07-01" +30,"Evaluation + Plan note",,"1984-07-01" +30,"Evaluation + Plan note",,"1984-06-01" +30,"Evaluation + Plan note",,"1982-12-01" +30,"Evaluation + Plan note",,"1982-05-01" +30,"Evaluation + Plan note",,"1979-04-01" +30,"Evaluation + Plan note","History and physical note","1989-08-01" +30,"Evaluation + Plan note","History and physical note","1989-03-01" +30,"Evaluation + Plan note","History and physical note","1987-07-01" +30,"Evaluation + Plan note","History and physical note","1985-07-01" +30,"Evaluation + Plan note","History and physical note","1984-07-01" +30,"Evaluation + Plan note","History and physical note","1984-06-01" +30,"Evaluation + Plan note","History and physical note","1982-12-01" +30,"Evaluation + Plan note","History and physical note","1982-05-01" +30,"Evaluation + Plan note","History and physical note","1979-04-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1989-08-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1989-03-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1987-07-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1985-07-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1984-07-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1984-06-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1982-12-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1982-05-01" +30,"Evaluation + Plan note","Evaluation + Plan note","1979-04-01" +29,,,"1995-12-01" +29,,,"1987-02-01" +29,,,"1985-11-01" +29,,,"1983-04-01" +29,,,"1983-02-01" +29,,,"1981-10-01" +29,,,"1981-07-01" +29,,,"1979-10-01" +29,,,"1977-11-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2023-01-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2020-12-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2019-05-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2018-07-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2017-11-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2016-02-01" +29,,"Lipid panel with direct LDL - Serum or Plasma","2014-01-01" +29,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-02-01" +29,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-01-01" +29,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-06-01" +29,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-01-01" +29,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-08-01" +29,,"History and physical note","1995-12-01" +29,,"History and physical note","1987-02-01" +29,,"History and physical note","1985-11-01" +29,,"History and physical note","1983-04-01" +29,,"History and physical note","1983-02-01" +29,,"History and physical note","1981-10-01" +29,,"History and physical note","1981-07-01" +29,,"History and physical note","1979-10-01" +29,,"History and physical note","1977-11-01" +29,,"Evaluation + Plan note","1995-12-01" +29,,"Evaluation + Plan note","1987-02-01" +29,,"Evaluation + Plan note","1985-11-01" +29,,"Evaluation + Plan note","1983-04-01" +29,,"Evaluation + Plan note","1983-02-01" +29,,"Evaluation + Plan note","1981-10-01" +29,,"Evaluation + Plan note","1981-07-01" +29,,"Evaluation + Plan note","1979-10-01" +29,,"Evaluation + Plan note","1977-11-01" +29,,"Drug Abuse Screening Test-10 [DAST-10]","2022-11-01" +29,,"Drug Abuse Screening Test-10 [DAST-10]","2021-10-01" +29,,"Drug Abuse Screening Test-10 [DAST-10]","2019-02-01" +29,,"Drug Abuse Screening Test-10 [DAST-10]","2015-05-01" +29,,"Drug Abuse Screening Test-10 [DAST-10]","2015-02-01" +29,,"Basic metabolic 2000 panel - Serum or Plasma","2018-07-01" +29,,"Basic metabolic 2000 panel - Serum or Plasma","2015-04-01" +29,,"Basic metabolic 2000 panel - Serum or Plasma","2014-11-01" +29,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-08-01" +29,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-03-01" +29,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-11-01" +29,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-01-01" +29,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-02-01" +29,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-01-01" +29,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-06-01" +29,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-01-01" +29,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-08-01" +29,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-11-01" +29,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-10-01" +29,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-02-01" +29,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-05-01" +29,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-02-01" +29,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-08-01" +29,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-03-01" +29,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-11-01" +29,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-01-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2023-01-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-12-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-05-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-07-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-11-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-02-01" +29,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-01-01" +29,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-07-01" +29,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-04-01" +29,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-11-01" +29,"History and physical note",,"1995-12-01" +29,"History and physical note",,"1987-02-01" +29,"History and physical note",,"1985-11-01" +29,"History and physical note",,"1983-04-01" +29,"History and physical note",,"1983-02-01" +29,"History and physical note",,"1981-10-01" +29,"History and physical note",,"1981-07-01" +29,"History and physical note",,"1979-10-01" +29,"History and physical note",,"1977-11-01" +29,"History and physical note","History and physical note","1995-12-01" +29,"History and physical note","History and physical note","1987-02-01" +29,"History and physical note","History and physical note","1985-11-01" +29,"History and physical note","History and physical note","1983-04-01" +29,"History and physical note","History and physical note","1983-02-01" +29,"History and physical note","History and physical note","1981-10-01" +29,"History and physical note","History and physical note","1981-07-01" +29,"History and physical note","History and physical note","1979-10-01" +29,"History and physical note","History and physical note","1977-11-01" +29,"History and physical note","Evaluation + Plan note","1995-12-01" +29,"History and physical note","Evaluation + Plan note","1987-02-01" +29,"History and physical note","Evaluation + Plan note","1985-11-01" +29,"History and physical note","Evaluation + Plan note","1983-04-01" +29,"History and physical note","Evaluation + Plan note","1983-02-01" +29,"History and physical note","Evaluation + Plan note","1981-10-01" +29,"History and physical note","Evaluation + Plan note","1981-07-01" +29,"History and physical note","Evaluation + Plan note","1979-10-01" +29,"History and physical note","Evaluation + Plan note","1977-11-01" +29,"Evaluation + Plan note",,"1995-12-01" +29,"Evaluation + Plan note",,"1987-02-01" +29,"Evaluation + Plan note",,"1985-11-01" +29,"Evaluation + Plan note",,"1983-04-01" +29,"Evaluation + Plan note",,"1983-02-01" +29,"Evaluation + Plan note",,"1981-10-01" +29,"Evaluation + Plan note",,"1981-07-01" +29,"Evaluation + Plan note",,"1979-10-01" +29,"Evaluation + Plan note",,"1977-11-01" +29,"Evaluation + Plan note","History and physical note","1995-12-01" +29,"Evaluation + Plan note","History and physical note","1987-02-01" +29,"Evaluation + Plan note","History and physical note","1985-11-01" +29,"Evaluation + Plan note","History and physical note","1983-04-01" +29,"Evaluation + Plan note","History and physical note","1983-02-01" +29,"Evaluation + Plan note","History and physical note","1981-10-01" +29,"Evaluation + Plan note","History and physical note","1981-07-01" +29,"Evaluation + Plan note","History and physical note","1979-10-01" +29,"Evaluation + Plan note","History and physical note","1977-11-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1995-12-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1987-02-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1985-11-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1983-04-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1983-02-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1981-10-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1981-07-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1979-10-01" +29,"Evaluation + Plan note","Evaluation + Plan note","1977-11-01" +28,,,"1989-11-01" +28,,,"1987-10-01" +28,,,"1985-10-01" +28,,,"1985-01-01" +28,,,"1984-01-01" +28,,,"1983-12-01" +28,,,"1983-01-01" +28,,,"1982-11-01" +28,,,"1979-11-01" +28,,,"1975-03-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2022-04-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2021-08-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2020-11-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2019-07-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2018-04-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2017-07-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2015-12-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2015-09-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2014-02-01" +28,,"Lipid panel with direct LDL - Serum or Plasma","2013-08-01" +28,,"Iron and Iron binding capacity panel - Serum or Plasma", +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-12-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-10-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-09-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-07-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-10-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-08-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-05-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-12-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-08-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-01-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-08-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-02-01" +28,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-10-01" +28,,"History and physical note","1989-11-01" +28,,"History and physical note","1987-10-01" +28,,"History and physical note","1985-10-01" +28,,"History and physical note","1985-01-01" +28,,"History and physical note","1984-01-01" +28,,"History and physical note","1983-12-01" +28,,"History and physical note","1983-01-01" +28,,"History and physical note","1982-11-01" +28,,"History and physical note","1979-11-01" +28,,"History and physical note","1975-03-01" +28,,"Generalized anxiety disorder 7 item (GAD-7)","2016-04-01" +28,,"Evaluation + Plan note","1989-11-01" +28,,"Evaluation + Plan note","1987-10-01" +28,,"Evaluation + Plan note","1985-10-01" +28,,"Evaluation + Plan note","1985-01-01" +28,,"Evaluation + Plan note","1984-01-01" +28,,"Evaluation + Plan note","1983-12-01" +28,,"Evaluation + Plan note","1983-01-01" +28,,"Evaluation + Plan note","1982-11-01" +28,,"Evaluation + Plan note","1979-11-01" +28,,"Evaluation + Plan note","1975-03-01" +28,,"Drug Abuse Screening Test-10 [DAST-10]","2022-05-01" +28,,"Drug Abuse Screening Test-10 [DAST-10]","2021-09-01" +28,,"Drug Abuse Screening Test-10 [DAST-10]","2020-05-01" +28,,"Drug Abuse Screening Test-10 [DAST-10]","2015-07-01" +28,,"CBC panel - Blood by Automated count","2017-06-01" +28,,"CBC panel - Blood by Automated count","2014-02-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2022-08-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2018-02-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2015-05-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2014-06-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2013-11-01" +28,,"Basic metabolic 2000 panel - Serum or Plasma","2013-05-01" +28,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-09-01" +28,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-03-01" +28,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-07-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-12-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-10-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-09-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-07-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-10-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-08-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-05-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-12-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-08-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-01-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-08-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-02-01" +28,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-10-01" +28,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)","2016-04-01" +28,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-05-01" +28,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-09-01" +28,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-05-01" +28,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-07-01" +28,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-09-01" +28,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-03-01" +28,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-07-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2022-04-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2021-08-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-11-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2019-07-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-04-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-07-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-12-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-09-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-02-01" +28,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-08-01" +28,"Laboratory","Iron and Iron binding capacity panel - Serum or Plasma", +28,"Laboratory","CBC panel - Blood by Automated count","2017-06-01" +28,"Laboratory","CBC panel - Blood by Automated count","2014-02-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2022-08-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2018-02-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-05-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-06-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-11-01" +28,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-05-01" +28,"History and physical note",,"1989-11-01" +28,"History and physical note",,"1987-10-01" +28,"History and physical note",,"1985-10-01" +28,"History and physical note",,"1985-01-01" +28,"History and physical note",,"1984-01-01" +28,"History and physical note",,"1983-12-01" +28,"History and physical note",,"1983-01-01" +28,"History and physical note",,"1982-11-01" +28,"History and physical note",,"1979-11-01" +28,"History and physical note",,"1975-03-01" +28,"History and physical note","History and physical note","1989-11-01" +28,"History and physical note","History and physical note","1987-10-01" +28,"History and physical note","History and physical note","1985-10-01" +28,"History and physical note","History and physical note","1985-01-01" +28,"History and physical note","History and physical note","1984-01-01" +28,"History and physical note","History and physical note","1983-12-01" +28,"History and physical note","History and physical note","1983-01-01" +28,"History and physical note","History and physical note","1982-11-01" +28,"History and physical note","History and physical note","1979-11-01" +28,"History and physical note","History and physical note","1975-03-01" +28,"History and physical note","Evaluation + Plan note","1989-11-01" +28,"History and physical note","Evaluation + Plan note","1987-10-01" +28,"History and physical note","Evaluation + Plan note","1985-10-01" +28,"History and physical note","Evaluation + Plan note","1985-01-01" +28,"History and physical note","Evaluation + Plan note","1984-01-01" +28,"History and physical note","Evaluation + Plan note","1983-12-01" +28,"History and physical note","Evaluation + Plan note","1983-01-01" +28,"History and physical note","Evaluation + Plan note","1982-11-01" +28,"History and physical note","Evaluation + Plan note","1979-11-01" +28,"History and physical note","Evaluation + Plan note","1975-03-01" +28,"Evaluation + Plan note",,"1989-11-01" +28,"Evaluation + Plan note",,"1987-10-01" +28,"Evaluation + Plan note",,"1985-10-01" +28,"Evaluation + Plan note",,"1985-01-01" +28,"Evaluation + Plan note",,"1984-01-01" +28,"Evaluation + Plan note",,"1983-12-01" +28,"Evaluation + Plan note",,"1983-01-01" +28,"Evaluation + Plan note",,"1982-11-01" +28,"Evaluation + Plan note",,"1979-11-01" +28,"Evaluation + Plan note",,"1975-03-01" +28,"Evaluation + Plan note","History and physical note","1989-11-01" +28,"Evaluation + Plan note","History and physical note","1987-10-01" +28,"Evaluation + Plan note","History and physical note","1985-10-01" +28,"Evaluation + Plan note","History and physical note","1985-01-01" +28,"Evaluation + Plan note","History and physical note","1984-01-01" +28,"Evaluation + Plan note","History and physical note","1983-12-01" +28,"Evaluation + Plan note","History and physical note","1983-01-01" +28,"Evaluation + Plan note","History and physical note","1982-11-01" +28,"Evaluation + Plan note","History and physical note","1979-11-01" +28,"Evaluation + Plan note","History and physical note","1975-03-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1989-11-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1987-10-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1985-10-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1985-01-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1984-01-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1983-12-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1983-01-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1982-11-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1979-11-01" +28,"Evaluation + Plan note","Evaluation + Plan note","1975-03-01" +27,,,"1987-03-01" +27,,,"1986-03-01" +27,,,"1985-04-01" +27,,,"1984-02-01" +27,,,"1982-08-01" +27,,,"1982-07-01" +27,,,"1982-03-01" +27,,,"1981-08-01" +27,,,"1980-06-01" +27,,,"1979-05-01" +27,,,"1978-04-01" +27,,,"1974-03-01" +27,,"Urinalysis macro (dipstick) panel - Urine","2013-06-01" +27,,"Morse Fall Scale panel","2021-07-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2017-04-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2017-02-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2016-11-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2016-10-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2015-06-01" +27,,"Lipid panel with direct LDL - Serum or Plasma","2013-10-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-06-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-03-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-12-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-11-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-01-01" +27,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-02-01" +27,,"History and physical note","1987-03-01" +27,,"History and physical note","1986-03-01" +27,,"History and physical note","1985-04-01" +27,,"History and physical note","1984-02-01" +27,,"History and physical note","1982-08-01" +27,,"History and physical note","1982-07-01" +27,,"History and physical note","1982-03-01" +27,,"History and physical note","1981-08-01" +27,,"History and physical note","1980-06-01" +27,,"History and physical note","1979-05-01" +27,,"History and physical note","1978-04-01" +27,,"History and physical note","1974-03-01" +27,,"Evaluation + Plan note","1987-03-01" +27,,"Evaluation + Plan note","1986-03-01" +27,,"Evaluation + Plan note","1985-04-01" +27,,"Evaluation + Plan note","1984-02-01" +27,,"Evaluation + Plan note","1982-08-01" +27,,"Evaluation + Plan note","1982-07-01" +27,,"Evaluation + Plan note","1982-03-01" +27,,"Evaluation + Plan note","1981-08-01" +27,,"Evaluation + Plan note","1980-06-01" +27,,"Evaluation + Plan note","1979-05-01" +27,,"Evaluation + Plan note","1978-04-01" +27,,"Evaluation + Plan note","1974-03-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2022-02-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2021-12-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2018-08-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2017-07-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2016-11-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2016-05-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2014-07-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2014-05-01" +27,,"Drug Abuse Screening Test-10 [DAST-10]","2014-02-01" +27,,"CBC panel - Blood by Automated count","2019-03-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2020-07-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2016-07-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2016-05-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2016-02-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2015-06-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2014-02-01" +27,,"Basic metabolic 2000 panel - Serum or Plasma","2014-01-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-04-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-12-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-03-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-08-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-06-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-07-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-05-01" +27,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-10-01" +27,"cumulus__none","Morse Fall Scale panel","2021-07-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-06-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-03-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-12-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-11-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-01-01" +27,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-02-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-02-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-12-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-08-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-07-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-11-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-05-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-07-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-05-01" +27,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-02-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-04-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-12-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-03-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-08-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-06-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-07-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-05-01" +27,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-10-01" +27,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-06-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-04-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2017-02-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-11-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-10-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-06-01" +27,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-10-01" +27,"Laboratory","CBC panel - Blood by Automated count","2019-03-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2020-07-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-07-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-05-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2016-02-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-06-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-02-01" +27,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-01-01" +27,"History and physical note",,"1987-03-01" +27,"History and physical note",,"1986-03-01" +27,"History and physical note",,"1985-04-01" +27,"History and physical note",,"1984-02-01" +27,"History and physical note",,"1982-08-01" +27,"History and physical note",,"1982-07-01" +27,"History and physical note",,"1982-03-01" +27,"History and physical note",,"1981-08-01" +27,"History and physical note",,"1980-06-01" +27,"History and physical note",,"1979-05-01" +27,"History and physical note",,"1978-04-01" +27,"History and physical note",,"1974-03-01" +27,"History and physical note","History and physical note","1987-03-01" +27,"History and physical note","History and physical note","1986-03-01" +27,"History and physical note","History and physical note","1985-04-01" +27,"History and physical note","History and physical note","1984-02-01" +27,"History and physical note","History and physical note","1982-08-01" +27,"History and physical note","History and physical note","1982-07-01" +27,"History and physical note","History and physical note","1982-03-01" +27,"History and physical note","History and physical note","1981-08-01" +27,"History and physical note","History and physical note","1980-06-01" +27,"History and physical note","History and physical note","1979-05-01" +27,"History and physical note","History and physical note","1978-04-01" +27,"History and physical note","History and physical note","1974-03-01" +27,"History and physical note","Evaluation + Plan note","1987-03-01" +27,"History and physical note","Evaluation + Plan note","1986-03-01" +27,"History and physical note","Evaluation + Plan note","1985-04-01" +27,"History and physical note","Evaluation + Plan note","1984-02-01" +27,"History and physical note","Evaluation + Plan note","1982-08-01" +27,"History and physical note","Evaluation + Plan note","1982-07-01" +27,"History and physical note","Evaluation + Plan note","1982-03-01" +27,"History and physical note","Evaluation + Plan note","1981-08-01" +27,"History and physical note","Evaluation + Plan note","1980-06-01" +27,"History and physical note","Evaluation + Plan note","1979-05-01" +27,"History and physical note","Evaluation + Plan note","1978-04-01" +27,"History and physical note","Evaluation + Plan note","1974-03-01" +27,"Evaluation + Plan note",,"1987-03-01" +27,"Evaluation + Plan note",,"1986-03-01" +27,"Evaluation + Plan note",,"1985-04-01" +27,"Evaluation + Plan note",,"1984-02-01" +27,"Evaluation + Plan note",,"1982-08-01" +27,"Evaluation + Plan note",,"1982-07-01" +27,"Evaluation + Plan note",,"1982-03-01" +27,"Evaluation + Plan note",,"1981-08-01" +27,"Evaluation + Plan note",,"1980-06-01" +27,"Evaluation + Plan note",,"1979-05-01" +27,"Evaluation + Plan note",,"1978-04-01" +27,"Evaluation + Plan note",,"1974-03-01" +27,"Evaluation + Plan note","History and physical note","1987-03-01" +27,"Evaluation + Plan note","History and physical note","1986-03-01" +27,"Evaluation + Plan note","History and physical note","1985-04-01" +27,"Evaluation + Plan note","History and physical note","1984-02-01" +27,"Evaluation + Plan note","History and physical note","1982-08-01" +27,"Evaluation + Plan note","History and physical note","1982-07-01" +27,"Evaluation + Plan note","History and physical note","1982-03-01" +27,"Evaluation + Plan note","History and physical note","1981-08-01" +27,"Evaluation + Plan note","History and physical note","1980-06-01" +27,"Evaluation + Plan note","History and physical note","1979-05-01" +27,"Evaluation + Plan note","History and physical note","1978-04-01" +27,"Evaluation + Plan note","History and physical note","1974-03-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1987-03-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1986-03-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1985-04-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1984-02-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1982-08-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1982-07-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1982-03-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1981-08-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1980-06-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1979-05-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1978-04-01" +27,"Evaluation + Plan note","Evaluation + Plan note","1974-03-01" +26,,,"1987-11-01" +26,,,"1985-03-01" +26,,,"1985-02-01" +26,,,"1984-09-01" +26,,,"1984-04-01" +26,,,"1983-03-01" +26,,,"1982-10-01" +26,,,"1982-09-01" +26,,,"1980-08-01" +26,,,"1980-07-01" +26,,"Morse Fall Scale panel","2019-01-01" +26,,"Lipid panel with direct LDL - Serum or Plasma","2018-10-01" +26,,"Lipid panel with direct LDL - Serum or Plasma","2018-06-01" +26,,"Lipid panel with direct LDL - Serum or Plasma","2016-04-01" +26,,"Lipid panel with direct LDL - Serum or Plasma","2014-08-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-08-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-05-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-02-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-06-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-07-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-06-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-05-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-09-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-01-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-05-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-09-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-01-01" +26,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-05-01" +26,,"History and physical note","1987-11-01" +26,,"History and physical note","1985-03-01" +26,,"History and physical note","1985-02-01" +26,,"History and physical note","1984-09-01" +26,,"History and physical note","1984-04-01" +26,,"History and physical note","1983-03-01" +26,,"History and physical note","1982-10-01" +26,,"History and physical note","1982-09-01" +26,,"History and physical note","1980-08-01" +26,,"History and physical note","1980-07-01" +26,,"Evaluation + Plan note","1987-11-01" +26,,"Evaluation + Plan note","1985-03-01" +26,,"Evaluation + Plan note","1985-02-01" +26,,"Evaluation + Plan note","1984-09-01" +26,,"Evaluation + Plan note","1984-04-01" +26,,"Evaluation + Plan note","1983-03-01" +26,,"Evaluation + Plan note","1982-10-01" +26,,"Evaluation + Plan note","1982-09-01" +26,,"Evaluation + Plan note","1980-08-01" +26,,"Evaluation + Plan note","1980-07-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2023-01-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2022-09-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2022-06-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2021-02-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2020-12-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2020-08-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2019-08-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2017-12-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2017-05-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2016-02-01" +26,,"Drug Abuse Screening Test-10 [DAST-10]","2013-08-01" +26,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-12-01" +26,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-01-01" +26,,"CBC panel - Blood by Automated count","2018-08-01" +26,,"CBC panel - Blood by Automated count","2018-03-01" +26,,"Basic metabolic 2000 panel - Serum or Plasma","2014-08-01" +26,,"Basic metabolic 2000 panel - Serum or Plasma","2013-12-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-12-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-08-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-05-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-01-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-06-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-10-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-01-01" +26,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-01-01" +26,"cumulus__none","Morse Fall Scale panel","2019-01-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-08-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-05-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-02-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-06-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-07-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-06-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-05-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-09-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-01-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-05-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-09-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-01-01" +26,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-05-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2023-01-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-09-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-06-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-02-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-12-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-08-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-08-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-12-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-05-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-02-01" +26,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-08-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-12-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-08-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-05-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-01-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-06-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-10-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-01-01" +26,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-01-01" +26,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-10-01" +26,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2018-06-01" +26,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-04-01" +26,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-08-01" +26,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-12-01" +26,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-01-01" +26,"Laboratory","CBC panel - Blood by Automated count","2018-08-01" +26,"Laboratory","CBC panel - Blood by Automated count","2018-03-01" +26,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-08-01" +26,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-12-01" +26,"History and physical note",,"1987-11-01" +26,"History and physical note",,"1985-03-01" +26,"History and physical note",,"1985-02-01" +26,"History and physical note",,"1984-09-01" +26,"History and physical note",,"1984-04-01" +26,"History and physical note",,"1983-03-01" +26,"History and physical note",,"1982-10-01" +26,"History and physical note",,"1982-09-01" +26,"History and physical note",,"1980-08-01" +26,"History and physical note",,"1980-07-01" +26,"History and physical note","History and physical note","1987-11-01" +26,"History and physical note","History and physical note","1985-03-01" +26,"History and physical note","History and physical note","1985-02-01" +26,"History and physical note","History and physical note","1984-09-01" +26,"History and physical note","History and physical note","1984-04-01" +26,"History and physical note","History and physical note","1983-03-01" +26,"History and physical note","History and physical note","1982-10-01" +26,"History and physical note","History and physical note","1982-09-01" +26,"History and physical note","History and physical note","1980-08-01" +26,"History and physical note","History and physical note","1980-07-01" +26,"History and physical note","Evaluation + Plan note","1987-11-01" +26,"History and physical note","Evaluation + Plan note","1985-03-01" +26,"History and physical note","Evaluation + Plan note","1985-02-01" +26,"History and physical note","Evaluation + Plan note","1984-09-01" +26,"History and physical note","Evaluation + Plan note","1984-04-01" +26,"History and physical note","Evaluation + Plan note","1983-03-01" +26,"History and physical note","Evaluation + Plan note","1982-10-01" +26,"History and physical note","Evaluation + Plan note","1982-09-01" +26,"History and physical note","Evaluation + Plan note","1980-08-01" +26,"History and physical note","Evaluation + Plan note","1980-07-01" +26,"Evaluation + Plan note",,"1987-11-01" +26,"Evaluation + Plan note",,"1985-03-01" +26,"Evaluation + Plan note",,"1985-02-01" +26,"Evaluation + Plan note",,"1984-09-01" +26,"Evaluation + Plan note",,"1984-04-01" +26,"Evaluation + Plan note",,"1983-03-01" +26,"Evaluation + Plan note",,"1982-10-01" +26,"Evaluation + Plan note",,"1982-09-01" +26,"Evaluation + Plan note",,"1980-08-01" +26,"Evaluation + Plan note",,"1980-07-01" +26,"Evaluation + Plan note","History and physical note","1987-11-01" +26,"Evaluation + Plan note","History and physical note","1985-03-01" +26,"Evaluation + Plan note","History and physical note","1985-02-01" +26,"Evaluation + Plan note","History and physical note","1984-09-01" +26,"Evaluation + Plan note","History and physical note","1984-04-01" +26,"Evaluation + Plan note","History and physical note","1983-03-01" +26,"Evaluation + Plan note","History and physical note","1982-10-01" +26,"Evaluation + Plan note","History and physical note","1982-09-01" +26,"Evaluation + Plan note","History and physical note","1980-08-01" +26,"Evaluation + Plan note","History and physical note","1980-07-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1987-11-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1985-03-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1985-02-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1984-09-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1984-04-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1983-03-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1982-10-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1982-09-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1980-08-01" +26,"Evaluation + Plan note","Evaluation + Plan note","1980-07-01" +25,,,"1982-04-01" +25,,,"1981-04-01" +25,,,"1980-10-01" +25,,,"1980-05-01" +25,,,"1976-12-01" +25,,,"1973-07-01" +25,,"Urinalysis macro (dipstick) panel - Urine","2013-07-01" +25,,"Morse Fall Scale panel","2021-11-01" +25,,"Morse Fall Scale panel","2021-10-01" +25,,"Morse Fall Scale panel","2020-10-01" +25,,"Lipid panel with direct LDL - Serum or Plasma","2020-04-01" +25,,"Lipid panel with direct LDL - Serum or Plasma","2016-12-01" +25,,"Lipid panel with direct LDL - Serum or Plasma","2015-08-01" +25,,"Lipid panel with direct LDL - Serum or Plasma","2014-07-01" +25,,"Lipid panel with direct LDL - Serum or Plasma","2013-07-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-02-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-09-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-02-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-11-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-10-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-03-01" +25,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-08-01" +25,,"History and physical note","1982-04-01" +25,,"History and physical note","1981-04-01" +25,,"History and physical note","1980-10-01" +25,,"History and physical note","1980-05-01" +25,,"History and physical note","1976-12-01" +25,,"History and physical note","1973-07-01" +25,,"Evaluation + Plan note","1982-04-01" +25,,"Evaluation + Plan note","1981-04-01" +25,,"Evaluation + Plan note","1980-10-01" +25,,"Evaluation + Plan note","1980-05-01" +25,,"Evaluation + Plan note","1976-12-01" +25,,"Evaluation + Plan note","1973-07-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2021-11-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2021-08-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2020-10-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2019-01-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2018-05-01" +25,,"Drug Abuse Screening Test-10 [DAST-10]","2017-01-01" +25,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-01-01" +25,,"CBC panel - Blood by Automated count","2020-12-01" +25,,"CBC panel - Blood by Automated count","2020-09-01" +25,,"Basic metabolic 2000 panel - Serum or Plasma","2017-06-01" +25,,"Basic metabolic 2000 panel - Serum or Plasma","2014-10-01" +25,,"Basic metabolic 2000 panel - Serum or Plasma","2014-07-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-02-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-10-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-08-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-01-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-04-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-02-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-07-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-06-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-02-01" +25,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-12-01" +25,"cumulus__none","Morse Fall Scale panel","2021-11-01" +25,"cumulus__none","Morse Fall Scale panel","2021-10-01" +25,"cumulus__none","Morse Fall Scale panel","2020-10-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-02-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-09-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-02-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-11-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-10-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-03-01" +25,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-08-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-11-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-08-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-10-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-01-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-05-01" +25,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-01-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-02-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-10-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-08-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-01-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-04-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-02-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-07-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-06-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-02-01" +25,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-12-01" +25,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2013-07-01" +25,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-04-01" +25,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-12-01" +25,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-08-01" +25,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-07-01" +25,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-07-01" +25,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-01-01" +25,"Laboratory","CBC panel - Blood by Automated count","2020-12-01" +25,"Laboratory","CBC panel - Blood by Automated count","2020-09-01" +25,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-06-01" +25,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-10-01" +25,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-07-01" +25,"History and physical note",,"1982-04-01" +25,"History and physical note",,"1981-04-01" +25,"History and physical note",,"1980-10-01" +25,"History and physical note",,"1980-05-01" +25,"History and physical note",,"1976-12-01" +25,"History and physical note",,"1973-07-01" +25,"History and physical note","History and physical note","1982-04-01" +25,"History and physical note","History and physical note","1981-04-01" +25,"History and physical note","History and physical note","1980-10-01" +25,"History and physical note","History and physical note","1980-05-01" +25,"History and physical note","History and physical note","1976-12-01" +25,"History and physical note","History and physical note","1973-07-01" +25,"History and physical note","Evaluation + Plan note","1982-04-01" +25,"History and physical note","Evaluation + Plan note","1981-04-01" +25,"History and physical note","Evaluation + Plan note","1980-10-01" +25,"History and physical note","Evaluation + Plan note","1980-05-01" +25,"History and physical note","Evaluation + Plan note","1976-12-01" +25,"History and physical note","Evaluation + Plan note","1973-07-01" +25,"Evaluation + Plan note",,"1982-04-01" +25,"Evaluation + Plan note",,"1981-04-01" +25,"Evaluation + Plan note",,"1980-10-01" +25,"Evaluation + Plan note",,"1980-05-01" +25,"Evaluation + Plan note",,"1976-12-01" +25,"Evaluation + Plan note",,"1973-07-01" +25,"Evaluation + Plan note","History and physical note","1982-04-01" +25,"Evaluation + Plan note","History and physical note","1981-04-01" +25,"Evaluation + Plan note","History and physical note","1980-10-01" +25,"Evaluation + Plan note","History and physical note","1980-05-01" +25,"Evaluation + Plan note","History and physical note","1976-12-01" +25,"Evaluation + Plan note","History and physical note","1973-07-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1982-04-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1981-04-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1980-10-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1980-05-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1976-12-01" +25,"Evaluation + Plan note","Evaluation + Plan note","1973-07-01" +24,,,"1982-01-01" +24,,,"1981-02-01" +24,,,"1979-07-01" +24,,,"1977-05-01" +24,,,"1976-11-01" +24,,"Morse Fall Scale panel","2022-12-01" +24,,"Morse Fall Scale panel","2021-12-01" +24,,"Morse Fall Scale panel","2021-02-01" +24,,"Morse Fall Scale panel","2021-01-01" +24,,"Morse Fall Scale panel","2020-05-01" +24,,"Morse Fall Scale panel","2018-12-01" +24,,"Morse Fall Scale panel","2018-07-01" +24,,"Morse Fall Scale panel","2018-03-01" +24,,"Morse Fall Scale panel","2017-01-01" +24,,"Morse Fall Scale panel","2016-09-01" +24,,"Lipid panel with direct LDL - Serum or Plasma","2020-07-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-10-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-07-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-10-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-06-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-03-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-01-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-07-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-06-01" +24,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-08-01" +24,,"History and physical note","1982-01-01" +24,,"History and physical note","1981-02-01" +24,,"History and physical note","1979-07-01" +24,,"History and physical note","1977-05-01" +24,,"History and physical note","1976-11-01" +24,,"Evaluation + Plan note","1982-01-01" +24,,"Evaluation + Plan note","1981-02-01" +24,,"Evaluation + Plan note","1979-07-01" +24,,"Evaluation + Plan note","1977-05-01" +24,,"Evaluation + Plan note","1976-11-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2022-08-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2021-04-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2019-06-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2019-05-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2018-06-01" +24,,"Drug Abuse Screening Test-10 [DAST-10]","2016-09-01" +24,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-01-01" +24,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-01-01" +24,,"CBC panel - Blood by Automated count","2021-01-01" +24,,"CBC panel - Blood by Automated count","2019-01-01" +24,,"CBC panel - Blood by Automated count","2018-01-01" +24,,"CBC panel - Blood by Automated count","2013-07-01" +24,,"Basic metabolic 2000 panel - Serum or Plasma","2015-12-01" +24,,"Basic metabolic 2000 panel - Serum or Plasma","2015-08-01" +24,,"Basic metabolic 2000 panel - Serum or Plasma","2015-03-01" +24,,"Basic metabolic 2000 panel - Serum or Plasma","2013-08-01" +24,,"Basic metabolic 2000 panel - Serum or Plasma","2013-04-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-10-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-10-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-07-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-01-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-10-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-02-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-05-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-02-01" +24,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-12-01" +24,"cumulus__none","Morse Fall Scale panel","2022-12-01" +24,"cumulus__none","Morse Fall Scale panel","2021-12-01" +24,"cumulus__none","Morse Fall Scale panel","2021-02-01" +24,"cumulus__none","Morse Fall Scale panel","2021-01-01" +24,"cumulus__none","Morse Fall Scale panel","2020-05-01" +24,"cumulus__none","Morse Fall Scale panel","2018-12-01" +24,"cumulus__none","Morse Fall Scale panel","2018-07-01" +24,"cumulus__none","Morse Fall Scale panel","2018-03-01" +24,"cumulus__none","Morse Fall Scale panel","2017-01-01" +24,"cumulus__none","Morse Fall Scale panel","2016-09-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-10-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-07-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-10-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-06-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-03-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-01-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-07-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-06-01" +24,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-08-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-08-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-04-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-06-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-05-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-06-01" +24,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-09-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-10-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-10-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-07-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-01-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-10-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-02-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-05-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-02-01" +24,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-12-01" +24,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2020-07-01" +24,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-01-01" +24,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-01-01" +24,"Laboratory","CBC panel - Blood by Automated count","2021-01-01" +24,"Laboratory","CBC panel - Blood by Automated count","2019-01-01" +24,"Laboratory","CBC panel - Blood by Automated count","2018-01-01" +24,"Laboratory","CBC panel - Blood by Automated count","2013-07-01" +24,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-12-01" +24,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-08-01" +24,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-03-01" +24,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-08-01" +24,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-04-01" +24,"History and physical note",,"1982-01-01" +24,"History and physical note",,"1981-02-01" +24,"History and physical note",,"1979-07-01" +24,"History and physical note",,"1977-05-01" +24,"History and physical note",,"1976-11-01" +24,"History and physical note","History and physical note","1982-01-01" +24,"History and physical note","History and physical note","1981-02-01" +24,"History and physical note","History and physical note","1979-07-01" +24,"History and physical note","History and physical note","1977-05-01" +24,"History and physical note","History and physical note","1976-11-01" +24,"History and physical note","Evaluation + Plan note","1982-01-01" +24,"History and physical note","Evaluation + Plan note","1981-02-01" +24,"History and physical note","Evaluation + Plan note","1979-07-01" +24,"History and physical note","Evaluation + Plan note","1977-05-01" +24,"History and physical note","Evaluation + Plan note","1976-11-01" +24,"Evaluation + Plan note",,"1982-01-01" +24,"Evaluation + Plan note",,"1981-02-01" +24,"Evaluation + Plan note",,"1979-07-01" +24,"Evaluation + Plan note",,"1977-05-01" +24,"Evaluation + Plan note",,"1976-11-01" +24,"Evaluation + Plan note","History and physical note","1982-01-01" +24,"Evaluation + Plan note","History and physical note","1981-02-01" +24,"Evaluation + Plan note","History and physical note","1979-07-01" +24,"Evaluation + Plan note","History and physical note","1977-05-01" +24,"Evaluation + Plan note","History and physical note","1976-11-01" +24,"Evaluation + Plan note","Evaluation + Plan note","1982-01-01" +24,"Evaluation + Plan note","Evaluation + Plan note","1981-02-01" +24,"Evaluation + Plan note","Evaluation + Plan note","1979-07-01" +24,"Evaluation + Plan note","Evaluation + Plan note","1977-05-01" +24,"Evaluation + Plan note","Evaluation + Plan note","1976-11-01" +23,,,"1984-10-01" +23,,,"1981-03-01" +23,,,"1980-09-01" +23,,,"1978-05-01" +23,,,"1977-10-01" +23,,,"1977-04-01" +23,,"Morse Fall Scale panel","2023-02-01" +23,,"Morse Fall Scale panel","2023-01-01" +23,,"Morse Fall Scale panel","2022-10-01" +23,,"Morse Fall Scale panel","2022-03-01" +23,,"Morse Fall Scale panel","2021-08-01" +23,,"Morse Fall Scale panel","2021-06-01" +23,,"Morse Fall Scale panel","2020-02-01" +23,,"Morse Fall Scale panel","2019-03-01" +23,,"Morse Fall Scale panel","2015-01-01" +23,,"Lipid panel with direct LDL - Serum or Plasma","2016-06-01" +23,,"Lipid panel with direct LDL - Serum or Plasma","2015-07-01" +23,,"Lipid panel with direct LDL - Serum or Plasma","2014-11-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-01-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-12-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-04-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-04-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-01-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-07-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-02-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-04-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-12-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-05-01" +23,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-03-01" +23,,"History and physical note","1984-10-01" +23,,"History and physical note","1981-03-01" +23,,"History and physical note","1980-09-01" +23,,"History and physical note","1978-05-01" +23,,"History and physical note","1977-10-01" +23,,"Evaluation + Plan note","1984-10-01" +23,,"Evaluation + Plan note","1981-03-01" +23,,"Evaluation + Plan note","1980-09-01" +23,,"Evaluation + Plan note","1978-05-01" +23,,"Evaluation + Plan note","1977-10-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2022-01-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2020-11-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2020-06-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2019-12-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2017-09-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2015-11-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2015-01-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2014-09-01" +23,,"Drug Abuse Screening Test-10 [DAST-10]","2013-12-01" +23,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2023-02-01" +23,,"CBC panel - Blood by Automated count","2022-04-01" +23,,"CBC panel - Blood by Automated count","2019-08-01" +23,,"CBC panel - Blood by Automated count","2018-07-01" +23,,"CBC panel - Blood by Automated count","2013-06-01" +23,,"Basic metabolic 2000 panel - Serum or Plasma","2015-09-01" +23,,"Basic metabolic 2000 panel - Serum or Plasma","2014-09-01" +23,,"Basic metabolic 2000 panel - Serum or Plasma","2014-03-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-03-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-07-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-06-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-06-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-04-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-10-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-05-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-03-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-09-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-02-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-02-01" +23,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-05-01" +23,"cumulus__none","Morse Fall Scale panel","2023-02-01" +23,"cumulus__none","Morse Fall Scale panel","2023-01-01" +23,"cumulus__none","Morse Fall Scale panel","2022-10-01" +23,"cumulus__none","Morse Fall Scale panel","2022-03-01" +23,"cumulus__none","Morse Fall Scale panel","2021-08-01" +23,"cumulus__none","Morse Fall Scale panel","2021-06-01" +23,"cumulus__none","Morse Fall Scale panel","2020-02-01" +23,"cumulus__none","Morse Fall Scale panel","2019-03-01" +23,"cumulus__none","Morse Fall Scale panel","2015-01-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-01-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-12-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-04-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-04-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-01-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-07-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-02-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-04-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-12-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-05-01" +23,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-03-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-01-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-11-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-06-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-12-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-09-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-11-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-01-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-09-01" +23,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-12-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-03-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-07-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-06-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-06-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-04-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-10-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-05-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-03-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-09-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-02-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-02-01" +23,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-05-01" +23,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-06-01" +23,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-07-01" +23,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-11-01" +23,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2023-02-01" +23,"Laboratory","CBC panel - Blood by Automated count","2022-04-01" +23,"Laboratory","CBC panel - Blood by Automated count","2019-08-01" +23,"Laboratory","CBC panel - Blood by Automated count","2018-07-01" +23,"Laboratory","CBC panel - Blood by Automated count","2013-06-01" +23,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-09-01" +23,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-09-01" +23,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2014-03-01" +23,"History and physical note",,"1984-10-01" +23,"History and physical note",,"1981-03-01" +23,"History and physical note",,"1980-09-01" +23,"History and physical note",,"1978-05-01" +23,"History and physical note",,"1977-10-01" +23,"History and physical note","History and physical note","1984-10-01" +23,"History and physical note","History and physical note","1981-03-01" +23,"History and physical note","History and physical note","1980-09-01" +23,"History and physical note","History and physical note","1978-05-01" +23,"History and physical note","History and physical note","1977-10-01" +23,"History and physical note","Evaluation + Plan note","1984-10-01" +23,"History and physical note","Evaluation + Plan note","1981-03-01" +23,"History and physical note","Evaluation + Plan note","1980-09-01" +23,"History and physical note","Evaluation + Plan note","1978-05-01" +23,"History and physical note","Evaluation + Plan note","1977-10-01" +23,"Evaluation + Plan note",,"1984-10-01" +23,"Evaluation + Plan note",,"1981-03-01" +23,"Evaluation + Plan note",,"1980-09-01" +23,"Evaluation + Plan note",,"1978-05-01" +23,"Evaluation + Plan note",,"1977-10-01" +23,"Evaluation + Plan note","History and physical note","1984-10-01" +23,"Evaluation + Plan note","History and physical note","1981-03-01" +23,"Evaluation + Plan note","History and physical note","1980-09-01" +23,"Evaluation + Plan note","History and physical note","1978-05-01" +23,"Evaluation + Plan note","History and physical note","1977-10-01" +23,"Evaluation + Plan note","Evaluation + Plan note","1984-10-01" +23,"Evaluation + Plan note","Evaluation + Plan note","1981-03-01" +23,"Evaluation + Plan note","Evaluation + Plan note","1980-09-01" +23,"Evaluation + Plan note","Evaluation + Plan note","1978-05-01" +23,"Evaluation + Plan note","Evaluation + Plan note","1977-10-01" +22,,,"1982-02-01" +22,,,"1981-11-01" +22,,,"1980-12-01" +22,,,"1977-09-01" +22,,,"1977-06-01" +22,,,"1976-04-01" +22,,,"1975-05-01" +22,,,"1971-10-01" +22,,"Morse Fall Scale panel","2022-02-01" +22,,"Morse Fall Scale panel","2022-01-01" +22,,"Morse Fall Scale panel","2020-01-01" +22,,"Morse Fall Scale panel","2018-10-01" +22,,"Morse Fall Scale panel","2017-09-01" +22,,"Morse Fall Scale panel","2017-03-01" +22,,"Morse Fall Scale panel","2017-02-01" +22,,"Morse Fall Scale panel","2015-06-01" +22,,"Morse Fall Scale panel","2014-12-01" +22,,"Lipid panel with direct LDL - Serum or Plasma","2016-03-01" +22,,"Lipid panel with direct LDL - Serum or Plasma","2015-04-01" +22,,"Lipid panel with direct LDL - Serum or Plasma","2014-03-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-08-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-07-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-05-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-07-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-09-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-06-01" +22,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-04-01" +22,,"History and physical note","1982-02-01" +22,,"History and physical note","1981-11-01" +22,,"History and physical note","1980-12-01" +22,,"History and physical note","1977-09-01" +22,,"History and physical note","1977-06-01" +22,,"History and physical note","1977-04-01" +22,,"History and physical note","1976-04-01" +22,,"History and physical note","1975-05-01" +22,,"History and physical note","1971-10-01" +22,,"Evaluation + Plan note","1982-02-01" +22,,"Evaluation + Plan note","1981-11-01" +22,,"Evaluation + Plan note","1980-12-01" +22,,"Evaluation + Plan note","1977-09-01" +22,,"Evaluation + Plan note","1977-06-01" +22,,"Evaluation + Plan note","1977-04-01" +22,,"Evaluation + Plan note","1976-04-01" +22,,"Evaluation + Plan note","1975-05-01" +22,,"Evaluation + Plan note","1971-10-01" +22,,"Drug Abuse Screening Test-10 [DAST-10]","2022-04-01" +22,,"Drug Abuse Screening Test-10 [DAST-10]","2020-07-01" +22,,"Drug Abuse Screening Test-10 [DAST-10]","2019-10-01" +22,,"Drug Abuse Screening Test-10 [DAST-10]","2016-08-01" +22,,"Drug Abuse Screening Test-10 [DAST-10]","2015-04-01" +22,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-12-01" +22,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-07-01" +22,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-01-01" +22,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-12-01" +22,,"CBC panel - Blood by Automated count","2018-05-01" +22,,"Basic metabolic 2000 panel - Serum or Plasma","2017-04-01" +22,,"Basic metabolic 2000 panel - Serum or Plasma","2015-02-01" +22,,"Basic metabolic 2000 panel - Serum or Plasma","2013-06-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-09-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-09-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-04-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-12-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-11-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-09-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-12-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-12-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-07-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-04-01" +22,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-04-01" +22,"cumulus__none","Morse Fall Scale panel","2022-02-01" +22,"cumulus__none","Morse Fall Scale panel","2022-01-01" +22,"cumulus__none","Morse Fall Scale panel","2020-01-01" +22,"cumulus__none","Morse Fall Scale panel","2018-10-01" +22,"cumulus__none","Morse Fall Scale panel","2017-09-01" +22,"cumulus__none","Morse Fall Scale panel","2017-03-01" +22,"cumulus__none","Morse Fall Scale panel","2017-02-01" +22,"cumulus__none","Morse Fall Scale panel","2015-06-01" +22,"cumulus__none","Morse Fall Scale panel","2014-12-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-08-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-07-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-05-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-07-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-09-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-06-01" +22,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-04-01" +22,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-04-01" +22,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-07-01" +22,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-10-01" +22,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-08-01" +22,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-04-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-09-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-09-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-04-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-12-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-11-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-09-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-12-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-12-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-07-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-04-01" +22,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-04-01" +22,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-03-01" +22,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-04-01" +22,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-03-01" +22,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-12-01" +22,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-07-01" +22,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-01-01" +22,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-12-01" +22,"Laboratory","CBC panel - Blood by Automated count","2018-05-01" +22,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2017-04-01" +22,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2015-02-01" +22,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-06-01" +22,"History and physical note",,"1982-02-01" +22,"History and physical note",,"1981-11-01" +22,"History and physical note",,"1980-12-01" +22,"History and physical note",,"1977-09-01" +22,"History and physical note",,"1977-06-01" +22,"History and physical note",,"1977-04-01" +22,"History and physical note",,"1976-04-01" +22,"History and physical note",,"1975-05-01" +22,"History and physical note",,"1971-10-01" +22,"History and physical note","History and physical note","1982-02-01" +22,"History and physical note","History and physical note","1981-11-01" +22,"History and physical note","History and physical note","1980-12-01" +22,"History and physical note","History and physical note","1977-09-01" +22,"History and physical note","History and physical note","1977-06-01" +22,"History and physical note","History and physical note","1977-04-01" +22,"History and physical note","History and physical note","1976-04-01" +22,"History and physical note","History and physical note","1975-05-01" +22,"History and physical note","History and physical note","1971-10-01" +22,"History and physical note","Evaluation + Plan note","1982-02-01" +22,"History and physical note","Evaluation + Plan note","1981-11-01" +22,"History and physical note","Evaluation + Plan note","1980-12-01" +22,"History and physical note","Evaluation + Plan note","1977-09-01" +22,"History and physical note","Evaluation + Plan note","1977-06-01" +22,"History and physical note","Evaluation + Plan note","1977-04-01" +22,"History and physical note","Evaluation + Plan note","1976-04-01" +22,"History and physical note","Evaluation + Plan note","1975-05-01" +22,"History and physical note","Evaluation + Plan note","1971-10-01" +22,"Evaluation + Plan note",,"1982-02-01" +22,"Evaluation + Plan note",,"1981-11-01" +22,"Evaluation + Plan note",,"1980-12-01" +22,"Evaluation + Plan note",,"1977-09-01" +22,"Evaluation + Plan note",,"1977-06-01" +22,"Evaluation + Plan note",,"1977-04-01" +22,"Evaluation + Plan note",,"1976-04-01" +22,"Evaluation + Plan note",,"1975-05-01" +22,"Evaluation + Plan note",,"1971-10-01" +22,"Evaluation + Plan note","History and physical note","1982-02-01" +22,"Evaluation + Plan note","History and physical note","1981-11-01" +22,"Evaluation + Plan note","History and physical note","1980-12-01" +22,"Evaluation + Plan note","History and physical note","1977-09-01" +22,"Evaluation + Plan note","History and physical note","1977-06-01" +22,"Evaluation + Plan note","History and physical note","1977-04-01" +22,"Evaluation + Plan note","History and physical note","1976-04-01" +22,"Evaluation + Plan note","History and physical note","1975-05-01" +22,"Evaluation + Plan note","History and physical note","1971-10-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1982-02-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1981-11-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1980-12-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1977-09-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1977-06-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1977-04-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1976-04-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1975-05-01" +22,"Evaluation + Plan note","Evaluation + Plan note","1971-10-01" +21,,,"1981-09-01" +21,,,"1978-10-01" +21,,,"1976-09-01" +21,,,"1974-05-01" +21,,"SARS-CoV-2 RNA Pnl Resp NAA+probe","2020-12-01" +21,,"Morse Fall Scale panel","2022-04-01" +21,,"Morse Fall Scale panel","2021-04-01" +21,,"Morse Fall Scale panel","2020-12-01" +21,,"Morse Fall Scale panel","2020-08-01" +21,,"Morse Fall Scale panel","2020-03-01" +21,,"Morse Fall Scale panel","2015-05-01" +21,,"Morse Fall Scale panel","2014-06-01" +21,,"Lipid panel with direct LDL - Serum or Plasma","2016-05-01" +21,,"Lipid panel with direct LDL - Serum or Plasma","2015-05-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-11-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-07-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-08-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-11-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-07-01" +21,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-07-01" +21,,"History and physical note","1981-09-01" +21,,"History and physical note","1978-10-01" +21,,"History and physical note","1976-09-01" +21,,"History and physical note","1974-05-01" +21,,"Evaluation + Plan note","1981-09-01" +21,,"Evaluation + Plan note","1978-10-01" +21,,"Evaluation + Plan note","1976-09-01" +21,,"Evaluation + Plan note","1974-05-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2023-02-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2021-06-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2020-01-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2019-09-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2018-10-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2018-02-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2017-11-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2017-10-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2017-02-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2015-06-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2014-04-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2014-03-01" +21,,"Drug Abuse Screening Test-10 [DAST-10]","2013-10-01" +21,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-01-01" +21,,"CBC panel - Blood by Automated count","2022-01-01" +21,,"CBC panel - Blood by Automated count","2020-08-01" +21,,"CBC panel - Blood by Automated count","2015-05-01" +21,,"CBC panel - Blood by Automated count","2014-03-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-07-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-03-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-04-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-12-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-03-01" +21,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-09-01" +21,"cumulus__none","Morse Fall Scale panel","2022-04-01" +21,"cumulus__none","Morse Fall Scale panel","2021-04-01" +21,"cumulus__none","Morse Fall Scale panel","2020-12-01" +21,"cumulus__none","Morse Fall Scale panel","2020-08-01" +21,"cumulus__none","Morse Fall Scale panel","2020-03-01" +21,"cumulus__none","Morse Fall Scale panel","2015-05-01" +21,"cumulus__none","Morse Fall Scale panel","2014-06-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-11-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2020-07-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-08-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-11-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-07-01" +21,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-07-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2023-02-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-06-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-01-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-09-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-10-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-02-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-11-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-10-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-02-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-06-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-04-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-03-01" +21,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-10-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-07-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2018-03-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-04-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-12-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-03-01" +21,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-09-01" +21,"Laboratory","SARS-CoV-2 RNA Pnl Resp NAA+probe","2020-12-01" +21,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2016-05-01" +21,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2015-05-01" +21,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-01-01" +21,"Laboratory","CBC panel - Blood by Automated count","2022-01-01" +21,"Laboratory","CBC panel - Blood by Automated count","2020-08-01" +21,"Laboratory","CBC panel - Blood by Automated count","2015-05-01" +21,"Laboratory","CBC panel - Blood by Automated count","2014-03-01" +21,"History and physical note",,"1981-09-01" +21,"History and physical note",,"1978-10-01" +21,"History and physical note",,"1976-09-01" +21,"History and physical note",,"1974-05-01" +21,"History and physical note","History and physical note","1981-09-01" +21,"History and physical note","History and physical note","1978-10-01" +21,"History and physical note","History and physical note","1976-09-01" +21,"History and physical note","History and physical note","1974-05-01" +21,"History and physical note","Evaluation + Plan note","1981-09-01" +21,"History and physical note","Evaluation + Plan note","1978-10-01" +21,"History and physical note","Evaluation + Plan note","1976-09-01" +21,"History and physical note","Evaluation + Plan note","1974-05-01" +21,"Evaluation + Plan note",,"1981-09-01" +21,"Evaluation + Plan note",,"1978-10-01" +21,"Evaluation + Plan note",,"1976-09-01" +21,"Evaluation + Plan note",,"1974-05-01" +21,"Evaluation + Plan note","History and physical note","1981-09-01" +21,"Evaluation + Plan note","History and physical note","1978-10-01" +21,"Evaluation + Plan note","History and physical note","1976-09-01" +21,"Evaluation + Plan note","History and physical note","1974-05-01" +21,"Evaluation + Plan note","Evaluation + Plan note","1981-09-01" +21,"Evaluation + Plan note","Evaluation + Plan note","1978-10-01" +21,"Evaluation + Plan note","Evaluation + Plan note","1976-09-01" +21,"Evaluation + Plan note","Evaluation + Plan note","1974-05-01" +20,,,"1979-09-01" +20,,,"1979-08-01" +20,,,"1978-06-01" +20,,,"1977-08-01" +20,,,"1976-01-01" +20,,,"1975-09-01" +20,,,"1975-01-01" +20,,,"1974-10-01" +20,,,"1972-10-01" +20,,"SARS-CoV-2 RNA Pnl Resp NAA+probe","2020-11-01" +20,,"Morse Fall Scale panel","2021-09-01" +20,,"Morse Fall Scale panel","2018-08-01" +20,,"Morse Fall Scale panel","2017-08-01" +20,,"Morse Fall Scale panel","2017-07-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-10-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-03-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-10-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-05-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-05-01" +20,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-12-01" +20,,"History and physical note","1979-09-01" +20,,"History and physical note","1979-08-01" +20,,"History and physical note","1978-06-01" +20,,"History and physical note","1977-08-01" +20,,"History and physical note","1976-01-01" +20,,"History and physical note","1975-09-01" +20,,"History and physical note","1975-01-01" +20,,"History and physical note","1974-10-01" +20,,"History and physical note","1972-10-01" +20,,"Evaluation + Plan note","1979-09-01" +20,,"Evaluation + Plan note","1979-08-01" +20,,"Evaluation + Plan note","1978-06-01" +20,,"Evaluation + Plan note","1977-08-01" +20,,"Evaluation + Plan note","1976-01-01" +20,,"Evaluation + Plan note","1975-09-01" +20,,"Evaluation + Plan note","1975-01-01" +20,,"Evaluation + Plan note","1974-10-01" +20,,"Evaluation + Plan note","1972-10-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2021-01-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2020-02-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2018-04-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2017-08-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2016-12-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2016-07-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2016-06-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2016-01-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2015-10-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2015-09-01" +20,,"Drug Abuse Screening Test-10 [DAST-10]","2014-06-01" +20,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-11-01" +20,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-09-01" +20,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-09-01" +20,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-06-01" +20,,"CBC panel - Blood by Automated count","2022-10-01" +20,,"CBC panel - Blood by Automated count","2022-06-01" +20,,"CBC panel - Blood by Automated count","2021-03-01" +20,,"CBC panel - Blood by Automated count","2019-04-01" +20,,"CBC panel - Blood by Automated count","2017-03-01" +20,,"CBC panel - Blood by Automated count","2016-01-01" +20,,"CBC panel - Blood by Automated count","2015-01-01" +20,,"CBC panel - Blood by Automated count","2013-12-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-03-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-05-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-02-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-04-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-11-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-10-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-05-01" +20,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-09-01" +20,"cumulus__none","Morse Fall Scale panel","2021-09-01" +20,"cumulus__none","Morse Fall Scale panel","2018-08-01" +20,"cumulus__none","Morse Fall Scale panel","2017-08-01" +20,"cumulus__none","Morse Fall Scale panel","2017-07-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-10-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-03-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-10-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-05-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-05-01" +20,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-12-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2021-01-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-02-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-04-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-08-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-12-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-07-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-06-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-01-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-10-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-09-01" +20,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-06-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-03-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-05-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-02-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-04-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-11-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-10-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-05-01" +20,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-09-01" +20,"Laboratory","SARS-CoV-2 RNA Pnl Resp NAA+probe","2020-11-01" +20,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-11-01" +20,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-09-01" +20,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-09-01" +20,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-06-01" +20,"Laboratory","CBC panel - Blood by Automated count","2022-10-01" +20,"Laboratory","CBC panel - Blood by Automated count","2022-06-01" +20,"Laboratory","CBC panel - Blood by Automated count","2021-03-01" +20,"Laboratory","CBC panel - Blood by Automated count","2019-04-01" +20,"Laboratory","CBC panel - Blood by Automated count","2017-03-01" +20,"Laboratory","CBC panel - Blood by Automated count","2016-01-01" +20,"Laboratory","CBC panel - Blood by Automated count","2015-01-01" +20,"Laboratory","CBC panel - Blood by Automated count","2013-12-01" +20,"History and physical note",,"1979-09-01" +20,"History and physical note",,"1979-08-01" +20,"History and physical note",,"1978-06-01" +20,"History and physical note",,"1977-08-01" +20,"History and physical note",,"1976-01-01" +20,"History and physical note",,"1975-09-01" +20,"History and physical note",,"1975-01-01" +20,"History and physical note",,"1974-10-01" +20,"History and physical note",,"1972-10-01" +20,"History and physical note","History and physical note","1979-09-01" +20,"History and physical note","History and physical note","1979-08-01" +20,"History and physical note","History and physical note","1978-06-01" +20,"History and physical note","History and physical note","1977-08-01" +20,"History and physical note","History and physical note","1976-01-01" +20,"History and physical note","History and physical note","1975-09-01" +20,"History and physical note","History and physical note","1975-01-01" +20,"History and physical note","History and physical note","1974-10-01" +20,"History and physical note","History and physical note","1972-10-01" +20,"History and physical note","Evaluation + Plan note","1979-09-01" +20,"History and physical note","Evaluation + Plan note","1979-08-01" +20,"History and physical note","Evaluation + Plan note","1978-06-01" +20,"History and physical note","Evaluation + Plan note","1977-08-01" +20,"History and physical note","Evaluation + Plan note","1976-01-01" +20,"History and physical note","Evaluation + Plan note","1975-09-01" +20,"History and physical note","Evaluation + Plan note","1975-01-01" +20,"History and physical note","Evaluation + Plan note","1974-10-01" +20,"History and physical note","Evaluation + Plan note","1972-10-01" +20,"Evaluation + Plan note",,"1979-09-01" +20,"Evaluation + Plan note",,"1979-08-01" +20,"Evaluation + Plan note",,"1978-06-01" +20,"Evaluation + Plan note",,"1977-08-01" +20,"Evaluation + Plan note",,"1976-01-01" +20,"Evaluation + Plan note",,"1975-09-01" +20,"Evaluation + Plan note",,"1975-01-01" +20,"Evaluation + Plan note",,"1974-10-01" +20,"Evaluation + Plan note",,"1972-10-01" +20,"Evaluation + Plan note","History and physical note","1979-09-01" +20,"Evaluation + Plan note","History and physical note","1979-08-01" +20,"Evaluation + Plan note","History and physical note","1978-06-01" +20,"Evaluation + Plan note","History and physical note","1977-08-01" +20,"Evaluation + Plan note","History and physical note","1976-01-01" +20,"Evaluation + Plan note","History and physical note","1975-09-01" +20,"Evaluation + Plan note","History and physical note","1975-01-01" +20,"Evaluation + Plan note","History and physical note","1974-10-01" +20,"Evaluation + Plan note","History and physical note","1972-10-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1979-09-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1979-08-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1978-06-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1977-08-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1976-01-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1975-09-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1975-01-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1974-10-01" +20,"Evaluation + Plan note","Evaluation + Plan note","1972-10-01" +19,,,"1981-12-01" +19,,,"1978-11-01" +19,,,"1978-08-01" +19,,,"1978-07-01" +19,,,"1976-07-01" +19,,,"1974-06-01" +19,,,"1967-07-01" +19,,"Morse Fall Scale panel","2022-11-01" +19,,"Morse Fall Scale panel","2022-08-01" +19,,"Morse Fall Scale panel","2022-06-01" +19,,"Morse Fall Scale panel","2021-05-01" +19,,"Morse Fall Scale panel","2021-03-01" +19,,"Morse Fall Scale panel","2019-12-01" +19,,"Morse Fall Scale panel","2019-11-01" +19,,"Morse Fall Scale panel","2019-09-01" +19,,"Morse Fall Scale panel","2019-05-01" +19,,"Morse Fall Scale panel","2018-02-01" +19,,"Morse Fall Scale panel","2017-05-01" +19,,"Morse Fall Scale panel","2016-11-01" +19,,"Morse Fall Scale panel","2016-01-01" +19,,"Morse Fall Scale panel","2014-11-01" +19,,"Morse Fall Scale panel","2013-06-01" +19,,"Lipid panel with direct LDL - Serum or Plasma","2014-10-01" +19,,"Lipid panel with direct LDL - Serum or Plasma","2014-06-01" +19,,"Lipid panel with direct LDL - Serum or Plasma","2013-11-01" +19,,"Lipid panel with direct LDL - Serum or Plasma","2013-09-01" +19,,"Lipid panel with direct LDL - Serum or Plasma","2013-06-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-11-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-09-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-04-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-11-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-10-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-12-01" +19,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-04-01" +19,,"History and physical note","1981-12-01" +19,,"History and physical note","1978-11-01" +19,,"History and physical note","1978-08-01" +19,,"History and physical note","1978-07-01" +19,,"History and physical note","1976-07-01" +19,,"History and physical note","1974-06-01" +19,,"History and physical note","1967-07-01" +19,,"Evaluation + Plan note","1981-12-01" +19,,"Evaluation + Plan note","1978-11-01" +19,,"Evaluation + Plan note","1978-08-01" +19,,"Evaluation + Plan note","1978-07-01" +19,,"Evaluation + Plan note","1976-07-01" +19,,"Evaluation + Plan note","1974-06-01" +19,,"Evaluation + Plan note","1967-07-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2020-09-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2020-04-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2019-11-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2018-09-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2018-01-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2017-06-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2015-12-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2013-07-01" +19,,"Drug Abuse Screening Test-10 [DAST-10]","2013-06-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2023-03-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-10-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-01-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-12-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-11-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-08-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-11-01" +19,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-12-01" +19,,"CBC panel - Blood by Automated count","2022-07-01" +19,,"CBC panel - Blood by Automated count","2022-03-01" +19,,"CBC panel - Blood by Automated count","2021-02-01" +19,,"CBC panel - Blood by Automated count","2018-12-01" +19,,"CBC panel - Blood by Automated count","2018-06-01" +19,,"CBC panel - Blood by Automated count","2018-02-01" +19,,"CBC panel - Blood by Automated count","2016-06-01" +19,,"CBC panel - Blood by Automated count","2015-07-01" +19,,"CBC panel - Blood by Automated count","2014-07-01" +19,,"CBC panel - Blood by Automated count","2013-04-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-12-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-12-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-05-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-09-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-06-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-10-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-08-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-06-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-04-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-03-01" +19,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-10-01" +19,"cumulus__none","Morse Fall Scale panel","2022-11-01" +19,"cumulus__none","Morse Fall Scale panel","2022-08-01" +19,"cumulus__none","Morse Fall Scale panel","2022-06-01" +19,"cumulus__none","Morse Fall Scale panel","2021-05-01" +19,"cumulus__none","Morse Fall Scale panel","2021-03-01" +19,"cumulus__none","Morse Fall Scale panel","2019-12-01" +19,"cumulus__none","Morse Fall Scale panel","2019-11-01" +19,"cumulus__none","Morse Fall Scale panel","2019-09-01" +19,"cumulus__none","Morse Fall Scale panel","2019-05-01" +19,"cumulus__none","Morse Fall Scale panel","2018-02-01" +19,"cumulus__none","Morse Fall Scale panel","2017-05-01" +19,"cumulus__none","Morse Fall Scale panel","2016-11-01" +19,"cumulus__none","Morse Fall Scale panel","2016-01-01" +19,"cumulus__none","Morse Fall Scale panel","2014-11-01" +19,"cumulus__none","Morse Fall Scale panel","2013-06-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-11-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2022-09-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-04-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-11-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-10-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-12-01" +19,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-04-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-09-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2020-04-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-11-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-09-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-01-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-06-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-12-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-07-01" +19,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-06-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-12-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-12-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-05-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-09-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-06-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-10-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-08-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-06-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-04-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-03-01" +19,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-10-01" +19,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-10-01" +19,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-06-01" +19,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-11-01" +19,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-09-01" +19,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-06-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2023-03-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-10-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-01-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-12-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-11-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-08-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-11-01" +19,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-12-01" +19,"Laboratory","CBC panel - Blood by Automated count","2022-07-01" +19,"Laboratory","CBC panel - Blood by Automated count","2022-03-01" +19,"Laboratory","CBC panel - Blood by Automated count","2021-02-01" +19,"Laboratory","CBC panel - Blood by Automated count","2018-12-01" +19,"Laboratory","CBC panel - Blood by Automated count","2018-06-01" +19,"Laboratory","CBC panel - Blood by Automated count","2018-02-01" +19,"Laboratory","CBC panel - Blood by Automated count","2016-06-01" +19,"Laboratory","CBC panel - Blood by Automated count","2015-07-01" +19,"Laboratory","CBC panel - Blood by Automated count","2014-07-01" +19,"Laboratory","CBC panel - Blood by Automated count","2013-04-01" +19,"History and physical note",,"1981-12-01" +19,"History and physical note",,"1978-11-01" +19,"History and physical note",,"1978-08-01" +19,"History and physical note",,"1978-07-01" +19,"History and physical note",,"1976-07-01" +19,"History and physical note",,"1974-06-01" +19,"History and physical note",,"1967-07-01" +19,"History and physical note","History and physical note","1981-12-01" +19,"History and physical note","History and physical note","1978-11-01" +19,"History and physical note","History and physical note","1978-08-01" +19,"History and physical note","History and physical note","1978-07-01" +19,"History and physical note","History and physical note","1976-07-01" +19,"History and physical note","History and physical note","1974-06-01" +19,"History and physical note","History and physical note","1967-07-01" +19,"History and physical note","Evaluation + Plan note","1981-12-01" +19,"History and physical note","Evaluation + Plan note","1978-11-01" +19,"History and physical note","Evaluation + Plan note","1978-08-01" +19,"History and physical note","Evaluation + Plan note","1978-07-01" +19,"History and physical note","Evaluation + Plan note","1976-07-01" +19,"History and physical note","Evaluation + Plan note","1974-06-01" +19,"History and physical note","Evaluation + Plan note","1967-07-01" +19,"Evaluation + Plan note",,"1981-12-01" +19,"Evaluation + Plan note",,"1978-11-01" +19,"Evaluation + Plan note",,"1978-08-01" +19,"Evaluation + Plan note",,"1978-07-01" +19,"Evaluation + Plan note",,"1976-07-01" +19,"Evaluation + Plan note",,"1974-06-01" +19,"Evaluation + Plan note",,"1967-07-01" +19,"Evaluation + Plan note","History and physical note","1981-12-01" +19,"Evaluation + Plan note","History and physical note","1978-11-01" +19,"Evaluation + Plan note","History and physical note","1978-08-01" +19,"Evaluation + Plan note","History and physical note","1978-07-01" +19,"Evaluation + Plan note","History and physical note","1976-07-01" +19,"Evaluation + Plan note","History and physical note","1974-06-01" +19,"Evaluation + Plan note","History and physical note","1967-07-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1981-12-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1978-11-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1978-08-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1978-07-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1976-07-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1974-06-01" +19,"Evaluation + Plan note","Evaluation + Plan note","1967-07-01" +18,,,"1981-06-01" +18,,,"1980-02-01" +18,,,"1980-01-01" +18,,,"1979-03-01" +18,,,"1978-09-01" +18,,,"1977-03-01" +18,,,"1977-02-01" +18,,,"1977-01-01" +18,,,"1976-06-01" +18,,,"1976-02-01" +18,,,"1975-10-01" +18,,,"1974-04-01" +18,,,"1973-10-01" +18,,,"1973-08-01" +18,,,"1972-03-01" +18,,,"1971-05-01" +18,,,"1966-03-01" +18,,"Morse Fall Scale panel","2019-10-01" +18,,"Morse Fall Scale panel","2019-08-01" +18,,"Morse Fall Scale panel","2018-05-01" +18,,"Morse Fall Scale panel","2018-01-01" +18,,"Lipid panel with direct LDL - Serum or Plasma","2014-04-01" +18,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-03-01" +18,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-11-01" +18,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-02-01" +18,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-11-01" +18,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-11-01" +18,,"History and physical note","1981-06-01" +18,,"History and physical note","1980-02-01" +18,,"History and physical note","1980-01-01" +18,,"History and physical note","1979-03-01" +18,,"History and physical note","1978-09-01" +18,,"History and physical note","1977-03-01" +18,,"History and physical note","1977-02-01" +18,,"History and physical note","1977-01-01" +18,,"History and physical note","1976-06-01" +18,,"History and physical note","1976-02-01" +18,,"History and physical note","1975-10-01" +18,,"History and physical note","1974-04-01" +18,,"History and physical note","1973-10-01" +18,,"History and physical note","1973-08-01" +18,,"History and physical note","1972-03-01" +18,,"History and physical note","1971-05-01" +18,,"History and physical note","1966-03-01" +18,,"Evaluation + Plan note","1981-06-01" +18,,"Evaluation + Plan note","1980-02-01" +18,,"Evaluation + Plan note","1980-01-01" +18,,"Evaluation + Plan note","1979-03-01" +18,,"Evaluation + Plan note","1978-09-01" +18,,"Evaluation + Plan note","1977-03-01" +18,,"Evaluation + Plan note","1977-02-01" +18,,"Evaluation + Plan note","1977-01-01" +18,,"Evaluation + Plan note","1976-06-01" +18,,"Evaluation + Plan note","1976-02-01" +18,,"Evaluation + Plan note","1975-10-01" +18,,"Evaluation + Plan note","1974-04-01" +18,,"Evaluation + Plan note","1973-10-01" +18,,"Evaluation + Plan note","1973-08-01" +18,,"Evaluation + Plan note","1972-03-01" +18,,"Evaluation + Plan note","1971-05-01" +18,,"Evaluation + Plan note","1966-03-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2023-03-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2017-04-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2016-10-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2015-03-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2013-05-01" +18,,"Drug Abuse Screening Test-10 [DAST-10]","2013-04-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2023-01-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-06-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-03-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-10-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-08-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-11-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-12-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-08-01" +18,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-01-01" +18,,"CBC panel - Blood by Automated count","2023-03-01" +18,,"CBC panel - Blood by Automated count","2023-02-01" +18,,"CBC panel - Blood by Automated count","2021-06-01" +18,,"CBC panel - Blood by Automated count","2021-05-01" +18,,"CBC panel - Blood by Automated count","2020-10-01" +18,,"CBC panel - Blood by Automated count","2020-06-01" +18,,"CBC panel - Blood by Automated count","2020-05-01" +18,,"CBC panel - Blood by Automated count","2019-06-01" +18,,"CBC panel - Blood by Automated count","2019-02-01" +18,,"CBC panel - Blood by Automated count","2018-10-01" +18,,"CBC panel - Blood by Automated count","2017-02-01" +18,,"CBC panel - Blood by Automated count","2016-02-01" +18,,"CBC panel - Blood by Automated count","2015-04-01" +18,,"CBC panel - Blood by Automated count","2015-03-01" +18,,"CBC panel - Blood by Automated count","2015-02-01" +18,,"CBC panel - Blood by Automated count","2014-09-01" +18,,"CBC panel - Blood by Automated count","2013-05-01" +18,,"Basic metabolic 2000 panel - Serum or Plasma","2013-07-01" +18,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-02-01" +18,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-11-01" +18,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-08-01" +18,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-06-01" +18,"cumulus__none","Morse Fall Scale panel","2019-10-01" +18,"cumulus__none","Morse Fall Scale panel","2019-08-01" +18,"cumulus__none","Morse Fall Scale panel","2018-05-01" +18,"cumulus__none","Morse Fall Scale panel","2018-01-01" +18,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2023-03-01" +18,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2021-11-01" +18,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-02-01" +18,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-11-01" +18,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-11-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2023-03-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2017-04-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-10-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-03-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-05-01" +18,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-04-01" +18,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-02-01" +18,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-11-01" +18,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-08-01" +18,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-06-01" +18,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2014-04-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2023-01-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-06-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-03-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-10-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-08-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-11-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-12-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-08-01" +18,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-01-01" +18,"Laboratory","CBC panel - Blood by Automated count","2023-03-01" +18,"Laboratory","CBC panel - Blood by Automated count","2023-02-01" +18,"Laboratory","CBC panel - Blood by Automated count","2021-06-01" +18,"Laboratory","CBC panel - Blood by Automated count","2021-05-01" +18,"Laboratory","CBC panel - Blood by Automated count","2020-10-01" +18,"Laboratory","CBC panel - Blood by Automated count","2020-06-01" +18,"Laboratory","CBC panel - Blood by Automated count","2020-05-01" +18,"Laboratory","CBC panel - Blood by Automated count","2019-06-01" +18,"Laboratory","CBC panel - Blood by Automated count","2019-02-01" +18,"Laboratory","CBC panel - Blood by Automated count","2018-10-01" +18,"Laboratory","CBC panel - Blood by Automated count","2017-02-01" +18,"Laboratory","CBC panel - Blood by Automated count","2016-02-01" +18,"Laboratory","CBC panel - Blood by Automated count","2015-04-01" +18,"Laboratory","CBC panel - Blood by Automated count","2015-03-01" +18,"Laboratory","CBC panel - Blood by Automated count","2015-02-01" +18,"Laboratory","CBC panel - Blood by Automated count","2014-09-01" +18,"Laboratory","CBC panel - Blood by Automated count","2013-05-01" +18,"Laboratory","Basic metabolic 2000 panel - Serum or Plasma","2013-07-01" +18,"History and physical note",,"1981-06-01" +18,"History and physical note",,"1980-02-01" +18,"History and physical note",,"1980-01-01" +18,"History and physical note",,"1979-03-01" +18,"History and physical note",,"1978-09-01" +18,"History and physical note",,"1977-03-01" +18,"History and physical note",,"1977-02-01" +18,"History and physical note",,"1977-01-01" +18,"History and physical note",,"1976-06-01" +18,"History and physical note",,"1976-02-01" +18,"History and physical note",,"1975-10-01" +18,"History and physical note",,"1974-04-01" +18,"History and physical note",,"1973-10-01" +18,"History and physical note",,"1973-08-01" +18,"History and physical note",,"1972-03-01" +18,"History and physical note",,"1971-05-01" +18,"History and physical note",,"1966-03-01" +18,"History and physical note","History and physical note","1981-06-01" +18,"History and physical note","History and physical note","1980-02-01" +18,"History and physical note","History and physical note","1980-01-01" +18,"History and physical note","History and physical note","1979-03-01" +18,"History and physical note","History and physical note","1978-09-01" +18,"History and physical note","History and physical note","1977-03-01" +18,"History and physical note","History and physical note","1977-02-01" +18,"History and physical note","History and physical note","1977-01-01" +18,"History and physical note","History and physical note","1976-06-01" +18,"History and physical note","History and physical note","1976-02-01" +18,"History and physical note","History and physical note","1975-10-01" +18,"History and physical note","History and physical note","1974-04-01" +18,"History and physical note","History and physical note","1973-10-01" +18,"History and physical note","History and physical note","1973-08-01" +18,"History and physical note","History and physical note","1972-03-01" +18,"History and physical note","History and physical note","1971-05-01" +18,"History and physical note","History and physical note","1966-03-01" +18,"History and physical note","Evaluation + Plan note","1981-06-01" +18,"History and physical note","Evaluation + Plan note","1980-02-01" +18,"History and physical note","Evaluation + Plan note","1980-01-01" +18,"History and physical note","Evaluation + Plan note","1979-03-01" +18,"History and physical note","Evaluation + Plan note","1978-09-01" +18,"History and physical note","Evaluation + Plan note","1977-03-01" +18,"History and physical note","Evaluation + Plan note","1977-02-01" +18,"History and physical note","Evaluation + Plan note","1977-01-01" +18,"History and physical note","Evaluation + Plan note","1976-06-01" +18,"History and physical note","Evaluation + Plan note","1976-02-01" +18,"History and physical note","Evaluation + Plan note","1975-10-01" +18,"History and physical note","Evaluation + Plan note","1974-04-01" +18,"History and physical note","Evaluation + Plan note","1973-10-01" +18,"History and physical note","Evaluation + Plan note","1973-08-01" +18,"History and physical note","Evaluation + Plan note","1972-03-01" +18,"History and physical note","Evaluation + Plan note","1971-05-01" +18,"History and physical note","Evaluation + Plan note","1966-03-01" +18,"Evaluation + Plan note",,"1981-06-01" +18,"Evaluation + Plan note",,"1980-02-01" +18,"Evaluation + Plan note",,"1980-01-01" +18,"Evaluation + Plan note",,"1979-03-01" +18,"Evaluation + Plan note",,"1978-09-01" +18,"Evaluation + Plan note",,"1977-03-01" +18,"Evaluation + Plan note",,"1977-02-01" +18,"Evaluation + Plan note",,"1977-01-01" +18,"Evaluation + Plan note",,"1976-06-01" +18,"Evaluation + Plan note",,"1976-02-01" +18,"Evaluation + Plan note",,"1975-10-01" +18,"Evaluation + Plan note",,"1974-04-01" +18,"Evaluation + Plan note",,"1973-10-01" +18,"Evaluation + Plan note",,"1973-08-01" +18,"Evaluation + Plan note",,"1972-03-01" +18,"Evaluation + Plan note",,"1971-05-01" +18,"Evaluation + Plan note",,"1966-03-01" +18,"Evaluation + Plan note","History and physical note","1981-06-01" +18,"Evaluation + Plan note","History and physical note","1980-02-01" +18,"Evaluation + Plan note","History and physical note","1980-01-01" +18,"Evaluation + Plan note","History and physical note","1979-03-01" +18,"Evaluation + Plan note","History and physical note","1978-09-01" +18,"Evaluation + Plan note","History and physical note","1977-03-01" +18,"Evaluation + Plan note","History and physical note","1977-02-01" +18,"Evaluation + Plan note","History and physical note","1977-01-01" +18,"Evaluation + Plan note","History and physical note","1976-06-01" +18,"Evaluation + Plan note","History and physical note","1976-02-01" +18,"Evaluation + Plan note","History and physical note","1975-10-01" +18,"Evaluation + Plan note","History and physical note","1974-04-01" +18,"Evaluation + Plan note","History and physical note","1973-10-01" +18,"Evaluation + Plan note","History and physical note","1973-08-01" +18,"Evaluation + Plan note","History and physical note","1972-03-01" +18,"Evaluation + Plan note","History and physical note","1971-05-01" +18,"Evaluation + Plan note","History and physical note","1966-03-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1981-06-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1980-02-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1980-01-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1979-03-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1978-09-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1977-03-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1977-02-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1977-01-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1976-06-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1976-02-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1975-10-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1974-04-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1973-10-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1973-08-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1972-03-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1971-05-01" +18,"Evaluation + Plan note","Evaluation + Plan note","1966-03-01" +17,,,"1980-03-01" +17,,,"1979-12-01" +17,,,"1978-12-01" +17,,,"1976-10-01" +17,,,"1975-11-01" +17,,,"1975-06-01" +17,,,"1974-02-01" +17,,,"1973-11-01" +17,,,"1972-07-01" +17,,,"1967-04-01" +17,,,"1966-10-01" +17,,,"1963-03-01" +17,,"Morse Fall Scale panel","2022-05-01" +17,,"Morse Fall Scale panel","2020-06-01" +17,,"Morse Fall Scale panel","2019-02-01" +17,,"Morse Fall Scale panel","2018-11-01" +17,,"Morse Fall Scale panel","2018-09-01" +17,,"Morse Fall Scale panel","2016-06-01" +17,,"Morse Fall Scale panel","2015-08-01" +17,,"Morse Fall Scale panel","2013-10-01" +17,,"Lipid panel with direct LDL - Serum or Plasma","2013-04-01" +17,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-12-01" +17,,"History and physical note","1980-03-01" +17,,"History and physical note","1979-12-01" +17,,"History and physical note","1978-12-01" +17,,"History and physical note","1976-10-01" +17,,"History and physical note","1975-11-01" +17,,"History and physical note","1975-06-01" +17,,"History and physical note","1974-02-01" +17,,"History and physical note","1973-11-01" +17,,"History and physical note","1972-07-01" +17,,"History and physical note","1967-04-01" +17,,"History and physical note","1966-10-01" +17,,"History and physical note","1963-03-01" +17,,"Evaluation + Plan note","1980-03-01" +17,,"Evaluation + Plan note","1979-12-01" +17,,"Evaluation + Plan note","1978-12-01" +17,,"Evaluation + Plan note","1976-10-01" +17,,"Evaluation + Plan note","1975-11-01" +17,,"Evaluation + Plan note","1975-06-01" +17,,"Evaluation + Plan note","1974-02-01" +17,,"Evaluation + Plan note","1973-11-01" +17,,"Evaluation + Plan note","1972-07-01" +17,,"Evaluation + Plan note","1967-04-01" +17,,"Evaluation + Plan note","1966-10-01" +17,,"Evaluation + Plan note","1963-03-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2022-07-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2019-07-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2018-11-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2014-11-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2014-08-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2013-11-01" +17,,"Drug Abuse Screening Test-10 [DAST-10]","2013-09-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-02-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-11-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-06-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-10-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-03-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-11-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-09-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-07-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-11-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-06-01" +17,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-11-01" +17,,"CBC panel - Blood by Automated count","2023-01-01" +17,,"CBC panel - Blood by Automated count","2019-11-01" +17,,"CBC panel - Blood by Automated count","2018-04-01" +17,,"CBC panel - Blood by Automated count","2017-12-01" +17,,"CBC panel - Blood by Automated count","2017-11-01" +17,,"CBC panel - Blood by Automated count","2017-01-01" +17,,"CBC panel - Blood by Automated count","2016-07-01" +17,,"CBC panel - Blood by Automated count","2015-12-01" +17,,"CBC panel - Blood by Automated count","2013-11-01" +17,,"Auto Differential panel - Blood", +17,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-11-01" +17,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-11-01" +17,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-09-01" +17,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-11-01" +17,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-08-01" +17,"cumulus__none","Morse Fall Scale panel","2022-05-01" +17,"cumulus__none","Morse Fall Scale panel","2020-06-01" +17,"cumulus__none","Morse Fall Scale panel","2019-02-01" +17,"cumulus__none","Morse Fall Scale panel","2018-11-01" +17,"cumulus__none","Morse Fall Scale panel","2018-09-01" +17,"cumulus__none","Morse Fall Scale panel","2016-06-01" +17,"cumulus__none","Morse Fall Scale panel","2015-08-01" +17,"cumulus__none","Morse Fall Scale panel","2013-10-01" +17,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-12-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-07-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-07-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-11-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-11-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-08-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-11-01" +17,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2013-09-01" +17,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2022-11-01" +17,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-11-01" +17,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-09-01" +17,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-11-01" +17,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-08-01" +17,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-04-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-02-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-11-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-06-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-10-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-03-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-11-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-09-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-07-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-11-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-06-01" +17,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-11-01" +17,"Laboratory","CBC panel - Blood by Automated count","2023-01-01" +17,"Laboratory","CBC panel - Blood by Automated count","2019-11-01" +17,"Laboratory","CBC panel - Blood by Automated count","2018-04-01" +17,"Laboratory","CBC panel - Blood by Automated count","2017-12-01" +17,"Laboratory","CBC panel - Blood by Automated count","2017-11-01" +17,"Laboratory","CBC panel - Blood by Automated count","2017-01-01" +17,"Laboratory","CBC panel - Blood by Automated count","2016-07-01" +17,"Laboratory","CBC panel - Blood by Automated count","2015-12-01" +17,"Laboratory","CBC panel - Blood by Automated count","2013-11-01" +17,"Laboratory","Auto Differential panel - Blood", +17,"History and physical note",,"1980-03-01" +17,"History and physical note",,"1979-12-01" +17,"History and physical note",,"1978-12-01" +17,"History and physical note",,"1976-10-01" +17,"History and physical note",,"1975-11-01" +17,"History and physical note",,"1975-06-01" +17,"History and physical note",,"1974-02-01" +17,"History and physical note",,"1973-11-01" +17,"History and physical note",,"1972-07-01" +17,"History and physical note",,"1967-04-01" +17,"History and physical note",,"1966-10-01" +17,"History and physical note",,"1963-03-01" +17,"History and physical note","History and physical note","1980-03-01" +17,"History and physical note","History and physical note","1979-12-01" +17,"History and physical note","History and physical note","1978-12-01" +17,"History and physical note","History and physical note","1976-10-01" +17,"History and physical note","History and physical note","1975-11-01" +17,"History and physical note","History and physical note","1975-06-01" +17,"History and physical note","History and physical note","1974-02-01" +17,"History and physical note","History and physical note","1973-11-01" +17,"History and physical note","History and physical note","1972-07-01" +17,"History and physical note","History and physical note","1967-04-01" +17,"History and physical note","History and physical note","1966-10-01" +17,"History and physical note","History and physical note","1963-03-01" +17,"History and physical note","Evaluation + Plan note","1980-03-01" +17,"History and physical note","Evaluation + Plan note","1979-12-01" +17,"History and physical note","Evaluation + Plan note","1978-12-01" +17,"History and physical note","Evaluation + Plan note","1976-10-01" +17,"History and physical note","Evaluation + Plan note","1975-11-01" +17,"History and physical note","Evaluation + Plan note","1975-06-01" +17,"History and physical note","Evaluation + Plan note","1974-02-01" +17,"History and physical note","Evaluation + Plan note","1973-11-01" +17,"History and physical note","Evaluation + Plan note","1972-07-01" +17,"History and physical note","Evaluation + Plan note","1967-04-01" +17,"History and physical note","Evaluation + Plan note","1966-10-01" +17,"History and physical note","Evaluation + Plan note","1963-03-01" +17,"Evaluation + Plan note",,"1980-03-01" +17,"Evaluation + Plan note",,"1979-12-01" +17,"Evaluation + Plan note",,"1978-12-01" +17,"Evaluation + Plan note",,"1976-10-01" +17,"Evaluation + Plan note",,"1975-11-01" +17,"Evaluation + Plan note",,"1975-06-01" +17,"Evaluation + Plan note",,"1974-02-01" +17,"Evaluation + Plan note",,"1973-11-01" +17,"Evaluation + Plan note",,"1972-07-01" +17,"Evaluation + Plan note",,"1967-04-01" +17,"Evaluation + Plan note",,"1966-10-01" +17,"Evaluation + Plan note",,"1963-03-01" +17,"Evaluation + Plan note","History and physical note","1980-03-01" +17,"Evaluation + Plan note","History and physical note","1979-12-01" +17,"Evaluation + Plan note","History and physical note","1978-12-01" +17,"Evaluation + Plan note","History and physical note","1976-10-01" +17,"Evaluation + Plan note","History and physical note","1975-11-01" +17,"Evaluation + Plan note","History and physical note","1975-06-01" +17,"Evaluation + Plan note","History and physical note","1974-02-01" +17,"Evaluation + Plan note","History and physical note","1973-11-01" +17,"Evaluation + Plan note","History and physical note","1972-07-01" +17,"Evaluation + Plan note","History and physical note","1967-04-01" +17,"Evaluation + Plan note","History and physical note","1966-10-01" +17,"Evaluation + Plan note","History and physical note","1963-03-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1980-03-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1979-12-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1978-12-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1976-10-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1975-11-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1975-06-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1974-02-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1973-11-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1972-07-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1967-04-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1966-10-01" +17,"Evaluation + Plan note","Evaluation + Plan note","1963-03-01" +16,,,"1979-06-01" +16,,,"1979-02-01" +16,,,"1978-03-01" +16,,,"1978-01-01" +16,,,"1977-12-01" +16,,,"1976-08-01" +16,,,"1976-03-01" +16,,,"1975-08-01" +16,,,"1975-07-01" +16,,,"1974-09-01" +16,,,"1974-07-01" +16,,,"1972-08-01" +16,,,"1971-08-01" +16,,,"1971-04-01" +16,,,"1970-07-01" +16,,,"1969-12-01" +16,,,"1969-03-01" +16,,,"1966-07-01" +16,,"Morse Fall Scale panel","2022-09-01" +16,,"Morse Fall Scale panel","2022-07-01" +16,,"Morse Fall Scale panel","2020-09-01" +16,,"Morse Fall Scale panel","2020-07-01" +16,,"Morse Fall Scale panel","2018-06-01" +16,,"Morse Fall Scale panel","2017-11-01" +16,,"Morse Fall Scale panel","2017-10-01" +16,,"Morse Fall Scale panel","2016-12-01" +16,,"Morse Fall Scale panel","2016-08-01" +16,,"Morse Fall Scale panel","2016-02-01" +16,,"Morse Fall Scale panel","2015-11-01" +16,,"Morse Fall Scale panel","2015-10-01" +16,,"Morse Fall Scale panel","2015-09-01" +16,,"Morse Fall Scale panel","2015-07-01" +16,,"Morse Fall Scale panel","2014-09-01" +16,,"Morse Fall Scale panel","2013-08-01" +16,,"Lipid panel with direct LDL - Serum or Plasma","2013-05-01" +16,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-08-01" +16,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-04-01" +16,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-09-01" +16,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-10-01" +16,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-06-01" +16,,"History and physical note","1979-06-01" +16,,"History and physical note","1979-02-01" +16,,"History and physical note","1978-03-01" +16,,"History and physical note","1978-01-01" +16,,"History and physical note","1977-12-01" +16,,"History and physical note","1976-08-01" +16,,"History and physical note","1976-03-01" +16,,"History and physical note","1975-08-01" +16,,"History and physical note","1975-07-01" +16,,"History and physical note","1974-09-01" +16,,"History and physical note","1974-07-01" +16,,"History and physical note","1972-08-01" +16,,"History and physical note","1971-08-01" +16,,"History and physical note","1971-04-01" +16,,"History and physical note","1970-07-01" +16,,"History and physical note","1969-12-01" +16,,"History and physical note","1969-03-01" +16,,"History and physical note","1966-07-01" +16,,"Evaluation + Plan note","1979-06-01" +16,,"Evaluation + Plan note","1979-02-01" +16,,"Evaluation + Plan note","1978-03-01" +16,,"Evaluation + Plan note","1978-01-01" +16,,"Evaluation + Plan note","1977-12-01" +16,,"Evaluation + Plan note","1976-08-01" +16,,"Evaluation + Plan note","1976-03-01" +16,,"Evaluation + Plan note","1975-08-01" +16,,"Evaluation + Plan note","1975-07-01" +16,,"Evaluation + Plan note","1974-09-01" +16,,"Evaluation + Plan note","1974-07-01" +16,,"Evaluation + Plan note","1972-08-01" +16,,"Evaluation + Plan note","1971-08-01" +16,,"Evaluation + Plan note","1971-04-01" +16,,"Evaluation + Plan note","1970-07-01" +16,,"Evaluation + Plan note","1969-12-01" +16,,"Evaluation + Plan note","1969-03-01" +16,,"Evaluation + Plan note","1966-07-01" +16,,"Drug Abuse Screening Test-10 [DAST-10]","2022-12-01" +16,,"Drug Abuse Screening Test-10 [DAST-10]","2022-10-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-05-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-01-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-09-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-07-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-10-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-06-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-04-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-03-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-10-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-10-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-09-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-08-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-05-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-09-01" +16,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-08-01" +16,,"CBC panel - Blood by Automated count","2021-10-01" +16,,"CBC panel - Blood by Automated count","2021-08-01" +16,,"CBC panel - Blood by Automated count","2021-07-01" +16,,"CBC panel - Blood by Automated count","2021-04-01" +16,,"CBC panel - Blood by Automated count","2020-04-01" +16,,"CBC panel - Blood by Automated count","2020-03-01" +16,,"CBC panel - Blood by Automated count","2020-02-01" +16,,"CBC panel - Blood by Automated count","2019-07-01" +16,,"CBC panel - Blood by Automated count","2019-05-01" +16,,"CBC panel - Blood by Automated count","2017-10-01" +16,,"CBC panel - Blood by Automated count","2017-08-01" +16,,"CBC panel - Blood by Automated count","2017-05-01" +16,,"CBC panel - Blood by Automated count","2016-04-01" +16,,"CBC panel - Blood by Automated count","2016-03-01" +16,,"CBC panel - Blood by Automated count","2015-08-01" +16,,"CBC panel - Blood by Automated count","2014-06-01" +16,,"CBC panel - Blood by Automated count","2013-10-01" +16,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-05-01" +16,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-02-01" +16,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-05-01" +16,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-11-01" +16,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-07-01" +16,"cumulus__none","Morse Fall Scale panel","2022-09-01" +16,"cumulus__none","Morse Fall Scale panel","2022-07-01" +16,"cumulus__none","Morse Fall Scale panel","2020-09-01" +16,"cumulus__none","Morse Fall Scale panel","2020-07-01" +16,"cumulus__none","Morse Fall Scale panel","2018-06-01" +16,"cumulus__none","Morse Fall Scale panel","2017-11-01" +16,"cumulus__none","Morse Fall Scale panel","2017-10-01" +16,"cumulus__none","Morse Fall Scale panel","2016-12-01" +16,"cumulus__none","Morse Fall Scale panel","2016-08-01" +16,"cumulus__none","Morse Fall Scale panel","2016-02-01" +16,"cumulus__none","Morse Fall Scale panel","2015-11-01" +16,"cumulus__none","Morse Fall Scale panel","2015-10-01" +16,"cumulus__none","Morse Fall Scale panel","2015-09-01" +16,"cumulus__none","Morse Fall Scale panel","2015-07-01" +16,"cumulus__none","Morse Fall Scale panel","2014-09-01" +16,"cumulus__none","Morse Fall Scale panel","2013-08-01" +16,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-08-01" +16,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2016-04-01" +16,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2015-09-01" +16,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2014-10-01" +16,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-06-01" +16,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-12-01" +16,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2022-10-01" +16,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2020-05-01" +16,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2017-02-01" +16,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-05-01" +16,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-11-01" +16,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-07-01" +16,"Laboratory","Lipid panel with direct LDL - Serum or Plasma","2013-05-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-05-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-01-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-09-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-07-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-10-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-06-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-04-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-03-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-10-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-10-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-09-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-08-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-05-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-09-01" +16,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-08-01" +16,"Laboratory","CBC panel - Blood by Automated count","2021-10-01" +16,"Laboratory","CBC panel - Blood by Automated count","2021-08-01" +16,"Laboratory","CBC panel - Blood by Automated count","2021-07-01" +16,"Laboratory","CBC panel - Blood by Automated count","2021-04-01" +16,"Laboratory","CBC panel - Blood by Automated count","2020-04-01" +16,"Laboratory","CBC panel - Blood by Automated count","2020-03-01" +16,"Laboratory","CBC panel - Blood by Automated count","2020-02-01" +16,"Laboratory","CBC panel - Blood by Automated count","2019-07-01" +16,"Laboratory","CBC panel - Blood by Automated count","2019-05-01" +16,"Laboratory","CBC panel - Blood by Automated count","2017-10-01" +16,"Laboratory","CBC panel - Blood by Automated count","2017-08-01" +16,"Laboratory","CBC panel - Blood by Automated count","2017-05-01" +16,"Laboratory","CBC panel - Blood by Automated count","2016-04-01" +16,"Laboratory","CBC panel - Blood by Automated count","2016-03-01" +16,"Laboratory","CBC panel - Blood by Automated count","2015-08-01" +16,"Laboratory","CBC panel - Blood by Automated count","2014-06-01" +16,"Laboratory","CBC panel - Blood by Automated count","2013-10-01" +16,"History and physical note",,"1979-06-01" +16,"History and physical note",,"1979-02-01" +16,"History and physical note",,"1978-03-01" +16,"History and physical note",,"1978-01-01" +16,"History and physical note",,"1977-12-01" +16,"History and physical note",,"1976-08-01" +16,"History and physical note",,"1976-03-01" +16,"History and physical note",,"1975-08-01" +16,"History and physical note",,"1975-07-01" +16,"History and physical note",,"1974-09-01" +16,"History and physical note",,"1974-07-01" +16,"History and physical note",,"1972-08-01" +16,"History and physical note",,"1971-08-01" +16,"History and physical note",,"1971-04-01" +16,"History and physical note",,"1970-07-01" +16,"History and physical note",,"1969-12-01" +16,"History and physical note",,"1969-03-01" +16,"History and physical note",,"1966-07-01" +16,"History and physical note","History and physical note","1979-06-01" +16,"History and physical note","History and physical note","1979-02-01" +16,"History and physical note","History and physical note","1978-03-01" +16,"History and physical note","History and physical note","1978-01-01" +16,"History and physical note","History and physical note","1977-12-01" +16,"History and physical note","History and physical note","1976-08-01" +16,"History and physical note","History and physical note","1976-03-01" +16,"History and physical note","History and physical note","1975-08-01" +16,"History and physical note","History and physical note","1975-07-01" +16,"History and physical note","History and physical note","1974-09-01" +16,"History and physical note","History and physical note","1974-07-01" +16,"History and physical note","History and physical note","1972-08-01" +16,"History and physical note","History and physical note","1971-08-01" +16,"History and physical note","History and physical note","1971-04-01" +16,"History and physical note","History and physical note","1970-07-01" +16,"History and physical note","History and physical note","1969-12-01" +16,"History and physical note","History and physical note","1969-03-01" +16,"History and physical note","History and physical note","1966-07-01" +16,"History and physical note","Evaluation + Plan note","1979-06-01" +16,"History and physical note","Evaluation + Plan note","1979-02-01" +16,"History and physical note","Evaluation + Plan note","1978-03-01" +16,"History and physical note","Evaluation + Plan note","1978-01-01" +16,"History and physical note","Evaluation + Plan note","1977-12-01" +16,"History and physical note","Evaluation + Plan note","1976-08-01" +16,"History and physical note","Evaluation + Plan note","1976-03-01" +16,"History and physical note","Evaluation + Plan note","1975-08-01" +16,"History and physical note","Evaluation + Plan note","1975-07-01" +16,"History and physical note","Evaluation + Plan note","1974-09-01" +16,"History and physical note","Evaluation + Plan note","1974-07-01" +16,"History and physical note","Evaluation + Plan note","1972-08-01" +16,"History and physical note","Evaluation + Plan note","1971-08-01" +16,"History and physical note","Evaluation + Plan note","1971-04-01" +16,"History and physical note","Evaluation + Plan note","1970-07-01" +16,"History and physical note","Evaluation + Plan note","1969-12-01" +16,"History and physical note","Evaluation + Plan note","1969-03-01" +16,"History and physical note","Evaluation + Plan note","1966-07-01" +16,"Evaluation + Plan note",,"1979-06-01" +16,"Evaluation + Plan note",,"1979-02-01" +16,"Evaluation + Plan note",,"1978-03-01" +16,"Evaluation + Plan note",,"1978-01-01" +16,"Evaluation + Plan note",,"1977-12-01" +16,"Evaluation + Plan note",,"1976-08-01" +16,"Evaluation + Plan note",,"1976-03-01" +16,"Evaluation + Plan note",,"1975-08-01" +16,"Evaluation + Plan note",,"1975-07-01" +16,"Evaluation + Plan note",,"1974-09-01" +16,"Evaluation + Plan note",,"1974-07-01" +16,"Evaluation + Plan note",,"1972-08-01" +16,"Evaluation + Plan note",,"1971-08-01" +16,"Evaluation + Plan note",,"1971-04-01" +16,"Evaluation + Plan note",,"1970-07-01" +16,"Evaluation + Plan note",,"1969-12-01" +16,"Evaluation + Plan note",,"1969-03-01" +16,"Evaluation + Plan note",,"1966-07-01" +16,"Evaluation + Plan note","History and physical note","1979-06-01" +16,"Evaluation + Plan note","History and physical note","1979-02-01" +16,"Evaluation + Plan note","History and physical note","1978-03-01" +16,"Evaluation + Plan note","History and physical note","1978-01-01" +16,"Evaluation + Plan note","History and physical note","1977-12-01" +16,"Evaluation + Plan note","History and physical note","1976-08-01" +16,"Evaluation + Plan note","History and physical note","1976-03-01" +16,"Evaluation + Plan note","History and physical note","1975-08-01" +16,"Evaluation + Plan note","History and physical note","1975-07-01" +16,"Evaluation + Plan note","History and physical note","1974-09-01" +16,"Evaluation + Plan note","History and physical note","1974-07-01" +16,"Evaluation + Plan note","History and physical note","1972-08-01" +16,"Evaluation + Plan note","History and physical note","1971-08-01" +16,"Evaluation + Plan note","History and physical note","1971-04-01" +16,"Evaluation + Plan note","History and physical note","1970-07-01" +16,"Evaluation + Plan note","History and physical note","1969-12-01" +16,"Evaluation + Plan note","History and physical note","1969-03-01" +16,"Evaluation + Plan note","History and physical note","1966-07-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1979-06-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1979-02-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1978-03-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1978-01-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1977-12-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1976-08-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1976-03-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1975-08-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1975-07-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1974-09-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1974-07-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1972-08-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1971-08-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1971-04-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1970-07-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1969-12-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1969-03-01" +16,"Evaluation + Plan note","Evaluation + Plan note","1966-07-01" +15,,,"2023-04-01" +15,,,"1976-05-01" +15,,,"1975-02-01" +15,,,"1974-12-01" +15,,,"1974-11-01" +15,,,"1974-08-01" +15,,,"1973-12-01" +15,,,"1973-09-01" +15,,,"1973-05-01" +15,,,"1971-11-01" +15,,,"1969-07-01" +15,,,"1967-10-01" +15,,"Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection","2020-11-01" +15,,"Morse Fall Scale panel","2019-06-01" +15,,"Morse Fall Scale panel","2019-04-01" +15,,"Morse Fall Scale panel","2018-04-01" +15,,"Morse Fall Scale panel","2017-12-01" +15,,"Morse Fall Scale panel","2017-04-01" +15,,"Morse Fall Scale panel","2016-03-01" +15,,"Morse Fall Scale panel","2015-12-01" +15,,"Morse Fall Scale panel","2015-04-01" +15,,"Morse Fall Scale panel","2015-03-01" +15,,"Morse Fall Scale panel","2015-02-01" +15,,"Morse Fall Scale panel","2014-10-01" +15,,"Morse Fall Scale panel","2014-08-01" +15,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-09-01" +15,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-12-01" +15,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-04-01" +15,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-09-01" +15,,"History and physical note","2023-04-01" +15,,"History and physical note","1976-05-01" +15,,"History and physical note","1975-02-01" +15,,"History and physical note","1974-12-01" +15,,"History and physical note","1974-11-01" +15,,"History and physical note","1974-08-01" +15,,"History and physical note","1973-12-01" +15,,"History and physical note","1973-09-01" +15,,"History and physical note","1973-05-01" +15,,"History and physical note","1971-11-01" +15,,"History and physical note","1969-07-01" +15,,"History and physical note","1967-10-01" +15,,"Evaluation + Plan note","2023-04-01" +15,,"Evaluation + Plan note","1976-05-01" +15,,"Evaluation + Plan note","1975-02-01" +15,,"Evaluation + Plan note","1974-12-01" +15,,"Evaluation + Plan note","1974-11-01" +15,,"Evaluation + Plan note","1974-08-01" +15,,"Evaluation + Plan note","1973-12-01" +15,,"Evaluation + Plan note","1973-09-01" +15,,"Evaluation + Plan note","1973-05-01" +15,,"Evaluation + Plan note","1971-11-01" +15,,"Evaluation + Plan note","1969-07-01" +15,,"Evaluation + Plan note","1967-10-01" +15,,"Drug Abuse Screening Test-10 [DAST-10]","2018-07-01" +15,,"Drug Abuse Screening Test-10 [DAST-10]","2016-04-01" +15,,"Drug Abuse Screening Test-10 [DAST-10]","2014-10-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-08-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2022-04-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-07-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-05-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-12-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-02-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-10-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-06-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-04-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-05-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-12-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-07-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-04-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-11-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-07-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-04-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-08-01" +15,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-09-01" +15,,"CBC panel - Blood by Automated count","2019-12-01" +15,,"CBC panel - Blood by Automated count","2018-11-01" +15,,"CBC panel - Blood by Automated count","2016-05-01" +15,,"CBC panel - Blood by Automated count","2015-10-01" +15,,"CBC panel - Blood by Automated count","2015-09-01" +15,,"CBC panel - Blood by Automated count","2014-10-01" +15,,"CBC panel - Blood by Automated count","2014-05-01" +15,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-01-01" +15,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-11-01" +15,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-08-01" +15,"cumulus__none","Morse Fall Scale panel","2019-06-01" +15,"cumulus__none","Morse Fall Scale panel","2019-04-01" +15,"cumulus__none","Morse Fall Scale panel","2018-04-01" +15,"cumulus__none","Morse Fall Scale panel","2017-12-01" +15,"cumulus__none","Morse Fall Scale panel","2017-04-01" +15,"cumulus__none","Morse Fall Scale panel","2016-03-01" +15,"cumulus__none","Morse Fall Scale panel","2015-12-01" +15,"cumulus__none","Morse Fall Scale panel","2015-04-01" +15,"cumulus__none","Morse Fall Scale panel","2015-03-01" +15,"cumulus__none","Morse Fall Scale panel","2015-02-01" +15,"cumulus__none","Morse Fall Scale panel","2014-10-01" +15,"cumulus__none","Morse Fall Scale panel","2014-08-01" +15,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2019-09-01" +15,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-12-01" +15,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2018-04-01" +15,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-09-01" +15,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-07-01" +15,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2016-04-01" +15,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-10-01" +15,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2023-01-01" +15,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2021-11-01" +15,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2019-08-01" +15,"Laboratory",,"2007-07-01" +15,"Laboratory","Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection","2020-11-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-08-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2022-04-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-07-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-05-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-12-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-02-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-10-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-06-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-04-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-05-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-12-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-07-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-04-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-11-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-07-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-04-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-08-01" +15,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-09-01" +15,"Laboratory","CBC panel - Blood by Automated count","2019-12-01" +15,"Laboratory","CBC panel - Blood by Automated count","2018-11-01" +15,"Laboratory","CBC panel - Blood by Automated count","2016-05-01" +15,"Laboratory","CBC panel - Blood by Automated count","2015-10-01" +15,"Laboratory","CBC panel - Blood by Automated count","2015-09-01" +15,"Laboratory","CBC panel - Blood by Automated count","2014-10-01" +15,"Laboratory","CBC panel - Blood by Automated count","2014-05-01" +15,"History and physical note",,"2023-04-01" +15,"History and physical note",,"1976-05-01" +15,"History and physical note",,"1975-02-01" +15,"History and physical note",,"1974-12-01" +15,"History and physical note",,"1974-11-01" +15,"History and physical note",,"1974-08-01" +15,"History and physical note",,"1973-12-01" +15,"History and physical note",,"1973-09-01" +15,"History and physical note",,"1973-05-01" +15,"History and physical note",,"1971-11-01" +15,"History and physical note",,"1969-07-01" +15,"History and physical note",,"1967-10-01" +15,"History and physical note","History and physical note","2023-04-01" +15,"History and physical note","History and physical note","1976-05-01" +15,"History and physical note","History and physical note","1975-02-01" +15,"History and physical note","History and physical note","1974-12-01" +15,"History and physical note","History and physical note","1974-11-01" +15,"History and physical note","History and physical note","1974-08-01" +15,"History and physical note","History and physical note","1973-12-01" +15,"History and physical note","History and physical note","1973-09-01" +15,"History and physical note","History and physical note","1973-05-01" +15,"History and physical note","History and physical note","1971-11-01" +15,"History and physical note","History and physical note","1969-07-01" +15,"History and physical note","History and physical note","1967-10-01" +15,"History and physical note","Evaluation + Plan note","2023-04-01" +15,"History and physical note","Evaluation + Plan note","1976-05-01" +15,"History and physical note","Evaluation + Plan note","1975-02-01" +15,"History and physical note","Evaluation + Plan note","1974-12-01" +15,"History and physical note","Evaluation + Plan note","1974-11-01" +15,"History and physical note","Evaluation + Plan note","1974-08-01" +15,"History and physical note","Evaluation + Plan note","1973-12-01" +15,"History and physical note","Evaluation + Plan note","1973-09-01" +15,"History and physical note","Evaluation + Plan note","1973-05-01" +15,"History and physical note","Evaluation + Plan note","1971-11-01" +15,"History and physical note","Evaluation + Plan note","1969-07-01" +15,"History and physical note","Evaluation + Plan note","1967-10-01" +15,"Evaluation + Plan note",,"2023-04-01" +15,"Evaluation + Plan note",,"1976-05-01" +15,"Evaluation + Plan note",,"1975-02-01" +15,"Evaluation + Plan note",,"1974-12-01" +15,"Evaluation + Plan note",,"1974-11-01" +15,"Evaluation + Plan note",,"1974-08-01" +15,"Evaluation + Plan note",,"1973-12-01" +15,"Evaluation + Plan note",,"1973-09-01" +15,"Evaluation + Plan note",,"1973-05-01" +15,"Evaluation + Plan note",,"1971-11-01" +15,"Evaluation + Plan note",,"1969-07-01" +15,"Evaluation + Plan note",,"1967-10-01" +15,"Evaluation + Plan note","History and physical note","2023-04-01" +15,"Evaluation + Plan note","History and physical note","1976-05-01" +15,"Evaluation + Plan note","History and physical note","1975-02-01" +15,"Evaluation + Plan note","History and physical note","1974-12-01" +15,"Evaluation + Plan note","History and physical note","1974-11-01" +15,"Evaluation + Plan note","History and physical note","1974-08-01" +15,"Evaluation + Plan note","History and physical note","1973-12-01" +15,"Evaluation + Plan note","History and physical note","1973-09-01" +15,"Evaluation + Plan note","History and physical note","1973-05-01" +15,"Evaluation + Plan note","History and physical note","1971-11-01" +15,"Evaluation + Plan note","History and physical note","1969-07-01" +15,"Evaluation + Plan note","History and physical note","1967-10-01" +15,"Evaluation + Plan note","Evaluation + Plan note","2023-04-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1976-05-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1975-02-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1974-12-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1974-11-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1974-08-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1973-12-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1973-09-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1973-05-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1971-11-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1969-07-01" +15,"Evaluation + Plan note","Evaluation + Plan note","1967-10-01" +14,,,"1979-01-01" +14,,,"1975-04-01" +14,,,"1973-03-01" +14,,,"1972-05-01" +14,,,"1972-04-01" +14,,,"1971-12-01" +14,,,"1971-09-01" +14,,,"1971-03-01" +14,,,"1970-10-01" +14,,,"1968-04-01" +14,,,"1966-04-01" +14,,,"1965-07-01" +14,,"Morse Fall Scale panel","2023-03-01" +14,,"Morse Fall Scale panel","2020-11-01" +14,,"Morse Fall Scale panel","2019-07-01" +14,,"Morse Fall Scale panel","2016-05-01" +14,,"Morse Fall Scale panel","2014-05-01" +14,,"Morse Fall Scale panel","2013-09-01" +14,,"Morse Fall Scale panel","2013-05-01" +14,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-09-01" +14,,"History and physical note","1979-01-01" +14,,"History and physical note","1975-04-01" +14,,"History and physical note","1973-03-01" +14,,"History and physical note","1972-05-01" +14,,"History and physical note","1972-04-01" +14,,"History and physical note","1971-12-01" +14,,"History and physical note","1971-09-01" +14,,"History and physical note","1971-03-01" +14,,"History and physical note","1970-10-01" +14,,"History and physical note","1968-04-01" +14,,"History and physical note","1966-04-01" +14,,"History and physical note","1965-07-01" +14,,"Evaluation + Plan note","1979-01-01" +14,,"Evaluation + Plan note","1975-04-01" +14,,"Evaluation + Plan note","1973-03-01" +14,,"Evaluation + Plan note","1972-05-01" +14,,"Evaluation + Plan note","1972-04-01" +14,,"Evaluation + Plan note","1971-12-01" +14,,"Evaluation + Plan note","1971-09-01" +14,,"Evaluation + Plan note","1971-03-01" +14,,"Evaluation + Plan note","1970-10-01" +14,,"Evaluation + Plan note","1968-04-01" +14,,"Evaluation + Plan note","1966-04-01" +14,,"Evaluation + Plan note","1965-07-01" +14,,"Drug Abuse Screening Test-10 [DAST-10]","2014-01-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-08-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-05-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-02-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-02-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-09-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-06-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-04-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-12-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-02-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-09-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-05-01" +14,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-03-01" +14,,"CBC panel - Blood by Automated count","2022-12-01" +14,,"CBC panel - Blood by Automated count","2022-09-01" +14,,"CBC panel - Blood by Automated count","2022-05-01" +14,,"CBC panel - Blood by Automated count","2022-02-01" +14,,"CBC panel - Blood by Automated count","2021-12-01" +14,,"CBC panel - Blood by Automated count","2020-11-01" +14,,"CBC panel - Blood by Automated count","2019-10-01" +14,,"CBC panel - Blood by Automated count","2017-09-01" +14,,"CBC panel - Blood by Automated count","2017-04-01" +14,,"CBC panel - Blood by Automated count","2014-12-01" +14,,"CBC panel - Blood by Automated count","2014-08-01" +14,,"CBC panel - Blood by Automated count","2014-04-01" +14,,"CBC panel - Blood by Automated count","2013-09-01" +14,,"CBC panel - Blood by Automated count","2013-08-01" +14,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-08-01" +14,"cumulus__none",,"2009-05-01" +14,"cumulus__none",,"2009-04-01" +14,"cumulus__none","Morse Fall Scale panel","2023-03-01" +14,"cumulus__none","Morse Fall Scale panel","2020-11-01" +14,"cumulus__none","Morse Fall Scale panel","2019-07-01" +14,"cumulus__none","Morse Fall Scale panel","2016-05-01" +14,"cumulus__none","Morse Fall Scale panel","2014-05-01" +14,"cumulus__none","Morse Fall Scale panel","2013-09-01" +14,"cumulus__none","Morse Fall Scale panel","2013-05-01" +14,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2013-09-01" +14,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2014-01-01" +14,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-08-01" +14,"Laboratory",,"2012-01-01" +14,"Laboratory",,"2010-01-01" +14,"Laboratory",,"2009-10-01" +14,"Laboratory",,"2009-04-01" +14,"Laboratory",,"2006-06-01" +14,"Laboratory",,"2005-04-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-08-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-05-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-02-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-02-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-09-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-06-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-04-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-12-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-02-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-09-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-05-01" +14,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-03-01" +14,"Laboratory","CBC panel - Blood by Automated count","2022-12-01" +14,"Laboratory","CBC panel - Blood by Automated count","2022-09-01" +14,"Laboratory","CBC panel - Blood by Automated count","2022-05-01" +14,"Laboratory","CBC panel - Blood by Automated count","2022-02-01" +14,"Laboratory","CBC panel - Blood by Automated count","2021-12-01" +14,"Laboratory","CBC panel - Blood by Automated count","2020-11-01" +14,"Laboratory","CBC panel - Blood by Automated count","2019-10-01" +14,"Laboratory","CBC panel - Blood by Automated count","2017-09-01" +14,"Laboratory","CBC panel - Blood by Automated count","2017-04-01" +14,"Laboratory","CBC panel - Blood by Automated count","2014-12-01" +14,"Laboratory","CBC panel - Blood by Automated count","2014-08-01" +14,"Laboratory","CBC panel - Blood by Automated count","2014-04-01" +14,"Laboratory","CBC panel - Blood by Automated count","2013-09-01" +14,"Laboratory","CBC panel - Blood by Automated count","2013-08-01" +14,"History and physical note",,"1979-01-01" +14,"History and physical note",,"1975-04-01" +14,"History and physical note",,"1973-03-01" +14,"History and physical note",,"1972-05-01" +14,"History and physical note",,"1972-04-01" +14,"History and physical note",,"1971-12-01" +14,"History and physical note",,"1971-09-01" +14,"History and physical note",,"1971-03-01" +14,"History and physical note",,"1970-10-01" +14,"History and physical note",,"1968-04-01" +14,"History and physical note",,"1966-04-01" +14,"History and physical note",,"1965-07-01" +14,"History and physical note","History and physical note","1979-01-01" +14,"History and physical note","History and physical note","1975-04-01" +14,"History and physical note","History and physical note","1973-03-01" +14,"History and physical note","History and physical note","1972-05-01" +14,"History and physical note","History and physical note","1972-04-01" +14,"History and physical note","History and physical note","1971-12-01" +14,"History and physical note","History and physical note","1971-09-01" +14,"History and physical note","History and physical note","1971-03-01" +14,"History and physical note","History and physical note","1970-10-01" +14,"History and physical note","History and physical note","1968-04-01" +14,"History and physical note","History and physical note","1966-04-01" +14,"History and physical note","History and physical note","1965-07-01" +14,"History and physical note","Evaluation + Plan note","1979-01-01" +14,"History and physical note","Evaluation + Plan note","1975-04-01" +14,"History and physical note","Evaluation + Plan note","1973-03-01" +14,"History and physical note","Evaluation + Plan note","1972-05-01" +14,"History and physical note","Evaluation + Plan note","1972-04-01" +14,"History and physical note","Evaluation + Plan note","1971-12-01" +14,"History and physical note","Evaluation + Plan note","1971-09-01" +14,"History and physical note","Evaluation + Plan note","1971-03-01" +14,"History and physical note","Evaluation + Plan note","1970-10-01" +14,"History and physical note","Evaluation + Plan note","1968-04-01" +14,"History and physical note","Evaluation + Plan note","1966-04-01" +14,"History and physical note","Evaluation + Plan note","1965-07-01" +14,"Evaluation + Plan note",,"1979-01-01" +14,"Evaluation + Plan note",,"1975-04-01" +14,"Evaluation + Plan note",,"1973-03-01" +14,"Evaluation + Plan note",,"1972-05-01" +14,"Evaluation + Plan note",,"1972-04-01" +14,"Evaluation + Plan note",,"1971-12-01" +14,"Evaluation + Plan note",,"1971-09-01" +14,"Evaluation + Plan note",,"1971-03-01" +14,"Evaluation + Plan note",,"1970-10-01" +14,"Evaluation + Plan note",,"1968-04-01" +14,"Evaluation + Plan note",,"1966-04-01" +14,"Evaluation + Plan note",,"1965-07-01" +14,"Evaluation + Plan note","History and physical note","1979-01-01" +14,"Evaluation + Plan note","History and physical note","1975-04-01" +14,"Evaluation + Plan note","History and physical note","1973-03-01" +14,"Evaluation + Plan note","History and physical note","1972-05-01" +14,"Evaluation + Plan note","History and physical note","1972-04-01" +14,"Evaluation + Plan note","History and physical note","1971-12-01" +14,"Evaluation + Plan note","History and physical note","1971-09-01" +14,"Evaluation + Plan note","History and physical note","1971-03-01" +14,"Evaluation + Plan note","History and physical note","1970-10-01" +14,"Evaluation + Plan note","History and physical note","1968-04-01" +14,"Evaluation + Plan note","History and physical note","1966-04-01" +14,"Evaluation + Plan note","History and physical note","1965-07-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1979-01-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1975-04-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1973-03-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1972-05-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1972-04-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1971-12-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1971-09-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1971-03-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1970-10-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1968-04-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1966-04-01" +14,"Evaluation + Plan note","Evaluation + Plan note","1965-07-01" +13,,,"1978-02-01" +13,,,"1977-07-01" +13,,,"1975-12-01" +13,,,"1973-06-01" +13,,,"1972-12-01" +13,,,"1972-11-01" +13,,,"1971-07-01" +13,,,"1971-06-01" +13,,,"1967-12-01" +13,,,"1967-03-01" +13,,,"1965-06-01" +13,,,"1947-06-01" +13,,"Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection","2020-12-01" +13,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2020-07-01" +13,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-11-01" +13,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2014-07-01" +13,,"Morse Fall Scale panel","2016-10-01" +13,,"Morse Fall Scale panel","2014-04-01" +13,,"Morse Fall Scale panel","2014-03-01" +13,,"Morse Fall Scale panel","2013-12-01" +13,,"History and physical note","1978-02-01" +13,,"History and physical note","1977-07-01" +13,,"History and physical note","1975-12-01" +13,,"History and physical note","1973-06-01" +13,,"History and physical note","1972-12-01" +13,,"History and physical note","1972-11-01" +13,,"History and physical note","1971-07-01" +13,,"History and physical note","1971-06-01" +13,,"History and physical note","1967-12-01" +13,,"History and physical note","1967-03-01" +13,,"History and physical note","1965-06-01" +13,,"History and physical note","1947-06-01" +13,,"Evaluation + Plan note","1978-02-01" +13,,"Evaluation + Plan note","1977-07-01" +13,,"Evaluation + Plan note","1975-12-01" +13,,"Evaluation + Plan note","1973-06-01" +13,,"Evaluation + Plan note","1972-12-01" +13,,"Evaluation + Plan note","1972-11-01" +13,,"Evaluation + Plan note","1971-07-01" +13,,"Evaluation + Plan note","1971-06-01" +13,,"Evaluation + Plan note","1967-12-01" +13,,"Evaluation + Plan note","1967-03-01" +13,,"Evaluation + Plan note","1965-06-01" +13,,"Evaluation + Plan note","1947-06-01" +13,,"Drug Abuse Screening Test-10 [DAST-10]","2019-04-01" +13,,"Drug Abuse Screening Test-10 [DAST-10]","2018-12-01" +13,,"Drug Abuse Screening Test-10 [DAST-10]","2015-08-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-09-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-04-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-08-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-03-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2018-05-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-06-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-03-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-12-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2015-02-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-10-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-07-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-05-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-03-01" +13,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-05-01" +13,,"CBC panel - Blood by Automated count","2019-09-01" +13,,"CBC panel - Blood by Automated count","2016-12-01" +13,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-03-01" +13,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-09-01" +13,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-07-01" +13,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2020-07-01" +13,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-11-01" +13,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2014-07-01" +13,"cumulus__none","Morse Fall Scale panel","2016-10-01" +13,"cumulus__none","Morse Fall Scale panel","2014-04-01" +13,"cumulus__none","Morse Fall Scale panel","2014-03-01" +13,"cumulus__none","Morse Fall Scale panel","2013-12-01" +13,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2019-04-01" +13,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2018-12-01" +13,"cumulus__none","Drug Abuse Screening Test-10 [DAST-10]","2015-08-01" +13,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2016-03-01" +13,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2015-09-01" +13,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2014-07-01" +13,"Laboratory",,"2010-05-01" +13,"Laboratory",,"2009-03-01" +13,"Laboratory",,"2008-09-01" +13,"Laboratory","Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection","2020-12-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-09-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-04-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-08-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-03-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2018-05-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-06-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-03-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-12-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2015-02-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-10-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-07-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-05-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-03-01" +13,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-05-01" +13,"Laboratory","CBC panel - Blood by Automated count","2019-09-01" +13,"Laboratory","CBC panel - Blood by Automated count","2016-12-01" +13,"History and physical note",,"1978-02-01" +13,"History and physical note",,"1977-07-01" +13,"History and physical note",,"1975-12-01" +13,"History and physical note",,"1973-06-01" +13,"History and physical note",,"1972-12-01" +13,"History and physical note",,"1972-11-01" +13,"History and physical note",,"1971-07-01" +13,"History and physical note",,"1971-06-01" +13,"History and physical note",,"1967-12-01" +13,"History and physical note",,"1967-03-01" +13,"History and physical note",,"1965-06-01" +13,"History and physical note",,"1947-06-01" +13,"History and physical note","History and physical note","1978-02-01" +13,"History and physical note","History and physical note","1977-07-01" +13,"History and physical note","History and physical note","1975-12-01" +13,"History and physical note","History and physical note","1973-06-01" +13,"History and physical note","History and physical note","1972-12-01" +13,"History and physical note","History and physical note","1972-11-01" +13,"History and physical note","History and physical note","1971-07-01" +13,"History and physical note","History and physical note","1971-06-01" +13,"History and physical note","History and physical note","1967-12-01" +13,"History and physical note","History and physical note","1967-03-01" +13,"History and physical note","History and physical note","1965-06-01" +13,"History and physical note","History and physical note","1947-06-01" +13,"History and physical note","Evaluation + Plan note","1978-02-01" +13,"History and physical note","Evaluation + Plan note","1977-07-01" +13,"History and physical note","Evaluation + Plan note","1975-12-01" +13,"History and physical note","Evaluation + Plan note","1973-06-01" +13,"History and physical note","Evaluation + Plan note","1972-12-01" +13,"History and physical note","Evaluation + Plan note","1972-11-01" +13,"History and physical note","Evaluation + Plan note","1971-07-01" +13,"History and physical note","Evaluation + Plan note","1971-06-01" +13,"History and physical note","Evaluation + Plan note","1967-12-01" +13,"History and physical note","Evaluation + Plan note","1967-03-01" +13,"History and physical note","Evaluation + Plan note","1965-06-01" +13,"History and physical note","Evaluation + Plan note","1947-06-01" +13,"Evaluation + Plan note",,"1978-02-01" +13,"Evaluation + Plan note",,"1977-07-01" +13,"Evaluation + Plan note",,"1975-12-01" +13,"Evaluation + Plan note",,"1973-06-01" +13,"Evaluation + Plan note",,"1972-12-01" +13,"Evaluation + Plan note",,"1972-11-01" +13,"Evaluation + Plan note",,"1971-07-01" +13,"Evaluation + Plan note",,"1971-06-01" +13,"Evaluation + Plan note",,"1967-12-01" +13,"Evaluation + Plan note",,"1967-03-01" +13,"Evaluation + Plan note",,"1965-06-01" +13,"Evaluation + Plan note",,"1947-06-01" +13,"Evaluation + Plan note","History and physical note","1978-02-01" +13,"Evaluation + Plan note","History and physical note","1977-07-01" +13,"Evaluation + Plan note","History and physical note","1975-12-01" +13,"Evaluation + Plan note","History and physical note","1973-06-01" +13,"Evaluation + Plan note","History and physical note","1972-12-01" +13,"Evaluation + Plan note","History and physical note","1972-11-01" +13,"Evaluation + Plan note","History and physical note","1971-07-01" +13,"Evaluation + Plan note","History and physical note","1971-06-01" +13,"Evaluation + Plan note","History and physical note","1967-12-01" +13,"Evaluation + Plan note","History and physical note","1967-03-01" +13,"Evaluation + Plan note","History and physical note","1965-06-01" +13,"Evaluation + Plan note","History and physical note","1947-06-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1978-02-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1977-07-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1975-12-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1973-06-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1972-12-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1972-11-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1971-07-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1971-06-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1967-12-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1967-03-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1965-06-01" +13,"Evaluation + Plan note","Evaluation + Plan note","1947-06-01" +12,,,"1974-01-01" +12,,,"1972-09-01" +12,,,"1972-01-01" +12,,,"1970-12-01" +12,,,"1970-11-01" +12,,,"1970-03-01" +12,,,"1969-11-01" +12,,,"1969-10-01" +12,,,"1968-11-01" +12,,,"1965-03-01" +12,,,"1964-11-01" +12,,,"1963-07-01" +12,,,"1962-09-01" +12,,"SARS-CoV-2 RNA Pnl Resp NAA+probe","2021-01-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2020-08-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2019-06-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-06-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-06-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2015-07-01" +12,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2013-12-01" +12,,"Morse Fall Scale panel","2020-04-01" +12,,"Morse Fall Scale panel","2017-06-01" +12,,"Morse Fall Scale panel","2016-07-01" +12,,"Morse Fall Scale panel","2013-11-01" +12,,"History and physical note","1974-01-01" +12,,"History and physical note","1972-09-01" +12,,"History and physical note","1972-01-01" +12,,"History and physical note","1970-12-01" +12,,"History and physical note","1970-11-01" +12,,"History and physical note","1970-03-01" +12,,"History and physical note","1969-11-01" +12,,"History and physical note","1969-10-01" +12,,"History and physical note","1968-11-01" +12,,"History and physical note","1965-03-01" +12,,"History and physical note","1964-11-01" +12,,"History and physical note","1963-07-01" +12,,"History and physical note","1962-09-01" +12,,"Evaluation + Plan note","1974-01-01" +12,,"Evaluation + Plan note","1972-09-01" +12,,"Evaluation + Plan note","1972-01-01" +12,,"Evaluation + Plan note","1970-12-01" +12,,"Evaluation + Plan note","1970-11-01" +12,,"Evaluation + Plan note","1970-03-01" +12,,"Evaluation + Plan note","1969-11-01" +12,,"Evaluation + Plan note","1969-10-01" +12,,"Evaluation + Plan note","1968-11-01" +12,,"Evaluation + Plan note","1965-03-01" +12,,"Evaluation + Plan note","1964-11-01" +12,,"Evaluation + Plan note","1963-07-01" +12,,"Evaluation + Plan note","1962-09-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-03-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2017-02-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-08-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2016-02-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-06-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-04-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2014-02-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-10-01" +12,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-07-01" +12,,"CBC panel - Blood by Automated count","2018-09-01" +12,,"CBC panel - Blood by Automated count","2015-11-01" +12,,"CBC panel - Blood by Automated count","2015-06-01" +12,,"CBC panel - Blood by Automated count","2014-11-01" +12,,"CBC panel - Blood by Automated count","2014-01-01" +12,"cumulus__none",,"2011-05-01" +12,"cumulus__none",,"2010-05-01" +12,"cumulus__none",,"2009-10-01" +12,"cumulus__none",,"2009-03-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2020-08-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2019-06-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-06-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-06-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2015-07-01" +12,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2013-12-01" +12,"cumulus__none","Morse Fall Scale panel","2020-04-01" +12,"cumulus__none","Morse Fall Scale panel","2017-06-01" +12,"cumulus__none","Morse Fall Scale panel","2016-07-01" +12,"cumulus__none","Morse Fall Scale panel","2013-11-01" +12,"Laboratory",,"2011-11-01" +12,"Laboratory",,"2010-02-01" +12,"Laboratory",,"2009-07-01" +12,"Laboratory",,"2007-05-01" +12,"Laboratory",,"2007-01-01" +12,"Laboratory",,"2006-10-01" +12,"Laboratory",,"2006-07-01" +12,"Laboratory",,"2006-03-01" +12,"Laboratory",,"2005-01-01" +12,"Laboratory",,"2004-04-01" +12,"Laboratory",,"2003-12-01" +12,"Laboratory",,"2003-04-01" +12,"Laboratory",,"2003-02-01" +12,"Laboratory",,"1985-08-01" +12,"Laboratory","SARS-CoV-2 RNA Pnl Resp NAA+probe","2021-01-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-03-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2017-02-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-08-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2016-02-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-06-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-04-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2014-02-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-10-01" +12,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-07-01" +12,"Laboratory","CBC panel - Blood by Automated count","2018-09-01" +12,"Laboratory","CBC panel - Blood by Automated count","2015-11-01" +12,"Laboratory","CBC panel - Blood by Automated count","2015-06-01" +12,"Laboratory","CBC panel - Blood by Automated count","2014-11-01" +12,"Laboratory","CBC panel - Blood by Automated count","2014-01-01" +12,"History and physical note",,"1974-01-01" +12,"History and physical note",,"1972-09-01" +12,"History and physical note",,"1972-01-01" +12,"History and physical note",,"1970-12-01" +12,"History and physical note",,"1970-11-01" +12,"History and physical note",,"1970-03-01" +12,"History and physical note",,"1969-11-01" +12,"History and physical note",,"1969-10-01" +12,"History and physical note",,"1968-11-01" +12,"History and physical note",,"1965-03-01" +12,"History and physical note",,"1964-11-01" +12,"History and physical note",,"1963-07-01" +12,"History and physical note",,"1962-09-01" +12,"History and physical note","History and physical note","1974-01-01" +12,"History and physical note","History and physical note","1972-09-01" +12,"History and physical note","History and physical note","1972-01-01" +12,"History and physical note","History and physical note","1970-12-01" +12,"History and physical note","History and physical note","1970-11-01" +12,"History and physical note","History and physical note","1970-03-01" +12,"History and physical note","History and physical note","1969-11-01" +12,"History and physical note","History and physical note","1969-10-01" +12,"History and physical note","History and physical note","1968-11-01" +12,"History and physical note","History and physical note","1965-03-01" +12,"History and physical note","History and physical note","1964-11-01" +12,"History and physical note","History and physical note","1963-07-01" +12,"History and physical note","History and physical note","1962-09-01" +12,"History and physical note","Evaluation + Plan note","1974-01-01" +12,"History and physical note","Evaluation + Plan note","1972-09-01" +12,"History and physical note","Evaluation + Plan note","1972-01-01" +12,"History and physical note","Evaluation + Plan note","1970-12-01" +12,"History and physical note","Evaluation + Plan note","1970-11-01" +12,"History and physical note","Evaluation + Plan note","1970-03-01" +12,"History and physical note","Evaluation + Plan note","1969-11-01" +12,"History and physical note","Evaluation + Plan note","1969-10-01" +12,"History and physical note","Evaluation + Plan note","1968-11-01" +12,"History and physical note","Evaluation + Plan note","1965-03-01" +12,"History and physical note","Evaluation + Plan note","1964-11-01" +12,"History and physical note","Evaluation + Plan note","1963-07-01" +12,"History and physical note","Evaluation + Plan note","1962-09-01" +12,"Evaluation + Plan note",,"1974-01-01" +12,"Evaluation + Plan note",,"1972-09-01" +12,"Evaluation + Plan note",,"1972-01-01" +12,"Evaluation + Plan note",,"1970-12-01" +12,"Evaluation + Plan note",,"1970-11-01" +12,"Evaluation + Plan note",,"1970-03-01" +12,"Evaluation + Plan note",,"1969-11-01" +12,"Evaluation + Plan note",,"1969-10-01" +12,"Evaluation + Plan note",,"1968-11-01" +12,"Evaluation + Plan note",,"1965-03-01" +12,"Evaluation + Plan note",,"1964-11-01" +12,"Evaluation + Plan note",,"1963-07-01" +12,"Evaluation + Plan note",,"1962-09-01" +12,"Evaluation + Plan note","History and physical note","1974-01-01" +12,"Evaluation + Plan note","History and physical note","1972-09-01" +12,"Evaluation + Plan note","History and physical note","1972-01-01" +12,"Evaluation + Plan note","History and physical note","1970-12-01" +12,"Evaluation + Plan note","History and physical note","1970-11-01" +12,"Evaluation + Plan note","History and physical note","1970-03-01" +12,"Evaluation + Plan note","History and physical note","1969-11-01" +12,"Evaluation + Plan note","History and physical note","1969-10-01" +12,"Evaluation + Plan note","History and physical note","1968-11-01" +12,"Evaluation + Plan note","History and physical note","1965-03-01" +12,"Evaluation + Plan note","History and physical note","1964-11-01" +12,"Evaluation + Plan note","History and physical note","1963-07-01" +12,"Evaluation + Plan note","History and physical note","1962-09-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1974-01-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1972-09-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1972-01-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1970-12-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1970-11-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1970-03-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1969-11-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1969-10-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1968-11-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1965-03-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1964-11-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1963-07-01" +12,"Evaluation + Plan note","Evaluation + Plan note","1962-09-01" +11,,,"1973-01-01" +11,,,"1972-02-01" +11,,,"1969-09-01" +11,,,"1969-05-01" +11,,,"1968-10-01" +11,,,"1968-01-01" +11,,,"1967-09-01" +11,,,"1967-06-01" +11,,,"1966-11-01" +11,,,"1963-10-01" +11,,,"1962-04-01" +11,,,"1954-11-01" +11,,,"1953-11-01" +11,,"Urinalysis macro (dipstick) panel - Urine","2012-01-01" +11,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2021-07-01" +11,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-04-01" +11,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2009-10-01" +11,,"Morse Fall Scale panel","2014-07-01" +11,,"Morse Fall Scale panel","2014-01-01" +11,,"Morse Fall Scale panel","2013-07-01" +11,,"History and physical note","1973-01-01" +11,,"History and physical note","1972-02-01" +11,,"History and physical note","1969-09-01" +11,,"History and physical note","1969-05-01" +11,,"History and physical note","1968-10-01" +11,,"History and physical note","1968-01-01" +11,,"History and physical note","1967-09-01" +11,,"History and physical note","1967-06-01" +11,,"History and physical note","1966-11-01" +11,,"History and physical note","1963-10-01" +11,,"History and physical note","1962-04-01" +11,,"History and physical note","1954-11-01" +11,,"History and physical note","1953-11-01" +11,,"Evaluation + Plan note","1973-01-01" +11,,"Evaluation + Plan note","1972-02-01" +11,,"Evaluation + Plan note","1969-09-01" +11,,"Evaluation + Plan note","1969-05-01" +11,,"Evaluation + Plan note","1968-10-01" +11,,"Evaluation + Plan note","1968-01-01" +11,,"Evaluation + Plan note","1967-09-01" +11,,"Evaluation + Plan note","1967-06-01" +11,,"Evaluation + Plan note","1966-11-01" +11,,"Evaluation + Plan note","1963-10-01" +11,,"Evaluation + Plan note","1962-04-01" +11,,"Evaluation + Plan note","1954-11-01" +11,,"Evaluation + Plan note","1953-11-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2021-03-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2020-07-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-11-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-07-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-05-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-06-01" +11,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2013-04-01" +11,,"CBC panel - Blood by Automated count","2020-07-01" +11,,"Blood Culture, Routine", +11,,"Basic metabolic panel - Blood","2008-09-01" +11,"cumulus__none",,"2012-05-01" +11,"cumulus__none",,"2011-11-01" +11,"cumulus__none",,"2008-09-01" +11,"cumulus__none",,"2008-05-01" +11,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2021-07-01" +11,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2018-04-01" +11,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2009-10-01" +11,"cumulus__none","Morse Fall Scale panel","2014-07-01" +11,"cumulus__none","Morse Fall Scale panel","2014-01-01" +11,"cumulus__none","Morse Fall Scale panel","2013-07-01" +11,"Laboratory",,"2013-02-01" +11,"Laboratory",,"2012-05-01" +11,"Laboratory",,"2012-04-01" +11,"Laboratory",,"2011-10-01" +11,"Laboratory",,"2011-05-01" +11,"Laboratory",,"2010-04-01" +11,"Laboratory",,"2010-03-01" +11,"Laboratory",,"2009-12-01" +11,"Laboratory",,"2009-08-01" +11,"Laboratory",,"2009-05-01" +11,"Laboratory",,"2008-10-01" +11,"Laboratory",,"2008-04-01" +11,"Laboratory",,"2008-02-01" +11,"Laboratory",,"2008-01-01" +11,"Laboratory",,"2006-05-01" +11,"Laboratory",,"2005-07-01" +11,"Laboratory",,"2005-06-01" +11,"Laboratory",,"2005-05-01" +11,"Laboratory",,"2004-12-01" +11,"Laboratory",,"2004-03-01" +11,"Laboratory",,"2004-02-01" +11,"Laboratory",,"2004-01-01" +11,"Laboratory",,"2003-07-01" +11,"Laboratory",,"2002-03-01" +11,"Laboratory",,"1990-04-01" +11,"Laboratory",,"1988-09-01" +11,"Laboratory",,"1986-07-01" +11,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2012-01-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2021-03-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2020-07-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-11-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-07-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-05-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-06-01" +11,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2013-04-01" +11,"Laboratory","CBC panel - Blood by Automated count","2020-07-01" +11,"Laboratory","Blood Culture, Routine", +11,"Laboratory","Basic metabolic panel - Blood","2008-09-01" +11,"History and physical note",,"1973-01-01" +11,"History and physical note",,"1972-02-01" +11,"History and physical note",,"1969-09-01" +11,"History and physical note",,"1969-05-01" +11,"History and physical note",,"1968-10-01" +11,"History and physical note",,"1968-01-01" +11,"History and physical note",,"1967-09-01" +11,"History and physical note",,"1967-06-01" +11,"History and physical note",,"1966-11-01" +11,"History and physical note",,"1963-10-01" +11,"History and physical note",,"1962-04-01" +11,"History and physical note",,"1954-11-01" +11,"History and physical note",,"1953-11-01" +11,"History and physical note","History and physical note","1973-01-01" +11,"History and physical note","History and physical note","1972-02-01" +11,"History and physical note","History and physical note","1969-09-01" +11,"History and physical note","History and physical note","1969-05-01" +11,"History and physical note","History and physical note","1968-10-01" +11,"History and physical note","History and physical note","1968-01-01" +11,"History and physical note","History and physical note","1967-09-01" +11,"History and physical note","History and physical note","1967-06-01" +11,"History and physical note","History and physical note","1966-11-01" +11,"History and physical note","History and physical note","1963-10-01" +11,"History and physical note","History and physical note","1962-04-01" +11,"History and physical note","History and physical note","1954-11-01" +11,"History and physical note","History and physical note","1953-11-01" +11,"History and physical note","Evaluation + Plan note","1973-01-01" +11,"History and physical note","Evaluation + Plan note","1972-02-01" +11,"History and physical note","Evaluation + Plan note","1969-09-01" +11,"History and physical note","Evaluation + Plan note","1969-05-01" +11,"History and physical note","Evaluation + Plan note","1968-10-01" +11,"History and physical note","Evaluation + Plan note","1968-01-01" +11,"History and physical note","Evaluation + Plan note","1967-09-01" +11,"History and physical note","Evaluation + Plan note","1967-06-01" +11,"History and physical note","Evaluation + Plan note","1966-11-01" +11,"History and physical note","Evaluation + Plan note","1963-10-01" +11,"History and physical note","Evaluation + Plan note","1962-04-01" +11,"History and physical note","Evaluation + Plan note","1954-11-01" +11,"History and physical note","Evaluation + Plan note","1953-11-01" +11,"Evaluation + Plan note",,"1973-01-01" +11,"Evaluation + Plan note",,"1972-02-01" +11,"Evaluation + Plan note",,"1969-09-01" +11,"Evaluation + Plan note",,"1969-05-01" +11,"Evaluation + Plan note",,"1968-10-01" +11,"Evaluation + Plan note",,"1968-01-01" +11,"Evaluation + Plan note",,"1967-09-01" +11,"Evaluation + Plan note",,"1967-06-01" +11,"Evaluation + Plan note",,"1966-11-01" +11,"Evaluation + Plan note",,"1963-10-01" +11,"Evaluation + Plan note",,"1962-04-01" +11,"Evaluation + Plan note",,"1954-11-01" +11,"Evaluation + Plan note",,"1953-11-01" +11,"Evaluation + Plan note","History and physical note","1973-01-01" +11,"Evaluation + Plan note","History and physical note","1972-02-01" +11,"Evaluation + Plan note","History and physical note","1969-09-01" +11,"Evaluation + Plan note","History and physical note","1969-05-01" +11,"Evaluation + Plan note","History and physical note","1968-10-01" +11,"Evaluation + Plan note","History and physical note","1968-01-01" +11,"Evaluation + Plan note","History and physical note","1967-09-01" +11,"Evaluation + Plan note","History and physical note","1967-06-01" +11,"Evaluation + Plan note","History and physical note","1966-11-01" +11,"Evaluation + Plan note","History and physical note","1963-10-01" +11,"Evaluation + Plan note","History and physical note","1962-04-01" +11,"Evaluation + Plan note","History and physical note","1954-11-01" +11,"Evaluation + Plan note","History and physical note","1953-11-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1973-01-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1972-02-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1969-09-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1969-05-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1968-10-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1968-01-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1967-09-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1967-06-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1966-11-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1963-10-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1962-04-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1954-11-01" +11,"Evaluation + Plan note","Evaluation + Plan note","1953-11-01" +10,,,"1970-09-01" +10,,,"1970-08-01" +10,,,"1970-05-01" +10,,,"1969-04-01" +10,,,"1968-06-01" +10,,,"1968-05-01" +10,,,"1966-12-01" +10,,,"1965-10-01" +10,,,"1964-06-01" +10,,,"1964-03-01" +10,,,"1962-06-01" +10,,,"1961-03-01" +10,,,"1960-03-01" +10,,,"1957-11-01" +10,,,"1956-09-01" +10,,,"1954-02-01" +10,,,"1953-02-01" +10,,,"1950-09-01" +10,,,"1944-08-01" +10,,"Urinalysis macro (dipstick) panel - Urine","2006-07-01" +10,,"Urinalysis macro (dipstick) panel - Urine","2004-04-01" +10,,"Urinalysis macro (dipstick) panel - Urine","2003-12-01" +10,,"Urinalysis macro (dipstick) panel - Urine","1990-04-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2022-07-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-05-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-03-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2016-06-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2014-11-01" +10,,"Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2013-07-01" +10,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2012-05-01" +10,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2011-11-01" +10,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2011-05-01" +10,,"PHQ-9 quick depression assessment panel [Reported.PHQ]","2022-07-01" +10,,"Morse Fall Scale panel","2014-02-01" +10,,"Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-04-01" +10,,"History and physical note","1970-09-01" +10,,"History and physical note","1970-08-01" +10,,"History and physical note","1970-05-01" +10,,"History and physical note","1969-04-01" +10,,"History and physical note","1968-06-01" +10,,"History and physical note","1968-05-01" +10,,"History and physical note","1966-12-01" +10,,"History and physical note","1965-10-01" +10,,"History and physical note","1964-06-01" +10,,"History and physical note","1964-03-01" +10,,"History and physical note","1962-06-01" +10,,"History and physical note","1961-03-01" +10,,"History and physical note","1960-03-01" +10,,"History and physical note","1957-11-01" +10,,"History and physical note","1956-09-01" +10,,"History and physical note","1954-02-01" +10,,"History and physical note","1953-02-01" +10,,"History and physical note","1950-09-01" +10,,"History and physical note","1944-08-01" +10,,"Hemoglobin and Hematocrit panel - Blood", +10,,"Evaluation + Plan note","1970-09-01" +10,,"Evaluation + Plan note","1970-08-01" +10,,"Evaluation + Plan note","1970-05-01" +10,,"Evaluation + Plan note","1969-04-01" +10,,"Evaluation + Plan note","1968-06-01" +10,,"Evaluation + Plan note","1968-05-01" +10,,"Evaluation + Plan note","1966-12-01" +10,,"Evaluation + Plan note","1965-10-01" +10,,"Evaluation + Plan note","1964-06-01" +10,,"Evaluation + Plan note","1964-03-01" +10,,"Evaluation + Plan note","1962-06-01" +10,,"Evaluation + Plan note","1961-03-01" +10,,"Evaluation + Plan note","1960-03-01" +10,,"Evaluation + Plan note","1957-11-01" +10,,"Evaluation + Plan note","1956-09-01" +10,,"Evaluation + Plan note","1954-02-01" +10,,"Evaluation + Plan note","1953-02-01" +10,,"Evaluation + Plan note","1950-09-01" +10,,"Evaluation + Plan note","1944-08-01" +10,,"Comprehensive metabolic 2000 panel - Serum or Plasma","2019-10-01" +10,,"CBC panel - Blood by Automated count","2021-11-01" +10,,"CBC panel - Blood by Automated count","2017-07-01" +10,,"Basic metabolic panel - Blood","2009-07-01" +10,,"Basic metabolic panel - Blood","2009-04-01" +10,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-11-01" +10,"cumulus__none",,"2012-01-01" +10,"cumulus__none",,"2010-01-01" +10,"cumulus__none",,"2007-07-01" +10,"cumulus__none",,"2007-01-01" +10,"cumulus__none",,"2000-03-01" +10,"cumulus__none",,"1993-03-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2022-07-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-05-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2017-03-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2016-06-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2014-11-01" +10,"cumulus__none","Patient Health Questionnaire-9: Modified for Teens [Reported.PHQ.Teen]","2013-07-01" +10,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2012-05-01" +10,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2011-11-01" +10,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]","2011-05-01" +10,"cumulus__none","PHQ-9 quick depression assessment panel [Reported.PHQ]","2022-07-01" +10,"cumulus__none","Morse Fall Scale panel","2014-02-01" +10,"cumulus__none","Humiliation, Afraid, Rape, and Kick questionnaire [HARK]","2017-04-01" +10,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]","2013-11-01" +10,"Laboratory",,"2010-07-01" +10,"Laboratory",,"2008-07-01" +10,"Laboratory",,"2008-05-01" +10,"Laboratory",,"2008-03-01" +10,"Laboratory",,"2007-12-01" +10,"Laboratory",,"2007-10-01" +10,"Laboratory",,"2007-04-01" +10,"Laboratory",,"2007-03-01" +10,"Laboratory",,"2007-02-01" +10,"Laboratory",,"2006-12-01" +10,"Laboratory",,"2006-11-01" +10,"Laboratory",,"2006-04-01" +10,"Laboratory",,"2006-01-01" +10,"Laboratory",,"2005-10-01" +10,"Laboratory",,"2005-08-01" +10,"Laboratory",,"2005-03-01" +10,"Laboratory",,"2004-10-01" +10,"Laboratory",,"2004-09-01" +10,"Laboratory",,"2004-07-01" +10,"Laboratory",,"2004-06-01" +10,"Laboratory",,"2003-06-01" +10,"Laboratory",,"2003-03-01" +10,"Laboratory",,"2003-01-01" +10,"Laboratory",,"2002-06-01" +10,"Laboratory",,"2000-03-01" +10,"Laboratory",,"1989-09-01" +10,"Laboratory",,"1988-03-01" +10,"Laboratory",,"1988-02-01" +10,"Laboratory",,"1986-08-01" +10,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2006-07-01" +10,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2004-04-01" +10,"Laboratory","Urinalysis macro (dipstick) panel - Urine","2003-12-01" +10,"Laboratory","Urinalysis macro (dipstick) panel - Urine","1990-04-01" +10,"Laboratory","Hemoglobin and Hematocrit panel - Blood", +10,"Laboratory","Comprehensive metabolic 2000 panel - Serum or Plasma","2019-10-01" +10,"Laboratory","CBC panel - Blood by Automated count","2021-11-01" +10,"Laboratory","CBC panel - Blood by Automated count","2017-07-01" +10,"Laboratory","Basic metabolic panel - Blood","2009-07-01" +10,"Laboratory","Basic metabolic panel - Blood","2009-04-01" +10,"History and physical note",,"1970-09-01" +10,"History and physical note",,"1970-08-01" +10,"History and physical note",,"1970-05-01" +10,"History and physical note",,"1969-04-01" +10,"History and physical note",,"1968-06-01" +10,"History and physical note",,"1968-05-01" +10,"History and physical note",,"1966-12-01" +10,"History and physical note",,"1965-10-01" +10,"History and physical note",,"1964-06-01" +10,"History and physical note",,"1964-03-01" +10,"History and physical note",,"1962-06-01" +10,"History and physical note",,"1961-03-01" +10,"History and physical note",,"1960-03-01" +10,"History and physical note",,"1957-11-01" +10,"History and physical note",,"1956-09-01" +10,"History and physical note",,"1954-02-01" +10,"History and physical note",,"1953-02-01" +10,"History and physical note",,"1950-09-01" +10,"History and physical note",,"1944-08-01" +10,"History and physical note","History and physical note","1970-09-01" +10,"History and physical note","History and physical note","1970-08-01" +10,"History and physical note","History and physical note","1970-05-01" +10,"History and physical note","History and physical note","1969-04-01" +10,"History and physical note","History and physical note","1968-06-01" +10,"History and physical note","History and physical note","1968-05-01" +10,"History and physical note","History and physical note","1966-12-01" +10,"History and physical note","History and physical note","1965-10-01" +10,"History and physical note","History and physical note","1964-06-01" +10,"History and physical note","History and physical note","1964-03-01" +10,"History and physical note","History and physical note","1962-06-01" +10,"History and physical note","History and physical note","1961-03-01" +10,"History and physical note","History and physical note","1960-03-01" +10,"History and physical note","History and physical note","1957-11-01" +10,"History and physical note","History and physical note","1956-09-01" +10,"History and physical note","History and physical note","1954-02-01" +10,"History and physical note","History and physical note","1953-02-01" +10,"History and physical note","History and physical note","1950-09-01" +10,"History and physical note","History and physical note","1944-08-01" +10,"History and physical note","Evaluation + Plan note","1970-09-01" +10,"History and physical note","Evaluation + Plan note","1970-08-01" +10,"History and physical note","Evaluation + Plan note","1970-05-01" +10,"History and physical note","Evaluation + Plan note","1969-04-01" +10,"History and physical note","Evaluation + Plan note","1968-06-01" +10,"History and physical note","Evaluation + Plan note","1968-05-01" +10,"History and physical note","Evaluation + Plan note","1966-12-01" +10,"History and physical note","Evaluation + Plan note","1965-10-01" +10,"History and physical note","Evaluation + Plan note","1964-06-01" +10,"History and physical note","Evaluation + Plan note","1964-03-01" +10,"History and physical note","Evaluation + Plan note","1962-06-01" +10,"History and physical note","Evaluation + Plan note","1961-03-01" +10,"History and physical note","Evaluation + Plan note","1960-03-01" +10,"History and physical note","Evaluation + Plan note","1957-11-01" +10,"History and physical note","Evaluation + Plan note","1956-09-01" +10,"History and physical note","Evaluation + Plan note","1954-02-01" +10,"History and physical note","Evaluation + Plan note","1953-02-01" +10,"History and physical note","Evaluation + Plan note","1950-09-01" +10,"History and physical note","Evaluation + Plan note","1944-08-01" +10,"Evaluation + Plan note",,"1970-09-01" +10,"Evaluation + Plan note",,"1970-08-01" +10,"Evaluation + Plan note",,"1970-05-01" +10,"Evaluation + Plan note",,"1969-04-01" +10,"Evaluation + Plan note",,"1968-06-01" +10,"Evaluation + Plan note",,"1968-05-01" +10,"Evaluation + Plan note",,"1966-12-01" +10,"Evaluation + Plan note",,"1965-10-01" +10,"Evaluation + Plan note",,"1964-06-01" +10,"Evaluation + Plan note",,"1964-03-01" +10,"Evaluation + Plan note",,"1962-06-01" +10,"Evaluation + Plan note",,"1961-03-01" +10,"Evaluation + Plan note",,"1960-03-01" +10,"Evaluation + Plan note",,"1957-11-01" +10,"Evaluation + Plan note",,"1956-09-01" +10,"Evaluation + Plan note",,"1954-02-01" +10,"Evaluation + Plan note",,"1953-02-01" +10,"Evaluation + Plan note",,"1950-09-01" +10,"Evaluation + Plan note",,"1944-08-01" +10,"Evaluation + Plan note","History and physical note","1970-09-01" +10,"Evaluation + Plan note","History and physical note","1970-08-01" +10,"Evaluation + Plan note","History and physical note","1970-05-01" +10,"Evaluation + Plan note","History and physical note","1969-04-01" +10,"Evaluation + Plan note","History and physical note","1968-06-01" +10,"Evaluation + Plan note","History and physical note","1968-05-01" +10,"Evaluation + Plan note","History and physical note","1966-12-01" +10,"Evaluation + Plan note","History and physical note","1965-10-01" +10,"Evaluation + Plan note","History and physical note","1964-06-01" +10,"Evaluation + Plan note","History and physical note","1964-03-01" +10,"Evaluation + Plan note","History and physical note","1962-06-01" +10,"Evaluation + Plan note","History and physical note","1961-03-01" +10,"Evaluation + Plan note","History and physical note","1960-03-01" +10,"Evaluation + Plan note","History and physical note","1957-11-01" +10,"Evaluation + Plan note","History and physical note","1956-09-01" +10,"Evaluation + Plan note","History and physical note","1954-02-01" +10,"Evaluation + Plan note","History and physical note","1953-02-01" +10,"Evaluation + Plan note","History and physical note","1950-09-01" +10,"Evaluation + Plan note","History and physical note","1944-08-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1970-09-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1970-08-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1970-05-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1969-04-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1968-06-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1968-05-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1966-12-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1965-10-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1964-06-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1964-03-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1962-06-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1961-03-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1960-03-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1957-11-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1956-09-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1954-02-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1953-02-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1950-09-01" +10,"Evaluation + Plan note","Evaluation + Plan note","1944-08-01" diff --git a/tests/regression/reference/core__count_diagnosticreport_month.cube.parquet b/tests/regression/reference/core__count_diagnosticreport_month.cube.parquet new file mode 100644 index 0000000000000000000000000000000000000000..718b51ec59acc38434b6ebc761a3c1692bc1cf72 GIT binary patch literal 19856 zcmdUXdt6gjzVBMe-bps(u@jPzK!Q6E5K^EaKnw_&%^O7w2nYyDcqmwe@KUrs!b3!* z7N`$uwFMt7I!+HdjsU|66ItyZ3th)>^;yTfg;NzqR(>v9UQ33PLg9t(fu5R6OJ;kPM+IPeBWTNK9Pil6(Rk z5eZO{NI*Q~P%88`M8*MUAmJ*e7}O7u{ebO&wScDpEMNg367U2d0N@AE0yF?$fEPdv z5CJ>@9KcW1O9XlZf&Tz}5BLu74d4O51^9QseZZdqUjyy|z5-6}A_}8FQNZjSNcj@* z1>iQ|bHFXYG~kbb&j6nSZUR05d<^&qa0Bom-~+(>fa`$w09OH1fGdD^0q+1V1Ke_W z3-Bgj5^xc40Wbj=1B?RR0Q@W9cYt$%*8m3q&jEG<)&uGQZn3QaR0CE6Rskvj6@YR; z8Nd!G1*`NH#Y%SQcV7$e)mf(qZ~={gVrg z`iKIPK2jeQ6di0%pJ%qnVxnRV^DS|7ynlju0cmAfmg1m9689Jq3zE{4gHj4o zii(QLN?E0T6?gUODiX{6tGLzGYe=kDuF*fGtg)=+)>1gVF1^m|h^x0Y_%~)X#WlyR zTD~cL^B%k>)3Fn8yNEl-@b<&F>oDGt zv-5X&S8?}I{LIUo-6!$0cW}=m+%zekb?9G=AY@ ze6W*qXgBA@6Zoai@IWVLu%B~y7$2GD9PQ^EYva6po%6~=&d@aHcn9Z1ALmymIVUf3 zetj3e`WEM3+PK5_xu-g~r_T|;Ilw(L!};w8oU`9>Ui+GJZif4MP`5&(Ak@)_N2^ub z^4cZ^M+pj`d{?LJPy`(o1_}O8bVwZv78xlx2re|-5Q6wgtT=%)6@pm)rQ9Ea(fL^Th~;nguIk>_L^pUQ*~V}^8{n7vDcD5 zRuQC^H?M83X>MG(vbL_a5?Y&)EAB}DQS;5G=LL)YiAtsXpDLSe25LL+5vKueV_Ylq zE<8JD!IlTNFJV6MXhur)ySR^3*mLH=ZT>Wa`7;<|QrGQ2@gL8b*{VWD%pH+q4T>WL zSg7GTm6+>PVXP6zkRC@`9xE}8e6SoMeCV9R&^ep`jfneBd1yFcd6$N&Zio3Ro_!955N3N1nFE?gmugCM3eEm(z8 zu>q~ZJ}3cT!2HM9FdPmEGKd&Z8IFZ81I?OH5%zUou3w2<;1`T7p0!xggs0ZUBv<3HL z^bK^p4U_aHT!mi5b2UdXP6sB6aJ0M@^<&(Gz2Z`#;vS5qFm|9Jj91}|xNeLlG2VyK zXBhWk^e)y2!6I$M(L@)#yj{hXtTXY=$m#sOLpTk9hykjRwl_n=|FU=wM z7GXXWMdY0zxlwt?zg2zrQ+j}BEFYmaFBf~PO1*u5|nT`EO3iC91 zav)S;l{#HijpK;%KJo%oRpWLztaWgO{GWGMQH^rja;f)cmufi_Qr z4IHk7qy^HS7T`Fm#3cddPW&jb21ADDPZF#M=0ZIxtmnwM1{@*y$tIVwDka3ZP-4UZ zS3N{%F4vZ4z-CC5nBk`6a;NA3q-VZR`X zt0K1ul4q|uTqRIg;c9^^O+GD%<@$hpbGhN<#^4~X1t!xfj)5CW+JY_IL{x)oIH6oK zP^h?8DCxruCI!VBZY;_I$;i2xv-cow7HYr^oS?@BjY9Z~;ib#%O_i&`9ImXWZgkYx zH~eCSFM2Ca%Y*i*f-WmH{|5%`zcs^cK8kLyOhxLf8EzF#{$hFEM)-fz^fK7TwN?-2 zGAS{MaoB4sYnU)5v8JxBf+^d;u+2?%YoQwzOnF^%ZPOD#msVL@*r_xc^01cH`@MLN8+UlC>*##n$VOKTSt1Cj89J`}3l>CHQR9*fQ zQ}3=uM=fz#m#4Eii%No^rR0X@)eKwK+*rvhEpMo-tgWtH&E!@#HibnPndQms(p(6X zSb>tQDX*)lt6}nhG+BCy$*2Ght5;Q*lUv9bJ@h}RuC}pxtphvKndNL=az<`gQb`yT z%&c})SA@k^tgnWyR6rNXo0!bxOenFmvY~k`Q`exY%WYh1*8**#9Tq)iZDkWIi#65d zqWNJhLbpJ4Qeh16kH1K+sB|<`Ha5DKL3?8(gx2b8A-_V)BTVve5KBpv?ow#oTA-<_ ztZl4bSE(%*nv6!HC_3>u1dBq$njxGU78A=XuB!m%VK`RRH9&`f*t{8`a4ff#xL4c7 zbq&zZRC`Sg$i-e$Nv&%Mf#ke~>RNjZtjvwfT6=jz9TQwp?PzQQ>4s2&0_YOf6P2M0 z^|*Ev!Rk>G7rr!{X>5W8-QED|P}vYR8d}NJtzs%F?I4XXoFb288Yy`}Yp#G(7 z&eE`?y8JK`las|Vw%Qsdr?Sz(WU=fMj)uCj$|4}bGC_5Ny)s|!fI8|{9!Q8A-AEeW?DqwbILrs{RoO&fH#1yyww_%h0iS*a=q!PZnZg>8yhM);uYr_tiP zrvsOPw$31py(ziU-q6IXvRBtMgPJxq*vp@?$C7_UQEU*A%aB5X31iu z?x#7@? z8<~*zg^3KiTJfAd&*6Z%2fF0Qx`~M#yZv!g_1d+~wRNCY_6;f+z6VI2Us+q%+(^9< z8Vhx0Rjy|W>l&UKlxv`)Y-3|x`Hs6nCbhXXMWq2olWL&o^BsZfTYUq=25*v-u&lba zLU$N!n!{esO32{U+g!^WsL5?1nB?kJt125>|47(t6k&le_VXl_%p^6}G=cbF=GHYg zRo7O|P4Uq{=W6PpDsppidL=Q{LjZ?N??7a{W1KP&N5XV-pm_KmflV7{97 z@CE$B+AWV}Amy2@aJzl!*_YOS@=4s4Z{sA7Z_RnU;l=GTynK4AYXPKOxxL}Vm;MB) zx4{2=boK{u1+RSTx_#*nf8O8+2{ll7&SSnD`%Z72*}iq=(zkJsB<}d)ns41%3%1PG zTlWdHA9v-G$GH6zzPL`{>*tE&4U0y2G~!BV#X*Xvn4Z}>4L+;WfXT=B=i*!!jXlF3jW2KoV@mjF0YpVJTNgZ!|%=lqy<^gxc^q77PO(cQGK8B*3N5 zRUA>ds{y~CB#_LMjtD1K#0$A2aO>0fp>r7A>Nud~j&!Mgylp!Tv zDE*a@JG15&=A0Wbo}>ukFcwjAA82(5Yd4?*MT<~{CNTL2d`Uo~gX%J9xkD`y%E2vG z)Ir{5On!oI3*_j!+6P)X8U8wgL!8$M*G&;cj9gYP6>?oem^zDO*yi4dkOa+jzR1DU zh~5X>dM5`i$-txv-BhpF=+Su&)}wTi(5TRPjJc14$X>jcQGp=%k0g(RMPl7fc_(Dd zs1(v*AMkoe*8&wdVc8yfACwOw>`)rw$OWR2;O zsuVJ0)x{7POPgsc@JlPQDHuM4bvi$3mh>>D!u^ms4$e?Q-Umi?OG5(47|K_qKvs&P zX=pbB+-R02Z~%i*5=|2JD z0RoTupnzb7IGwtj7>9}uBeDxplkiF*!S?8N0rDQb40Hy=0jeV12%|z{uZ%=Dml@=C zT!Y0SjOeoHdvX~XA^kKNeb9k`q(1x!`!QuCeUV&k#Z^MKPft-YVy~Vm$6|62Qv_^T z8dN=cpil0@y1+KFA+VA>jJWtP>Q#&&UveiS1fftYox~wqVQ_dMPva6KBp(T(P%gPm zE==mvXOLJ8!!95xa&5mHaX&B$$7w=|`5BOxNKZhtG!ViRLUP!0`v4SF4>4k-ia+|Bjh0UpmH7(kQ!(oKg2rH zr~xSg0k=;vwJ;88b|*1PM2#CsGosl-7071XXc1#`C@`;tVOL`B-ASTBTrLeGG7@pA zV0_w=L53Nn2SXy|?6hU~ZMp7kA@Urj!&f0jpOGVMzirw59Da$;;6N3(lA~0ZyZg4~ zT@vv33lIRNLiqF$fRhL zY8OB|SRXhq&`vl>{1|^H(7zdpWd!#Qsh77iG$oSYG#rxxGY+-l1z1Om+ZaI(o&&at zi=Pgr30OB$VSK)kV+m7gQHn`H8s8`6ZD>vd8yfLo|xc&w)n1(6K-hgQ=A~O2O z?dV(FLF~SrGN1S+PV5xoVAi`@foPov>xpCZrE#>xD=k8J@fMDxcegW>-{MH(3YUDE zYDLpnMF`rchU|}3-vAjoZVdeWY>y>qF0KsRk7Ig2N4v>a$?tJ9LVpl$`?;|yYaimgJUCyf7ge2vJK9}Bv$nfxiV(+=J8Ov#qF+f|CW zF;0wI|0o2T;Ty6*;S7-lv!yB^xzeb)l#QM8PO$m)8qyFrf-&oz;6ccp3@sp6;z*n= zPr)!gqL3aHj8CUsFs4&dxulNB7LrABVA1m>27i-hqb{*uU>G17CbLrhK%`{jWvv+k z8IMaYq2p*icQIZfSJ6D0PX>O01iDzkw@BIR(1<|IvgLAeaHm|!Bj5HH;7=^|noC#Z zDpCo=6!Z}*1CKU~VHMf7OX!*PUR21cu%NJVfvWQqzDCRWHLIiTY2zQ{< z*cUG%!xWTY@q2IxN4LvqGGOtf?kT+r>Th#_Tc^SMhkttIAv=I2`Qjv^`FB2(A8Bc}p%R@nbuY8O5A4--- z(IT~=jby_%;xZ#l01)cM)1kYdJ*rbNsA~apW# z3w2U{$PW5dp9~edP}`fL-UM8Vu^f!1pGac51#Va1^K_@(-SBl>sb>UZ^%|P*C*rbQ zY=cV4mx7olvA^yB8Hn?!p^(&+%YvxI@3C)aNCeBiKPK@YIwdM%7>?(adQIAUQMx7M z>jKajYAN-pK*`}&t3%~L=MSJoWI9zGs270$hiw{rsN7S=@tkIFgcJq_=&BGyPPiQ= z4oMA$2=s6?g;bakanmacX$HJWF7>=z=IPJjULyMmA5rT7+7_4eOKAxU|N~F;pqQcNp`xC;8^_pwAPZ+B7Y>DZTZ!TT0j)X0{K;K>|j=5h;me8F>_Of(kuCx#Dqp@q0)GxfHcS zWgjypzZdl`IZPz>OVc&(m5&6|e`|zEqC2k1gAlij9c2g=rgkyH+4R*2~cNH8hH*n-S()tD^^Srl++iXwnQ zor*2$GKkDG8Q?iUxEK);Mt6EHPSskF$#f0j{b~zg3=1EEg)~fSAtL6PG>9;Tg&%+x zp_CvhEJ8bh%;E0T2*^V*rd)&~!xQ0oKzt&ygc}gnXwL#ikY`R1BW*V^FDx8rqM$uI zp%aDOLnbJW9fdqx7BfObL_)iSB@EJlF?T|$eguovxw?(!M@TCMZebtMt<|9D z@EVN8+DCY0^gXOmi}8K67}#`kY%;|{dqa2&^Z~?UK(ZreK0?g)|reDE0^(e3Qx@I>A zZOP}FQ~6N(W0IAFn$1f9o+l8#ot+7~Zzb*XwB3hlg%L3^^TG}M)_$$Sl<$F)w5g^^ zp3b(JHhu1a9VM@tb`sDUjIr5NgQ1{5hwY2MX?l@|a}W8ryEg$`HMmI!piP(*R|@^j z0@Co15@K zd2*^-df!cFF-;?bKSgR3_sK_j4@ogu8Fth}0GW1+IZ9x%h}n+Kp~$GtrG})_Awk+l zpMFCc!lBTMqQHC6`$9HK9d70fuTqpa;^u5`5;(x4TUh^QK7i^&$pbhnFo+UM4IwK` zT{zr=HoK@t*+rE2jVu^G6WJ}*gdC0Ns^(}9AoGTcRIaw$yaKm=1*$F;Q`fWyKJ6hL zqYCLGkZ~6_tPspfBa};6Eb0T)wTRQm#2UlzVXYy=20Cj2JMacbC4Ay%+hlM`GvpvB zi!LC>Lu;Xi@SL@@!66O_l3D`y0hQrh0qFoC8QubaUz!@|p%9ag+$PZS(Miad!G@cX zYPv*jC>E04;brJhsatxK*nENuZAa*$6bFv$wG#%X2Q?H^!)BJeg+0SIQZOu^5-5UA zP`D*zF@;KX`?O_;&V+buer&KwQU+iO8u}=58Z3jw@T2FpP2n6a45SAClwzdHVxn4W zwbO>X!jw$l1<#F9ecD5n;W=y{H64HY&=|P|l3^4`P52q2^$%*tUk!mCCFkv-g>o#$ z^C=L7c@@vlL02D)_xS6hz?-vnEQf%$LOoLYwAWg5)Mp`bR*WLB7;KiIiYB{ZKw=D4 zREUk;OI_2Q)}A#*3Gkzsjkw!w(87y2SR4}t=C;i6*rSpI%Zy=#goKGVyF7?DKsFeF zE%8Ax2FUX1s*EC7(zIg3b&qZRTFqdm+A#QijE61}>}l)>j#&Zif94t31v41TrUPMv z+JUdRlTBX(qb3(9uDY9j2rHrZ`C#k-eTu(lNcKb#fr;^5v!++KenUR20=lCxKW_?J zYi}LO=+KR5yFsAPFHLw5Hi`LQRPO6W)ZMxnZLVRr2aH)z_!eZ!q@WG3iPPFLvme)F z;OlJhL53UN)hD#wFw5})n8+TUrMg=`q6awYz&8wW$UTER-?2nV8eMeep*P(+bd{dFFK-b0Ri_()Ll*(B|ES zdy>5tTbASq1Y>A zV__!Vq7|DCf?^pq$)L*s1+o-+< zO`efKDYJ=@>uO4h3~jz4_p}qEw+b^&yFGL(@SKo$p*@S+%8Oz3xE6mCMZwAn9n;l- z_8(Nan>6&fTQ(c|)udS4tvf2+0*;J0b`C6~XYEglCQN%sdn}04raXREd%!@?$w<&n zgZI@WYBk5$fZHr!**rzyq?nDS4`9iNuQAJg8Z*N) zaXi>{FjM3dcvIJ*x|4E{kK1C}4`vUz`vOx8M;G#-K{kO6%m7CNJg+ULZls;oMFC|H zZZ)eNP*O=k8}4<~ZD!5=g!wGrv`+x-41vtpbur)$!f?T1p4oJngkHAsOdS-AeXhx% zfV4O{6n&L~%L)lx)_B3?YZ+YbBTW=|#TM|C;Ze%X*RbOL=6`yYasUT=fV&v^vp22s zh=}}T-S2KTdX;5c>Ur6~%|_W#gH!kIE`z#hNL zg9~h(AK&F-l>^QWxQ|VM&m?exbNa^zp^nG!&dcL|LL^hc%O>RG#|$QOAA3URuM9M> z1~OX!_n=DbZ{$Aifu{?PZ2+fCM8V4)CGchn=~_OGv4;%7xdf7N;D`&!;Iy7ZG9Hrg zkqq9dqmax4$vlw^&MrhqCPp#|lEGn^6v<>r=VddF5?-0J7h5Z-u$8i;yugM@Wv;cA zjFljvcd=tsMAD^B%u`V$-NW+K6%=V{<@q`WMtPd5Va)fb8CfVn^c2h2Hc@0;D}Ro2 zdX&$!xUj%)6KYG9AS2x-p#4!sKnI;D(2*qFZ5$H>z`e)Dp#l@(37N%Dj?nGGu=6NMXgcHK2qPw^#ypJ^OwvX*q9dn_T#>s5Te~Rw z2GpRMH{CNXin*BpRkVxePY-k5xvr^p$pWa=iliNMEYfv|t%5-=op=`|N>I8i36&(v zrGzwvV3VaRot;cWGGm{RrmN~Zq-n8GP(L^!%VbUwUg@Euglv(q75YU74|d2FlB7K9 zYO-vx9>^@WCcJEx2ZTH;4sY{XVgmN-gwo@Pe|q30P-tUGOe#d9clUCA3r3p}VN6 z=+N<0u(eaYdcY2${(7FzDrnPk zbnv22_0XwQpEW0YJAIx4HW^tBlCC{>wbR!vuLnF$-3UliSU(|6gYlo#ZPzrw_(xpQ zG+w62V7``aLR*_}WN+8H$?Gp^*WaW_*H{{%&KzNphlWO2+T`T>we&bSel63j5ULp& z<;Ipyb&wmr=uPv~!^ICm+x?_>2e)H>6P-l(MfJA&ZG@=bMio2mx9RKAOMaUK!{Y+t zi(&qpr(LK1e!))8=7(3)NO||LQ%I>?NpsxMIh$v0ZJ#6DGu=j~T_3i3rn#eAW^Sd? zMyG?r$sQ=35PD6x_{>)H4WEf-9I5gcAwnXh@Na35f&J3k#y#t9OtmWl3I9o^!$Eg3 z?bsuEPIoK8k24OpD_aGobf!%x6RAa#;+#oh8=WK2CB#YFxL&y~#PgLWrt3P?WPz%o zOSc^^yx8l5q?As-bwQ~U)VGmx1=%9--$6Um{k!xWRwBEMcvwEejCf^C_8|WqOrJnO zPIdX?;KS)28N|S-I{eIFm;cV-!(INnjMpapyQ5AE0-m`!WmS302ggL_E_*6%2pvlg z*roPEp_HViE8y9R>B)fIabxZB75&mn9_n)}p)y*&febZSW0k$h?Mdcj=>2S`QoJR5 zq&z{xL__E#K!Gw7hDwNsT>(VE1~m6yI5NXeOk1}fp8!sX9Nv)$=Kk-rBh>K zU%k;vEVa-(gCR{pIupmV4Z)bCs*gHTlt+4U-V%6pCoT+ukcT(fJuu>d<*MMLdrTf7 z$3$u@$t-&-Wa#MOw+tsk9nO$f2Ksgyel@I+hi)33;PB&y0Nct`(jq zPL;AEiC%x?vgvZv?aO$LNNpX(ZwCKH82OInxo*?j#`n4-*GW**6|2`XQSaH7J`??+ z%4yXG9&`z#uBJzdqTerQ6!EowbT>VsX`%w+Mn(lVj=MPOT4vJX=nsm&RhvTJiJVFf zcqi(5ZuvXW+PM5M)FLu}RP`ItyiZ%c6I%Mi6+!4 z5%u?8bp*U?`C?Cb zmIY2yI~pXY^k92d?7frY?}}stx=vq1?y0euyGM__8~e3LE#J+VKUF%a_Ood{zP7fL ze;RmhckI6nH;QAw8v2cRewhTJt>hf$&*#1sOY+a$ewXyfrJ_rFur#iKO%$mrtjY85 zpMP)n{C^ku!8ZdESKNr#vvJ=}EqylrFVg`RwCP9+MX zznDtm##X?$5Xm-{r|qyMdW22blEm>*2}KB5H?pXSmG>rlW#{&$c>nekFIk$AoSmX9 z`2xJ+DU=Q8&+7g>YpdkRp{a{LS*5T-C~VW?o(3xvlIK-iO`%it(iBBulQdZrhY0CB zTx1SFmQ;218EKk!!$WEM)&h$$oJIs^j|o=z_&DU0FK!uSedm_ma-zV8E`)NTZjt=8 z2Tj4q=w;v2o9bJCy*F)6YgD)m^{G+6ye~bVH@7ci?%Ak zdf%caN9E6DX5AR%$<-2zoEb>+3|C$4q`ilXom{oL%XbfWM_$5P9ojWk7IR|HOt(qb z3hG-u$}PjJniWKh((15_9%wT1YVLE3=iS=#Tvlk;2%(L?oV;|g`O}W2S+Ttg%YQ;| z^jaMKQIl6z%vT*r+@-eGHeo0Z*67oxMm?y9PLW)l3bnX0=Rdgq+>!-YvB#Dq&69Jb zH?NLn#eMh1drPcj;B{NF;u!XM^6QDEOA`J{sBHrJ#R4*7Nd{edC za&s1jUC3RU^}yIB@pb6hv(*7LtDKM**F8PXE1tBrp;gY(>)Gjn$FApOMt>Q;2x(J8 z)y?vpjF8{TmoAQ}gsC#LgjMX#U7DS@H*cAJ@81078;otZ(%Cz@G&>_&k(XE4tjI5{ z{%xLUew+fv+ZLm1^(;I0fRtra*v7?v-KAD_sYM}=4MQm2T!HROkSnMD{k_Xpwkq}& zl=og3=MW6dT~@+=`TnxfZGj&YRItM%xbzD;NtWbzUy-|FGnrpd_Do8?%6rokNqA~d zsyIR)K}bAlr&VY#cCp^Y&E#H%&6u~$w&6QPfqh4`vaonejWR2rZ&nsnAOEd#xgwY$ z`Kv|-2}&!UiW(X5vi5^R%FiBEozDwtDx^#TrylU`8TyV!9KzDp-c^MZ9_sF0c3x4dptvAi)fTkn;dfB4S3wDr?zf}CIBO!TOwA8ezPRZh&&Xhuhio8GVd zu%zY7V;`>A^xc;qu5^;-6pvbYYqF;CYTo{m^|$u!U-9&V_xG>dij@Vtb;Ye0RH1uD zN97^svI$vzg`?d|{&f%b2sy`2cn1{>V4lF?=+G`Jjo^7!UQSt7vhLGu%T{ds^Mz$A zxBQhXDE-GusXXFFacUb%{XIhO>|TUidHtpB()@n=_G&Os_^xfcGF)X(q7!qaX`IIE z%#G3x#i|>2UQPChk4<1!*|(|J6?ha++O53o%k~i^c@l5q#YfRjadXwJHmRA=B`fOn zwj@!2$Rw>GC^N}|Tj5%v+t**VD}sl4@X5o3`pNSVqx|AwDJ$*@eECLM_bpeuBDdH+ zF3qfHEhyW%Gwfo&&!Qe9hs$xcj!W`w_1i>g#$J+8p;D4wecpAEnBy2tC1Qq75mbPY zK`JVZsx)>MltD>V*$#NhS01iLt_>gbmp{uYpRaf>JO3l@f*M;QKT?C+ePV(~+u_Bh zsWD$=)SVmUJt;vSRqV+Nx~~;bWtjOOz(gHO>ocGLB1)L%r>? zxEVBp!_M2W*Hc#3TE07;S6I=vIJL0yAIe7GxgpKdwh@KpIbmp^aGiS9^VMh7s}F7X zUR{-NeX7H|+IXtHa=(4w^Q&H{|KOw51D`UT)S?1Kuq$IT?_+IE4||E@pEz z%{UDL$Q;~Z_7N`~sK2C2?=oHz1x+Dq)!_~11N`+JK?hbJd1e|Td@%cx@A7jD52F^x zB>^#QBz@L*w{{2`ZT^DOIt?^U*e>*mVr%|B56%HX~OYYK*q6O<_Z zYO;K--da@s@}bV6H77E9FKUkNUG;JG(6N_`a9qLFF>z6i3p&)#r1&(Jj*iiDqnH%0 z>@&Sqcdo)u!75e~TaSv;^gh+co?qv)=J@ecX{ACx{Hs$R9C+$qMwKsUbBnKDlodAJ z8Wj*#r!EMqozk&2Cx3hAVC@QbI)aSd#?nTBH}f z{iooYk*FIiY!^adY4z*2I+e>W_wZEOFy`dNqNiScgSWg!x(IzDtemSYVDMh3`OVe*7uLRZYu_hiijzr`iG?Fh&bpTDZNl(Lv+vs9ezeZF_Vv+Gj{5XF zsms@%{j_s=EvL#oKT&I{$}G6WldjxkBYm~!5Z|*xFf~f1m{U=(&rPrk)&Xg!D6#bm z;hfyjPDP`7^I;EEQ2VbBK6s(-58DP3NsempliKs&-T9=hGFa-7sfsGy?j1tZCzF+6 z>I8;d#wnG`QHLl__0?J5x;K9KUb+Z;V^@N&W0abwslNd47B;*Y^4dY+6Y}9suO$bw z(oX{v_~R!on%$-_x z@r#jdWXKovs5o2bYK0Ip?m?b}6NS~+vlDs2{k@5T#LVF_ihejfE?Jz(lEN5=9lLob zuD__=Ufl3j7{A!DbxgGEVErZC{(}u~m=PwM%t;wOuBJVDZojf?sH){^EAO177*`*`goZS(tu z>$U4Xs(wwoKFdgxGE=d1yKHf??UFR%x^)BxSw^k$^vS7YqFIAmMX5L-_S??p^lc28qhWRoIEaHVyY=E9QCz!|Yg+*_tRW znCwYe|Ji2#ik8oxNn5eu&he{pL!9dhxvZ2sVH~dB0a%;ytzYSkLZyIpBb*{|yejC3! z{+i#@e}4Thew!Y=nbyhK>Nr<_$-BIQ9TUV}kKhXaG`Ro8jsJG)!xx|a_fhYcHvN}q zLa8&6UN6686U5Vf;E3KsK+pEi7+WePW`(N7f9}hlc)!{>s6qD1F#r#KQ!qvzb4rB1{@W4kC!YJ!m9jP(NV z$(s6P=@Y`MBoW`^bcz>O+1qL6WPLlV$5V;wNMUxT=bGVxabd7yWQ;1SbvvhBfBoSv zbDY>ikir$FV?tVBLECuw2OnJYo-;i4($=4_YQQN9Xu09UIZdS#(x|(oDS}0o0W7gx zMf9X{jt@^40Cpgg=r;yTBb!R z#xdfxqIh&vTAJ>>NEUbZ5+ZTe@I~iVLRmH4%9RxiwDLbkBfKZip^G?1Gc_u-4LMU} zPfd+F<+87xsq)k__EC{aoi;g8kG;$FY&+NgWGff>o}cEZgz36baaFQC*;kqFu!{Lj zMy}jY+B@OXBup=D<@t%8A)JJ|kr1b=)vg|&9Cj|WI>x!y zCc4A7zM#j71wlj8Z9@P4fi_Q5!MG$Wvo}={b<)wslT_7{>V}iH5rId|bfRjNAOfox z;nX%B?E*iPfSsF&zUe}=mbjIwQR;10(SkF^6ra2)FeL%O!>yk7e%%C7>NHxtjS~YM zv-Q~!qV|Qu8&_SWZ64v1qJIH{7CXaqNEcdk+Y~>7+gf=vqSd#&z{P6FX*e)m=EPht zae~0!Av5CuDs1}3bcZ~D#z|E5)0adFjlEUsn6#!!^7l+%@Lhhx3UBI7!CE_iPwz#d zw%d-y3Y&ve8I2E|u=J&Ymuz_eHQ%(2N|h?SU07iuyUCTscc(N=XTobhSZu6m!^N&9xcErPNx ze?Ld6Duk}bV6k=E1z8W_a5Aokwo+bSSjQc z#u;6gZs!nWEd-0ZE1<97@Q%5M`wx3rdKfEOdfk4>6E=2f;)Ok@!21|xJH6ufFrDh; zsR;iafd^XrcZTdvFWV9HVprMDe3X4j8QC$wkyo^gB#BgyoNcnXxke6W#kncii&?DO z#Y@lkqzYD+>Ns9x#Vtat7tkZ}<{J+ZeG_kj8&_eunnacLvxIiGDr%AbuJM9rb%%>o z`s?12FX}S#eJk=;BK@T<{l2QtcLcv|NqhlGKSZA=2A~@!&iU^O``wIxcf?zkfM=pV zZVA{ObFZsYnRnh(Jn==nFcd=%r{wk@Z z#eL%b#pmrw9!V_&7<1CEj(PbeXLtHC6TKb6Cz>$HDeJfLe2P>N?No(p`BuM?2Pv|W zsaB^dsArTQ^xY#?ueuvOW3*qD)roS>xF&endv5Ur^?Kd7M~QXt^PQn*?|#0^cro~P zchm<}x1X`x89K7_iPJX@?|O1fb)-A;TEUTL=6&9OWVhk)9}pUPIS&oZ|K`S#XBTkP zM|+ZFg-3hkXK0ugBXE}4G&CIWZ2XTi0X?iojJ`L;=XJN;T2TmJLIHfI=D7v8rY*ZS{}4(*Pmor&+PN3NMS+6U?Q1&evt5N9KJOnS$FdkPn!^B zb;>ney{Yv2?g&27++lB5r4aAT@*KJ};S(pXZd0zAJVmI}a!kmzcZ0q!!|=NPxy7+R==WqV zj0xPESF|B;-#nLfRJ^>{o+@x;x=8Pa($)!&r;Mdec+pups?I$RZc^gV1FZC~c+laS z5{y$MiURlkxS#EynB38AnuwFbojCo|&=_iMITwXAO z_4goq!E@D7ro(6JoKjt)GVRr0A$Vt`=mt6s_Mvdi>w)`AHvSOUZ{Hac^t^kQqB4&> zX!T$p7RW+x+)7bZR~-LxU-7!HzT98h8FHt;VwGF=sVm^{))F@`;ATjIvHSmA-rEPLX5NK%ypNa+vT0k2uw58SI+~QPto(5=&eIi`KQF z*j{v6f-3e^-+8|3<>Pk_)SUh5&I^u>;FqN6M^e3O_L$WuHW;~_L-cWu$VhKwZ40% zQ+!M1y%VB%FfhCY1HC+ra(IOBeQHm&sTakzpnDQjv(<4icoSH>xf4HgGO}-)ROX|>6kh6xtJT943eE@FWamrgOx|)5bru)tMIN-Zc^7PA zwsZTdPVW$Bg&|A*TQPGFHGjNe?u#4ly*~G)S;wPk^N&Bw9ccB44IbR)voZMa4!@}h zUU&yRPFXt~qnZRimHn-50y6T z3|b6Jogm^MN)~uuwr3dMhI3%^tD8=Xqi;_}Ua|9&r#mU8Yh(fyT2G}Y%7Y`4U)u7R zsv2k$FRU8u^xIi=c=M0ueJG&?C4c4sj?%nQ*yNA2Y_wF9)Ni}?RbWi@8Y9zZ3npZKU8x7i8 zaGDD7=&0YxO|rI5&e_s&EyMJ@fa4i>W1?Yq@J;4OR@|p_t}XffJx6lvzyDI|B${mx zIO?YK;T?x}nLZvm@@%5d@uSb>6dgadGyJWpBfAqks*m<%Ev!Da54ZwHQo0>wNV^2b z5ARx+h+HqN*jfGZf!epKUwLth$C{zTyBDrG{_=}E*PM9O7P)&Nyx)PrlX$Q_@KCN1 zY4(>LIR5er4IdwW<)t>C6GKP(icTDVD`0C|@>+XH^%0Q>#-q6u~YwjH% zdUAh{zE+e2RK>03N!s>R+*?p*ZW5~q8tl zLTZgl$mZlMSr+@VhN-%_PrCm$u!-=SKG^{G-y)V>&nB*BQ(1O3o3wg1EfEM7yF*Fv zaku*p@xR?6<}R8PSRR>QQXd$|DmS3k#l_&4+#h$t-;~o0#qHe;Uh{|IGK#nX`0kcE&7G`fTh! z>jzOniLB;|S$VB@mj{xcg$g-P931uCihFrw8C| X@Q84u+CAU@{*NLE`0gBji|u~^0#+9q literal 0 HcmV?d00001 diff --git a/tests/test_cli.py b/tests/test_cli.py index 43b9247..dd24491 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -285,7 +285,7 @@ def test_clean(tmp_path, args, expected, raises): ( ["build", "-t", "core"], ["export", "-t", "core"], - 64, + 68, does_not_raise(), ), ( @@ -477,7 +477,7 @@ def test_cli_executes_queries(tmp_path, build_args, export_args, expected_tables config = tomllib.load(file) csv_files = glob.glob(f"{tmp_path}/export/{build_args[2]}/*.csv") export_config = config["export_config"] - for export_list in export_config: + for export_list in export_config.values(): for export_table in export_list: assert any(export_table in x for x in csv_files) diff --git a/tests/test_data/duckdb_data/etl__completion/completion.ndjson b/tests/test_data/duckdb_data/etl__completion/completion.ndjson index f3ca735..fe93761 100644 --- a/tests/test_data/duckdb_data/etl__completion/completion.ndjson +++ b/tests/test_data/duckdb_data/etl__completion/completion.ndjson @@ -1,5 +1,6 @@ {"table_name": "allergyintolerance", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} {"table_name": "condition", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} +{"table_name": "diagnosticreport", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} {"table_name": "documentreference", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} {"table_name": "encounter", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} {"table_name": "medicationrequest", "group_name": "test-group", "export_time": "2020-10-13T12:00:20-05:00"} diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_diagnosticreport_month.cube.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_diagnosticreport_month.cube.csv new file mode 100644 index 0000000..cd3a794 --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_diagnosticreport_month.cube.csv @@ -0,0 +1,20 @@ +"cnt","category_display","code_display","issued_month" +13,,, +13,,"History and physical note", +13,,"Evaluation + Plan note", +13,,"CBC panel - Blood by Automated count", +13,"Laboratory",, +13,"Laboratory","CBC panel - Blood by Automated count", +13,"History and physical note",, +13,"History and physical note","History and physical note", +13,"History and physical note","Evaluation + Plan note", +13,"Evaluation + Plan note",, +13,"Evaluation + Plan note","History and physical note", +13,"Evaluation + Plan note","Evaluation + Plan note", +12,"cumulus__none",, +11,,"Generalized anxiety disorder 7 item (GAD-7)", +11,"cumulus__none","Generalized anxiety disorder 7 item (GAD-7)", +10,,"Patient Health Questionnaire 2 item (PHQ-2) [Reported]", +10,,"Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]", +10,"cumulus__none","Patient Health Questionnaire 2 item (PHQ-2) [Reported]", +10,"cumulus__none","Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]", diff --git a/tests/testbed_utils.py b/tests/testbed_utils.py index eb231d8..fd6c986 100644 --- a/tests/testbed_utils.py +++ b/tests/testbed_utils.py @@ -46,7 +46,7 @@ def add(self, table: str, obj: dict) -> None: # All other args can be specified as a kwarg, like add() itself does. def add_allergy_intolerance(self, row_id: str, recorded: str = "2020", **kwargs) -> None: - """Adds a Condition with all the SQL-required fields filled out""" + """Adds a AllergyIntolerance with all the SQL-required fields filled out""" self.add( "allergyintolerance", { @@ -69,6 +69,17 @@ def add_condition(self, row_id: str, recorded: str = "2020", **kwargs) -> None: }, ) + def add_diagnostic_report(self, row_id: str, **kwargs) -> None: + """Adds a DiagnosticReport with all the SQL-required fields filled out""" + self.add( + "diagnosticreport", + { + "resourceType": "DiagnosticReport", + "id": row_id, + **kwargs, + }, + ) + def add_document_reference(self, row_id: str, start: str = "2020", **kwargs) -> None: """Adds a DocumentReference with all the SQL-required fields filled out""" context = kwargs.pop("context", {}) @@ -113,6 +124,7 @@ def add_etl_completion( # All required tables: "allergyintolerance", "condition", + "diagnosticreport", "documentreference", "medicationrequest", "observation",